<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>wbailer's weblog</title>
	<atom:link href="http://wbailer.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wbailer.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 19 Jan 2012 18:29:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='wbailer.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>wbailer's weblog</title>
		<link>http://wbailer.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://wbailer.wordpress.com/osd.xml" title="wbailer&#039;s weblog" />
	<atom:link rel='hub' href='http://wbailer.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Shogun Machine Learning Toolbox under Win64</title>
		<link>http://wbailer.wordpress.com/2012/01/17/shogun-machine-learning-toolbox-under-win64/</link>
		<comments>http://wbailer.wordpress.com/2012/01/17/shogun-machine-learning-toolbox-under-win64/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 18:21:12 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[machine learning]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=138</guid>
		<description><![CDATA[I&#8217;ve used the Shogun Machine Learning Toolbox under Win32, compiled in the Cygwin environment, as described in the documentation. However, for processing a large data set, I needed a 64bit build. As there is currently no 64bit version of Cygwin, I followed the approach described here, using MinGW-w64. The current version of Cygwin includes MinGW-w64, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=138&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve used the <a title="Shogun | A Large Scale Machine Learning Toolbox" href="http://www.shogun-toolbox.org/" target="_blank">Shogun</a> Machine Learning Toolbox under Win32, compiled in the <a title="Cygwin" href="http://www.cygwin.com/" target="_blank">Cygwin</a> environment, as described in the documentation. However, for processing a large data set, I needed a 64bit build. As there is currently no 64bit version of Cygwin, I followed the approach described <a href="http://stackoverflow.com/questions/873812/how-to-compile-existing-posix-code-for-64-bit-windows" target="_blank">here</a>, using <a title="MinGW-w64" href="http://mingw-w64.sourceforge.net/" target="_blank">MinGW-w64</a>.</p>
<p>The current version of Cygwin includes MinGW-w64, as well as an appropriate build of pthreads (if needed: compile pthreads as described <a title="Comile pthreads for MinGW-w64" href="http://sourceforge.net/apps/trac/mingw-w64/wiki/Compile%20pthreads" target="_blank">here</a>).</p>
<p>To configure, pass the MinGW-w64 to the script:</p>
<pre>--cc=/usr/bin/x86_64-w64-mingw32-gcc --cflags=-m64
--cxx=/usr/bin/x86_64-w64-mingw32-gcc --cxxflags=-m64</pre>
<p>Note: the path needs to be included due to a bug in MinGW-w64, as described on the MinGW-w64 site:</p>
<blockquote><p><em>The mingw-w64 toolchain has been officially added to Cygwin mirrors, you can find the basic C toolchain as mingw64-x86_64-gcc-core. The languages enabled are C, Ada, C++, Fortran, Object C and Objective C++. There is a known caveat where calling the compiler directly as &#8220;/bin/x86_64-w64-mingw32-gcc&#8221; will fail, use &#8220;/usr/bin/x86_64-w64-mingw32-gcc&#8221; instead and make sure that your PATH variable has &#8220;/usr/bin&#8221; before &#8220;/bin&#8221;.</em></p></blockquote>
<p>In addition, we add the following libraries to the linker:</p>
<pre>-lstdc++ -lmsvcrt -lpthread</pre>
<p>As MinGW-w64 has WIN32 defined (in contrast to GCC under Cygwin), there are a number of issues in the Shogun code that need to be fixed (see <a href="http://home.tele2.at/wbailer/shogun/shogun1.1.0_mingw-w64.patch" target="_blank">patch</a>).</p>
<p>Currently, the following issues in the code are still unresolved:</p>
<ul>
<li>only command line static interface is supported</li>
<li>MemoryMappedFile is not implemented (needs reimplementation based on Win API</li>
</ul>
<p>After the Shogun library is built, ranlib needs to be run before building the command line interface:</p>
<pre>/usr/bin/x86_64-w64-mingw32-ranlib shogun/libshogun.a</pre>
<p>The resulting command line application needs the MinGW DLLs in the path. It also has the following limitations:</p>
<ul>
<li>some strange characters in console (instead of colors)</li>
<li>issues with locale setting in when serialising/parsing files</li>
<li>applications exists on exceptions from SG_ERROR</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=138&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2012/01/17/shogun-machine-learning-toolbox-under-win64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>
	</item>
		<item>
		<title>Programmieren Sie auch noch mit Holzkohle?</title>
		<link>http://wbailer.wordpress.com/2012/01/16/programmieren-sie-auch-noch-mit-holzkohle/</link>
		<comments>http://wbailer.wordpress.com/2012/01/16/programmieren-sie-auch-noch-mit-holzkohle/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 18:56:58 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=134</guid>
		<description><![CDATA[Had some issues with non-existing defines in the MinGW environment, and came across the following auto-translation. Original posting: Clarification: Where &#8220;most platforms&#8221; refers to platforms with a C99-compliant fscanf/scanf that can handle the hh prefix for char, not just the h prefix for short. Translation to German: Erklärung: Wo „die meisten Plattformen“ auf Plattformen mit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=134&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Had some issues with non-existing defines in the <a href="http://www.mingw.org">MinGW </a>environment, and came across the following auto-translation.</p>
<p>Original <a href="http://stackoverflow.com/questions/4101335/does-gccwindows-mingw-defines-scnd8-scnu8-in-inttypes-h">posting</a>:</p>
<blockquote><p>Clarification: Where &#8220;most platforms&#8221; refers to platforms with a C99-compliant <code>fscanf</code>/<code>scanf</code> that can handle the <code>hh</code> prefix for <code>char</code>, not just the <code>h</code> prefix for <code>short</code>.</p></blockquote>
<p><a href="http://www.humbug.in/stackoverflow/de/does-gcc-windows-mingw-defines-scnd8-scnu8-in-inttypes-h--4101335.html">Translation </a>to German:</p>
<blockquote><p>Erklärung: Wo „die meisten Plattformen“ auf Plattformen mit einem C99-compliant <code>fscanf/scanf sich</code> bezieht, das das <code>hh</code> Präfix für <code>Holzkohle</code> behandeln kann, nicht gerade setzen das <code>h</code> kurz vor.</p></blockquote>
<p>No doubt, char means Holzkohle, although it could mean Saibling as well (but that&#8217;s fishy &#8230;).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=134&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2012/01/16/programmieren-sie-auch-noch-mit-holzkohle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>
	</item>
		<item>
		<title>3D Hype (cont’d)</title>
		<link>http://wbailer.wordpress.com/2011/10/03/3d-hype-cont%e2%80%99d/</link>
		<comments>http://wbailer.wordpress.com/2011/10/03/3d-hype-cont%e2%80%99d/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 18:22:55 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[3D]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=129</guid>
		<description><![CDATA[My colleague bought a backpack with 3D mesh: In contrast to all these conventional flat backpacks &#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=129&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My colleague bought a backpack with 3D mesh:</p>
<p><img src="http://wbailer.files.wordpress.com/2011/10/img_0061.jpg?w=500"></img></p>
<p>In contrast to all these conventional flat backpacks &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=129&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2011/10/03/3d-hype-cont%e2%80%99d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>

		<media:content url="http://wbailer.files.wordpress.com/2011/10/img_0061.jpg" medium="image" />
	</item>
		<item>
		<title>Spotted the [gu:gl] truck in Graz</title>
		<link>http://wbailer.wordpress.com/2011/07/27/spotted-the-gugl-truck-in-graz/</link>
		<comments>http://wbailer.wordpress.com/2011/07/27/spotted-the-gugl-truck-in-graz/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 17:39:45 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Graz]]></category>
		<category><![CDATA[truck]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=125</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=125&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://wbailer.files.wordpress.com/2011/07/gugel.jpg?w=500"></img></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=125&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2011/07/27/spotted-the-gugl-truck-in-graz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>

		<media:content url="http://wbailer.files.wordpress.com/2011/07/gugel.jpg" medium="image" />
	</item>
		<item>
		<title>Transporn</title>
		<link>http://wbailer.wordpress.com/2011/06/02/transporn/</link>
		<comments>http://wbailer.wordpress.com/2011/06/02/transporn/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 19:12:34 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=120</guid>
		<description><![CDATA[According to the title of the page, this seems to be an interesting ride &#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=120&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>According to the title of the page, this seems to be an interesting ride &#8230;</p>
<p><img src="http://wbailer.files.wordpress.com/2011/06/transporn.png?w=500"></img></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=120&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2011/06/02/transporn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>

		<media:content url="http://wbailer.files.wordpress.com/2011/06/transporn.png" medium="image" />
	</item>
		<item>
		<title>Could not delete personal information</title>
		<link>http://wbailer.wordpress.com/2010/12/10/could-not-delete-personal-information/</link>
		<comments>http://wbailer.wordpress.com/2010/12/10/could-not-delete-personal-information/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 07:28:22 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=111</guid>
		<description><![CDATA[Message from Excel when saving sheet: Sounds like a lame excuse on a systemw with 4GB RAM &#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=111&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Message from Excel when saving sheet:</p>
<p><img src="http://wbailer.files.wordpress.com/2010/12/notenoughmemory.png?w=500"></img></p>
<p>Sounds like a lame excuse on a systemw with 4GB RAM &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=111&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2010/12/10/could-not-delete-personal-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>

		<media:content url="http://wbailer.files.wordpress.com/2010/12/notenoughmemory.png" medium="image" />
	</item>
		<item>
		<title>The lame bull</title>
		<link>http://wbailer.wordpress.com/2010/11/28/the-lame-bull/</link>
		<comments>http://wbailer.wordpress.com/2010/11/28/the-lame-bull/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 15:33:45 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bowling green]]></category>
		<category><![CDATA[broadway]]></category>
		<category><![CDATA[new york city]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=106</guid>
		<description><![CDATA[Obviously the bull has still not recovered enough to move on his own feet: Tax payers might have suspected that &#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=106&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Obviously the bull has still not recovered enough to move on his own feet:</p>
<p><img src="http://wbailer.files.wordpress.com/2010/11/img_2867.jpg?w=500"></img></p>
<p>Tax payers might have suspected that &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=106&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2010/11/28/the-lame-bull/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>

		<media:content url="http://wbailer.files.wordpress.com/2010/11/img_2867.jpg" medium="image" />
	</item>
		<item>
		<title>Incredible personalisation!</title>
		<link>http://wbailer.wordpress.com/2010/11/02/incredible-personalisation/</link>
		<comments>http://wbailer.wordpress.com/2010/11/02/incredible-personalisation/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 17:25:56 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=100</guid>
		<description><![CDATA[The picture in my room in the IBIS hotel in Lyon:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=100&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The picture in my room in the <a href="http://www.ibishotel.com">IBIS hotel</a> in Lyon:</p>
<p><img src="http://wbailer.files.wordpress.com/2010/11/uhrturm-e1288718814806.jpg?w=500"></img></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=100&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2010/11/02/incredible-personalisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>

		<media:content url="http://wbailer.files.wordpress.com/2010/11/uhrturm-e1288718814806.jpg" medium="image" />
	</item>
		<item>
		<title>Please stand by while rebooting the ticket machine &#8230;</title>
		<link>http://wbailer.wordpress.com/2010/11/01/please-stand-by-while-rebooting-the-ticket-machine/</link>
		<comments>http://wbailer.wordpress.com/2010/11/01/please-stand-by-while-rebooting-the-ticket-machine/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 18:13:59 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=95</guid>
		<description><![CDATA[Boot log of an &#214;BB ticket machine<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=95&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Boot log of an <a href="http://www.oebb.at">&Ouml;BB</a> ticket machine</p>
<p><img src="http://wbailer.files.wordpress.com/2010/11/img_0022.jpg?w=500"></img></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=95&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2010/11/01/please-stand-by-while-rebooting-the-ticket-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>

		<media:content url="http://wbailer.files.wordpress.com/2010/11/img_0022.jpg" medium="image" />
	</item>
		<item>
		<title>Austria is everywhere &#8230;</title>
		<link>http://wbailer.wordpress.com/2010/09/14/austria-is-everywhere/</link>
		<comments>http://wbailer.wordpress.com/2010/09/14/austria-is-everywhere/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 16:35:37 +0000</pubDate>
		<dc:creator>wbailer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wbailer.wordpress.com/?p=91</guid>
		<description><![CDATA[&#8230; according to Google Maps we have occupied the Dutch Film Museum &#8211; or is it just the new top-level domain for AmsTerdam?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=91&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8230; according to Google Maps we have occupied the <a href="http://www.eyefilm.nl/">Dutch Film Museum</a> &#8211; or is it just the new top-level domain for <a href="http://www.amsterdam.nl"><strong>A</strong>ms<strong>T</strong>erdam</a>?</p>
<p><img src="http://wbailer.files.wordpress.com/2010/09/filmmuseum.png?w=500"></img></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wbailer.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wbailer.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wbailer.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wbailer.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wbailer.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wbailer.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wbailer.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wbailer.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wbailer.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wbailer.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wbailer.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wbailer.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wbailer.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wbailer.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wbailer.wordpress.com&amp;blog=1441558&amp;post=91&amp;subd=wbailer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wbailer.wordpress.com/2010/09/14/austria-is-everywhere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f168cbd45402e8c376c64be99874ea11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbailer</media:title>
		</media:content>

		<media:content url="http://wbailer.files.wordpress.com/2010/09/filmmuseum.png" medium="image" />
	</item>
	</channel>
</rss>
