writeup
-

DNS Basics
In this post, I’ll go over the basics of DNS so that you’ll be primed and ready for my next post about DNS enumeration. Oftentimes, I feel like DNS doesn’t get the attention it deserves when enumerating services. I mean, it’s a relatively simple protocol. Although it’s simple, there’s a wealth of information that…
-

How Crypto is Hacked
Crypto currencies are a relatively new form of digital currency that have become rapidly popular for their accessibility and high security. They are deemed incredibly secure because they operate on the block chain network. However, nothing is impervious to hacking. In this post, I’m going to go briefly over crypto currencies, the block chain, and…
-
Switching to WordPress
It’s been a while since I’ve written a blog post. I’ve been super busy trying to figure out a way to host my personal website and blog in a way that was cheap and easy to maintain. Originally, I hosted my front-end on GitHub Pages and stored all of my blog posts on Google Sheets.…
-
My Top 10 Favorite Pokemon!
Hello again! In this post, I’m going to take a little detour from the more serious tutorial posts and share my top 10 favorite Pokemon with you! I’m not much of a stats guru so my selection is going to be based mostly on looks. This is also going to exclude starter Pokemon (I’ll probably…
-
CSS Layouts
Hello again! In this post, I’m going to be talking about two powerful layout tools in CSS that can be used to easily and efficiently make responsive layouts. When I started learning CSS, layouts were created using float, tables, and positioning. These methods are overly complicated and insufficient for making complex, responsive layouts. Flex-layouts and…
-
Ems vs Rems
In this post, I’m going to talk about the differences between two CSS units: ems and rems. When used properly, these units are fantastic for easily creating responsive fonts and scalable layouts. That being said, applying them incorrectly can lead to some confusing (and problematic) results. So, let’s get into it so you can start…