Skip to main content

Milestones

I've hit two milestones this week. The first, as some may have noticed, is that I've hit triple digits in my project 365 attempt. In fact, today is day 101. The second is that I shot my 6000th exposure on the Canon EOS500D, which is not bad going considering I've only had it 5 months.

For my 100th and 101st pictures in 365/2011 I wanted something artistic, and something stark (to go with the theme of room 101). For picture 100 I actually revisited a subject I already photographed once before; blossoms on the trees. This time I wanted to make something high key, close up and fully making use of background blur and washed out colours. I think I succeeded.


100/365, originally uploaded by craigand.

For 101 I took a picture of some metal stairs running up the side of a hospital building. By making it black and white, and aligning it so the sharp diagonals zig-zagged down the image, I think I got what I was after. I toyed with the idea of boosting the contrast to make it look more film noir, but in the end I decided it just looked cheesy.


101/365, originally uploaded by craigand.

As for my other milestone this week, my 6000th exposure, I'm not sure I could possibly call the subject artistic. See what you think.


IMG_6000, originally uploaded by craigand.

Yup, it's the condiments tray at Tokyou. Stunning, no? But what have I done with the last few months? Have I improved? I think so. Have a look at the funky widget thing I found at roytanck.com over in the sidebar, and see what you think. And if that doesn't float your boat, just click through to the actual 365/2011 set on Flickr.

Comments

Popular posts from this blog

Fairy Lights

Street lights at night can be very pretty. For someone who lives close to the centre of a large city, skirting round the edge of the town centre can provide a host of beautiful views at night. One advantage to using a wide open lens when taking these pictures is the capture of bokeh, or creative blur. An extreme example is shown to your right; a mass of coloured circles that roughly represent the city they are part of. A more subtle example, of course, is in the picture of the day at the top of this post. The lights cluster around the top of the leaves like fireflies, obviously part of a cityscape but at the same time abstract. The extreme out of focus image is a blurred version of the picture on the left. A view over Sheffield from Pitsmoor, looking up Netherthorpe Road and up to the university. Even when the buildings are focussed (roughly; I'm still practicing) the lights take on the shape of the lens's aperture. I try to incorporate some foreground focus wh...

DeCSS on Ubuntu 9.10 and later

It used to be the case that enabling DVD playback on Ubuntu was a case of installing ubuntu-restricted-extras and that was that. Unfortunately DMCA nonsense in the US has buggered that up for all of us and so now there's an additional step. So, without further ado, here are the commands that need to be run at a command line: sudo apt-get install libdvdread4 sudo /usr/share/doc/libdvdread4/install-css.sh Voila! DVD playback a-la Ubuntu.

In which I complain that coding standards are a waste of time

Just kidding. I'm not going to rail against coding standards. No, I'm going to rail against the absolute and dictatorial enforcement of coding style guidelines, to the point where a single misplaced curly bracket can fail the code review of a thousand line project before it's even started. I'm going to rail against the fact that many people these days don't actually know that coding style guidelines and coding standards are not the same thing. Coding style guidelines are not coding standards. Coding standards are rules on how to construct software. Rules that have practical and defined benefits. Rules than can be proven to assist in the structured and correct building of code. For example: Do not perform database access in the constructor. All database access should use the framework's DAL. Do not rely on complex instantiation instructions; provide a factory method. Do not inherit from a class in a different module or library; only encapsulate. Avoid sin...