Hello out there web friend.

My name is Jeff.

Thanks for connecting.

Designing SVGs in Sketch | Richmond Pulse Bus Line

July 6, 2017 | Posted in Design

Over the last few years, I’ve gotten spoiled by working with some awesome UX and graphic designers. As a result, I was able to double down on my programming skills on both the back and front ends, but at the same time most of my design skills had somewhat atrophied. I’m very comfortable using JavaScript […]

Read More

Adding Custom Fields to WordPress JSON API

June 14, 2017 | Posted in Web Development,WordPress

I’m working on building out some cool annotations tools for different types of audio, mostly music, which you can see an example of here. Although this is a good step, to really make this app/plugin/tool extensible and reusable, there needs to be some sort of back end layer to store some meta data about each […]

Read More

Server-side Caching with NGINX to Increase Page Speed

May 8, 2017 | Posted in AWS,Linux

I’ve been trying to up my sysadmin game over the last several months using a lot of different server configurations on AWS (Linux, IIS, etc.). Mainly I’m writing this post because I’ve implemented this server-side caching setup three times now, and every time I do, I end up having to go back to the drawing […]

Read More

The Future of JavaScript and the Browser

February 20, 2017 | Posted in JavaScript,Web Development

I’ve been doing a deep dive into Vanilla JavaScript lately, partly as a pretty overt reaction to the proliferation of client-side MV* frameworks. My thought process is that the time spent learning frameworks isn’t necessarily transferrable beyond some of the high-level concepts they help you solve, things like routing, data-binding, and dependency injection. But, once […]

Read More

Command Line: Download Files with cURL Command

January 19, 2017 | Posted in Web Development

I’m not sure how I didn’t know about this command sooner since I use cURL for a few other tasks. I’ve been using WGET to download remote files, but I recently stumbled across this new little shortcut that should save me a few seconds here or there. If you’d rather just watch a short video, […]

Read More

WordPress NGINX Proxy Server Subdomain to Subdirectory

December 11, 2016 | Posted in AWS,Linux,WordPress

For a recent project, I implemented an NGINX proxy server to proxy requests from a WordPress installation on a subdomain so that they appear to come from a subdirectory of the main domain. Good http://maindomain.com/blog Bad http://blog.maindomain.com There a lots of SEO and technical benefits to setting up a proxy server like this, a few […]

Read More

Creating a traffic light with Raspberry Pi and Python

August 27, 2016 | Posted in Maker Ed,Python,Raspberry Pi

There are endless projects you can make with Python, the Raspberry Pi, and just a few LEDs. One obvious and really fun project is a button operated traffic light. This post will build on an earlier project about connecting a button using a breadboard and the RPi.GPIO library, so if you have any questions about […]

Read More

Using cleanup method RPi.GPIO | Raspberry Pi Tutorial

August 21, 2016 | Posted in Maker Ed,Python,Raspberry Pi

Getting Started with Raspberry Pi After several months of deliberating, I finally gave in a bought a Raspberry Pi to start playing around with. Once I found out that it is a tiny Linux machine, I was sold. I opted to a pretty standard starter kit that I found for what I thought was a […]

Read More

Fixing error: cannot read property “values” from undefined

August 6, 2016 | Posted in Google Apps Script

Typeerror: cannot read property “values” from undefined is one of the most persistent and frequent errors you can get when doing any type of scripting in Google Apps Script. One of the most frequent questions I get on this blog, so I decided to dedicate a post to helping people troubleshoot this pesky error. First, […]

Read More

Add Custom Menus to Google Docs, Sheets & Forms

May 2, 2016 | Posted in Google Apps Script,Google Sheets

Using custom menus can help you automate and streamline certain tasks in Google Apps Script by creating easy-to-use interfaces so other people can run and benefit from your code. In this post, we are going learn how to add custom menus to Google Docs, Sheets, and Forms using Google Apps Script. Adding custom menus allows […]

Read More