Wine Website Design Samples
5th August, 2009
Here is a better sample of the graphics I have been working on after studying a number of sites suggested by the client as to the style they are looking for.
Individual vine leaf vector graphics:
»
»
»
»
»
This is my online journal featuring a strange mix of art, web-design,
programming and anything else that comes to mind.
Perhaps you might be interested in a particular topic such as viewing my
web design
work, my projects in
flash and actionscript
or other forms of
programming.
Alternatively you might like to look at posts showing my creative
artwork or
photography.
5th August, 2009
Here is a better sample of the graphics I have been working on after studying a number of sites suggested by the client as to the style they are looking for.
Individual vine leaf vector graphics:
22nd July, 2009
Had an opportunity to put my camera to use again, this time taking some photos of a newly hatched dove up in the dovecote.
20th July, 2009
A couple of preview screenshots of some of the vector icons I’ve been producing for the new website design:
13th June, 2009
My further experimentation led me to requiring the current number of a post which there is surprisingly little information about, so I ended up working something out from scratch.
I’ve posted it on the wordpress forum in case it proves useful for anyone else: http://wordpress.org/support/topic/245629
Update: Since this is now closed, I have included the code I made originally here:
function Get_Post_Number($postID){
$temp_query = $wp_query;
$postNumberQuery = new WP_Query('orderby=date&posts_per_page=-1');
$counter = 1;
$postCount = 0;
if($postNumberQuery->have_posts()) :
while ($postNumberQuery->have_posts()) : $postNumberQuery->the_post();
if ($postID == get_the_ID()){
$postCount = $counter;
} else {
$counter++;
}
endwhile; endif;
wp_reset_query();
$wp_query = $temp_query;
return $postCount;
}
12th June, 2009
A plugin that will produce similar links to those found at the bottom of a google or flickr results page.
http://wordpress.org/extend/plugins/wp-page-numbers/
Unfortunately this wasn’t quite what I was after, since it works with the existing pagination system of WordPress.
30th May, 2009
Presented in the last half hour of the first day… Here are a couple of photos I took while waiting after setting up in the middle room of Babbage floor 2.
20th May, 2009
A typical picture update of the project from both aspects, the 3D and the physical interface.
Testing the spike generator for visual feedback on the terrain:
12th May, 2009
Although I’m still waiting to find out if the PCB I requested a week ago is ready I have been able to get on with trying to produce the remaining electronics.
I’ve found out that the Analogue-to-Digital-Converter of my USB board is pretty sensitive and simply connecting my circuits resulted in extreme noise rather than a smooth stable reading. So in order to solve this I’ve placed some beefier 1uF (rather than the 0.1uF on my GSR circuit) capacitors between the output and the ground which seems to stabilise it perfectly.
Hopefully they will illuminate the centre of my handle, which now has acrylic beads glued into the holes in order to catch the light. I took this photo with my light on, not in the dark…
Note the purple capacitor across the thermistor. Without it the circuit gives out a perfectly stable current, but the ADC doesn’t seem to think so.