diff options
author | AlmightyMiau <almightymeow612@gmail.com> | 2025-02-08 20:46:18 -0800 |
---|---|---|
committer | AlmightyMiau <almightymeow612@gmail.com> | 2025-02-08 20:46:18 -0800 |
commit | d21f533a1d9d116db28a7bb1491230553a45e360 (patch) | |
tree | 1fe4cb857fbdcdd9d42eab61cc322834e8916a91 | |
parent | 84099a0bc90e71d5e4d716aeb746196449d16954 (diff) |
2/8/2025 Journal Update
Moved website onto server and changed url
Added git page at git.almightymiau.gay
-rw-r--r-- | index.html | 68 | ||||
-rw-r--r-- | styles.css | 6 |
2 files changed, 74 insertions, 0 deletions
@@ -47,6 +47,74 @@ </div> <div class="title"> Website Journal</div> <div class="content"> + <div class="date">2/6/2025</div> + <p> + I have wanted to host my website myself for a while now, + and I finally got to it and started following <a href="Landchad.net">LandChad's + course</a> on how to 'Start a website' + </p> + <ul> + <li> + Started renting a small debian server from Vultr + </li> + <li> + Connected my domain 'almightymiau.gay' to the server's IP + </li> + <li> + Set up nginx on the server, which serves the website to people + </li> + <li> + Got https certification set up with Certbot (it's free! wow!) + </li> + <li> + Set up a cronjob to automatically renew the certificate + </li> + <li> + Cloned my website onto the webserver from github + </li> + <li> + Set up a cronjob to automatically update the website from github every 12 hours + </li> + <li> + Installed rsync on server and laptop (didnt do much with it) + </li> + <li> + Set up SSH keys from laptop to vps :3 + </li> + <li> + Installed dnsmasq (havent done anythign else for it) + </li> + <li> + Read about Monero, I'm interested but haven't done anything yet + </li> + <li> + Set up Wireguard VPN on vps, connected laptop, FAILED + </li> + </ul> + <div class="date">2/8/2025</div> + <ul> + <li> + Set up git system on main website + </li> + <li> + Set up cgit, a git web interface, available at <a href="git.almightymiau.gay">git.almightymiau.gay</a> + </li> + <li> + Pushed Bitburner.git, Odin-recipes.git, Odin-landing.git (all of my important/neat repos to server) + </li> + <li> + Didn't like the light mode that comes with cgit, so I found a <a href="https://github.com/jb3/cgit-dark">dark theme</a> online, and put the stars background on it. + </li> + <li> + I'll change more of the git page's style sometime, but there's a lot to go through in there. + </li> + </ul> + <p> + Added the button to go to my git page on the sidebar. + There isn't a link back here from there tho. + </p> + </div> + <div class="content"> <div class="date">1/12/2025</div> <p> Today I did some pondering (I sat outside on my couch for an hour after getting an hour of sleep) on the relationship betweeen pay, effort, and skill of jobs. I started out with a disconnect between the physical effort of a job and how well it pays, such as the difference between physical labor (I think of farming) and office work. I do realize that the development of a skill should correspond to an increased pay, but it still feels weird to me that there's an inverse correlation between the physical effort of a job and how well it pays. (I beleive high level skills (doctors, artisans) should be rewarded for their abilities, its just that office work feels strange to me) @@ -128,6 +128,12 @@ nav ul { margin-top: -2px; border-top: var(--border); } +.content ul { + padding-left: 15px; +} +.content li { + padding-bottom: 5px; +} .date { color: var(--accent-2); |