Sam says you should read this
This blog was created with the BlogFile software, written by Samuel Levy.

You can find Sam on Google + and LinkedIn.
 

Workflows for a small team of gits

In my current role at cpap.com, I'm working on improving the workflow of our small development team. We made the switch from SVN to git a couple of years ago, but the tools we had available at the time didn't really support us well, so we had to fight to stop using git like we used SVN.

As the developers got more comfortable with git (and as we brought in new blood to the company), the workflow has organically changed to be closer to the original plan. Now only the lead developers push changes into master, and developers pull off feature branches when they get a new ticket.

It's working well, b…

Pretty and Broken trumps Ugly and Working

There, I've said it. Programming is a beauty contest, and if your software ain't pretty, it will lose out to something with half the function. This is a really difficult thing to admit as I'm not a designer, but the user interface is more important than the functionality.

Of course this isn't always true - quite often banks and other large businesses use software that was written 20 years ago (and still looks the part), but for the majority of businesses (especially in the web sector), it's just a home truth that design is more important.

So let's explore why.

Trust
Reason number one why the UI …

Game of Life: Total War - an analysis

Approximately 4 weeks ago, I launched a side project, called Game of Life: Total War. It is a multi-player, competitive variant of Conway's Game of Life. It spent some time on the front page of Hacker News, and some time on the front page of /r/programming on Reddit.

Apart from Linode sending me emails at 3AM telling me that my CPU usage was too high (thanks, HN), it all held up pretty well. So far there have been over 3000 challenges created, almost 2000 armies, and about 300 user accounts created (you can create an army and play without creating an account, but accounts let you create and ke…

Let's talk about copyright, licencing, and who owns the code

As a freelance developer, the most common conversation I have with new clients is about copyright, licensing, and code ownership. It isn't a well understood area for many people, and many other freelancers who I talk to don't really get it, either. So let's talk.

Copyright

In general, when you create something, you are automatically assigned copyright over it. This means that you have the right to determine who, when, and how the thing that you created is copied. For me, as a developer, any code that I write is automatically copyrighted to me. I can, through a general agreement or a contract gi…

BYOB - Build Your Own Blog

I am helping a couple of friends to learn how to program, and how to build things. Working through Codecademy has helped them get a grasp of the basics of syntax and problem solving, but they pretty quickly grow bored without a real goal in mind.

This is why I tell them to build their own blog, and why I think you should too.

Let's face it, you're not going to knock wordpress off it's pedestal, nor compete with blogger/tumblr/whatever other blogging platforms are popular. It's about building something for you. Something which doesn't affect everyone else, but you can play with, show off, and le…