Development

Writing about software development.

Getting Sassy

I can’t believe I’ve only just discovered sass. Sass is a preprocessor for css that makes editing your site’s style much more manageable. It includes things like variables and scoping that makes editing style a lot easier. Sass can then be compiled to normal css and used in any website.

Read More…

On Dragon Burn Photography

As a volunteer for Dragon Burn I am responsible for maintaining the Dragon Burn website. Part of that responsibility is curating images created by the Dragon Burn Community. As with other aspects of running a Burn, what seems like a simple task can have some unique challenges.

Read More…

Lesson of the Week: MySQL bits are bigger than expected in C#

If you have a bit(1) in a MySQL table, guess what type it is converted to when you make a query using C#’s MySQL helper? unsigned long Yep, that’s right. The smallest possible type gets converted to the longest possible type when you make a query through c#.

Read More…