<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>What's Chris Doing?</title>
	<link>http://whatschrisdoing.com/blog</link>
	<description>Programming, photography, music and life.</description>
	<pubDate>Fri, 10 Oct 2008 16:49:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>More ISAPI-WSGI and TurboGears</title>
		<link>http://whatschrisdoing.com/blog/2008/07/27/more-isapi-wsgi-and-turbogears/</link>
		<comments>http://whatschrisdoing.com/blog/2008/07/27/more-isapi-wsgi-and-turbogears/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 02:26:22 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2008/07/27/more-isapi-wsgi-and-turbogears/</guid>
		<description><![CDATA[Apparently my last post was not sufficiently detailed for some people.  Well, okay, so far only one person, but I am sure I will eventually get a deluge of comments asking for clarification, so I decided to beat them to it :)
The best place to start is at the beginning.  IIS exposes a [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently my <a href="http://whatschrisdoing.com/blog/2008/07/10/turbogears-isapi-wsgi-iis/">last post</a> was not <a href="http://compoundthinking.com/blog/index.php/2008/07/25/host-tg-on-iis/#comment-211784">sufficiently detailed</a> for some people.  Well, okay, so far only <a href="http://www.jaraco.com/">one person</a>, but I am sure I will eventually get a deluge of comments asking for clarification, so I decided to beat them to it :)</p>
<p>The best place to start is at the beginning.  IIS exposes a programming interface through DLLs that can be loaded into IIS called ISAPI.  There are two flavours of ISAPI, <a href="http://msdn.microsoft.com/en-us/library/ms525282.aspx">extensions</a> and <a href="http://msdn.microsoft.com/en-us/library/ms525103.aspx">filters</a>.  Filters operate against every request, while extensions target particular file types.  Often filters are used to implement things like <a href="http://www.codeplex.com/IIRF">URL rewriters</a> and gzip encoders, while extensions are used to add new file type handlers like php and asp.  Extensions can also handle .* files, which is special IIS lingo for &#8220;send all requests to this extension&#8221;.</p>
<p>The first problem we have is that we need to create a DLL that is loadable by IIS and exposes the expected interface.  Luckily <a href="http://sourceforge.net/projects/pywin32/">Python for Windows Extensions</a> provides a method for doing just that.  As part of the distribution, you get PyISAPI_loader.dll which can be found in the isapi module under site packages.  This DLL can be copied out into your work folder and renamed with a leading underscore, something like <tt>_tgload.dll</tt>.  When added to your IIS web site and loaded, it will embed python into IIS and load a python file that is named like the DLL but without the underscore (<tt>tgload.py</tt>).  </p>
<p>You can program for either ISAPI filters or extensions with this DLL as the interface that IIS expects does not conflict and is dictated by how you load the DLL.  In our case we are creating an extension, so we add the DLL via the application settings section of the tab that might be named one of &#8220;virtual directory&#8221;, &#8220;home directory&#8221; or just plain &#8220;directory&#8221;.  If you haven&#8217;t already done so you will need to click the &#8220;Create&#8221; button.  Click the &#8220;Configuration&#8230;&#8221; button to open the &#8220;Application Configuration&#8221; dialog.  Under the mappings tab, remove all of the existing application mappings and add a new one.  The executable should point to the dll from above, which does not need to and should not exist in the directory that would normally be served by IIS.  Set the extension to &#8220;.*&#8221; in order to catch all URLs, select &#8220;All Verbs&#8221; and uncheck both &#8220;Script Engine&#8221; and &#8220;Check that file exists&#8221;.</p>
<p>Programming an ISAPI extension in Python is essentially the same as in C because the isapi module that ships with Python for Windows Extensions does an excellent job of emulating the native interface.  <a href="http://msdn.microsoft.com/en-us/library/ms524338.aspx">Microsoft&#8217;s documentation applies</a> equally well to Python as it does to C.  There are a couple of minor differences which I will document here as well as a couple of tips that will hopefully keep you from pulling your hair out when something goes wrong.  First, add the following lines to the top of your file:</p>
<pre>
import sys
if hasattr(sys, "isapidllhandle"):
    import win32traceutil
</pre>
<p>This will detect when the file is loaded as an ISAPI extension or filter DLL and redirect stdout and stderr to the win32traceutil output collector.  You can run the trace utility by executing <tt>python -m win32traceutil</tt> in order to see any output from your DLL, including uncaught exception backtraces.</p>
<p>You also need to export the <tt>__ExtensionFactory__()</tt> function, which returns an object that exposes the <tt>GetExtensionVersion</tt>, <tt>HttpExtensionProc</tt> and <tt>TerminateExtension</tt> methods that operate as described in the Microsoft documentation with the exception that the first variable passed will be <tt>self</tt>.</p>
<p>Luckily you don&#8217;t need to worry about the details of how all this works, because <a href="http://code.google.com/p/isapi-wsgi/">ISAPI-WSGI</a> provides this object for you.  It translates the ISAPI interface into the Python <a href="http://www.wsgi.org/">WSGI</a> interface.  If you haven&#8217;t heard of it before, WSGI is <b>THE</b> standard for connecting Python applications to web servers in all their forms.  At this point all of the Python Frameworks talk WSGI so it is a pretty good bet for being able to connect to a Python Web app. </p>
<p>ISAPI-WSGI provides 2 flavours of ISAPI interface objects, <tt>ISAPISimpleHandler</tt> and <tt>ISAPIThreadPoolHandler</tt>.  The <tt>ISAPISimpleHandler</tt> can only handle one request at a time, while the <tt>ISAPIThreadPoolHandler</tt> does not block IIS and offloads the handling of the URL onto a pool of threads that call back into IIS when there is data to transmit back to the client.  The exposed interface is identical, so you can go ahead and use whatever your are comfortable with.</p>
<p>Okay so we are going to be returning an instance of <tt>ISAPISimpleHandler</tt> or <tt>ISAPIThreadPoolHandler</tt> from our module&#8217;s <tt>__ExtensionFactory__()</tt> function.  All we need to do is instantiate our choice of object and pass it our WSGI App interface.  For TurboGears, all of our HTTP requests are handled by <a href="http://cherrypy.org">CherryPy</a> so we need to dig into how CherryPy exposes a WSGI App.  That is what my <a href="http://whatschrisdoing.com/blog/2008/07/10/turbogears-isapi-wsgi-iis/">previous article</a> is supposed to explain.</p>
<p>All of this should work without a hitch on 32bit Windows, but 64bit opens up a whole big set of problems.  You cannot load 32bit DLLs into 64bit applications.  There is no <em>official</em> build of the Python for Windows Extensions.  I was able to find an <a href="http://mail.python.org/pipermail/python-list/2007-January/423258.html">old build for Python 2.4</a> and a <a href="http://sourceforge.net/project/platformdownload.php?group_id=78018">current (official) build for Python 2.6</a>, but I found no version for Python 2.5.</p>
<p>Now this does not mean you are dead in the water, IIS 6 (Windows Server 2003 and Windows XP) will let you choose to run IIS in 32bit mode, but <em>everything</em> must run in 32 bit mode.  If you want to do this, <a href="http://www.google.ca/search?q=asp.net+1+windows+x64&#038;ie=utf-8&#038;oe=utf-8&#038;aq=t&#038;rls=org.mozilla:en-GB:official&#038;client=firefox-a">search for ASP.NET 1.x and Windows x64</a>.  If you are sharing the server with other apps that you want to be running in 64bit, like ASP or ASP.NET 2+, you will need to find an alternative deployment method (I am going with TurboGears and IIS behind an Apache reverse proxy).  If you are on IIS 7 (Windows Server 2008 and Windows Vista) you can configure individual application pools to run in either 64bit or 32bit mode.  I don&#8217;t have access to an IIS 7 server to try it out.  Anyone who can should report back in the comments.</p>
<p>Hopefully that fills the gaps that I left in the last article.  I&#8217;ll leave it to someone else to distill this into newbie friendly documentation that can go on the TurboGears or ISAPI-WSGI Web sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2008/07/27/more-isapi-wsgi-and-turbogears/feed/</wfw:commentRss>
		</item>
		<item>
		<title>TurboGears + ISAPI-WSGI + IIS</title>
		<link>http://whatschrisdoing.com/blog/2008/07/10/turbogears-isapi-wsgi-iis/</link>
		<comments>http://whatschrisdoing.com/blog/2008/07/10/turbogears-isapi-wsgi-iis/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 17:18:08 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2008/07/10/turbogears-isapi-wsgi-iis/</guid>
		<description><![CDATA[On June 19, 2008, Louis wrote to the isapi_wsgi-dev Google Group asking about how to get CherryPy to work with ISAPI-WSGI.  Since ISAPI-WSGI was how I was going to connect my Turbo Gears app up to IIS, I recording what I did here for posterity.
The first caveat to this is that you will not [...]]]></description>
			<content:encoded><![CDATA[<p>On June 19, 2008, Louis <a href="http://groups.google.com/group/isapi_wsgi-dev/browse_thread/thread/310c8e3de00d22e5">wrote</a> to the <a href="http://groups.google.com/group/isapi_wsgi-dev">isapi_wsgi-dev</a> Google Group asking about how to get <a href="http://www.cherrypy.org/">CherryPy</a> to work with <a href="http://code.google.com/p/isapi-wsgi/">ISAPI-WSGI</a>.  Since ISAPI-WSGI was how I was going to connect my <a href="http://turbogears.com/">Turbo Gears</a> app up to IIS, I recording what I did here for posterity.</p>
<p>The first caveat to this is that you will not get this to work with IIS in 64 bit mode unless you can get a build of <a href="http://sourceforge.net/projects/pywin32/">PyWin32</a> for x64.  If you running a 64bit Windows architecture you will need to set IIS to 32bit mode and only run 32bit ISAPI dlls.  On IIS6 (Windows 2003/XP) this will mean you can only run 32bit DLLs.  If you are using IIS7 (Windows 2008), you will, apparently, be able to have 64bit and 32bit process pools.  This situation could get better in Python 2.6 since PyWin32 seems to have a x64 build for the 2.6 alphas. </p>
<p>Okay, on to the explanation.  The first thing to do in your DLL Python file, is to include these lines:</p>
<pre>
import sys
if hasattr(sys, "isapidllhandle"):
    import win32traceutil
</pre>
<p>This checks that we are running as an ISAPI DLL and imports win32traceutil, which redirects stdin and stdout so that you can view them with the win32traceutil message collector (just run the module on its own: python -m win32traceutil).  If things go wrong, at least you will have a way of knowing what is going wrong.</p>
<p>My __ExtensionFactory__() looks like this:</p>
<pre>
def __ExtensionFactory__():
    # Do some pre import setup
    import os

    app_dir = os.path.join(os.path.dirname(__file__), '..', 'app')
    app_dir = os.path.normpath(app_dir)
    sys.path.append(app_dir)
    os.chdir(app_dir)

    # import my app creator
    import wsgi_myapp
    return ISAPIThreadPoolHandler(wsgi_myapp.wsgiApp)
</pre>
<p>In the do some pre-import setup, we add the application dir to the import path and change directories so that the current working dir is where the TurboGears app is (start-yourproject.py).</p>
<p>Then I have the module that sets up the TurboGears/CherryPy WSGI app.  I started with the TurboGears start-yourapp.py file and made modifications that were appropriate for making it work properly with WSGI:</p>
<pre>
#!c:Python25python.exe
from turbogears import config, update_config
import cherrypy
cherrypy.lowercase_api = True

# first look on the command line for a desired config file,
# if it's not on the command line, then
# look for setup.py in this directory. If it's not there, this script is
# probably installed
update_config(configfile="prod.cfg",modulename="yourapp.config")
config.update(dict(package="yourapp"))

from yourapp.controllers import Root

cherrypy.root = Root()
cherrypy.server.start(initOnly=True, serverClass=None)

from cherrypy._cpwsgi import wsgiApp
</pre>
<p>The CherryPy critical components (for CherryPy 2.2) are:</p>
<pre>
# Grab your Root object
from yourapp.controllers import Root

# set the root object and initialize the server
cherrypy.root = Root()
cherrypy.server.start(initOnly=True, serverClass=None)

# expose the wsgiApp to be imported by the isapidll.py file above.
from cherrypy._cpwsgi import wsgiApp
</pre>
<p>Louis is using CherryPy 3 which changes things slightly from what I have done.  CherryPy 3 is all WSGI all the time so we need to do less fiddling.  Here is what he had for __ExtensionFactory__():</p>
<pre>
def __ExtensionFactory__():
    try:
        #cpwsgiapp = cherrypy.Application(HelloWorld(),'F:python-work')
        app = cherrypy.tree.mount(HelloWorld())
        cherrypy.engine.start(blocking=False)
        #wsgi_apps = [('/blog', blog), ('/forum', forum)]

        #server = wsgiserver.CherryPyWSGIServer(('localhost', 8080), HelloWorld(), server_name='localhost')

        return isapi_wsgi.ISAPISimpleHandler(app)
    finally:
        # This ensures that any left-over threads are stopped as well.
        cherrypy.engine.stop()
</pre>
<p>I left in his extra comments because they show how he got to where he is.  This looks like the basic start a server code shown in the tutorial.  I think the key issues here are the cherrypy.engine calls.  The <a href="http://www.cherrypy.org/wiki/WSGI">CherryPy WSGI Wiki page</a> does not mention the engine at all.  I would guess that what he actually needs is:</p>
<pre>
def __ExtensionFactory__():
    app = cherrypy.tree.mount(HelloWorld())
    return isapi_wsgi.ISAPISimpleHandler(app)
</pre>
<p>That said, I have not used CherryPy 3, so I have no direct experience.</p>
<p><b>Update</b>: Don&#8217;t use autoreload with ISAPI-WSGI.  It won&#8217;t work and if you don&#8217;t use the win32traceutil you won&#8217;t know why. </p>
<p>Also, I have added more background detail on how to use ISAPI with Python and the ISAPI-WSGI package <a href="http://whatschrisdoing.com/blog/2008/07/27/more-isapi-wsgi-and-turbogears/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2008/07/10/turbogears-isapi-wsgi-iis/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kids Christmas 2007</title>
		<link>http://whatschrisdoing.com/blog/2007/12/18/kids-christmas-2007/</link>
		<comments>http://whatschrisdoing.com/blog/2007/12/18/kids-christmas-2007/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 01:09:49 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[Amara]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2007/12/18/kids-christmas-2007/</guid>
		<description><![CDATA[ We hosted a little Christmas party for our friend&#8217;s kids and Amara today.  The youngest of the bunch is pictured on the right.  Click the picture to see all the pictures I took.

]]></description>
			<content:encoded><![CDATA[<p><a href="http://whatschrisdoing.com/gallery/v/events/kids_christmas_2007/"><img vspace="5" hspace="10" border="1" align="right" src="http://whatschrisdoing.com/gallery/d/20987-2/CRW_0754.jpg"/></a> We hosted a little Christmas party for our friend&#8217;s kids and Amara today.  The youngest of the bunch is pictured on the right.  Click the picture to see all the pictures I took.</p>
<div style="clear: both"></div>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2007/12/18/kids-christmas-2007/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing Windows XP on a New Computer Without a Floppy Drive</title>
		<link>http://whatschrisdoing.com/blog/2007/12/14/installing-windows-xp-on-a-new-computer-without-a-floppy-drive/</link>
		<comments>http://whatschrisdoing.com/blog/2007/12/14/installing-windows-xp-on-a-new-computer-without-a-floppy-drive/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 03:32:09 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2007/12/14/installing-windows-xp-on-a-new-computer-without-a-floppy-drive/</guid>
		<description><![CDATA[New computers with an Intel Chipset like this one support RAID and AHCI.  Unfortunately you can&#8217;t install Windows XP without the use of the F6 + driver disk method of loading drivers for installation, but only using a floppy.  What happens when you don&#8217;t have a floppy drive?  You have to jump [...]]]></description>
			<content:encoded><![CDATA[<p>New computers with an Intel Chipset like <a href="http://ca.asus.com/products.aspx?l1=3&#038;l2=11&#038;l3=571">this one</a> support RAID and AHCI.  Unfortunately you can&#8217;t install Windows XP without the use of the F6 + driver disk method of loading drivers for installation, but only using a floppy.  What happens when you don&#8217;t have a floppy drive?  You have to jump through hoops.</p>
<p>In my search for how to handle the situation, I quickly found <a href="http://prismatic.wordpress.com/2007/08/29/intel-keeps-me-on-my-toes/">this post</a> which sent me on the right track, in search of <a href="http://www.nliteos.com/">nLite</a> which allows you to add drivers directly to the Windows install CD.</p>
<p>Unfortunately, if you don&#8217;t happen to have another computer with a floppy drive both Intel and Asus make things even more difficult.  The Asus install CD has a make disk utility to create the driver disk, but requires a floppy drive in order to get at the drivers.  Intel does not make things much better.  They also provide a disk creation utility.  It happens that they use <a href="http://www.winimage.com/">WinImage</a>, which at least means you can extract the drivers, but it is unfortunate that they don&#8217;t just provide a zip disk.</p>
<p>Once I figured out that I HAD to use the drivers from the disk image, things went smoothly.</p>
<p>For those of you shocked that I actually installed Windows XP, the computer is in fact for me and XP is necessary for the work I will be doing with Kate starting in January when my paternity leave ends.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2007/12/14/installing-windows-xp-on-a-new-computer-without-a-floppy-drive/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Maybe I Should Have Been A Photographer</title>
		<link>http://whatschrisdoing.com/blog/2007/06/19/maybe-i-should-have-been-a-photographer/</link>
		<comments>http://whatschrisdoing.com/blog/2007/06/19/maybe-i-should-have-been-a-photographer/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 17:22:02 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[Amara]]></category>

		<category><![CDATA[Photography]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2007/06/19/maybe-i-should-have-been-a-photographer/</guid>
		<description><![CDATA[ The last couple of weeks I have been taking a lot of pictures.  Two weeks ago I took some pictures of some of my wife&#8217;s new mommy friends and their kids (see right).  This is the first of 3 get-togethers this group will have that we will attend before we move back [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://whatschrisdoing.com/gallery/v/events/mommies_2007_06_06/CRW_8868.jpg.html"><img vspace="5" hspace="10" border="1" align="right" src="http://whatschrisdoing.com/gallery/d/18137-2/CRW_8868.jpg"/></a> The last couple of weeks I have been taking a lot of pictures.  Two weeks ago I took some <a href="http://whatschrisdoing.com/gallery/v/events/mommies_2007_06_06/">pictures of some of my wife&#8217;s new mommy friends and their kids</a> (see right).  This is the first of 3 get-togethers this group will have that we will attend before we move back to Burlington.  The <a href="http://whatschrisdoing.com/gallery/v/events/mommies_2007_06_13/">second set</a>, from last Wednesday is already up and we are supposed to meet up with this group again tomorrow, which will hopefully also yield some good pictures.</p>
<p><a href="http://whatschrisdoing.com/gallery/v/events/mommies_2007_06_13/CRW_9054.jpg.html"><img vspace="5" hspace="10" border="1" align="left" src="http://whatschrisdoing.com/gallery/d/19075-2/CRW_9054.jpg"/></a>All the get-togethers are supposed to happen outside at a park, but it was too cold for the first one and we headed over to <a href="http://bayshore.shopping.ca/">Bayshore Mall</a>.  The <a href="http://www.theweathernetwork.com/index.php?product=historical&#038;placecode=caon0512">temperature issue sorted itself out</a> for last week&#8217;s get-together and so all of the pictures are outside.  Each environment proved to have tricky lighting conditions.  The mall had a mix of incandescent and fluorescent lighting that was sometimes too dim.  I punched some of the pictures up with a flash bounced off the ceiling, but found the children did not cooperate with being in the good light.</p>
<p>The second shoot, was supposedly at the wrong time of day to be shooting.  Best light is closest to dawn or dusk which provides a nice soft light, but we were shooting under the harsh mid day sun.  I think the fact that everyone was sitting under a shady tree worked out well.  There was plenty of light and the washed out sunny backgrounds look really good (above left).</p>
<p><a href="http://whatschrisdoing.com/gallery/v/events/TarasBridalShower/CRW_9024.jpg.html"><img vspace="5" hspace="10" border="1" align="right" src="http://whatschrisdoing.com/gallery/d/19240-2/CRW_9024.jpg"/></a>In between those two photographic opportunities I went to <a href="http://whatschrisdoing.com/gallery/v/events/TarasBridalShower/">my wife&#8217;s sister-in-law to be (Tara)&#8217;s bridal shower</a>.  Again the available light made things a bit challenging.  The pictures were taken between 3:30 and 5:30 which does not mean harsh mid day sun, but is still not the subdued soft lighting of dusk.  There was a lot of shots half in, half out of shade, as well as some with full on sun and a couple in door.  Even so, I think there were quite a number of good shots.  As kids tend to do, this little guy and his grandma (left) to the left provided the standout shots.  I&#8217;ll have to corner <a href="http://whatschrisdoing.com/gallery/v/events/TarasBridalShower/CRW_9008.jpg.html">Tara</a> and <a href="http://whatschrisdoing.com/gallery/v/events/TarasBridalShower/CRW_9046.jpg.html">Christian</a> at their wedding and make sure they get to be in a picture with some kids :)</p>
<p><a href="http://whatschrisdoing.com/gallery/v/events/SoulierBBQ/CRW_9200.jpg.html"><img vspace="5" hspace="10" border="1" align="left" src="http://whatschrisdoing.com/gallery/d/19292-2/CRW_9200.jpg"/></a>  On Saturday Kate and I visited with Mike and Maria and their kids for a <a href="http://whatschrisdoing.com/gallery/v/events/SoulierBBQ/">BBQ</a>.  I think I am getting the child photography thing down.  It helps that Jaan (left) and Aisha (below right) are too cute for words.  Between wanting to be photographed and being shy, they proved to be almost perfect photographic subjects.</p>
<p><a href="http://whatschrisdoing.com/gallery/v/events/SoulierBBQ/CRW_9193.jpg.html"><img vspace="5" hspace="10" border="1" align="right" src="http://whatschrisdoing.com/gallery/d/19283-2/CRW_9193.jpg"/></a>  Here again I was contending with what is supposed to not be ideal light, but I think the lighting really enhances the mood of these two photos.  Some of my success here is happy accident, but I have been getting more and more keeper shots, so I think some degree of my success is that I really am getting better at figuring out where to point the camera, what to keep in frame, when to take the picture and what to do about bad (and good) lighting.</p>
<p><a href="http://whatschrisdoing.com/gallery/v/amara/month4/CRW_9342.jpg.html"><img vspace="5" hspace="10" border="1" align="left" src="http://whatschrisdoing.com/gallery/d/19383-2/CRW_9342.jpg"/></a>I don&#8217;t just take pictures of other people&#8217;s kids.  If you have looked though the galleries linked above, you may have found one or two of <a href="http://whatsamaradoing.com/blog/">Amara</a>.  She of course also has her own <a href="http://whatschrisdoing.com/gallery/v/amara/">section in the gallery</a>. </p>
<p>Sunday was father&#8217;s day so I got a bit of a day off, both from picture taking and looking after Amara.  Kate took a <a href="http://whatschrisdoing.com/gallery/v/amara/month4/?g2_page=2">couple of pictures with Amara and I</a> in Strathcona Park to commemorate my first father&#8217;s day.  I think they turned out pretty well.  I didn&#8217;t totally stop taking pictures that day, I took this picture of Kate and Amara (left) at Strathcona Park also.</p>
<p>Some of the mothers from the get-togethers that did not know much about me, assumed from my comfort with the camera and the resulting pictures that I am a pro photographer.  I have also been getting more and more comments that my pictures look like they were taken by a professional.  Maybe I missed my calling.  In any case, I am seriously thinking about selling my services, at least as a child photographer, to help supplement the camera equipment lust that has developed over the last couple of years.  What do you think?  Would you pay me to photograph your child.  I am sure that I would be cheaper than <a href="http://www.canadianbaby.com/">Canadian Baby Photographers</a> and I would&#8217;t make you buy your prints through me :)</p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2007/06/19/maybe-i-should-have-been-a-photographer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>This Little Piggie Cried &#8220;Wii, Wii, Wii,&#8221; All The Way Home!</title>
		<link>http://whatschrisdoing.com/blog/2007/05/30/this-little-piggie-cried-wii-wii-wii-all-the-way-home/</link>
		<comments>http://whatschrisdoing.com/blog/2007/05/30/this-little-piggie-cried-wii-wii-wii-all-the-way-home/#comments</comments>
		<pubDate>Thu, 31 May 2007 04:01:18 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2007/05/30/this-little-piggie-cried-wii-wii-wii-all-the-way-home/</guid>
		<description><![CDATA[A Nintendo Wii has arrived in our family room.  We were in Wal-Mart today and they had them in stock.  It was the first time I have been anywhere when they had them in stock.  
We got the console plus an extra Wii Remote controller.  They were out of stock on [...]]]></description>
			<content:encoded><![CDATA[<p>A Nintendo <a href="http://wii.nintendo.com/">Wii</a> has arrived in our family room.  We were in <a href="http://walmart.ca">Wal-Mart</a> today and they had them in stock.  It was the first time I have been anywhere when they had them in stock.  </p>
<p>We got the <a href="http://wii.nintendo.com/console.jsp">console</a> plus an extra <a href="http://wii.nintendo.com/controller.jsp">Wii Remote controller</a>.  They were out of stock on the Nunchuck, and we opted out of getting the Classic Controller for the time being.  We did not get any other games so for the time being all we have is <a href="http://wii.nintendo.com/software_wiisports.jsp">Wii Sports</a></p>
<p>Wii Sports is super fun.  I worked up a sweat playing, but I am not sure if that is because I was working really hard or because the house is really hot.  It&#8217;s probably more about the house being hot ;)</p>
<p>The browser is also cool.  I can now watch <a href="http://youtube.com/">YouTube</a> and <a href="http://video.google.com/">Google Video</a> on my TV, but for some reason <a href="http://ted.com/talks">TED Talks</a> did not seem to work.  I&#8217;ll have to look into that.</p>
<p>In all I am quite impressed with my first little go with the Wii and can&#8217;t wait to play with it more.  Hmm&#8230;. Perhaps I will catch up on my sleep a bit first though.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2007/05/30/this-little-piggie-cried-wii-wii-wii-all-the-way-home/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Parental Leave</title>
		<link>http://whatschrisdoing.com/blog/2007/05/04/parental-leave/</link>
		<comments>http://whatschrisdoing.com/blog/2007/05/04/parental-leave/#comments</comments>
		<pubDate>Fri, 04 May 2007 20:56:50 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2007/05/04/parental-leave/</guid>
		<description><![CDATA[Amara is proving to be a demanding child and with no other support people to help Kate I have decided to go on parental leave.  My last work day before that happens is May 11.
]]></description>
			<content:encoded><![CDATA[<p>Amara is proving to be a demanding child and with no other support people to help Kate I have decided to go on parental leave.  My last work day before that happens is May 11.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2007/05/04/parental-leave/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Downtime</title>
		<link>http://whatschrisdoing.com/blog/2007/04/18/downtime/</link>
		<comments>http://whatschrisdoing.com/blog/2007/04/18/downtime/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 01:52:44 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2007/04/18/downtime/</guid>
		<description><![CDATA[I had a raid failure on Monday which prompted me to take the site down for a couple of days and subsequently move it to a hosting company.  I don&#8217;t think there is any loss of data, but it will probably be a few days until I get all of the pictures back up.
]]></description>
			<content:encoded><![CDATA[<p>I had a raid failure on Monday which prompted me to take the site down for a couple of days and subsequently move it to a hosting company.  I don&#8217;t think there is any loss of data, but it will probably be a few days until I get all of the pictures back up.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2007/04/18/downtime/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amara Has Her Own Blog</title>
		<link>http://whatschrisdoing.com/blog/2007/02/24/amara-has-her-own-blog/</link>
		<comments>http://whatschrisdoing.com/blog/2007/02/24/amara-has-her-own-blog/#comments</comments>
		<pubDate>Sat, 24 Feb 2007 17:49:04 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[Amara]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2007/02/24/amara-has-her-own-blog/</guid>
		<description><![CDATA[Amara now has her own blog.  I will put further updates about her there.  This site will be about things other than Amara and http://whatsamaradoing.com/blog will be about her.
I also moved the photo gallery around a bit.  Amara now has her own top level gallery where I will be adding pictures as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://whatschrisdoing.com/gallery/main.php?g2_itemId=6752"><img vspace="5" hspace="10" border="1" align="right" alt="Amara" title="Amara" src="http://whatschrisdoing.com/gallery/main.php?g2_view=core.DownloadItem&#038;g2_itemId=6754&#038;g2_serialNumber=4" /></a><a href="http://whatsamaradoing.com/blog/">Amara</a> now has her own blog.  I will put further updates about her there.  This site will be about things other than Amara and <a href="http://whatsamaradoing.com/blog/">http://whatsamaradoing.com/blog</a> will be about her.</p>
<p>I also moved the <a href="http://whatschrisdoing.com/gallery/">photo gallery</a> around a bit.  Amara now has her own <a href="http://whatschrisdoing.com/gallery/main.php?g2_itemId=6750">top level gallery</a> where I will be adding pictures as frequently as I can manage.  We&#8217;ll start with weekly sub galleries and see how it goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2007/02/24/amara-has-her-own-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>More Amara Pictures and A Video</title>
		<link>http://whatschrisdoing.com/blog/2007/02/23/more-amara-pictures-and-a-video/</link>
		<comments>http://whatschrisdoing.com/blog/2007/02/23/more-amara-pictures-and-a-video/#comments</comments>
		<pubDate>Fri, 23 Feb 2007 06:08:40 +0000</pubDate>
		<dc:creator>Christopher Lambacher</dc:creator>
		
		<category><![CDATA[Amara]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://whatschrisdoing.com/blog/2007/02/23/more-amara-pictures-and-a-video/</guid>
		<description><![CDATA[There are new pictures here.  We are also moving the videos to YouTube to let them provide the bandwidth.  Here is a new video for your enjoyment:


]]></description>
			<content:encoded><![CDATA[<p>There are new pictures <a href="http://whatschrisdoing.com/gallery/main.php?g2_itemId=6752">here</a>.  We are also moving the videos to <a href="http://youtube.com">YouTube</a> to let them provide the bandwidth.  Here is a new video for your enjoyment:<br />
<object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/JguCdwroy80"></param><embed src="http://www.youtube.com/v/JguCdwroy80" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://whatschrisdoing.com/blog/2007/02/23/more-amara-pictures-and-a-video/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
