Writing Code That is Easy To Change
As a developer, more of your time will be spent reading and understanding code than actually writing it. Read on for some strategies to writing code that is easier to read and change.
Nashville, TN, United States
I'm a software engineer with a passion for reusable, highly-readable code working as a software engineer at Apple in Cupertino.
April 2013 - Current
April 2010 - April 2013
May 2007 - April 2010
I work on a few small, really interesting freelance projects in my spare time.
2011 - Current
GitHub, Nov 2011 - Nov 2012; followed by 19 people; forked 3 times
AutoMin is an ExpressionEngine module and extension that automates the combination and compression of your source files and currently supports CSS, JavaScript, LESS, and HTML compression.
GitHub, May 2012
A library for your EE addons that will allow simple, file-based caching.
GitHub, Dec 2011; followed by 52 people; forked 5 times
A fully-customizable UIImageView subclass that allows you to load an image from a remote URL asynchronously.
GitHub, Dec 2011; followed by 80 people; forked 17 times
Allows you to present a view controller to the user allowing them to sign on the screen. After they've signed, the controller allows you to grab a UIImage of the signature for use or store. Built with ARC.
GitHub, Nov 2011; followed by 4 people
ExpressionEngine module that allows you to fetch Google Custom Search results for display in your templates.
GitHub, Nov 2011; followed by 2 people
Boilerplate .htaccess file for ExpressionEngine/Codeigniter based web sites.
GitHub, May 2012; followed by 6 people
Simple plugin for querying the YQL service from your ExpressionEngine templates.
If you could hear the universe, what songs would it play?With the AstroCantus app the music of the universe is in your hands, and it is uniquely yours to control. AstroCantus…
Developer
Mixes created and designed, by designers. Designers.MX is about discovering new music. Music that drives our favorite designers, and allowing them to create a unique cover design…
Developer
CoachSmart puts an athletic trainer, a personal assistant and a meteorologist all in the palm of your hand. It was created by doctors and athletic trainers. We asked coaches what…
Developer. Cross-platform development with Titanium. I kinda prefer good ole' Xcode.
BabyTime Going into labor? Vanderbilt University Medical Center’s easy-to-use app helps you time your contractions. Just tap the start button to begin timing; tap it again to…
My first ever iPhone app. Developer.
Goo Goo Finder brings you to the Goo Goo. Find the Goo Goo closest to you by using the map or list view. Or, you can find a Goo Goo by using the augmented reality. Augmented,…
Developer of the augmented reality component.
Frist Center for the Visual Arts is located in Nashville, Tennessee. The vision of the Frist Center is to inspire people through art to look at their world in new ways.
Developer
As a developer, more of your time will be spent reading and understanding code than actually writing it. Read on for some strategies to writing code that is easier to read and change.
In keeping with my recent theme of writing code that is easy to change, I wanted to write briefly about a design pattern that I use frequently. The observer pattern and a few like it are key to writing good object-oriented code. The idea is that objects will subscribe to events that are fired from other objects. Neither the sender nor the receiver have to know anything about one another so it helps to keep dependencies low in your application.
Ahh the life of a developer. Some days, I’m the docent at an inspiring museum. Other days, I might be working at a fast food burger joint. It’s true that to really accomplish the goals of your clients, you must get your hands dirty and learn their business. That’s why for the last three months, I’ve been an astronomer. This post is intended to give a high-level overview of the AstroCantus development process.
Sometimes it seems that there aren’t many hard-fast rules in programming. What works here, may not work there. What is best for this developer may not be best for another. One area where this is noticeably the case is the debate over coding standards and code-cleanliness. For me, this is always evolving as I discover new ways to make my code more maintainable, more readable, and just downright more beautiful. How well your code reads and looks is almost as important as how well it performs and is considered your first impression when another developer is tasked to maintain your code. Today, I will be suggesting a few techniques I use to write beautiful JavaScript code that is less prone to bugs and easier to maintain.
Our clients love having the ability to control the content of their web sites. Now that we’ve been in the business of creating iOS and Android apps for a bit, we’re also finding that our clients love having the ability to control the content of their apps. Today I’ll show you how we use ExpressionEngine to easily provide content to our iOS and Android projects through a simple REST server.