General updates/fixes

This commit is contained in:
Parker M. 2025-01-15 21:04:00 -06:00
parent 0c4b2294a6
commit da65fa030f
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E
3 changed files with 11 additions and 14 deletions

View File

@ -1,7 +1,3 @@
# [PKRM.DEV](https://pkrm.dev)
This is the repo for my personal website ([pkrm.dev](https://pkrm.dev)).
Heavily inspired by the "Hello Friend NG" HUGO Theme, found [here](https://github.com/rhazdon/hugo-theme-hello-friend-ng).
Feel free to fork this project or download the code and use it for your needs. Happy coding!
Personal website, enspired partly by the "[Hello Friend NG](https://github.com/rhazdon/hugo-theme-hello-friend-ng)" theme.

View File

@ -12,7 +12,7 @@
<meta property="og:title" content="Parker M."/>
<meta property="og:url" content="https://pkrm.dev/"/>
<meta property="og:type" content="website"/>
<meta property="og:description" content="TEST"/>
<meta property="og:description" content="My personal website. See my projects."/>
<script src="/js/toggle.js" defer></script>
@ -77,7 +77,7 @@
<section id="about">
<h1>About Me</h1>
<p>I am a freshman in Computer Science at the University of Texas at Austin - also in <a href="https://fri.cns.utexas.edu/" target="_blank">FRI</a> Quantum Computing. I manage a Debian based home server where I self-host everything I can. In addition to this, I actively work on personal projects, <i>most</i> of which are open-sourced.</p>
<p>View my projects on <a href="https://github.com/packetparker" target="_blank">GitHub</a>, or, if you prefer something lighter and not behind Cloudflare, check them out on my <a href="https://git.pkrm.dev" target="_blank">Cgit instance</a>.</p>
<p>View my projects on my personal <a href="https://git.pkrm.dev" target="_blank">Gitea</a> instance</p>, or my <a href="https://github.com/packetparker" target="_blank">GitHub</a> profile (mostly mirrors).
<br>
<h1>Things I run on my server</h1>
<ul>
@ -88,8 +88,8 @@
<li><a href="https://xmpp.org/" target="_blank">XMPP</a>: I host my own personal XMPP server for people to contact me ( always use encryption )</li>
<li><a href="https://immich.app/" target="_blank">Immich</a>: Cloud photo storage with tons of features - alternative to Google Photos</li>
<li><a href="https://lavalink.dev/" target="_blank">Lavalink</a>: Audio node for my Discord music bot</li>
<li><a href="https://github.com/packetparker/guava" target="_blank">Guava</a>: My open source and easily self-hostable Discord music bot</li>
<li><a href="https://github.com/peakpass/LinkLogger" target="_blank">LinkLogger</a>: My open source link shortener and IP logger</li>
<li><a href="https://git.pkrm.dev/parker/guava" target="_blank">Guava</a>: My open source and easily self-hostable Discord music bot</li>
<li><a href="https://git.pkrm.dev/parker/linklogger" target="_blank">LinkLogger</a>: My open source link shortener and IP logger</li>
<li>... and <i>a lot</i> of media management services/tools</li>
</ul>
<br>
@ -97,15 +97,15 @@
<h2>Top 3</h2>
<ul>
<li><a href="https://github.com/packetparker/guava" target="_blank">Guava</a>: Dead simple Discord music bot. Allows playing music from Spotify, Apple Music, SoundCloud, YouTube, Deezer, Bandcamp, and Twitch. Currently in >225 unique servers!</li>
<li><a href="https://github.com/peakpass/LinkLogger" target="_blank">LinkLogger</a>: Link shortener and IP logger. Features a full Web UI in React with a public API built on FastAPI.</li>
<li><a href="https://www.congressionalappchallenge.us/23-TX06/" target="_blank">EduStore</a> (Inactive + Closed Source): Inventory management for school districts. Developed during my internship at and for Mansfield ISD. Won 1st place in the Congressional App Challenge for Texas' 6th District.</li>
<li><a href="https://git.pkrm.dev/parker/guava" target="_blank">Guava</a>: Dead simple Discord music bot. Allows playing music from Spotify, Apple Music, SoundCloud, YouTube, Deezer, Bandcamp, and Twitch. Currently in >225 unique servers!</li>
<li><a href="https://git.pkrm.dev/parker/linklogger" target="_blank">LinkLogger</a>: Link shortener and IP logger. Features a full Web UI in React with a public API built on FastAPI.</li>
<li><a href="https://www.congressionalappchallenge.us/23-TX06/" target="_blank">EduStore</a> (Closed Source): Inventory management for school districts. Developed during my internship at and for Mansfield ISD. Won 1st place in the Congressional App Challenge for Texas' 6th District.</li>
</ul>
<h2>Others</h2>
<ul>
<li><a href="https://github.com/packetparker/CordArr" target="_blank">CordArr</a>: Request new content for Radarr/Sonarr libraries and create temporary Jellyfin accounts through Discord commands.</li>
<li><a href="https://github.com/peakpass/peakpass" target="_blank">PeakPass</a> (Inactive): Web-based password manager that checks user hashes against previosuly breached passwords. Features strong encryption algorithms, password hashing + salting, and a custom implementation of breach detection ( rather than using an API like <a href="https://haveibeenpwned.com/API/v3">HIBP</a> )</li>
<li><a href="https://git.pkrm.dev/parker/cordarr" target="_blank">CordArr</a>: Request new content for Radarr/Sonarr libraries and create temporary Jellyfin accounts through Discord commands.</li>
<li><a href="https://github.com/peakpass/peakpass" target="_blank">PeakPass</a> Web-based password manager that checks user hashes against previosuly breached passwords. Features strong encryption algorithms, password hashing + salting, and a custom implementation of breach detection ( rather than using an API like <a href="https://haveibeenpwned.com/API/v3">HIBP</a> )</li>
</ul>
</section>
</body>

View File

@ -18,6 +18,7 @@ function setPreference(value) {
const expires = new Date();
expires.setTime(expires.getTime() + 1000 * 60 * 60); // 1 hour
document.cookie = `preference=${value};expires=${expires.toUTCString()};path=/`;
turnLight();
}
}