<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My Corner</title>
	<atom:link href="http://www.wesley-acheson.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wesley-acheson.com</link>
	<description>Here I am, There I was.</description>
	<lastBuildDate>Thu, 30 Sep 2010 15:01:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Window Java Build server</title>
		<link>http://www.wesley-acheson.com/2010/java/window-java-build-server/</link>
		<comments>http://www.wesley-acheson.com/2010/java/window-java-build-server/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 15:01:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA]]></category>

		<guid isPermaLink="false">http://www.wesley-acheson.com/?p=70</guid>
		<description><![CDATA[Creating a Java build server on windows Technologies used. SVN &#8211; Version Control. Apache httpd server &#8211; Serve contents Java &#8211; Required to build java projects (duh), needed by nexus, tomcat and maven. Tomcat &#8211; Required to run Hudson (note Hudson will work on other application containers, tomcat is my container of choice) mod_jk &#8211; [...]]]></description>
			<content:encoded><![CDATA[<h1>Creating a Java build server on windows</h1>
<h2>Technologies used.</h2>
<p><strong>SVN</strong> &#8211; Version Control.</p>
<p><strong>Apache httpd server</strong> &#8211; Serve contents</p>
<p><strong>Java</strong> &#8211; Required to build java projects (duh), needed by nexus, tomcat and maven.</p>
<p><strong>Tomcat</strong> &#8211; Required to run Hudson (note Hudson will work on other application containers, tomcat is my container of choice)</p>
<p><strong>mod_jk</strong> &#8211; Maps apache to tomcat etc. Note again there are other ways of doing this.</p>
<p><strong>Hudson</strong> &#8211; Kicks off maven builds and deploys to maven.</p>
<p><strong>Nexus </strong>- Binary repository manager</p>
<p><strong>Trac </strong>- ticket system and repository browser</p>
<p><strong>python </strong>- required by trac</p>
<p><strong>Mod WSGI</strong> &#8211; required to map python to Apache.</p>
<h2>Chosing an install directory.</h2>
<p>It simplifies maintaince if all the applications can be installed to the same place. For the purposes of this post I&#8217;m going to install to a folder under c:/services.</p>
<h2>Stopping IIS</h2>
<p>IIS was currently running on the server. To stop IIS I went to the command prompt and types iisreset /stop followed by iisreset /disable.</p>
<p>Then go to services and disable the IIS Admin Service.</p>
<h2>Installing Apache httpd</h2>
<p>For this I&#8217;m going to download the latest apache server. At time of writing the latest server is 2.2.16. We are going to chose the win32 binaries because thats what are available on Apache and if we run into problems we are more likely to see other people with the same problems.</p>
<p>Choosing the Open SSL version as thats easier.</p>
<p>Binaries can be found at <code>http://httpd.apache.org/download.cgi</code></p>
<p>Stepping through the installation steps until the point of Network Domain is reached.  For the network domain I&#8217;ve chosen <code>[mycompaniesdomain].com</code></p>
<p>server name will be <code>build.[mycompaniesdomain].com</code></p>
<p>Email address my work email address.</p>
<p>Chose for all users on port 80 (The recommended setting).</p>
<p>I&#8217;m going to choose a custom installation as I wish to chose an install directory.</p>
<p>Choose not to install the documentation as the documentation on Apache.org is sufficient. I&#8217;ve opted to include the Build Headers and Libaries in case we ever need to compile something against this apache.</p>
<p>Remove APR Iconv Code Pages as its not required.</p>
<p>Choose the root option &#8220;Apache HTTP Server 2.2.16&#8243; and change the install location to your install directory. c:\services\apache\</p>
<p>Okay now to test the configuration.  We just want to be sure it launches we can harden the server later.  From the start menu under apache choose &#8220;Test Configuration&#8221;. This opens up a window with some text which just flashes up and disappears.</p>
<p>I get the following error:<br />
<code><br />
C:\&gt;c:\services\apache\bin\httpd.exe -t<br />
httpd.exe: Could not reliably determine the server's fully qualified domain name<br />
, using 10.10.14.3 for ServerName<br />
Syntax OK<br />
</code></p>
<p>Okay this is fixable. Basically I need to change the definition of server name in httpd.conf c:\services\apache\conf\httpd.conf</p>
<p>Looking in httpd.conf I see the following lines.</p>
<p><code># ServerName gives the name and port that the server uses to identify itself.<br />
# This can often be determined automatically, but we recommend you specify<br />
# it explicitly to prevent problems during startup.<br />
#<br />
# If your host doesn't have a registered DNS name, enter its IP address here.<br />
#<br />
#ServerName build.myriadpayments.com:80<br />
</code><br />
We need to uncomment the ServerName entry.</p>
<p>rerunning the test gives Syntax okay.</p>
<p>Finally to start apache we run the following command <code>c:\services\apache\bin\httpd -k start</code></p>
<p>If it starts navigate to localhost and ensure you are seeing contents. I see &#8220;It works!&#8221; which supprisingly means it works <img src='http://www.wesley-acheson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2>Python</h2>
<p>Python is needed for trac.  Lets get on and install that next.</p>
<p>Python can be downloaded from http://www.python.org/download/ . Trac utilises python 2 so we will give python 2 a go.</p>
<p>At the time of writing python (2) is at version 2.7 Thats the version we are going to get. Also as there are a few issues surrounding the 64 bit version and it needs to match the apache version. We are going to choose the 32 bit version.  Python 2.7 Windows installer</p>
<p>Choose install for all users. The default install directory is c:\Python27\ but we are going to change that to c:\services\Python27\</p>
<p>Going for a complete install here basically choose all features and install.</p>
<p>With a bit of luck python now works.</p>
<h2>Subversion</h2>
<p>Download a version of subversion. I&#8217;ve chosen the silksvn binaries avaliable from http://www.slik.com/en/download.</p>
<h3>Connecting to apache.</h3>
<h2>Easy Install</h2>
<p>Easy install is a python script that makes updating other python scripts easier. It can be found at http://peak.telecommunity.com/dist/ez_setup.py</p>
<p>Run the script in python.</p>
<p>C:\services\Python27\Tools\Scripts&gt;\services\Python27\python.exe ez_setup.py</p>
<p>This installs setuptools</p>
<h2>MOD_WSGI</h2>
<p>Mod_WSGI can be found at http://code.google.com/p/modwsgi/ you need to choose an appropiate one for your version of python and your version of apache. In our case it will be mod_wsgi-win32-ap22py27-3.3.so &#8211; Apache 2.2 / Python 2.7</p>
<p>Copy to c:\services\apache\modules. Rename the module to mod_wsgi.so</p>
<p>Add</p>
<p>LoadModule wsgi_module modules/mod_wsgi.so to apache conf and restart</p>
<h2>trac</h2>
<p>In the c:\services\Python27\scripts run easy_install trac. This should install trac. Next we need to setup a trac repoisitory. In the same directory run trac-admin.exe c:\services\trac initenv. You will be asked a few questions.  Enter the values you want. For database you can just use the default.</p>
<p>The next step is to deploy the trac creation script to a new document root for trac. I&#8217;ve chosen c:\services\trac_www as the web root for trac.</p>
<p>﻿trac-admin.exe c:\services\trac deploy c:\services\trac_www</p>
<h3>Mapping trac to apache</h3>
<p>Find the wsgi file created by the above script. On my computer this is in c:\services\trac_www\cgi-bin</p>
<p>Add the following to your httpd.conf</p>
<p>WSGIScriptAlias /trac c:/services/trac_www/cgi-bin/trac.wsgi</p>
<p>&lt;Directory c:/httpd/www/trac&gt;<br />
WSGIApplicationGroup %{GLOBAL}<br />
Order deny,allow<br />
Allow from all<br />
&lt;/Directory&gt;</p>
<p>Test in apache now. On the same machine as you are viewing go to http://localhost/trac/ . If you have a forbidden message it may be because permission is removed from directories.</p>
<p>in you httpd.conf find the following</p>
<p>&lt;Directory /&gt;<br />
Options FollowSymLinks<br />
AllowOverride None<br />
Order deny,allow<br />
Deny from all<br />
&lt;/Directory&gt;</p>
<p>Change this to</p>
<p>&lt;Directory /&gt;<br />
Options FollowSymLinks<br />
AllowOverride None<br />
Order deny,allow<br />
Deny from all<br />
Allow from 127.0.0.1<br />
&lt;/Directory&gt;</p>
<p>And restart apache &#8220;c:\services\apache\bin\httpd -k restart&#8221;</p>
<p>Try again.</p>
<p>With any luck you should now see trac installed.</p>
<p>Maven</p>
<p>Download maven as a zip file. Inside you should see a folder called &#8220;apache-maven-2.x.x&#8221; copy this folder to wherever you want maven isntalled.</p>
<p>In our case this creates a folder called c:\services\apache-maven-2.x.x\</p>
<p>Add maven to the command line.</p>
<p><strong>Tomcat</strong></p>
<p>Download windows installer service. Install using the defaults.</p>
<p>Remove HTTP connector. Remove all comments from server.xml</p>
<p>Add a worker.properties file with the following contents in the apache conf directory.</p>
<p># Define 1 real worker using ajp13<br />
worker.list=worker1<br />
# Set properties for worker1 (ajp13)<br />
worker.worker1.type=ajp13<br />
worker.worker1.host=localhost<br />
worker.worker1.port=8009</p>
<p>Add the following directives to apache</p>
<p>JkWorkersFile c:/services/apache/conf/worker.properties<br />
JKLogFile c:/services/apache/logs/jk_log.log<br />
JKLogLevel info<br />
JKMount /manager* worker1</p>
<h2>Download Hudson.</h2>
<p>Hudson can be downloaded from http://hudson-ci.org/latest/hudson.war</p>
<p>Set the following environement variables</p>
<p>HUDSON_HOME =  c:\services\work\</p>
<p>copy the hudson war into your tomcat webapps directory.</p>
<p>Add a mount argument so requests to /hudson are passed to the worker.</p>
<p>JKMount /hudson* worker1</p>
<p>At this point you should restart apache and tomcat to ensure its all working. Hudson requires UTF-8 Urls so in your server.xml you should put URIEncoding=&#8221;UTF-8&#8243;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wesley-acheson.com/2010/java/window-java-build-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Connor gazing at ceiling</title>
		<link>http://www.wesley-acheson.com/2010/uncategorized/connor-gazing-at-ceiling/</link>
		<comments>http://www.wesley-acheson.com/2010/uncategorized/connor-gazing-at-ceiling/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 22:48:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.wesley-acheson.com/2010/uncategorized/connor-gazing-at-ceiling/</guid>
		<description><![CDATA[Connor gazing at ceiling Originally uploaded by Athas-orm This is one of my favourite pictures of Connor at the moment. I really want to post a bit more here but I can never find the time to get around to it. Pretty busy with the model in this photograph. Anyway Its good to put something [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
<a href="http://www.flickr.com/photos/athas_orm/4418724473/" title="photo sharing"><img src="http://farm5.static.flickr.com/4005/4418724473_ee71251f47_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
<br />
<span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/athas_orm/4418724473/">Connor gazing at ceiling</a><br />
<br />
Originally uploaded by <a href="http://www.flickr.com/people/athas_orm/">Athas-orm</a><br />
</span>
</div>
<p>This is one of my favourite pictures of Connor at the moment. </p>
<p>I really want to post a bit more here but I can never find the time to get around to it. Pretty busy with the model in this photograph.</p>
<p>Anyway Its good to put something here so enjoy.<br />
<br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wesley-acheson.com/2010/uncategorized/connor-gazing-at-ceiling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saturday Morning Churros</title>
		<link>http://www.wesley-acheson.com/2010/uncategorized/saturday-morning-churros/</link>
		<comments>http://www.wesley-acheson.com/2010/uncategorized/saturday-morning-churros/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 21:01:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fatherhood]]></category>

		<guid isPermaLink="false">http://www.wesley-acheson.com/?p=52</guid>
		<description><![CDATA[On Saturday mornings I often take Connor into the square in town for Churros. Churros are a Spanish type of batter which they eat as breakfast. These are taken the same day as &#8220;blurry&#8221; Anyway he loves them. I don&#8217;t want to forget how excited he gets about them. Once they arrive he really digs [...]]]></description>
			<content:encoded><![CDATA[<p>On Saturday mornings I often take Connor into the square in town for Churros. Churros are a Spanish type of batter which they eat as breakfast. These are taken the same day as <a href="http://www.wesley-acheson.com/2010/photography/blurry/">&#8220;blurry&#8221;</a></p>
<p>Anyway he loves them. I don&#8217;t want to forget how excited he gets about them.  Once they arrive he really digs in.  This Saturday he ate nearly a whole plate of them himself. It was a good morning. Nice and warm in the sun. Sitting there drinking my coffee. He was alternating between his Churros and a glass of pineapple juice.</p>
<p>I even managed to get a couple of shots in.</p>
<div id="attachment_53" class="wp-caption alignnone" style="width: 480px"><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/02/churros-e1265143935410.jpg"><img src="http://www.wesley-acheson.com/wp-content/uploads/2010/02/churros-e1265143935410.jpg" alt="He really enjoyes these Churros. I know that It looks like a dainty bite but believe me its not." title="Saturday Breakfast" width="470" height="705" class="size-full wp-image-53" /></a><p class="wp-caption-text">Connor enjoying Churros in Casemates.</p></div>
<a href="http://www.wesley-acheson.com/wp-content/uploads/2010/02/crazy1.jpg"><img src="http://www.wesley-acheson.com/wp-content/uploads/2010/02/crazy1-862x1024.jpg" alt="Connor doing his crazy act." title="Crazy" width="560" height="665" class="size-large wp-image-55" /></a>
]]></content:encoded>
			<wfw:commentRss>http://www.wesley-acheson.com/2010/uncategorized/saturday-morning-churros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blurry</title>
		<link>http://www.wesley-acheson.com/2010/photography/blurry/</link>
		<comments>http://www.wesley-acheson.com/2010/photography/blurry/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 01:29:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.wesley-acheson.com/?p=47</guid>
		<description><![CDATA[Blurry Thats not something you want your photos to be or is it. This morning I was out with Connor my son. And I deliberately took a blurry photograph of him. I was trying to do something different you know. So he was out of focus in the background. I couldn&#8217;t get him to look [...]]]></description>
			<content:encoded><![CDATA[<p>Blurry</p>
<p>Thats not something you want your photos to be or is it.</p>
<p>This morning I was out with Connor my son. And I deliberately took a blurry photograph of him.  I was trying to do something different you know. So he was out of focus in the background.  </p>
<p>I couldn&#8217;t get him to look up which is a shame but anyway by pure coincidence when I checked out a site I&#8217;ve been visiting recently <a href="http://digital-photography-school.com">http://digital-photography-school.com</a> and this was one of the new pages. </p>
<p>So I thought I&#8217;d put the photo up here and enter it as a submission. So there you go.</p>
<p>Does it work? I&#8217;ve no idea but I find it interesting and I think that&#8217;s probably good enough at the moment. So without further ado. </p>
<div id="attachment_46" class="wp-caption alignnone" style="width: 570px"><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/blur.jpg"><img src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/blur-small.jpg" alt="Appreciation for distance." title="blur" width="560" height="372" class="size-large wp-image-46" /></a><p class="wp-caption-text">Appreciation for distance.</p></div>
<p>Anyway let me know what you think I&#8217;d love to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wesley-acheson.com/2010/photography/blurry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Lunar Image</title>
		<link>http://www.wesley-acheson.com/2010/photography/new-lunar-image/</link>
		<comments>http://www.wesley-acheson.com/2010/photography/new-lunar-image/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:25:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.wesley-acheson.com/?p=32</guid>
		<description><![CDATA[Okay so I&#8217;ve been out photographing the moon again. I tried at two seperate times tonight. The first time went quite well so I was pleased with that. However I felt the focus could have been a bit better on the subject. The second time I went out with more or less the same settings [...]]]></description>
			<content:encoded><![CDATA[<p>Okay so I&#8217;ve been out photographing the moon again.  I tried at two seperate times tonight.  The first time went quite well so I was pleased with that.  However I felt the focus could have been a bit better on the subject. The second time I went out with more or less the same settings however I tried to manually focus on the moon.</p>
<p>It all looked great through the view finder so I set the exposure compensation to -2 stops (the minimum on my camera) and the exposure bracketing to +-2. So basically that was one photo at -4 one at -2 and one at 0. However disaster even with these settings when I clicked the shutter It was over exposing the image. (I took 50 shots and verified on the computer but not even one of them was properly exposed).  Looking at the EXIF data they were a lot slower than the origional shots so what am I doing wrong? I&#8217;m not sure what metering mode my camera was in. Update: I just turned it on now and it was in partial metering mode.  </p>
<p>Is it because the sky was lighter in my original shots that the camera chose a different time for the shots one which gave good exposure?  Indeed I took the photograph when the sky was still blue. (but not very blue). How do I get decent exposure?</p>
<p>Anyway here is my favourite attempt from the first shoot. I&#8217;ve had to increase sharpness in raw mode and also add back in some brightness.<a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/moon-detail.jpg"><img src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/moon-detail.jpg" alt="Hey its the moon." title="Detailed shot of the moon" width="524" height="538" class="alignnone size-full wp-image-33" /></a></p>
<p><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/Black_white_moon.jpg"><img src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/Black_white_moon.jpg" alt="" title="Black_white_moon" width="553" height="595" class="alignnone size-full wp-image-34" /></a></p>
<p>If anyone would tell me how to get correct exposure I&#8217;d be grateful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wesley-acheson.com/2010/photography/new-lunar-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Processed moon.</title>
		<link>http://www.wesley-acheson.com/2010/photography/processed-moon/</link>
		<comments>http://www.wesley-acheson.com/2010/photography/processed-moon/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 23:18:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.wesley-acheson.com/?p=26</guid>
		<description><![CDATA[Finally I&#8217;ve got an image of the moon that I&#8217;m happy with so here it is. I&#8217;m not sure which version I prefer so any comments on this will be greatly appreciated.]]></description>
			<content:encoded><![CDATA[<p>Finally I&#8217;ve got an image of the moon that I&#8217;m happy with so here it is.</p>
<div id="attachment_27" class="wp-caption alignnone" style="width: 570px"><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/new-working-copy3.jpg"><img src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/new-working-copy3-989x1024.jpg" alt="" title="black and white" width="560" height="579" class="size-large wp-image-27" /></a><p class="wp-caption-text">The Moon.</p></div>
<p><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/bluetint.jpg"><img src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/bluetint-989x1024.jpg" alt="" title="bluetint" width="560" height="579" class="alignnone size-large wp-image-28" /></a></p>
<p>I&#8217;m not sure which version I prefer so any comments on this will be greatly appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wesley-acheson.com/2010/photography/processed-moon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Camera Fun</title>
		<link>http://www.wesley-acheson.com/2010/uncategorized/more-fun/</link>
		<comments>http://www.wesley-acheson.com/2010/uncategorized/more-fun/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:55:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[eye]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[gibraltar]]></category>
		<category><![CDATA[grayscale]]></category>
		<category><![CDATA[harbour]]></category>
		<category><![CDATA[HDR]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[ocean village]]></category>
		<category><![CDATA[Post Processing]]></category>

		<guid isPermaLink="false">http://www.wesley-acheson.com/?p=14</guid>
		<description><![CDATA[In my first post about getting a DSLR camera. I promised that I&#8217;d put up a few examples of pictures that I wouldn&#8217;t have attempted to take if I was using a film camera.  So I guess I really should, so here they are. Okay first up is an HDR image of Ocean Village Gibraltar.  [...]]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://www.wesley-acheson.com/2010/photography/new-dslr-camera/">first post</a> about getting a DSLR camera. I promised that I&#8217;d put up a few examples of pictures that I wouldn&#8217;t have attempted to take if I was using a film camera.  So I guess I really should, so here they are.</p>
<p>Okay first up is an HDR image of Ocean Village Gibraltar.  HDR images may have been possible before but digital but if they were they would have been really difficult.  Basically taken using three shots one light one dark and one normal.  These are then combined in the computer.  I like the cold feel to it and the unnatural look.</p>
<p><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/ov.jpg"><img class="size-medium wp-image-15 alignnone" title="Ocean Village Gibraltar" src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/ov-238x300.jpg" alt="Ocean Village Gibraltar" /></a></p>
<p>Secondly we have an Image of the Moon. I really like the way it came out composition wise but I&#8217;m still trying to get a final edit of this one that shows the detail of the moon very clearly.  I ended up taking over 100 shots with my camera with a 300mm lens at full zoom to try to get this photograph.  The reason it took so many is I was trying to hold the camera steady <strong>by hand</strong>. Anyone who has used one of these lenses will tell you thats not an easy prospect.</p>
<p>To get any image at all I needed to turn the camera up to its highest ISO so the shot was taken quickly.  ISO is basically the sensitivity to light.  Unfortunately this has brought up a lot of noise.  I hope on a later date to be able to fix this on up to the point where I&#8217;m happy with it.</p>
<p><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/moonrise.jpg"><img class="alignnone size-medium wp-image-16" title="Moon Rise" src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/moonrise-232x300.jpg" alt="Moon rising behind tower." width="232" height="300" /></a></p>
<p>The next one I&#8217;ve taken twice with two very different effects applied in Post processing. They are pictures of my eye. Yes I took a photograph of my eye. This certainly felt stupid. Thank goodness for auto focus on the camera :p.</p>
<div id="attachment_17" class="wp-caption alignnone" style="width: 310px"><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/eye.jpg"><img class="size-medium wp-image-17" title="eye" src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/eye-300x200.jpg" alt="I hope that nobody finds a way to turn this into an iris scan." width="300" height="200" /></a><p class="wp-caption-text">My Eye</p></div>
<p><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/watching-you-e1263933598931.jpg"><img class="alignnone size-medium wp-image-18" title="watching you" src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/watching-you-300x136.jpg" alt="" width="300" height="136" /></a></p>
<p>Finally you can see I&#8217;ve also been experimenting with black and white.  I&#8217;m pretty pleased with this shot.</p>
<p><a href="http://www.wesley-acheson.com/wp-content/uploads/2010/01/clock_tower_grey.png"><img class="alignnone size-medium wp-image-19" title="Clock Tower" src="http://www.wesley-acheson.com/wp-content/uploads/2010/01/clock_tower_grey-227x300.png" alt="A night time image of the top of a building." width="227" height="300" /></a></p>
<p>Anyway there you have it.</p>
<p>A decent tutorial for HDR can be found at <a title="HDR Tutorial" href="http://www.stuckincustoms.com/hdr-tutorial/">http://www.stuckincustoms.com/hdr-tutorial/</a> however I find the article itself to be a bit spammy.  There are wonderful examples on this page and the pages that follow however.</p>
<p>I didn&#8217;t us this I just used Paint Shop pro X however for my pictures.  I&#8217;ve seen some good video tutorials for this on youtube but I can&#8217;t find them right at the moment.</p>
<p>You can read more about ISO over at <a href="http://en.wikipedia.org/wiki/Film_speed">wikipedia</a>.</p>
<p>The last link I&#8217;ll leave you with explains <a href="http://photo.net/learn/digital-post-processing/">Post Processing</a>.</p>
<p>So as you can all see I&#8217;m really having fun at the moment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wesley-acheson.com/2010/uncategorized/more-fun/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New DSLR camera.</title>
		<link>http://www.wesley-acheson.com/2010/photography/new-dslr-camera/</link>
		<comments>http://www.wesley-acheson.com/2010/photography/new-dslr-camera/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 22:43:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.wesley-acheson.com/wordpress/?p=7</guid>
		<description><![CDATA[Over Christmas I was given a DSLR Camera. This is something that I have wanted for quite a while. I used a SLR camera in the past and although I really liked the photographs that I took with it, they were just snapshots.  I mean I just took the standard things, pictures of my family [...]]]></description>
			<content:encoded><![CDATA[<p>Over Christmas I was given a <a href="http://www.google.com.gi/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;ved=0CAcQFjAA&amp;url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FDigital_single-lens_reflex_camera&amp;ei=ujtSS-a8N9W24QaKvfSGCQ&amp;usg=AFQjCNFNY-1ZMRpdtz6PxnfxvxW4SiA7rg&amp;sig2=iMdxCY0tyFdYRJAZoIaCCQ">DSLR </a>Camera. This is something that I have wanted for quite a while. I used a SLR camera in the past and although I really liked the photographs that I took with it, they were just snapshots.  I mean I just took the standard things, pictures of my family etc, in automatic mode. I couldn&#8217;t learn how to use the camera properly because well it just wasn&#8217;t possible to experiment without taking rolls and rolls of film and getting that developed.</p>
<p>I&#8217;m much happier with the new situation, I&#8217;ve taken over 800 photographs since Christmas day.  Most are not good In fact I would go so far to say that a much smaller percentage of them are keepers but that&#8217;s just because I couldn&#8217;t take risks in the past. I&#8217;ve got some things together that I don&#8217;t know that I&#8217;d ever have tried before and I&#8217;ve had a lot of fun doing it.</p>
<p>I do want to get better though.  I really do, a college of mine at work is also very interested in getting a DSLR.  Sure its going to be more expensive than mine and I&#8217;ll probably be jealous but its going to be great to have someone to talk to who&#8217;s also sharing the same interests. He&#8217;s primarily interested in <a href="http://en.wikipedia.org/wiki/Long_exposure_photography">long exposures</a> as far as I can tell. Anyway he sent me a link to <a href="http://digital-photography-school.com">Digital Photography School</a> which I think has some wonderful learning resources on it. To be honest he just sent me a link to some wonderful examples of long exposures. <a href="http://digital-photography-school.com/long-exposure-photography">http://digital-photography-school.com/long-exposure-photography</a></p>
<p>Anyway that&#8217;s pretty much it for the moment.  I&#8217;m going to post a couple of examples of photographs that I&#8217;ve taken that I wouldn&#8217;t have taken before later.  Don&#8217;t be too critical I&#8217;m just learning.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wesley-acheson.com/2010/photography/new-dslr-camera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

