1. How to write a good RFC

    A guide for the modern office dweller on how to write a compelling RFC.

  2. A practical Fish shell guide

    [Fish](https://fishshell.com/) is a friendly interactive shell with excellent autosuggestions, syntax highlighting, and tab completion out of the box. It is fast to set up and pleasant to use without a large configuration framework. This guide covers a small, modern Fish setup on macOS.

  3. Designing problems and solving problems

    This is me rambling about design, plagiarism, and being bored. And stuff like that.

  4. Listen key combinations with JavaScripts

    Here’s how to listen to more complex keyboard input with JavaScript.

  5. MySQL command cheat sheet

    This is a quick cheat sheet of MySQL commands related to creating, importing, and exporting databases and database users.

  6. Few JavaScript loops you probably hadn’t thought of

    Here are a few uncommon ways to loop in JavaScript. These might or might not come handy at some point of your developer life.

  7. How to clone Raspberry PI operating system

    I’ve been playing around with RPIs lately, and I’ve found it handy to take snapshots of my Micro SD card as I’m messing around, so that I’ve got backups when something inevitable goes wrong.

  8. Understanding the Nginx location directive and redirects

    The Nginx `location` directive chooses configuration based on the request URI. You can use it to serve files, proxy requests, or return redirects.

  9. Remove a class name from multiple elements with pure JavaScript

    This post examines all the ways multiple DOM elements can be manipulated. That can be done with a `while` loop or with recursion when using a live HTMLCollection.

  10. The good kind of specificity in CSS

    Here I’m trying to figure out what forms the specificity in CSS? What is the good kind of specificity, what bad specificity is, and how to use only the good kind of specificity.