<?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>johan.geradeaus.se</title>
	<atom:link href="http://johan.geradeaus.se/feed/" rel="self" type="application/rss+xml" />
	<link>http://johan.geradeaus.se</link>
	<description>Personal Mix</description>
	<lastBuildDate>Tue, 20 Dec 2011 18:18:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Tools of work</title>
		<link>http://johan.geradeaus.se/2011/12/tools-of-work/</link>
		<comments>http://johan.geradeaus.se/2011/12/tools-of-work/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 18:15:29 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=165</guid>
		<description><![CDATA[I decided to give away my trusted HTC Desire, a phone that has a very nice blend of performance and size. I&#8217;ve always liked small phones (Ericsson T68 and SE X10 Mini being favourites) but as the current crop of smartphones are growing more and more there is not that much to choose from if [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to give away my trusted HTC Desire, a phone that has a very nice blend of performance and size. I&#8217;ve always liked small phones (Ericsson T68 and SE X10 Mini being favourites) but as the current crop of smartphones are growing more and more there is not that much to choose from if you want features and performance&#8230; As I&#8217;m doing development on Android the choice became easier. Last week I got hold of the new Google Nexus and now I&#8217;m trying to get used to the size&#8230;</p>
<p>Findings this far is that ICS is still young and that many apps need new releases to be stable or run at all. Otherwise it&#8217;s working as expected and I&#8217;m waiting for Samsung to release the scandinavian dictionary&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2011/12/tools-of-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia J</title>
		<link>http://johan.geradeaus.se/2011/09/nokia-j/</link>
		<comments>http://johan.geradeaus.se/2011/09/nokia-j/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 20:15:50 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=163</guid>
		<description><![CDATA[I&#8217;ve applied to Smartson to become a testpilot for the Nokia J bluetooth headset (http://smartsontestpilot.se/nokia-j/bli-testpilot/)  - this is going to be interesting as I&#8217;ve used numerously headset for my phones over the years. So far the best sound quality has been from traditional headsets with a cord (always tangled) and the best mobility paired with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve applied to Smartson to become a testpilot for the Nokia J bluetooth headset (<a title="Smartson" href="http://smartsontestpilot.se/nokia-j/bli-testpilot/">http://smartsontestpilot.se/nokia-j/bli-testpilot/</a>)  - this is going to be interesting as I&#8217;ve used numerously headset for my phones over the years. So far the best sound quality has been from traditional headsets with a cord (always tangled) and the best mobility paired with sound quality I&#8217;ve found this far is the Jabra JX10. So let&#8217;s see if the Nokia is matching those (providing I get to test it of course&#8230;)!</p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2011/09/nokia-j/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript function of the day (JFOTD)</title>
		<link>http://johan.geradeaus.se/2011/06/javascript-function-of-the-day-jfotd/</link>
		<comments>http://johan.geradeaus.se/2011/06/javascript-function-of-the-day-jfotd/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 08:10:46 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=152</guid>
		<description><![CDATA[Doing some manipulation of selectboxes with the help of http://www.texotela.co.uk/code/jquery/select/. Using it to add a massive amount of options with the use of ajax. $("#QueryResp").ajaxAddOption("./persons.xsp", {}, false, setOptionValue, [{"value":strResp}]); Yes, I&#8217;m using xPages to feed the JSON to the function. Works very well with the added performance and cache possibilities of xpage &#8220;agents&#8221;. To be [...]]]></description>
			<content:encoded><![CDATA[<p>Doing some manipulation of selectboxes with the help of <a href="http://www.texotela.co.uk/code/jquery/select/" target="_blank">http://www.texotela.co.uk/code/jquery/select/</a>. Using it to add a massive amount of options with the use of ajax.</p>
<p><code> $("#QueryResp").ajaxAddOption("./persons.xsp", {}, false, setOptionValue, [{"value":strResp}]);<br />
</code></p>
<p>Yes, I&#8217;m using xPages to feed the JSON to the function. Works very well with the added performance and cache possibilities of xpage &#8220;agents&#8221;.</p>
<p>To be able to set a default selected option I wrote a small function that is called when loading of options is complete.<br />
<code><br />
function setOptionValue(arg) {<br />
var $this = $(this);<br />
$this.selectOptions(arg.value, true);<br />
}<br />
</code></p>
<p>Very handy function to read url parameters as well;<br />
<code><br />
function getURLParameter(name) {<br />
return unescape(<br />
(RegExp(name + '=' + '(.+?)(&amp;|$)').exec(location.search)||[,null])[1]);<br />
}<br />
</code></p>
<p>All with the help of jQuery of course.</p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2011/06/javascript-function-of-the-day-jfotd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Randomize a list in formula language</title>
		<link>http://johan.geradeaus.se/2011/02/randomize-a-list/</link>
		<comments>http://johan.geradeaus.se/2011/02/randomize-a-list/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 12:17:50 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Lotus Domino]]></category>
		<category><![CDATA[formula language]]></category>
		<category><![CDATA[randomize]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=134</guid>
		<description><![CDATA[Today I was faced with a small problem &#8211; I needed to randomize a list in Lotus Domino formula language. After looking through the available commands I ended up with the following code; REM {Original list that should be randomized}; _list := "A" : "B" : "C" : "D"; REM {Append random value to each [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was faced with a small problem &#8211; I needed to randomize a list in Lotus Domino formula language. After looking through the available commands I ended up with the following code;</p>
<p><code>REM {Original list that should be randomized};<br />
_list := "A" : "B" : "C" : "D";</code></p>
<p><code>REM {Append random value to each element in list, then sort it};<br />
_sortedlist := @Sort(@Transform(_list; "x"; @Text(@Random) + "|" + x));</p>
<p></code></p>
<p><code>REM {Extract the original value from element and return};<br />
@Implode(@RightBack(_sortedlist; "|"); @NewLine)</code></p>
<p>The trick is to add a random value to each of the original elements and then sort the new list. After the sorting the random value can be removed.</p>
<p>Problem solved!</p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2011/02/randomize-a-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading. How it should be done.</title>
		<link>http://johan.geradeaus.se/2011/01/upgrading-how-it-should-be-done/</link>
		<comments>http://johan.geradeaus.se/2011/01/upgrading-how-it-should-be-done/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 14:00:47 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=125</guid>
		<description><![CDATA[Upgrading your current wordpress installation is possible the quickest upgrade you can do. Login to your administration dashboard, click upgrade and one more confirmation click. Wait 5 seconds. You&#8217;re installation has been upgraded!]]></description>
			<content:encoded><![CDATA[<p>Upgrading your current wordpress installation is possible the quickest upgrade you can do. Login to your administration dashboard, click upgrade and one more confirmation click. Wait 5 seconds. You&#8217;re installation has been upgraded!</p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2011/01/upgrading-how-it-should-be-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Updates for 2010-10-06</title>
		<link>http://johan.geradeaus.se/2010/10/twitter-updates-for-2010-10-06/</link>
		<comments>http://johan.geradeaus.se/2010/10/twitter-updates-for-2010-10-06/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 18:00:00 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Daily]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/2010/10/twitter-updates-for-2010-10-06/</guid>
		<description><![CDATA[Godmorgon! Börjar bli riktigt mörkt nu när man åker till jobbet! # When #Apple make #Pages on #iPad support #Dropbox I buy it! #ALotOfTags # @jdagerot @Rutberg Skulle vilja få igång både Skandiabanken och Handelsbanken på iPad. in reply to jdagerot # Skandiabankens Mobila Plånbok stödjer inte många funktioner. Dessutom kostar det per överföring och [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Godmorgon! Börjar bli riktigt mörkt nu när man åker till jobbet! <a href="http://twitter.com/joros/statuses/26521571773" class="aktt_tweet_time">#</a></li>
<li>When #<a href="http://search.twitter.com/search?q=%23Apple" class="aktt_hashtag">Apple</a> make #<a href="http://search.twitter.com/search?q=%23Pages" class="aktt_hashtag">Pages</a> on #<a href="http://search.twitter.com/search?q=%23iPad" class="aktt_hashtag">iPad</a> support #<a href="http://search.twitter.com/search?q=%23Dropbox" class="aktt_hashtag">Dropbox</a> I buy it! #<a href="http://search.twitter.com/search?q=%23ALotOfTags" class="aktt_hashtag">ALotOfTags</a> <a href="http://twitter.com/joros/statuses/26526164300" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jdagerot" class="aktt_username">jdagerot</a>  @<a href="http://twitter.com/Rutberg" class="aktt_username">Rutberg</a> Skulle vilja få igång både Skandiabanken och Handelsbanken på iPad. <a href="http://twitter.com/jdagerot/statuses/26477199952" class="aktt_tweet_reply">in reply to jdagerot</a> <a href="http://twitter.com/joros/statuses/26526304527" class="aktt_tweet_time">#</a></li>
<li>Skandiabankens Mobila Plånbok stödjer inte många funktioner. Dessutom kostar det per överföring och saldoförfrågan! #<a href="http://search.twitter.com/search?q=%23fail" class="aktt_hashtag">fail</a> <a href="http://twitter.com/joros/statuses/26526449826" class="aktt_tweet_time">#</a></li>
<li>Inte så stor chans att bankid fungerar på iPad/Mobile Safari&#8230; #<a href="http://search.twitter.com/search?q=%23ipadse" class="aktt_hashtag">ipadse</a> <a href="http://twitter.com/joros/statuses/26526686027" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/matsfagerberg" class="aktt_username">matsfagerberg</a> Grattis! Jag har blivit beroende av en sådan på bara en vecka&#8230; <a href="http://twitter.com/matsfagerberg/statuses/26441002876" class="aktt_tweet_reply">in reply to matsfagerberg</a> <a href="http://twitter.com/joros/statuses/26526729461" class="aktt_tweet_time">#</a></li>
<li>Ohhh, this is my 1982nd tweet. Celebrations are coming up! #<a href="http://search.twitter.com/search?q=%23Soon2000" class="aktt_hashtag">Soon2000</a> <a href="http://twitter.com/joros/statuses/26526857666" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/claes" class="aktt_username">claes</a> Ja, det saknas något mellan min MacBook Pro och min iPad. <img src='http://johan.geradeaus.se/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  <a href="http://twitter.com/claes/statuses/26527883103" class="aktt_tweet_reply">in reply to claes</a> <a href="http://twitter.com/joros/statuses/26528055328" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/rutberg" class="aktt_username">rutberg</a> Hehe, inte lätt med bokstäverna ibland! Ursäkta att jag knackade på dörren <img src='http://johan.geradeaus.se/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  <a href="http://twitter.com/rutberg/statuses/26526577050" class="aktt_tweet_reply">in reply to rutberg</a> <a href="http://twitter.com/joros/statuses/26530108230" class="aktt_tweet_time">#</a></li>
<li>Hihi! <a href="http://rumpetroll.com/" rel="nofollow">http://rumpetroll.com/</a> <a href="http://twitter.com/joros/statuses/26542366764" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sasabrkic" class="aktt_username">sasabrkic</a> Interesting, might have a look at it. <a href="http://twitter.com/sasabrkic/statuses/26544663182" class="aktt_tweet_reply">in reply to sasabrkic</a> <a href="http://twitter.com/joros/statuses/26545174829" class="aktt_tweet_time">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2010/10/twitter-updates-for-2010-10-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari 5</title>
		<link>http://johan.geradeaus.se/2010/06/safari-5/</link>
		<comments>http://johan.geradeaus.se/2010/06/safari-5/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 05:03:58 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=115</guid>
		<description><![CDATA[Posting this with the ScribeFire extension in Safari 5 as I (maybe temporarily) has ditched Google Chrome as my default browser on my Mac. Safari 5 has nice speed and works really well with the new extensions. What I don&#8217;t know right now is of Safari is handling memory as good ad Chrome, but time [...]]]></description>
			<content:encoded><![CDATA[<p>Posting this with the ScribeFire extension in Safari 5 as I (maybe temporarily) has ditched Google Chrome as my default browser on my Mac. Safari 5 has nice speed and works really well with the new extensions. What I don&#8217;t know right now is of Safari is handling memory as good ad Chrome, but time will tell. One thing I&#8217;ve been missing so far is the built-in search in the address bar that works so good in Chrome.</p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2010/06/safari-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test pilot for a Canon 550D</title>
		<link>http://johan.geradeaus.se/2010/05/test-pilot-for-a-canon-550d/</link>
		<comments>http://johan.geradeaus.se/2010/05/test-pilot-for-a-canon-550d/#comments</comments>
		<pubDate>Sat, 22 May 2010 06:11:06 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=114</guid>
		<description><![CDATA[I&#8217;ve applied for this http://www.smartson.se/testpilot-550D.html &#8211; keeping my fingers crossed! I really would like this one as replacement to my trusty old 350D.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve applied for this http://www.smartson.se/testpilot-550D.html &#8211; keeping my fingers crossed! I really would like this one as replacement to my trusty old 350D.</p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2010/05/test-pilot-for-a-canon-550d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Not really necessary</title>
		<link>http://johan.geradeaus.se/2010/04/not-really-necessary/</link>
		<comments>http://johan.geradeaus.se/2010/04/not-really-necessary/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 20:18:58 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=113</guid>
		<description><![CDATA[But I had to try the WordPress application on my HTC Desire!]]></description>
			<content:encoded><![CDATA[<p>But I had to try the WordPress application on my <a href="http://www.htc.com">HTC</a> Desire!</p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2010/04/not-really-necessary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writeroom &#8211; the tool for infomaniacs</title>
		<link>http://johan.geradeaus.se/2009/10/writeroom-the-tool-for-infomaniacs/</link>
		<comments>http://johan.geradeaus.se/2009/10/writeroom-the-tool-for-infomaniacs/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 20:30:06 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://johan.geradeaus.se/?p=106</guid>
		<description><![CDATA[If you have the bad habit of always trying to keep updated on what is happening around you (twitter, facebook, rss, web???) and getting the feeling that whenever you sit down in front of the computer you never getting any things done (NGTD, sort of related to GTD?). Then his is THE writing tool! Writeroom [...]]]></description>
			<content:encoded><![CDATA[<p>If you have the bad habit of always trying to keep updated on what is happening around you (twitter, facebook, rss, web???) and getting the feeling that whenever you sit down in front of the computer you never getting any things done (NGTD, sort of related to GTD?).</p>
<p>Then his is THE writing tool!</p>
<p>Writeroom sports green text on black background &#8211; perfect for concentrating on writing. It&#8217;s really amazing what a nice feeling such a simple program can give you &#8211; the feeling of only concentrating on one thing &#8211; writing!</p>
<p>More information at <a href="http://www.hogbaysoftware.com/products/writeroom" target="_blank">http://www.hogbaysoftware.com/products/writeroom</a></p>
]]></content:encoded>
			<wfw:commentRss>http://johan.geradeaus.se/2009/10/writeroom-the-tool-for-infomaniacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

