<?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"
	>

<channel>
	<title>ain't no soul - 1001 untold stories</title>
	<atom:link href="http://blog.aint-no-soul.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.aint-no-soul.com</link>
	<description>everything is wrong, everything is allowed</description>
	<pubDate>Wed, 05 Nov 2008 17:12:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>simple method to add a safari css</title>
		<link>http://blog.aint-no-soul.com/css/2008-11-05/simple-method-to-add-a-safari-css/</link>
		<comments>http://blog.aint-no-soul.com/css/2008-11-05/simple-method-to-add-a-safari-css/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:12:08 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[code]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=201</guid>
		<description><![CDATA[There are some selector hacks out there, but I don&#8217;t like them - ie: (@media screen and (-webkit-min-device-pixel-ratio:0) {}). My personal favourite is done with Prototype because I use it a lot and it is pretty simple:

&#60;link rel="stylesheet" type="text/css" media="none" href="/css/safari.css" id="safari" /&#62;
&#60;script type="text/javascript"&#62;
	// matches all safari/chrome versions
	if(Prototype.Browser.WebKit) {
		$('safari').media="all";
	}
&#60;/script&#62;

If you set the media attribute to [...]]]></description>
			<content:encoded><![CDATA[<p>There are some selector hacks out there, but I don&#8217;t like them - ie: (<em style="color: grey">@media screen and (-webkit-min-device-pixel-ratio:0) {}</em>). My personal favourite is done with Prototype because I use it a lot and it is pretty simple:</p>
<pre name="code" class="javascript:nocontrols:nogutter">
&lt;link rel="stylesheet" type="text/css" media="none" href="/css/safari.css" id="safari" /&gt;
&lt;script type="text/javascript"&gt;
	// matches all safari/chrome versions
	if(Prototype.Browser.WebKit) {
		$('safari').media="all";
	}
&lt;/script&gt;
</pre>
<p>If you set the <code>media</code> attribute to <code>none</code> - no media device will display it. By adding the little if statement, you can check if the Browser is WebKit, which is the engine name of safari or chrome and alter the <code>media</code> value to <code>all</code>. </p>
<p>If you do not use prototype, you can do it like this:</p>
<pre name="code" class="javascript:nocontrols:nogutter">
&lt;script type="text/javascript"&gt;
	// targets safari 3 - not 2!
	if(window.devicePixelRatio) {
		document.getElementById('safari')media="all";
	}

	// targets all safari or better said webKit engines
	if(navigator.userAgent.indexOf('AppleWebKit/') > -1) {
		document.getElementById('safari')media="all";
	}

	// prototype way + targeting old and new webKit with two stylesheets
	if(Prototype.Browser.WebKit) {
		var mySafari = (window.devicePixelRatio) ? 'safari3' : 'safari2';
		document.getElementById(mySafari)media="all";
	}
&lt;/script&gt;
</pre>
<p>Note, this method shouldn&#8217;t be used for &#8220;accessible&#8221; Websites, because it relies on javascript. You can do it then serverside as well by &#8220;sniffing&#8221; the UserAgent from the HTTP Request and add your little switch there - whereas this isn&#8217;t a 100% safe method though, because some people alter their UserAgent strings and there are tons of vendors/versions thus your detection may fail from time to time.</p>
<p>An alternative to this way is to load the needed script on the fly, so you can reduce a HTTP Request, by writing the link tag dynamically to your document. However - the describe method above is shorter <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/css/2008-11-05/simple-method-to-add-a-safari-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>twitted</title>
		<link>http://blog.aint-no-soul.com/personal/2008-10-29/twitted/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-10-29/twitted/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 23:45:46 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[digital life]]></category>

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=199</guid>
		<description><![CDATA[ok, i&#8217;ll give it a try! 
http://twitter.com/biophonc
]]></description>
			<content:encoded><![CDATA[<p>ok, i&#8217;ll give it a try! <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<a href="http://twitter.com/biophonc">http://twitter.com/biophonc</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-10-29/twitted/feed/</wfw:commentRss>
		</item>
		<item>
		<title>new theme</title>
		<link>http://blog.aint-no-soul.com/personal/2008-10-26/new-theme/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-10-26/new-theme/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 22:03:00 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[code]]></category>

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=197</guid>
		<description><![CDATA[it was time for a change - so I&#8217;ve made a new theme for my blog. Nothing special but it looks quite ok (haven&#8217;t tested it in IE, I don&#8217;t care bout it - but in safari, firefox, chrome and opera it looks good). At least YSlow say it has Grade B and if only [...]]]></description>
			<content:encoded><![CDATA[<p>it was time for a change - so I&#8217;ve made a new theme for my blog. Nothing special but it looks quite ok (haven&#8217;t tested it in IE, I don&#8217;t care bout it - but in safari, firefox, chrome and opera it looks good). At least YSlow say it has Grade B and if only the google syntax highlighter plugin would produce valid xhtml, then it would be valid &#8230; <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-10-26/new-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>new protosafe released</title>
		<link>http://blog.aint-no-soul.com/code/2008-10-24/new-protosafe-released-yay/</link>
		<comments>http://blog.aint-no-soul.com/code/2008-10-24/new-protosafe-released-yay/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 15:04:48 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[code]]></category>

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=190</guid>
		<description><![CDATA[just in time. One of our clients requested it (minified + packed) last week and today I found an updated version and it seems t work fine: http://code.google.com/p/protosafe/
]]></description>
			<content:encoded><![CDATA[<p>just in time. One of our clients requested it (minified + packed) last week and today I found an updated version and it seems t work fine: <a href="http://code.google.com/p/protosafe/">http://code.google.com/p/protosafe/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/code/2008-10-24/new-protosafe-released-yay/feed/</wfw:commentRss>
		</item>
		<item>
		<title>how to cut a string with regex (the neat way)</title>
		<link>http://blog.aint-no-soul.com/code/2008-10-09/how-to-cut-a-string-with-regex-the-neat-way/</link>
		<comments>http://blog.aint-no-soul.com/code/2008-10-09/how-to-cut-a-string-with-regex-the-neat-way/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 17:36:21 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[code]]></category>

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=189</guid>
		<description><![CDATA[It is fairy a common task to cut a string - ie when a teaser text should not be longer than n characters. A lot of people use substring() or substr(), depending on their favourite language. However with regex it is really easy and you do not need to cut a word:

// in php it [...]]]></description>
			<content:encoded><![CDATA[<p>It is fairy a common task to cut a string - ie when a teaser text should not be longer than <em>n</em> characters. A lot of people use substring() or substr(), depending on their favourite language. However with regex it is really easy and you do not need to cut a word:</p>
<pre name="code" class="java:nocontrols:nogutter">
// in php it would be:
preg_match("/(.{1,15}(\s))/", $yourString, $matches);

// or in java something like this - maybe ; )
Pattern myPattern = Pattern.compile((.{1,15}(\\s)));
Matcher myMatch = myPattern.matcher(yourString);</pre>
<p>To put it in plain english:<br />
* get the first 15 characters (same as substring)<br />
* BUT - and here goes the magic: match less until you find a whitespace character and cut the rest. </p>
<p>So it could look like this in php:</p>
<pre name="code" class="php:nocontrols:nogutter">&lt;?php
// you could check the length of the string but actually you don't need to ...
$myString = "People seem to enjoy things more when they know a lot of other people have been left out of the pleasure.";

preg_match("/(.{1,15}(\s))/", $yourString, $matches);
echo $matches[0]." ...";

// would print:
// People seem to ...
// and with {1,27}
// People seem to enjoy things ...
?&gt;</pre>
<p>beer o&#8217;clock! cheers <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/code/2008-10-09/how-to-cut-a-string-with-regex-the-neat-way/feed/</wfw:commentRss>
		</item>
		<item>
		<title>daily madness</title>
		<link>http://blog.aint-no-soul.com/digital-life/2008-09-24/daily-madness/</link>
		<comments>http://blog.aint-no-soul.com/digital-life/2008-09-24/daily-madness/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 16:06:04 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[digital life]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=188</guid>
		<description><![CDATA[I got up to late today and my ticket list is ways to long plus I need to finish some work for a client. However - the weather is fine today and I don&#8217;t feel stressed or something like that. I bought the new Roots Manuva and really like it. I had a &#8220;club-mate&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<p>I got up to late today and my ticket list is ways to long plus I need to finish some work for a client. However - the weather is fine today and I don&#8217;t feel stressed or something like that. I bought the new Roots Manuva and really like it. I had a &#8220;club-mate&#8221; and a delicious Panini toast (yummy) and I am very looking forward to have an after work beer - in about 2 hours <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>At my work we usually do Java/JSP stuff but a few weeks I did a small PHP Job here and today I made the statistic in mysql. Actually nothing special but a welcome change if you imagine stupid JSP Struts tasks day in and day out and boring style-stasi requests from project managers and so on. But I am hip to the spirit and love computer work - or at least the creative-innovative part of it - the rest I try to reject and forget. Actually it is always the same - some project manager come up with a kick ass idea and then during the production it gets reduced to something really boring and forgettable unimportant whatsoever. </p>
<p>My coffee is empty [...] ^^</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/digital-life/2008-09-24/daily-madness/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL EXPLAIN aka DESCRIBE for UPDATE/DELETE</title>
		<link>http://blog.aint-no-soul.com/code/2008-09-21/mysql-explain-aka-describe-for-update_delete/</link>
		<comments>http://blog.aint-no-soul.com/code/2008-09-21/mysql-explain-aka-describe-for-update_delete/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 16:06:30 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[code]]></category>

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=187</guid>
		<description><![CDATA[Ever tryed to &#8220;explain&#8221; a delete or an update statement? It will fail. It took me nearly an hour to figure this out. Actually I&#8217;ve never needed to explain a simple DELETE statement, but in todays case I did and was wondering why my query always failed. It is too bad that there is no [...]]]></description>
			<content:encoded><![CDATA[<p>Ever tryed to &#8220;explain&#8221; a delete or an update statement? <a href="http://bugs.mysql.com/bug.php?id=14745">It will fail</a>. It took me nearly an hour to figure this out. Actually I&#8217;ve never needed to explain a simple DELETE statement, but in todays case I did and was wondering why my query always failed. It is too bad that there is no such &#8220;feature&#8221;. With InnoDB you can use of course the ON DELETE/UPDATE stuff but in my case I didn&#8217;t want to alter the existing DB. </p>
<p>However, if you need to delete multiple rows over multiple tables, you may do something like this: <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<pre name="code" class="sql:nocontrols:nogutter">DELETE stats, links, logins
FROM promo_stats AS stats
LEFT JOIN promo_links AS links USING(promo_link_id)
LEFT JOIN promo_logins AS logins USING(promo_login_id)
WHERE stats.promo_item_id=6;</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/code/2008-09-21/mysql-explain-aka-describe-for-update_delete/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Stupid New Media</title>
		<link>http://blog.aint-no-soul.com/digital-life/2008-09-17/stupid-new-media/</link>
		<comments>http://blog.aint-no-soul.com/digital-life/2008-09-17/stupid-new-media/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 16:15:15 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[digital life]]></category>

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

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

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

		<category><![CDATA[stupid new media]]></category>

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=186</guid>
		<description><![CDATA[A Project manager recently emailed me about a non working link but without to mention which link he was taking about, so I replied: «What kind of link, in what situation - how can I reproduce it?» - After a short while he sent me a screen shot and said it would happen when he [...]]]></description>
			<content:encoded><![CDATA[<p>A Project manager recently emailed me about a non working link but without to mention which link he was taking about, so I replied: «What kind of link, in what situation - how can I reproduce it?» - After a short while he sent me a screen shot and said it would happen when he clicks on a flash file. (Why does he bother me? He has sent me the flash file and someone else created it.) </p>
<p>Nevertheless I am a very kind IT guy and explained the issue to him - So I wrote him that a link to an external resource always consist out of: 1) a protocol name, 2) an instruction for the browser that it is an external resource :// and finally 3) the domain name and last but not least the TLD and optional paths or parameters. </p>
<p>You may call me a fault finder but that&#8217;s something that happened not the first time. I guess this is a classic example of: stupid new media. People who are working in the new media should knew what a friggin link is - especially when they are Project Manager of a website!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/digital-life/2008-09-17/stupid-new-media/feed/</wfw:commentRss>
		</item>
		<item>
		<title>trip to hamburg/Schleswig-Holstein</title>
		<link>http://blog.aint-no-soul.com/personal/2008-09-15/trip-to-hamburg-and-schleswig-holstein/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-09-15/trip-to-hamburg-and-schleswig-holstein/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 16:51:18 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[personal]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=182</guid>
		<description><![CDATA[I just came back from a short trip to Hamburg and Schleswig-Holstein. Actually it was my Moms bday and I bought her some stuff for the kitchen and I hope she will enjoy the designer pepper mill  On Sunday we went to the Arboretum (some sort of a botanical garden), which is a really [...]]]></description>
			<content:encoded><![CDATA[<p>I just came back from a short trip to Hamburg and Schleswig-Holstein. Actually it was my Moms bday and I bought her some stuff for the kitchen and I hope she will enjoy the designer pepper mill <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> On Sunday we went to the Arboretum (some sort of a botanical garden), which is a really nice place, although there is a small fee to pay. There&#8217;s a little lake with lotus, water lilies and koi fish. I took some pics with my phone, so if you&#8217;re interested you can get a picture <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><img src="/files/2008/09/_img00023-20080914-1448.jpg" alt="" title="_img00023-20080914-1448" width="500" height="375" class="alignnone size-full wp-image-183" /></p>
<p><img src="/files/2008/09/_img00031-20080914-1543.jpg" alt="" title="_img00031-20080914-1543" width="500" height="375" class="alignnone size-full wp-image-184" /></p>
<p><img src="/files/2008/09/_img00032-20080914-1554.jpg" alt="" title="_img00032-20080914-1554" width="500" height="375" class="alignnone size-full wp-image-185" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-09-15/trip-to-hamburg-and-schleswig-holstein/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ACR</title>
		<link>http://blog.aint-no-soul.com/personal/2008-09-10/acr/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-09-10/acr/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 08:42:40 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[digital life]]></category>

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=181</guid>
		<description><![CDATA[There are some things I really dislike and one of that are «anonymous calls» and because of that I&#8217;ve installed iCall Manager on my Blackberry and tada - it works. All incoming anonymous calls gets now rejected. Good bye whoeveryouare! 
]]></description>
			<content:encoded><![CDATA[<p>There are some things I really dislike and one of that are «anonymous calls» and because of that I&#8217;ve installed <a href="http://www.i-softwarelabs.com/icml.html" target="_blank">iCall Manager</a> on my Blackberry and tada - it works. All incoming anonymous calls gets now rejected. Good bye whoeveryouare! <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-09-10/acr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pass Phrazr</title>
		<link>http://blog.aint-no-soul.com/code/2008-09-09/pass-phrazr/</link>
		<comments>http://blog.aint-no-soul.com/code/2008-09-09/pass-phrazr/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 11:16:10 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[code]]></category>

		<category><![CDATA[digital life]]></category>

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=180</guid>
		<description><![CDATA[Passwords are sometimes hard to remember, or at least hard to read, because good passwords are cryptic. That’s a fact and I am still fine with it, because I pay attention to obvious security flaws or risks. However, there are some situations when you do not need cryptic passwords – like “first time passwords”, or [...]]]></description>
			<content:encoded><![CDATA[<p>Passwords are sometimes hard to remember, or at least hard to read, because good passwords are cryptic. That’s a fact and I am still fine with it, because I pay attention to obvious security flaws or risks. However, there are some situations when you do not need cryptic passwords – like “first time passwords”, or “single time passwords”. For this particular case I came up with a nice idea and I’d like to call it pass phrazr (phraser). </p>
<p>Instead of cryptic passwords, use phrases and or simple sentences. If you just enter some phrases as possible pass phrases it doesn’t work very well, but if you use a directory it does.  Plus, you can serve i18ln passwords if you add a locale. </p>
<p>The easiest sentence is SVO structured but “Tim like Dogs” sucks and isn’t fancy at all, so I’m going to use a more stylish composition. Factual phrases with *izm nouns instead of boring objects! RaaaaR. </p>
<p>Here’s a simple MySQL Table:</p>
<pre name="code" class="sql:nocontrols:nogutter">CREATE TABLE passphrazes (
	passphraze_word 	varchar(30) 					NOT NULL,
	passphraze_type 	enum('subject','verb','noun') 	NOT NULL,
	PRIMARY KEY (passphraze_word)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;</pre>
<p>If you still wonder about it - the magic goes here:</p>
<pre name="code" class="sql:nocontrols:nogutter">SELECT concat(
	(SELECT passphraze_word
		FROM passphrazes
		WHERE passphraze_type = 'subject'
		ORDER BY RAND()
		LIMIT 1),
	'-',
	(SELECT passphraze_word
		FROM passphrazes
		WHERE passphraze_type = 'verb'
		ORDER BY RAND()
		LIMIT 1),
	'-',
	(SELECT passphraze_word
		FROM passphrazes
		WHERE passphraze_type = 'noun'
		ORDER BY RAND()
		LIMIT 1)
);</pre>
<p>No clue jet? Well, by selecting random rows you can generate funny phrases like:</p>
<p><em>He allocated nahualism.<br />
She reinforced mithridatism.<br />
They served social-evolutionism.</em></p>
<p>Then style it and additionally pimp it more secure (replace spaces with dashes, plus signs, or even camelize it) in your favourite coding language:</p>
<p><em>He-allocated-nahualism.<br />
SheReinforcedMithridatism.<br />
They+Served+social-evolutionism.</em></p>
<p>The use case is hopefully obvious. If someone sign up at your site and you generate the first time password for the user, why not something meaningful? There are tons of possibilities to combine words unique. </p>
<p>*updated*</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/code/2008-09-09/pass-phrazr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Up to date with something</title>
		<link>http://blog.aint-no-soul.com/personal/2008-09-03/up-to-date-with-something/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-09-03/up-to-date-with-something/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 15:45:38 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[digital life]]></category>

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

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

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

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

		<category><![CDATA[mobile phone]]></category>

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=179</guid>
		<description><![CDATA[It was time to get a new mobile phone so I&#8217;ve choosen the BlackBerry Bold 9000 for 89,- EUR and hope it will be delivered until tomorrow. I guess I will not use all the fancy features it  claims to provide but it&#8217;s good to know I could if I would like to. - [...]]]></description>
			<content:encoded><![CDATA[<p>It was time to get a new mobile phone so I&#8217;ve choosen the <a href="http://www.blackberry.com/blackberrybold/">BlackBerry Bold 9000</a> for 89,- EUR and hope it will be delivered until tomorrow. I guess I will not use all the fancy features it  claims to provide but it&#8217;s good to know I could if I would like to. - Nah, I will use some of them for sure, like the GPS + Maps, email, 2MP Cam, IM stuff, Organizer, Browser and of course I&#8217;ll use it primary as phone <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Also I&#8217;ve canceled the 16mbit / VOIP Alice Contract and ordered a VDSL 25 MBIT/ISDN line from t-kom and hope we&#8217;ll get it until next month. </p>
<p>Also I&#8217;ve installed <a href="http://www.google.com/chrome/">chrome</a>, googles new browser but more importantly it seems to me that googles war against MS reaches another level. I wonder what MS will be in two years. MS loses constant market share in the browser business and I&#8217;ll be surprised about the Moz Foundation and google corporation in the future. Firefox has meanwhile a <a href="http://marketshare.hitslink.com/report.aspx?qprid=1">good share with ~20%</a> and as someone mentioned some weeks ago, every laptop above 1000 USD is a Mac. Yarr, and there is no IE since 5.5 for the Mac and every development ist discontinued. Thus I assume that the IE will no more be the browser to develop for (primary) in future, because it will be just one amongst of many. And! If the <a href="http://en.wikipedia.org/wiki/United_States_v._Microsoft">antitrust law finaly forbid the bundling of Browser/OS</a> - then <a href="http://en.wikipedia.org/wiki/Browser_wars">a long fought war</a> is eventually won!</p>
<p>However! </p>
<p>Updates may also appear in the real world and yesterday I&#8217;ve  (managed to) updated my competent revenue authorities with the &#8220;est&#8221;, &#8220;gse&#8221; and &#8220;n&#8221; Papers, without any assistance &#8230; *sigh* :p</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-09-03/up-to-date-with-something/feed/</wfw:commentRss>
		</item>
		<item>
		<title>areal-records.com finally online</title>
		<link>http://blog.aint-no-soul.com/personal/2008-07-08/areal-records-com-finally-online/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-07-08/areal-records-com-finally-online/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 22:04:32 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[code]]></category>

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

		<category><![CDATA[areal records]]></category>

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

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=178</guid>
		<description><![CDATA[It took us quite a while until we were all satisfied but now it&#8217;s done and you can view it over here:
» http://areal-records.com/
The site relies on prototype, some web 2.0 gimmickry, scriptaculous and the pear framework, a wonderful combine script for CSS and JS. Firefox 3 still needs some »pimping« but for all the other [...]]]></description>
			<content:encoded><![CDATA[<p>It took us quite a while until we were all satisfied but now it&#8217;s done and you can view it over here:</p>
<p>» <a href="http://areal-records.com/" target="_blank">http://areal-records.com/</a></p>
<p>The site relies on prototype, some web 2.0 gimmickry, scriptaculous and the pear framework, a wonderful combine script for CSS and JS. Firefox 3 still needs some »pimping« but for all the other browsers it should work fine, as far as I can tell. </p>
<p>It&#8217;s midnight.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-07-08/areal-records-com-finally-online/feed/</wfw:commentRss>
		</item>
		<item>
		<title>have to pay customs for threadless t-shirt</title>
		<link>http://blog.aint-no-soul.com/personal/2008-07-04/have-to-pay-customs-for-threadless-t-shirt/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-07-04/have-to-pay-customs-for-threadless-t-shirt/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 12:27:08 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[personal]]></category>

		<category><![CDATA[t-shirts]]></category>

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=177</guid>
		<description><![CDATA[What da f..k? And the damn office has still closed on Sat and is located out in the sticks. It&#8217;s raining outside an my company canceled »beer and sausage« Man - that truely sucks!
Note: I had to pay 20 Euro tariff for 5 T-Shirts.
]]></description>
			<content:encoded><![CDATA[<p>What da f..k? And the damn office has still closed on Sat and is located out in the sticks. It&#8217;s raining outside an my company canceled »beer and sausage« Man - that truely sucks!</p>
<p>Note: I had to pay 20 Euro tariff for 5 T-Shirts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-07-04/have-to-pay-customs-for-threadless-t-shirt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thursday</title>
		<link>http://blog.aint-no-soul.com/personal/2008-07-04/thursday/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-07-04/thursday/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 23:01:31 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[code]]></category>

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

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

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

		<category><![CDATA[beer and sausage]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=176</guid>
		<description><![CDATA[My neighbours just had sex - uhh, ahhh, uuhhhh - well for about 4 minutes - not much longer - then they were done. So I&#8217;d call it a quickly. I was quite tempted to have a look but I thought that would be indecent and naughty, even though it sounded like a doggy-style  [...]]]></description>
			<content:encoded><![CDATA[<p>My neighbours just had sex - uhh, ahhh, uuhhhh - well for about 4 minutes - not much longer - then they were done. So I&#8217;d call it a quickly. I was quite tempted to have a look but I thought that would be indecent and naughty, even though it sounded like a doggy-style <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> However, I&#8217;m no voyeur and it&#8217;s a hot night and every cool cat wanna have a kitten - or so&#8230;</p>
<p>The only reason I&#8217;ve noticed them is, our balcony doors are next to each other and both are wide open. But for my excuse, I&#8217;m still fixing a database - or better said, I do a modification. for writershops.com I use the world DB from MySQL plus an extra column for the CIA facts book country code. However, I&#8217;m still thinking about to extend it with postal codes and make it public to everyone. Maybe. Time-management is not one of my primary attributes so far.</p>
<p>Tomorrow we have &#8220;beer and sausage&#8221; at our company, which is quite cool - I mean the fact that we do such things on company time and money. Each first Friday on every new month one department is organizing this little event. Last time we had Becks, this time we&#8217;ll have Berliner and sausages. </p>
<p>However (I love this word), I&#8217;m currently working on a new JavaScript lib, with a carousel, an interactive navigation and some tab switcher, a lightbox, some fx wrapper and other stuff, based on prototype and scriptaculous. That it nothing phenomenal, but I try to keep it slick as possible and of course flexible. ATM you still can apply any function to the callback functions »beforeStart« and »afterFinish«, via one method call. I&#8217;ll post the code when I&#8217;ve got something like a milestone release, which seems to be end of July. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-07-04/thursday/feed/</wfw:commentRss>
		</item>
		<item>
		<title>5 new t-shirts!</title>
		<link>http://blog.aint-no-soul.com/personal/2008-06-17/5-new-t-shirts/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-06-17/5-new-t-shirts/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 19:06:23 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[art]]></category>

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

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

		<category><![CDATA[t-shirts]]></category>

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=175</guid>
		<description><![CDATA[Yay-Ha!
I&#8217;ve ordered 5 new shirts at threadless.com again and I&#8217;m looking forward to wear em. 
The Beginning

Tools Of The Trade

Fake Pandas Have More Fun

No More Bento

Terrible Wonderful Strange

]]></description>
			<content:encoded><![CDATA[<h3>Yay-Ha!</h3>
<p>I&#8217;ve ordered 5 new shirts at <a href="http://www.threadless.com/">threadless.com</a> again and I&#8217;m looking forward to wear em. </p>
<h4>The Beginning</h4>
<p><a href="http://www.threadless.com/product/1078/The_Beginning"><img src="http://media.threadless.com/product/1078/minizoom.jpg" alt="The Beginning" /></a></p>
<h4>Tools Of The Trade</h4>
<p><a href="http://www.threadless.com/product/805/Tools_Of_The_Trade"><img src="http://media.threadless.com/product/805/minizoom.jpg" alt="Tools Of The Trade" /></a></p>
<h4>Fake Pandas Have More Fun</h4>
<p><a href="http://www.threadless.com/product/583/Fake_Pandas_Have_More_Fun"><img src="http://media.threadless.com/product/583/minizoom.jpg" alt="Fake Pandas Have More Fun" /></a></p>
<h4>No More Bento</h4>
<p><a href="http://www.threadless.com/product/607/No_More_Bento"><img src="http://media.threadless.com/product/607/minizoom.jpg" alt="No More Bento" /></a></p>
<h4>Terrible Wonderful Strange</h4>
<p><a href="http://www.threadless.com/product/1247/Terrible_Wonderful_Strange"><img src="http://media.threadless.com/product/1247/minizoom.jpg" alt="Terrible Wonderful Strange" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-06-17/5-new-t-shirts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>medizin-online.de finally online now and hello north</title>
		<link>http://blog.aint-no-soul.com/personal/2008-06-17/medizin-onlinede-finally-online-now-and-hello-north/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-06-17/medizin-onlinede-finally-online-now-and-hello-north/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 18:41:08 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[personal]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=174</guid>
		<description><![CDATA[It took us 3 weeks more than expected(stupid things like a missing index = up to 140 server-load) but since last week medizin-online.de it&#8217;s online. YAY!  However! Tomorrow we&#8217;ll go to Sylt and to be more precise to »List«, relaxing for 3-4 Days at the beach and maybe doing a day trip to Rømø. [...]]]></description>
			<content:encoded><![CDATA[<p>It took us 3 weeks more than expected(stupid things like a missing index = up to 140 server-load) but since last week <a href="http://www.medizin-online.de/">medizin-online.de</a> it&#8217;s online. YAY! <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> However! Tomorrow we&#8217;ll go to Sylt and to be more precise to »List«, relaxing for 3-4 Days at the beach and maybe doing a day trip to <a href="http://www.romo.dk/">Rømø</a>. I really love the northern part of Germany - because that&#8217;s where I&#8217;m from and »List« is <em>&#8220;the northernmost municipality in Germany, located on the North Sea island of Sylt close to Denmark in the district of Nordfriesland in the state of Schleswig-Holstein <a href="http://en.wikipedia.org/wiki/List%2C_Schleswig-Holstein">(wiki)</a>&#8220;</em>. </p>
<p>On the way back we&#8217;ll visit my family, especially my Grandma, Mom and Cousin, because I haven&#8217;t seen them for quite a while. I guess 2 Years for now and plus that: my Dear haven&#8217;t seen Hamburg yet! Haha, that&#8217;s a lot of things to do in just 5 Days. 3 Cities and approximately 1.000 km by car - but the beach will excuse everything <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-06-17/medizin-onlinede-finally-online-now-and-hello-north/feed/</wfw:commentRss>
		</item>
		<item>
		<title>just launched springer business media</title>
		<link>http://blog.aint-no-soul.com/work/2008-06-03/just-launched-springer-business-media/</link>
		<comments>http://blog.aint-no-soul.com/work/2008-06-03/just-launched-springer-business-media/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 11:35:33 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[work]]></category>

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

		<category><![CDATA[springer business media]]></category>

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=173</guid>
		<description><![CDATA[It took a while but it&#8217;s finally online. Just abuse your mouse and click on the screenshot below to view the site. Nothing special and I&#8217;ve saw a few minutes ago I gotta fix some stuff but visually it&#8217;s ok and everthing seems to work. SBM is my first project I&#8217;ve done with struts. I [...]]]></description>
			<content:encoded><![CDATA[<p>It took a while but it&#8217;s finally online. Just abuse your mouse and click on the screenshot below to view the site. Nothing special and I&#8217;ve saw a few minutes ago I gotta fix some stuff but visually it&#8217;s ok and everthing seems to work. SBM is my first project I&#8217;ve done with struts. I do not like struts that much - actually it sucks IMHO but that&#8217;s just me <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://springer-business-media.de/" target="_blank"><img src="/wp-content/gallery/work/sringer-business-media.jpg" alt="springer business media screenshot" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/work/2008-06-03/just-launched-springer-business-media/feed/</wfw:commentRss>
		</item>
		<item>
		<title>thai graff</title>
		<link>http://blog.aint-no-soul.com/madebypeople/2008-05-13/thai-graff/</link>
		<comments>http://blog.aint-no-soul.com/madebypeople/2008-05-13/thai-graff/#comments</comments>
		<pubDate>Tue, 13 May 2008 20:53:32 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[art]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=170</guid>
		<description><![CDATA[quick-note: I&#8217;ve just &#8220;approved&#8221; a graff-shop from Bangkok, Thailand for writershops.com. How cool is that! The first asian shop so far!
]]></description>
			<content:encoded><![CDATA[<p>quick-note: I&#8217;ve just &#8220;approved&#8221; a graff-shop from Bangkok, Thailand for <a href="http://writershops.com/in/THA;Bangkok">writershops.com</a>. How cool is that! The first asian shop so far!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/madebypeople/2008-05-13/thai-graff/feed/</wfw:commentRss>
		</item>
		<item>
		<title>love and hate not hatelove</title>
		<link>http://blog.aint-no-soul.com/personal/2008-04-23/love-and-hate-not-hatelove/</link>
		<comments>http://blog.aint-no-soul.com/personal/2008-04-23/love-and-hate-not-hatelove/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 15:58:51 +0000</pubDate>
		<dc:creator>biophonc</dc:creator>
		
		<category><![CDATA[personal]]></category>

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

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

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

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

		<guid isPermaLink="false">http://blog.aint-no-soul.com/?p=166</guid>
		<description><![CDATA[I&#8217;m currently working on the medizin-online.de relounge and that&#8217;s a lot of work. Really - believe me  Once again I fight my dislike for the IE and hate it how the IE6 displays certain elements but I love the Papyrus we&#8217;ve bought yesterday and hope the red pepper, sunflower, wild flower, herbs and snowflakes [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working on the <a href="http://www.medizin-online.de/" target="_blank">medizin-online.de</a> relounge and that&#8217;s a lot of work. Really - believe me <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> Once again I fight my dislike for the IE and hate it how the IE6 displays certain elements but I love the Papyrus we&#8217;ve bought yesterday and hope the red pepper, sunflower, wild flower, herbs and snowflakes will grow nicely. To bad I have to do so much computer related work atm, that the wonderfull sun outside will shine without my physically presence. That&#8217;s why I have good music (RA.092 Derek Plaslaiko) on my headphones (AKG K81DJ) and lots of sweets on my desk. </p>
<p>I also feel very comfortable in my new cargo pants (carhartt) and white addidas superstars (v2) &#8230; <img src='http://blog.aint-no-soul.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>However - it is Wendsday and I should continue to work on the site mentioned above. The sun IS still shining! ^^</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aint-no-soul.com/personal/2008-04-23/love-and-hate-not-hatelove/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
