release repo 01/13

This commit is contained in:
minish 2025-01-13 19:32:38 -05:00
parent 3bc051facd
commit 0516fca76b
Signed by: min
SSH Key Fingerprint: SHA256:PDf6DSaU0lWsQ57NzQGdm8HUKftULYFYzxPJolepY58
6 changed files with 38 additions and 33 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 482 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
assets/interests/twewy.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -28,44 +28,48 @@
<div id="floats"> <div id="floats">
<div id="yapping"> <div id="yapping">
<span> <span>
<h1 id="title">hi world !</h1> <h1 id="title">hi there!</h1>
<img src="/assets/icon.webp" alt="" class="icon" id="icon-mobile"> <img src="/assets/icon.webp" alt="" class="icon" id="icon-mobile">
</span> </span>
<h2>i am minish</h2> <h2>i'm minish</h2>
<p>hi! i go by minish online. i enjoy programming & reverse engineering.</p> <p>thanks for visiting! i go by minish online. i enjoy programming & reverse engineering.</p>
<p>a few of my recent projects are &ndash;</p> <p>a few of my recent projects are ..</p>
<ul> <ul>
<li> <li>
<a href="https://git.min.rip/min/infra">infra</a> - <a href="https://git.min.rip/min/nixos-configs">nixos-configs</a> -
infrastructure as code w/ nix dotfiles for nixos on laptop
</li>
<li>
<a href="#">clip album</a> [wip] -
search, sort, and filter through video clips
</li> </li>
<li> <li>
<a href="https://git.min.rip/min/breeze">breeze</a> - <a href="https://git.min.rip/min/breeze">breeze</a> -
a simple, performant file upload server a simple, performant file upload server
</li> </li>
<li> <li>
<a href="https://git.min.rip/min/glcanvas">glcanvas</a> - <a href="#">clip album</a> [wip] -
test project to learn webgl concepts search, sort, and filter through video clips
</li> </li>
<li>
<a href="https://git.min.rip/min/infra">infra</a> -
infrastructure as code w/ nix
</li>
<li>and smaller random things when im bored</li>
</ul> </ul>
<p>and many small projects ive made when im bored</p> <p>here's some media i like</p>
<p>some media i enjoy</p>
<ul class="interests"> <ul class="interests">
<li>yume nikki <img src="/assets/interests/yume.png" alt="" id="yume"></li> <li>yume nikki <img src="/assets/interests/yume.png" alt="" class="h20 pix"></li>
<li>oneshot <img src="/assets/interests/oneshot.png" alt="" id="oneshot"></li> <li>oneshot <img src="/assets/interests/oneshot.png" alt="" class="h20"></li>
<li>deltarune <img src="/assets/interests/deltarune.png" alt=""></li> <li>deltarune <img src="/assets/interests/deltarune.png" alt=""></li>
<li>bocchi the rock <img src="/assets/interests/kessoku.webp" alt=""></li>
<li>twewy <img src="/assets/interests/twewy.webp" alt=""></li>
<li>evangelion <img src="/assets/interests/eva.webp" alt=""></li> <li>evangelion <img src="/assets/interests/eva.webp" alt=""></li>
</ul> </ul>
<details> <details>
<summary><small>and more random stuff before</small></summary> <summary><small>and more before</small></summary>
<ul class="interests"> <ul class="interests">
<li>inabakumori <img src="/assets/interests/inabakumori.webp" alt=""></li> <li>inabakumori <img src="/assets/interests/inabakumori.webp" alt=""></li>
<li>cafe de touhou <img src="/assets/interests/cdth.webp" alt=""></li> <li>cafe de touhou <img src="/assets/interests/cdth.webp" alt=""></li>
<li>omori <img src="/assets/interests/omori.png"></li> <li>omori <img src="/assets/interests/omori.png" alt=""></li>
<li>cave story <img src="/assets/interests/doukutsu.png" alt="" class="h16 pix"></li>
<li>celeste <img src="/assets/interests/celeste.png" alt=""></li>
</ul> </ul>
</details> </details>
</div> </div>
@ -76,11 +80,11 @@
<div id="links"> <div id="links">
<a href="https://git.min.rip/min"> <a href="https://git.min.rip/min">
<img src="/assets/links/gitea.svg" alt="gitea" <img src="/assets/links/gitea.svg" alt="gitea"
title="it might look kind of empty. a lot of stuff here is privated"> title="a lot of stuff here is set to private">
</a> </a>
<a href="https://github.com/minishd"> <a href="https://github.com/minishd">
<img src="/assets/links/github.svg" alt="github" <img src="/assets/links/github.svg" alt="github"
title="there's some stuff here, but i use gitea more"> title="i use gitea more">
</a> </a>
<a href="https://www.last.fm/user/minishc"> <a href="https://www.last.fm/user/minishc">
<img src="/assets/links/lastfm.svg" alt="last.fm" title="music i listen to"> <img src="/assets/links/lastfm.svg" alt="last.fm" title="music i listen to">

View File

@ -92,28 +92,29 @@ main {
display: none; display: none;
} }
#title, #icon-mobile { #title,
#icon-mobile {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
} }
#learning { .interests {
grid-template-columns: auto; grid-template-columns: auto auto;
} }
} }
@media only screen and (min-width: 701px) { @media only screen and (min-width: 701px) {
#learning { .interests {
grid-template-columns: auto auto; grid-template-columns: auto auto auto;
} }
#icon-mobile { #icon-mobile {
display: none; display: none;
} }
}
.interests { #yapping {
grid-template-columns: auto auto; max-width: 450px;
}
} }
::selection { ::selection {
@ -184,13 +185,13 @@ li {
height: 1.75em; height: 1.75em;
vertical-align: middle; vertical-align: middle;
} }
.interests img.h20 {
.interests img#yume,
.interests img#oneshot {
height: 20px; height: 20px;
} }
.interests img.h16 {
.interests img#yume { height: 16px;
}
.interests img.pix {
image-rendering: pixelated; image-rendering: pixelated;
} }