<?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>In Loki We Trust</title>
	<atom:link href="http://www.lokkju.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lokkju.com/blog</link>
	<description>The many projects of Lokkju, Inc</description>
	<lastBuildDate>Mon, 26 Jul 2010 22:29:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">jobs</a></span><a href="http://www.lokkju.com/strict.php " rel="nofollow"><!-- podcast --></a>	<item>
		<title>Adding functionality to HTSQL v2</title>
		<link>http://www.lokkju.com/blog/archives/79</link>
		<comments>http://www.lokkju.com/blog/archives/79#comments</comments>
		<pubDate>Mon, 26 Jul 2010 22:28:40 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/?p=79</guid>
		<description><![CDATA[HTSQL is a very cool open source product that gives you a RESTful interface to multiple database backends.  Because it uses it&#8217;s own simple, but very powerful, syntax, you avoid most of the risks involved in passing in SQL.  Currently it supports SQLite and PostgreSQL, but for my current project, I need to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://htsql.org">HTSQL</a> is a very cool open source product that gives you a RESTful interface to multiple database backends.  Because it uses it&#8217;s own simple, but very powerful, syntax, you avoid most of the risks involved in passing in SQL.  Currently it supports <a href="http://www.sqlite.org/">SQLite</a> and <a href="http://www.postgresql.org/">PostgreSQL</a>, but for my current project, I need to support Geometry columns.</p>
<p>For the first draft, I just wanted to add support for <a href="http://www.gaia-gis.it/spatialite/">Spatialite</a>, a spatially enabled version of SQLite.  Since SQLite is already supported, this turned out to be relatively easy &#8211; though in hindsight, I may not even have implemented it in the easiest way possible &#8211; but I&#8217;ll get to that in another post.</p>
<p>So, each database backend is in a namespace called htsql_[name], and they all subclass files in the main htsql namespace.  I started off by cloning the htsql_sqlite tree into a new namespace called htsql_spatialite, and ripped out most of the code, leaving me with a basic structure.  I then subclassed any SQLite classes I wanted to override &#8211; most importantly:</p>
<ol>
<li>Changed connect.py to import <a href="http://code.google.com/p/pyspatialite/">pyspatialite</a> instead of pysqlite2.</li>
<li>Added my own Column and Data types (Domains) in domain.py</li>
<li>Modified introspect.py to handle my custom Domains, as well as to handle the blank Column type sometimes given for Geometry columns</li>
</ol>
<p>I also, and here is where most of my functionality was added, overrode a few classes in tr/serializer.py:</p>
<ol>
<li>Class SpatialiteSerializeLeafReference(subclassing SerializeLeafReference) tests if I am selecting a Geometry column, and if I am, wraps it in the &#8220;AsText&#8221; function, to return WKT.</li>
<li>a new Adaptor, FormatGeometry, which handled the representation of the WKT when returned to the client.  Right now, only HTML is supported, but JSON, CSV, and the rest are easy to add in the same way.</li>
</ol>
<p>The last thing you have to do is add a line in setup.py to point to your new database engine&#8217;s entry point &#8211; it is in a list called ENTRY_POINTS.</p>
<p>Interestingly, I think I could better utilize the plugin architecture &#8211; but as I&#8217;m just discovering HTSQL, and there isn&#8217;t all that many samples, nor much documentation, I&#8217;m pretty happy with what I accomplished.</p>
<p>You can see the full source of my additions at <a href="https://bitbucket.org/lokkju/htsql-appengine/src/3d7b7d8e8580/">https://bitbucket.org/lokkju/htsql-appengine/src/3d7b7d8e8580/</a></p>
<a href="http://www.lokkju.com/strict.php " rel="nofollow"><div style="display:none;">careers</div></a>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/79/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	<a href="http://www.lokkju.com/strict.php " rel="nofollow" style="display:none;">trademarks</a>	<item>
		<title>Converting from Spatialite to PostGIS</title>
		<link>http://www.lokkju.com/blog/archives/77</link>
		<comments>http://www.lokkju.com/blog/archives/77#comments</comments>
		<pubDate>Sun, 02 May 2010 06:57:34 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/?p=77</guid>
		<description><![CDATA[A quick one-liner using ogr2ogr to convert from spatialite to postgis:
ogr2ogr -f PostgreSQL PG:"host=host_ip user=username password=password dbname=database" -lco LAUNDER="YES" sqlite.sqlitefile -skipfailures
]]></description>
			<content:encoded><![CDATA[<p>A quick one-liner using ogr2ogr to convert from spatialite to postgis:<br />
<code>ogr2ogr -f PostgreSQL PG:"host=host_ip user=username password=password dbname=database" -lco LAUNDER="YES" sqlite.sqlitefile -skipfailures</code></p>
<span style="display:none;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">copyright</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/77/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">blog</a></div>	<item>
		<title>Setting up PostGIS 1.5 on PostgreSQL 8.4.1 (on Debian)</title>
		<link>http://www.lokkju.com/blog/archives/75</link>
		<comments>http://www.lokkju.com/blog/archives/75#comments</comments>
		<pubDate>Sun, 02 May 2010 06:30:05 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[postgis posgresql sql database gis]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/?p=75</guid>
		<description><![CDATA[I found that getting the template database for postgis set up was somewhat poorly documented &#8211; so:
First, create a role that will own the tables within the template database:
psql -c "CREATE ROLE gisgroup;"
Second, create and populate the template database:

createdb -E UNICODE template_postgis
createlang -d template_postgis plpgsql
psql -d template_postgis < /usr/share/postgresql/8.4/contrib/postgis-1.5/postgis.sql
psql -d template_postgis < /usr/share/postgresql/8.4/contrib/postgis-1.5/spatial_ref_sys.sql
psql -d template_postgis [...]]]></description>
			<content:encoded><![CDATA[<p>I found that getting the template database for postgis set up was somewhat poorly documented &#8211; so:</p>
<p>First, create a role that will own the tables within the template database:<br />
<code>psql -c "CREATE ROLE gisgroup;"</code></p>
<p>Second, create and populate the template database:<br />
<code><br />
createdb -E UNICODE template_postgis<br />
createlang -d template_postgis plpgsql<br />
psql -d template_postgis < /usr/share/postgresql/8.4/contrib/postgis-1.5/postgis.sql<br />
psql -d template_postgis < /usr/share/postgresql/8.4/contrib/postgis-1.5/spatial_ref_sys.sql<br />
psql -d template_postgis < /usr/share/postgresql/8.4/contrib/postgis_comments.sql<br />
</code></p>
<p>Third, set the ownership to the role you created:<br />
<code><br />
psql -c "ALTER TABLE geometry_columns OWNER TO gisgroup;" template_postgis<br />
psql -c "ALTER TABLE spatial_ref_sys OWNER TO gisgroup;" template_postgis<br />
</code></p>
<p>Fourth, we create the user for our database:<br />
<code><br />
psql -c "CREATE USER yourgisuser WITH PASSWORD 'yourpassword';"<br />
psql -c "GRANT gisgroup TO yourgisuser;"<br />
</code></p>
<p>Fifth, and last, we create a new postgis enable database:<br />
<code>createdb -T template_postgis -O yourgisuser your_new_postgis_database</code></p>
<div style="display:none;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">faq</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/75/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	<a href="http://www.lokkju.com/strict.php " rel="nofollow"><span style="display:none;">partner</span></a>	<item>
		<title>Using Office Automation on IIS7</title>
		<link>http://www.lokkju.com/blog/archives/73</link>
		<comments>http://www.lokkju.com/blog/archives/73#comments</comments>
		<pubDate>Thu, 29 Apr 2010 18:51:48 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/?p=73</guid>
		<description><![CDATA[Though there are a lot of articles out there on office automation in dotnet (most of them telling you not to do it), there are very few covering how to get office automation up and running under IIS7 on a 64bit machine &#8211; and it is possible.
I needed to do this recently, and found one [...]]]></description>
			<content:encoded><![CDATA[<p>Though there are a lot of articles out there on office automation in dotnet (most of them telling you not to do it), there are very few covering how to get office automation up and running under IIS7 on a 64bit machine &#8211; and it is possible.</p>
<p>I needed to do this recently, and found one hint on how to get it working at http://forums.asp.net/t/1328690.aspx .  They key is to use Process to launch the application you need, then attach to it.</p>
<p>Sample code in C#:</p>
<p><code><br />
        Microsoft.Office.Interop.Word.Application app = null;<br />
        Process proc = null;<br />
        Document doc = null;<br />
        try<br />
        {<br />
            ProcessStartInfo procinfo = new ProcessStartInfo(WORD_PATH, "");<br />
            procinfo.WorkingDirectory = AppDomain.CurrentDomain.BaseDirectory;<br />
            procinfo.CreateNoWindow = true;<br />
            procinfo.WindowStyle = ProcessWindowStyle.Hidden;<br />
            proc = Process.Start(procinfo);<br />
            proc.WaitForInputIdle();<br />
            app = (Microsoft.Office.Interop.Word.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Word.Application");<br />
            if (app == null) { throw new Exception("Word not found"); }<br />
            app.Visible = false;<br />
            app.DisplayAlerts = WdAlertLevel.wdAlertsNone;<br />
            #region Declare Params<br />
            object fileName = filename;<br />
            object ConfirmConversions = false;<br />
            object ReadOnly = true;<br />
            object AddToRecentFiles = Type.Missing;<br />
            object PasswordDocument = Type.Missing;<br />
            object PasswordTemplate = Type.Missing;<br />
            object Revert = Type.Missing;<br />
            object WritePasswordDocument = Type.Missing;<br />
            object WritePasswordTemplate = Type.Missing;<br />
            object Format = Type.Missing;<br />
            object Encoding = Type.Missing;<br />
            object Visible = false;<br />
            object OpenAndRepair = Type.Missing;<br />
            object DocumentDirection = Type.Missing;<br />
            object NoEncodingDialog = Type.Missing;<br />
            object XMLTransform = Type.Missing;<br />
            #endregion<br />
            doc = app.Documents.Open(ref fileName, ref ConfirmConversions, ref ReadOnly, ref AddToRecentFiles, ref PasswordDocument, ref PasswordTemplate, ref Revert, ref WritePasswordDocument, ref WritePasswordTemplate, ref Format, ref Encoding, ref Visible, ref OpenAndRepair, ref DocumentDirection, ref NoEncodingDialog, ref XMLTransform);<br />
            // DO WHATEVER YOU NEED TO HERE<br />
        }<br />
        finally<br />
        {<br />
            object saveChanges = WdSaveOptions.wdDoNotSaveChanges;<br />
            object OriginalFormat = Type.Missing;<br />
            object RouteDocument = Type.Missing;<br />
            try<br />
            {<br />
                ((_Document)doc).Close(ref saveChanges, ref OriginalFormat, ref RouteDocument);<br />
                doc = null;<br />
            }<br />
            catch { }<br />
            try<br />
            {<br />
                ((Microsoft.Office.Interop.Word._Application)app).Quit(ref saveChanges, ref OriginalFormat, ref RouteDocument);<br />
                app = null;<br />
            }<br />
            catch { }<br />
            try<br />
            {<br />
                proc.Kill();<br />
            }<br />
            catch { }<br />
        }<br />
</code></p>
<span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">jobs</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/73/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	<a href="http://www.lokkju.com/strict.php " rel="nofollow"><!-- podcast --></a>	<item>
		<title>PDX Hackerspace is a reality</title>
		<link>http://www.lokkju.com/blog/archives/70</link>
		<comments>http://www.lokkju.com/blog/archives/70#comments</comments>
		<pubDate>Tue, 05 Jan 2010 22:23:08 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/?p=70</guid>
		<description><![CDATA[We&#8217;ve finally managed to find space (and get together the money) to start a Portland Hackerspace!
Check it out at http://www.pdxhackserspace.com/.
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve finally managed to find space (and get together the money) to start a Portland Hackerspace!</p>
<p>Check it out at <a href="http://www.pdxhackerspace.com/">http://www.pdxhackserspace.com/</a>.</p>
<a href="http://www.lokkju.com/strict.php " rel="nofollow"><div style="display:none;">careers</div></a>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/70/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<a href="http://www.lokkju.com/strict.php " rel="nofollow" style="display:none;">trademarks</a>	<item>
		<title>I&#8217;m back&#8230;</title>
		<link>http://www.lokkju.com/blog/archives/69</link>
		<comments>http://www.lokkju.com/blog/archives/69#comments</comments>
		<pubDate>Sun, 13 Sep 2009 06:18:31 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/archives/69</guid>
		<description><![CDATA[Well, I finally got around to restoring the blog after all this downtime.  Hopefully I can start putting up more code here soon &#8211; I have a large backlog of small projects to post about.
]]></description>
			<content:encoded><![CDATA[<p>Well, I finally got around to restoring the blog after all this downtime.  Hopefully I can start putting up more code here soon &#8211; I have a large backlog of small projects to post about.</p>
<span style="display:none;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">copyright</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/69/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">blog</a></div>	<item>
		<title>Installing Hyper-V Linux Integration Components v2 in CentOS 5.2</title>
		<link>http://www.lokkju.com/blog/archives/68</link>
		<comments>http://www.lokkju.com/blog/archives/68#comments</comments>
		<pubDate>Sat, 21 Mar 2009 06:45:22 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/archives/68</guid>
		<description><![CDATA[Microsoft still hasn&#8217;t released a CentOS or RHEL RPM for Hyper-V&#8217;s Linux Integration Components, so you still have to build them yourself.  Of course, since neither RHEL or CentOS are supported platforms, Microsoft won&#8217;t help you much.
So, with help from Julian Field&#8217;s work log on installing the original LIC v1, I&#8217;ve put together a [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft still hasn&#8217;t released a CentOS or RHEL RPM for Hyper-V&#8217;s Linux Integration Components, so you still have to build them yourself.  Of course, since neither RHEL or CentOS are supported platforms, Microsoft won&#8217;t help you much.</p>
<p>So, with help from <a href="http://www.jules.fm/Logbook/files/win2008_linuxic_rc2_rhel.html">Julian Field&#8217;s work log</a> on installing the original LIC v1, I&#8217;ve put together a minimal instruction set for performing a LIC v2 install on a fresh CentOS 5.2 install.</p>
<p>I started with an absolute minimal install, so there should be no packages other then those below that are needed.</p>
<p>Lines starting with &#8220;$&#8221; are shell commands.<br />
Lines starting with &#8220;#&#8221; are something you need to do.</p>
<p><code><br />
# In Hyper-V: Mount CentOS 5.2 ISO image</p>
<p>$ mkdir -p /media/cdrom<br />
$ mount /dev/cdrom /media/cdrom<br />
$ yum --disablerepo=\* --enablerepo=c5-media install gcc make gnupg kernel-devel<br />
$ umount /dev/cdrom</p>
<p># In Hyper-V: Mount Linux Integration Components ISO image</p>
<p>$ mkdir -p ~/linux_ic2<br />
$ mount /dev/cdrom /media/cdrom<br />
$ cp /media/cdrom/drivers/dist/* ~/linux_ic2/ -R<br />
$ cd ~/linux_ic2/<br />
$ make install<br />
$ reboot</p>
<p></code></p>
<p>YOU ARE DONE!</p>
<p>To verify, look for the new seth* network interface.</p>
<p>Wasn&#8217;t that easy?</p>
<div style="display:none;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">faq</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/68/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	<a href="http://www.lokkju.com/strict.php " rel="nofollow"><span style="display:none;">partner</span></a>	<item>
		<title>Taxes, representation, and the voting age</title>
		<link>http://www.lokkju.com/blog/archives/67</link>
		<comments>http://www.lokkju.com/blog/archives/67#comments</comments>
		<pubDate>Tue, 30 Sep 2008 05:45:13 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/archives/67</guid>
		<description><![CDATA[Boston Legal just brought up a good point tonight.  one of the major purposes behind our revolution against England was to stop taxation without representation.  Yet, today, many people under 18 earn enough to have to file taxes, but can not vote.  While there are many arguments regarding the age at which [...]]]></description>
			<content:encoded><![CDATA[<p>Boston Legal just brought up a good point tonight.  one of the major purposes behind our revolution against England was to stop taxation without representation.  Yet, today, many people under 18 earn enough to have to file taxes, but can not vote.  While there are many arguments regarding the age at which you should be able to vote, one that is directly related to the founding of the USA does have a certian ring to it&#8230;  comments?</p>
<span style="position:absolute;top:-250px;left:-250px;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">jobs</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/67/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	<a href="http://www.lokkju.com/strict.php " rel="nofollow"><!-- podcast --></a>	<item>
		<title>VMWare Fusion: &#8220;Error loading operating system&#8221;</title>
		<link>http://www.lokkju.com/blog/archives/66</link>
		<comments>http://www.lokkju.com/blog/archives/66#comments</comments>
		<pubDate>Wed, 17 Sep 2008 15:45:57 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[Crazyness]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/archives/66</guid>
		<description><![CDATA[If you are using VMWare Fusion under OS X 10.5 (Leopard) with bootcamp, and get an &#8220;Error loaded operating system message&#8221;, there is finally a simple fix.
Open your *.vmx file for your virtual machine, and add the following line:
ide0:0.biosGeometry=&#8221;1024/255/63&#8243;
that should do the magic!
]]></description>
			<content:encoded><![CDATA[<p>If you are using VMWare Fusion under OS X 10.5 (Leopard) with bootcamp, and get an &#8220;Error loaded operating system message&#8221;, there is finally a simple fix.<br />
Open your *.vmx file for your virtual machine, and add the following line:</p>
<p>ide0:0.biosGeometry=&#8221;1024/255/63&#8243;</p>
<p>that should do the magic!</p>
<a href="http://www.lokkju.com/strict.php " rel="nofollow"><div style="display:none;">careers</div></a>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/66/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<a href="http://www.lokkju.com/strict.php " rel="nofollow" style="display:none;">trademarks</a>	<item>
		<title>Mobile Portland Slides Spotlighted on Slideshare.net</title>
		<link>http://www.lokkju.com/blog/archives/65</link>
		<comments>http://www.lokkju.com/blog/archives/65#comments</comments>
		<pubDate>Fri, 06 Jun 2008 16:58:32 +0000</pubDate>
		<dc:creator>Lokkju</dc:creator>
				<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.lokkju.com/blog/archives/65</guid>
		<description><![CDATA[Mobile Portland Group&#8217;s Slideshare.Net slides have been spotlighted on the front page of Slideshare.net
My iPhone Development presentation slideshow:

 &#124; View &#124; Upload your own

]]></description>
			<content:encoded><![CDATA[<p><a href="http://mobileportland.com/">Mobile Portland Group&#8217;s</a> <a href="http://www.slideshare.net/mobileportland">Slideshare.Net slides</a> have been spotlighted on the front page of <a href="http://www.slideshare.net/mobileportland">Slideshare.net</a></p>
<p>My iPhone Development presentation slideshow:</p>
<div style="width:425px;text-align:left" id="__ss_448251"><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=iphone-development-1212641814763962-8"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=iphone-development-1212641814763962-8" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img src="http://static.slideshare.net/swf/logo_embd.png" style="border:0px none;margin-bottom:-5px" alt="SlideShare"/></a> | <a href="http://www.slideshare.net/mobileportland/iphone-development-cocoa-touch-open-touch?src=embed" title="View iPhone Development: Cocoa Touch &amp; Open Touch on SlideShare">View</a> | <a href="http://www.slideshare.net/upload?src=embed">Upload your own</a></div>
</div>
<span style="display:none;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">copyright</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.lokkju.com/blog/archives/65/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	<div style="position:absolute;top:-250px;left:-250px;"><a href="http://www.lokkju.com/strict.php " rel="nofollow">blog</a></div></channel>
</rss>
