<?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>Game g = new Game(); &#187; Uncategorized</title>
	<atom:link href="http://thomasschweitzer.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://thomasschweitzer.com</link>
	<description>Nerdy thoughts</description>
	<lastBuildDate>Tue, 12 Apr 2011 13:33:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Martin Morgen released</title>
		<link>http://thomasschweitzer.com/2008/11/28/martin-morgen-released/</link>
		<comments>http://thomasschweitzer.com/2008/11/28/martin-morgen-released/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 22:54:00 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thomasschweitzer.com/?p=15</guid>
		<description><![CDATA[I&#8217;m happy to announce that the first product of the company I&#8217;m working for has been released in DACH: Martin Morgen is an animation series for children, airing on TV in Europe. In &#8220;Martin Morgen &#8211; Das Spiel&#8221; the player controls the adventures of Martin and his friends. Interestingly enough, it&#8217;s the first project based [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to announce that the first product of the company I&#8217;m working for has been released in DACH:</p>
<p><a href="http://www.martinmorgen.de/"><img class="alignnone size-full wp-image-16" title="Martin Morgen Packshot" src="http://thomasschweitzer.com/wp-content/uploads/2008/12/33163.jpg" alt="Martin Morgen Packshot" width="372" height="358" /></a></p>
<p>Martin Morgen is an animation series for children, airing on TV in Europe.</p>
<p>In &#8220;<a href="http://www.martinmorgen.de/" target="_blank">Martin Morgen &#8211; Das Spiel</a>&#8221; the player controls the adventures of Martin and his friends.</p>
<p>Interestingly enough, it&#8217;s the first project based on licensed IP that I&#8217;m involved in.</p>
]]></content:encoded>
			<wfw:commentRss>http://thomasschweitzer.com/2008/11/28/martin-morgen-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Groovy drumming</title>
		<link>http://thomasschweitzer.com/2008/06/23/groovy-drumming/</link>
		<comments>http://thomasschweitzer.com/2008/06/23/groovy-drumming/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 15:54:35 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[groovy drums music programming]]></category>

		<guid isPermaLink="false">http://www.cyblex.at/blog/?p=83</guid>
		<description><![CDATA[Recently I bought myself a cool Roland V-Drum set. Now I stumbled across freedrumlessons.com, a site with dozens of (you guessed it) free drum lessons on video. In order to avoid downloading all video files manually, I wrote a little Groovy script. It greps the overview page for all links to sub-pages, and then scrapes [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I bought myself a cool <a href="http://www.roland.com/V-Drums/products/index.html">Roland V-Drum</a> set.</p>
<p>Now I stumbled across <a href="http://www.freedrumlessons.com/">freedrumlessons.com</a>, a site with dozens of (you guessed it) free drum lessons on video.</p>
<p>In order to avoid downloading all video files manually, I wrote a little <a href="http://www.groovy.org/">Groovy</a> script. It greps the overview page for all links to sub-pages, and then scrapes all the sub-pages for MP4-files (so I can put them on my iPod later).</p>
<p>I can&#8217;t imagine what it would have been like using plain Java&#8230;</p>
<p><span id="more-125"></span></p>
<p>Here&#8217;s the code:</p>
<p>[sourcecode language='java']<br />
println (&#8216;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8217;)<br />
def filesToDownload = []<br />
def url = &#8216;http://www.freedrumlessons.com/drum-lessons&#8217;</p>
<p>def slurper = new XmlSlurper(new org.ccil.cowan.tagsoup.Parser())</p>
<p>def html = slurper.parse(url)<br />
def lists = html.&#8217;**&#8217;.findAll { it.name() == &#8216;li&#8217;}</p>
<p>def links = lists.a*.&#8217;@href&#8217;<br />
links.removeAll([''])</p>
<p>def i = 0</p>
<p>links.each {<br />
	def scrapeurl = &#8220;http://www.freedrumlessons.com${it}&#8221;<br />
	println &#8220;Scraping ${scrapeurl}&#8230;&#8221;<br />
	def innerSlurper = new XmlSlurper(new org.ccil.cowan.tagsoup.Parser())<br />
	def innerHtml = innerSlurper.parse(scrapeurl)</p>
<p>	def files = innerHtml.depthFirst().grep{ it.name() == &#8216;a&#8217; &#038;&#038; it.@href.toString().endsWith(&#8216;.mp4&#8242;) }.&#8217;@href&#8217;</p>
<p>	files.each {<br />
		filesToDownload += it.toString()<br />
		println (&#8220;Added ${it}&#8221;)<br />
	}<br />
}</p>
<p>println (&#8216; ** &#8216;)</p>
<p>filesToDownload.each {<br />
	println (&#8220;Downloading ${it}&#8221;)<br />
	def filename = it.tokenize(&#8216;/&#8217;)[-1]<br />
	def infile = new FileOutputStream(filename)<br />
	def outfile = new BufferedOutputStream(infile)<br />
	outfile << new URL(it).openStream()<br />
	outfile.close()<br />
}</p>
<p>println &#8220;Finished&#8221;<br />
[/sourcecode]</p>
]]></content:encoded>
			<wfw:commentRss>http://thomasschweitzer.com/2008/06/23/groovy-drumming/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Die letzte Referenz&#8230;</title>
		<link>http://thomasschweitzer.com/2008/04/21/die-letzte-referenz/</link>
		<comments>http://thomasschweitzer.com/2008/04/21/die-letzte-referenz/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 21:10:43 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cyblex.at/blog/?p=75</guid>
		<description><![CDATA[Hausfreund.at , der Webshop des Zustelldienstes für Lebensmittel und sonstige Haushaltssachen, ist nicht mehr. Also, nicht mehr von mir &#8211; bis vor kurzem war dieser Shop der letzte verbliebene aus meiner Internetz-Web-Development-Superchecker Zeit um 2000&#8230; Die Technologie, das Konzept, das Design (von Markus Mayer &#8211; mit einem kleinen Relaunch um 2003 herum) hat ganze 8 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hausfreund.at/">Hausfreund.at</a> , der Webshop des Zustelldienstes für Lebensmittel und sonstige Haushaltssachen, ist nicht mehr.</p>
<p>Also, nicht mehr von mir &#8211; bis vor kurzem war dieser Shop der letzte verbliebene aus meiner Internetz-Web-Development-Superchecker Zeit um 2000&#8230;</p>
<p>Die Technologie, das Konzept, das Design (von <a href="http://www.plutonika.com">Markus Mayer</a> &#8211; mit einem kleinen Relaunch um 2003 herum) hat ganze 8 Jahre lang gehalten, alle online Kundenbestellungen darüber abzuwickeln. Hach, wer oder was kann das in der heutigen Zeit noch von sich behaupten? <img src='http://thomasschweitzer.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://thomasschweitzer.com/2008/04/21/die-letzte-referenz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stephen King on video games</title>
		<link>http://thomasschweitzer.com/2008/04/07/stephen-king-on-video-games/</link>
		<comments>http://thomasschweitzer.com/2008/04/07/stephen-king-on-video-games/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 07:59:28 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cyblex.at/blog/?p=73</guid>
		<description><![CDATA[Stephen King (yes, the Stephen King) writes on Entertainment Weekly on a bill pending in the Massachusetts state legislature: [The bill] would restrict or outright ban the sale of violent videogames to anyone under the age of 18. Which means, by the way, that a 17-year-old who can get in to see Hostel: Part II [...]]]></description>
			<content:encoded><![CDATA[<p>Stephen King (yes, <em>the</em> Stephen King) writes on <a href="http://www.ew.com/ew/article/0,,20188502,00.html">Entertainment Weekly</a> on a bill pending in the Massachusetts state legislature:</p>
<blockquote><p>
[The bill] would restrict or outright ban the sale of violent videogames to anyone under the age of 18. Which means, by the way, that a 17-year-old who can get in to see Hostel: Part II would be forbidden by law from buying (or renting, one supposes) the violent but less graphic Grand Theft Auto: San Andreas.</p>
<p>According to the proposed bill, violent videogames are pornographic and have no redeeming social merit. The vid-critics claim they exist for one reason and one reason only, so kids can experience the vicarious thrill of killing. Now, what does and doesn&#8217;t have social merit is always an interesting question, one I can discuss for hours. But what makes me crazy is when politicians take it upon themselves to play surrogate parents. The results of that are usually disastrous. Not to mention undemocratic.</p>
<p>[...]</p>
<p>What really makes me insane is how eager politicians are to use the pop culture — not just videogames but TV, movies, even Harry Potter — as a whipping boy. It&#8217;s easy for them, even sort of fun, because the pop-cult always hollers nice and loud. Also, it allows legislators to ignore the elephants in the living room. Elephant One is the ever-deepening divide between the haves and have-nots in this country, a situation guys like Fiddy and Snoop have been indirectly rapping about for years. <strong>Elephant Two is America&#8217;s almost pathological love of guns.</strong> It was too easy for critics to claim — falsely, it turned out — that Cho Seung-Hui (the Virginia Tech killer) was a fan of Counter-Strike; <strong>I just wish to God that legislators were as eager to point out that this nutball had no problem obtaining a 9mm semiautomatic handgun. Cho used it in a rampage that resulted in the murder of 32 people. If he&#8217;d been stuck with nothing but a plastic videogame gun, he wouldn&#8217;t even have been able to kill himself.<br />
</strong><br />
Case closed.
</p></blockquote>
<p>Now, I know from personal experience that it makes little sense to discuss this &#8220;pathological love of guns&#8221; with Americans &#8211; been there, done that, got no t-shirt. It&#8217;s disturbing at least, to see liberal minded folks suddenly taking that &#8220;I have the right and the need to defend myself and my family&#8221;-road in a discussion.</p>
<p>On the other hand, Charlton &#8220;&#8221;From my cold, dead hands!&#8221; Heston died recently, so there&#8217;s always hope. <img src='http://thomasschweitzer.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/4/4f/Colddead-fp.jpg" alt="Charlton" /></p>
]]></content:encoded>
			<wfw:commentRss>http://thomasschweitzer.com/2008/04/07/stephen-king-on-video-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No SMS for Leopards</title>
		<link>http://thomasschweitzer.com/2008/02/28/no-sms-for-leopards/</link>
		<comments>http://thomasschweitzer.com/2008/02/28/no-sms-for-leopards/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 14:03:46 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cyblex.at/blog/?p=63</guid>
		<description><![CDATA[Ah, now I know what I have been missing since the upgrade to Mac OSX Leopard &#8211; no SMS and calling feature from address book]]></description>
			<content:encoded><![CDATA[<p>Ah, now I know what I have been missing since the upgrade to Mac OSX Leopard &#8211; <a href="http://leopard-lost.blogspot.com/2007/10/address-book-call-sms-features.html">no SMS and calling feature from address book</a> <img src='http://thomasschweitzer.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://thomasschweitzer.com/2008/02/28/no-sms-for-leopards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0</title>
		<link>http://thomasschweitzer.com/2007/10/25/web-20/</link>
		<comments>http://thomasschweitzer.com/2007/10/25/web-20/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 06:24:38 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cyblex.at/blog/?p=36</guid>
		<description><![CDATA[Neulich, in einer technischen Fachbuchhandlung nahe der Technischen Universität Wien: Kundin: „Guten Tag, haben Sie Literatur zu diesem Web 2.0, von dem man so viel liest?“ Verkäufer: „?!“ Kundin: „Wissen Sie, ich bin Personalistin, komme gerade von der Firmenmesse an der TU, und da reden alle über Web 2.0, jetzt wollte ich wissen, was das [...]]]></description>
			<content:encoded><![CDATA[<p>Neulich, in einer technischen Fachbuchhandlung nahe der Technischen Universität Wien:</p>
<p>Kundin: „Guten Tag, haben Sie Literatur zu diesem Web 2.0, von dem man so viel liest?“</p>
<p>Verkäufer: „?!“</p>
<p>Kundin: „Wissen Sie, ich bin Personalistin, komme gerade von der Firmenmesse an der TU, und da reden alle über Web 2.0, jetzt wollte ich wissen, was das ist, um in den Job Interviews mit Kandidaten entsprechend gerüstet zu sein&#8230; Jeder redet darüber, es gibt einen ziemlichen Hype&#8230;“</p>
<p>Verkäufer: „Tut mir leid, da kann ich ihnen nicht helfen.“</p>
<p>Ich war hin- und hergerissen zwischem verächtlichen Mitleid und amüsierten Soll-ich-sie-aufklären-Gefühlen&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://thomasschweitzer.com/2007/10/25/web-20/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stay Hungry. Stay Foolish.</title>
		<link>http://thomasschweitzer.com/2007/09/24/stay-hungry-stay-foolish/</link>
		<comments>http://thomasschweitzer.com/2007/09/24/stay-hungry-stay-foolish/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 13:59:08 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cyblex.at/blog/?p=28</guid>
		<description><![CDATA[There is some kind of &#8220;aura&#8221; about Steve Jobs that I cannot quite define&#8230; (and note that I don&#8217;t call myself an Apple fanboy). I just read this Commencement Address &#8211; I don&#8217;t know whether he has somebody writing his rather personal speeches; I doubt he does. Your time is limited, so don&#8217;t waste it [...]]]></description>
			<content:encoded><![CDATA[<p>There is some kind of &#8220;aura&#8221; about Steve Jobs that I cannot quite define&#8230; (and note that I don&#8217;t call myself an Apple fanboy).</p>
<p>I just read this <a href="http://news-service.stanford.edu/news/2005/june15/jobs-061505.html">Commencement Address</a> &#8211; I don&#8217;t know whether he has somebody writing his rather personal speeches; I doubt he does.</p>
<blockquote><p><em>Your time is limited, so don&#8217;t waste it living someone else&#8217;s life. Don&#8217;t be trapped by dogma — which is living with the results of other people&#8217;s thinking. Don&#8217;t let the noise of others&#8217; opinions drown out your own inner voice. And most important, have the courage to follow your heart and intuition. They somehow already know what you truly want to become. Everything else is secondary. </em></p></blockquote>
<p>Reading about such personal things as him being adopted, being diagnosed with an uncurable form of cancer &#8211; such honesty from the CEO of a multi billion dollar company talking to a couple of students&#8230; It may be an American thing, but still I&#8217;m impressed.</p>
]]></content:encoded>
			<wfw:commentRss>http://thomasschweitzer.com/2007/09/24/stay-hungry-stay-foolish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>first blackberry post in a while</title>
		<link>http://thomasschweitzer.com/2007/08/27/first-blackberry-post-in-a-while/</link>
		<comments>http://thomasschweitzer.com/2007/08/27/first-blackberry-post-in-a-while/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 09:49:56 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cyblex.at/blog/?p=16</guid>
		<description><![CDATA[I&#8217;m using a blackberry again &#8211; it&#8217;s a 8700v, but (un)surprisingly little has changed since the last modell i used (almost 3 years ago). i still don&#8217;t like the fonts this thing uses &#8211; even if you turn on it&#8217;s &#8220;ClearType&#8221;-equivalent option to smoothen the characters, it still looks ugly IMHO. i wonder how former [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using a blackberry again &#8211; it&#8217;s a 8700v, but (un)surprisingly little has changed since the last modell i used (almost 3 years ago).</p>
<p>i still don&#8217;t like the fonts this thing uses &#8211; even if you turn on it&#8217;s &#8220;ClearType&#8221;-equivalent option to smoothen the characters, it still looks ugly IMHO. i wonder how former colleagues could use it with a 6pt (!) font size&#8230;</p>
<p>i found an almost flame-war of (probably seasoned) blackberry users against the iPhone hype and how inferior this thing is. ah, i read that t-mobile has made it to offer the iPhone exclusively in Germany (and probably Austria, though this is not confirmed yet). even more annoying that it will not have an UMTS option, so one better waits for the next hardware generation (a wise decision for any type of electronic hardware, as many disgruntled Xbox360 owners can assure you)&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://thomasschweitzer.com/2007/08/27/first-blackberry-post-in-a-while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

