• Setup a Headless Raspberry Pi with Raspbian Jessie on OS X

    Setup a Headless Raspberry Pi with Raspbian Jessie on OS X

    To celebrate Halloween I’ve decided to put together a guide that will show you how to install Raspbian Jessie, the (as of this writing) most current version of the Debian operating system for the Raspberry Pi. The biggest difference between this guide and the hundreds if not thousands of other guides out there on the…

  • Updating the BIOS firmware on the Supermicro X9DRW-iF

    Updating the BIOS firmware on the Supermicro X9DRW-iF

    Yesterday evening I posted a detailed tutorial that explains how to flash/update the IPMI firmware on the X9DRW-iF server from Supermicro. Today I’m going to explain how to flash the BIOS on the same hardware. If you’re not familiar with what a BIOS firmware flash is, there’s no shame in not knowing, here is a…

  • Flashing the IPMI firmware on a Supermicro X9DRW-iF

    I recently tasked myself with bringing IPMI up to date on a Supermicro X9DRW-iF server. This can be quite dangerous, as a bad IPMI flash can break IPMI in a way that requires you end up having to mail your hardware (RMA) to Supermicro to get it re-flashed. As such, I’m not hugely fond of doing…

  • Automating Your MacOS X Deploy – Part I

    Automating Your MacOS X Deploy – Part I

    In this post, I’ll begin to demonstrate how beneficial it can be to automate some of the more tedious tasks involved with setting up a new install of MacOS X Lion (10.7) or Mountain Lion (10.8). In this early post we’ll focus on getting our machine to a state where it has the tools and…

  • How To Disable Java on OS X Lion to Protect from Zero-Day Bug

    A Java zero-day exploit was reported today. Here’s how to disable Java on Mac OS X Lion so that for the time being, you won’t accidentally run any applets that could compromise the security of your system(s). A command to reverse your changes is also included so that once the all clear is given we…

  • Setup a Django VM with Vagrant, VirtualBox, and Chef

    If you’ve decided that you want to learn the Django framework, but you don’t know where to begin, you’ve come to the right place. In this guide we’ll be walking step-by-step through the setup of a Django development VM. By the time we’re done we’ll have used a variety of amazing open-source tools to create a…

  • Tip: Easily Find Files In The Current Directory

    If we insert the following function into our .bashrc or .zshrc we can then easily run what I call a “quick find” on the current working directory. # qfind – used to quickly find files that contain a string in a directory qfind () { find . -exec grep -l $1 {} \; return 0…

  • Using Git and Github to Manage Your Dotfiles

    If you use OS X or Linux on your desktop/servers, you may be at a point where you have configured a lot of your own settings, configurations, or themes within dotfiles. For the uninformed, dotfiles are files in your home directory that begin with a dot, or full-stop character. This indicates to the operating system…

  • Spotlight – namebench

    Almost every single time you visit a website you are using DNS. DNS serves a lot of functions, but the most frequent thing most depend on it for is translation of the domain name you type into your browser (such as www.google.com) to an associated IP address, which is where the site really lives. Thanks…