Design

Bulk rotate photos based on exif data

An excellent tool that has saved me loads of time is the free Faststone image viewer, which allows you to bulk select and auto rotate.  This was one of those tasks I just couldn’t find a reliable (stable) free solution too and has saved me hours of manual changes!

Simple horizontal (inline) list CSS

A little reminder as to how to achieve a simple horizontal (inline ) list using CSS because I keep forgetting.  The key is obviously the display: inline bit.

#mylist li { display: inline; list-style-type: none; padding-right: 20px; }

Item one
Item two
Item three

#mylist li {
display: inline;
list-style-type: none;
padding-right: 20px
 }

Free RSS icons

I’m making it my mission to master RSS that is, establish exactly how it can enhance traffic to your site, and how you can monetise that traffic.  For example, how much information should be in the feed – the whole article, just a feed.  If it’s the prior should you charge for it, embed advertising?  [...]