-
How I Updated Ruby on My Arch Box Cause the System One Was Out of Date
15 April 2024
I just moved my laptop to run an arch derivative because I got a new SSD
installed for more exiciting projects. To my surprise the current version of
ruby in the repos was out of date by 9 months. So I had to learn how to use
rbenv in order to build my blog and deploy new posts. It’s just like virtual
environments with python, but unfamiliar because I only use ruby because I did
this site in Jekyll, and to migrate would defeat the purpose of this site which
is to share my writing and show off the cool things I built.
-
Mastodon and the Fediverse
22 December 2022
I’ve recently got fed up with the standard centralized social media, so I
joined Mastodon. Everything was feeling incredibly fake as of late.
It’s hard to build real connection on the large sites. This is my experience
joining the fediverse and tildeverse. I’ve always been interested in old
school social networks like BBS, and the whole lore that surrounds them, so I
decided to get more involved with Mastodon as hosted by SDF. I’ve had
a shell account with them since 2016 and I’m sustaining member too. It’s nice
to try out their other hosted applications.
-
My notes on what packages I absolutely need to install to maintain this site.
27 January 2022
I recently got a new laptop and decided to move to Manjaro, an Arch
Linux derivative. I had some frustration with setting it up, and getting
the tools I need to maintain this website installed. Documented below
are the steps I took to solve it.
-
TIL my site is a JAMStack site.
10 September 2021
Today I learned that my site which has been basically the same since
2016 is a JAMStack site. Although it was coined in 2015 by
Netlify, it seems to have become really popular in the past 2 years as a
term. I’m told it’s more of a theoretical framework than anything else.
JAMStack stands for JavaScript, APIs, and Markup.
-
Adding Search to My Static Blog Using AWS Lambda and SQLite
09 July 2021
I always wanted to have search on my site, but it’s statically hosted,
so I can’t have any dynamic content on it. I recently resolved that by
creating a little tiny lambda function on AWS that queries a SQLite
database hosted on S3. Here I’ll walk you through how I created the
back-end for it, and in some later posts I’ll include details on
calculating the cost.
-
Finding Jekyll Posts to Update With Cover Images
10 January 2021
I recently updated my site to make use of cover images on the post
listing. I wanted to make sure that I got all of the posts that need to
be updated. I used grep to find posts which had an image in them, but no
cover attribute in their front-matter.