More projects

This commit is contained in:
Bingus_Violet 2024-01-07 01:49:42 -06:00
parent ffaaea0e25
commit e3e9692cba
6 changed files with 51 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View file

@ -31,6 +31,54 @@
</div> </div>
</div> </div>
<div class="project">
<h1>Univerter</h1>
<div class="project-inner container-fluid row">
<div class="col-lg-6">
<img src="/imgs/univerter-screenshot.png">
</div>
<div class="col-lg-6">
<p>Univerter is my Javascriptless Youtube video downloader! I tend to call it a "converter" rather than a downloader, because unlike many other youtube downloaders, mine actually converts to more formats than youtube supports! I've been working on Univerter for a long time, and i hope to support more sites soon :>. It also comes with a (experimental) standalone video converter! Please, check it out at <a href="https://univerter.dev">univerter.dev</a> or <a href="https://yt.violets-purgatory.dev">yt.violets-purgatory.dev</a> and report any issues or feature requests!</p>
</div>
</div>
</div>
<div class="project">
<h1>Violet's Limbo</h1>
<div class="project-inner container-fluid row">
<div class="col-lg-6">
<img src="/imgs/violets-limbo-screenshot.png">
</div>
<div class="col-lg-6">
<p>Don't get it confused with Violet's Purgatory! I know, me and my stupid naming schemes T^T. Violet's Limbo is the name for my blog site, where i just kinda post unimportant game rants! Currently it's very early in development, and much of it's code is sorta "Make now fix later"... But despite its rushed development, i love posting blogs on there! Currently there isn't much, but feel free to check it out at <a href="https://blog.violets-purgatory.dev">blog.violets-purgatory.dev</a>!</p>
</div>
</div>
</div>
<div class="project">
<h1>Simpletube</h1>
<div class="project-inner container-fluid row">
<div class="col-lg-6">
<img src="/imgs/Simpletube-screenshot.png">
</div>
<div class="col-lg-6">
<p>Simpletube is my work in progress Javascriptless Youtube Frontend! It's not quite done, but it does support many features, and i'm quite happy with how it's going so far! Sadly, it currently isn't hosted anywhere, but the code can be found <a href="https://codeberg.org/Bingus_Violet/SimpleTube">here</a>! I hope to re-continue development on it soon, and finally find somewhere to host it!</p>
</div>
</div>
</div>
<div class="project">
<h1>SteamRPC</h1>
<div class="project-inner container-fluid row">
<div class="col-lg-6">
<img src="/imgs/steamrpc-screenshot.png">
</div>
<div class="col-lg-6">
<p>When playing games like Gunfire Reborn, I was annoyed that they'd only support Rich presence on Steam but not Discord. I was also having issues at the time with getting games under proton to show up on discord in general. As a solution, i made a (Linux only, sadly) software called SteamRPC, which converts the presence of any Steam game onto Discord using a Rich presence bot. It certainly needs optimization, but it's a project im proud of, and one of my few projects I use all the time!</p>
</div>
</div>
</div>
</div> </div>
</body> </body>

View file

@ -171,6 +171,8 @@ hr {
background-color: rgba(35, 35, 35, 0.8); background-color: rgba(35, 35, 35, 0.8);
padding: 15px; padding: 15px;
border: 2px gray solid; border: 2px gray solid;
margin: 20px 0px;
border-radius: 15px;
} }
.project-inner { .project-inner {
@ -186,6 +188,7 @@ hr {
width: 80%; width: 80%;
max-width: 500px; max-width: 500px;
margin: auto; margin: auto;
border-radius: 10px;
} }
.project > p { .project > p {