Blog
-
Edging Ubuntu 24.04 on a Thumb Drive
Trying out running Ubuntu on my mid-2015 MacBook Pro. Except for some quirks (and some lag, due to…well, the os being mounted from a thumb drive), it’s remarkably enjoyable.
-
Code Block Pro adds tags to my posts
Kind of lame. I don’t like it when plugins add fluff to my content/website. Aside from mentioning it here, I may submit a ticket for this to find out if it’s a bug or feature.
-
UFW Cheatsheet
Here’s a comprehensive sudo ufw (Uncomplicated Firewall) cheatsheet for managing firewall rules on an Ubuntu server: Basic UFW Commands Allowing Connections Denying Connections Deleting Rules Advanced UFW Usage Checking UFW Status and Rules Other Useful Commands This cheatsheet covers common UFW commands and options, providing a solid reference for managing firewall settings on Ubuntu.
-
Website Update
This website is in a constant state of flux. I updated the home page, archives, and posts layout for a better UI. Thin and min, is my goal.
-
Relay Email via Amazon SES
Issue I’d like to relay all my Ubuntu 22.04 email through Amazon SES. FYI Use at your own risk. Like seriously, do some research prior to implementing any of this into your own environment. Consider factors like costs, scalability, etc. Solution To relay all your email through Amazon SES (Simple Email Service) on an Ubuntu…
-
In JavaScript, what is the difference between `.contains()` and `.includes()`?
In JavaScript, .contains() and .includes() are used for different purposes: .contains(): This is a method of the Node interface in the Document Object Model (DOM). It’s used to check whether a node is a descendant of a given node, i.e., child, grandchild, etc. .includes(): This is a method of the Array and String prototypes in…