<?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>Robert Basic &#187; Free time</title>
	<atom:link href="http://robertbasic.com/blog/category/free-time/feed/" rel="self" type="application/rss+xml" />
	<link>http://robertbasic.com/blog</link>
	<description>the magic of coding...</description>
	<lastBuildDate>Mon, 30 Jan 2012 13:15:05 +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>Benchmarking pages behind a login with ab</title>
		<link>http://robertbasic.com/blog/benchmarking-pages-behind-a-login-with-ab/</link>
		<comments>http://robertbasic.com/blog/benchmarking-pages-behind-a-login-with-ab/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 21:27:50 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Free time]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[ab]]></category>
		<category><![CDATA[benchmarking]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=1316</guid>
		<description><![CDATA[Tonight I decided to relax a bit and what better way of relaxing is there for a geek then to do some bash scripting?! So for fun and no profit I decided to try and benchmark pages with ab, Apache HTTP server benchmarking tool, which are behind a login. Turns out, it&#8217;s pretty easy after [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight I decided to relax a bit and what better way of relaxing is there for a geek then to do some bash scripting?! So for fun and no profit I decided to try and benchmark pages with <a href="http://httpd.apache.org/docs/2.0/programs/ab.html">ab, Apache HTTP server benchmarking tool</a>, which are behind a login. Turns out, it&#8217;s pretty easy after reading some man pages ;)</p>
<p><strong>ab</strong>&#8216;s help pages gives a few possible leads. We can POST data with the <code>-p</code> option, which would be great if we would like to benchmark the login process itself. But, we want to test the page after the login. So we&#8217;ll need the ab&#8217;s <code>-C</code> option, which allows for passing cookies in <code>cookie-name=value</code> pairs.</p>
<p>The login process itself is done with <strong>curl</strong> as it allows us to POST data to a server and store cookies received from the server in a cookie jar. curl writes the cookies in a Netscape cookie file format, whatever that is. Sample line is:</p>
<pre name="code" class="bash">
# Netscape HTTP Cookie File
# http://curl.haxx.se/rfc/cookie_spec.html
# This file was generated by libcurl! Edit at your own risk.

example.com	FALSE	/	FALSE	0	PHPSESSID	[RANDOM_SESSION_ID]
</pre>
<p>From this output we&#8217;re interested in the <strong>[RANDOM_SESSION_ID]</strong> cookie value, as the cookie name is simply PHPSESSID and we can just hard-code it. To get the value, we use some obscure *nix magic: <code>grep</code> and <code>cut</code>. grep to grep the line with the PHPSESSID cookie and cut to cut out the 7th column from that line. Easy!</p>
<p>Now that we have the value of the cookie, we just pass it along with ab and done! We&#8217;re benchmarking pages behind a login.</p>
<p>The entire script is:</p>
<pre name="code" class="bash">
#!/bin/bash

COOKIE_JAR="/tmp/ab-login-cookie-jar"

echo "Logging in..."

curl -c $COOKIE_JAR -d username=user -d password=h4x0r http://example.com/login

echo "Getting the session id..."
PHPSESSID=$(cat $COOKIE_JAR | grep PHPSESSID | cut -f 7)

echo "The session id is:"
echo $PHPSESSID
echo "=================="

ab -n 10 -c 10 -C PHPSESSID=$PHPSESSID http://example.com/loggedin
</pre>
<p>The script is also on Github <a href="https://github.com/robertbasic/blog-examples/tree/master/ab-login">here</a>.</p>
<p>Tip: use ab&#8217;s -v option to test for HTTP codes and/or redirects to see if you are really on the page you want to be.</p>
<p>Happy hackin&#8217;!</p>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/benchmarking-pages-behind-a-login-with-ab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP User Group, Novi Sad, Serbia</title>
		<link>http://robertbasic.com/blog/php-user-group-novi-sad-serbia/</link>
		<comments>http://robertbasic.com/blog/php-user-group-novi-sad-serbia/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 09:55:27 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Blablabla]]></category>
		<category><![CDATA[Free time]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[pugns]]></category>
		<category><![CDATA[user group]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=1050</guid>
		<description><![CDATA[For almost a year now, whenever time allows it, I&#8217;m working on a side project of creating a community of PHP programmers from around here. One of the first steps was, is, a website called PHPPlaneta about which I wrote back in October. After bringing this website to a relatively steady position, time has come [...]]]></description>
			<content:encoded><![CDATA[<p>For almost a year now, whenever time allows it, I&#8217;m working on a side project of creating a community of PHP programmers from around here. One of the first steps was, is, a website called <a href="http://phpplaneta.net/">PHPPlaneta</a> about which I wrote <a href="http://robertbasic.com/blog/a-regional-php-community-website/">back in October</a>. After bringing this website to a relatively steady position, time has come to take another step: creating a PHP User Group! I&#8217;m really good at naming things so it is called &#8220;<a href="http://phpug.phpplaneta.net/pugns/">PHP User Group Novi Sad</a>&#8220;, or pugns for short.</p>
<p>Actually I really don&#8217;t know what one has to do to create a user group, but I&#8217;ll just improvise along the way. So far, the date, time and the place for the first meeting is set: April 5th, 6PM, in a local coffee shop by the Danube river. A website thingy is also up: <a href="http://phpug.phpplaneta.net/pugns/">pugns</a>, which is currently just a simple HTML page, but things will improve on that front too. The page of pugns is intentionally under a &#8220;directory&#8221;, because I&#8217;d love to host information about other PHP user groups from around here on the <a href="http://phpug.phpplaneta.net">phpug.phpplaneta.net</a> (sub)domain. It&#8217;d be nice to keep all relevant information under one &#8220;roof&#8221;.</p>
<p>Sooo&#8230; This will be an interesting ride, hope it&#8217;ll turn out fine :)</p>
<p>Of course, if anyone has some advice, tips and tricks about organizing user groups please do share them, that would be highly appreciated :)</p>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/php-user-group-novi-sad-serbia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2009 in a few words</title>
		<link>http://robertbasic.com/blog/2009-in-a-few-words/</link>
		<comments>http://robertbasic.com/blog/2009-in-a-few-words/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 11:24:10 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Blablabla]]></category>
		<category><![CDATA[Free time]]></category>
		<category><![CDATA[about]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=853</guid>
		<description><![CDATA[In 2009 some good stuff happened and some bad stuff happened. All in all, a crappy year. Hopefully, this year will be a lot better&#8230; I graduated on June 26th, the topic was a Python desktop application that communicates with a web service; both sending and receiving data is possible. Started working on July 1st [...]]]></description>
			<content:encoded><![CDATA[<p>In 2009 some good stuff happened and some bad stuff happened. All in all, a crappy year. Hopefully, this year will be a lot better&#8230;</p>
<p>I graduated on June 26th, the topic was a Python desktop application that communicates with a web service; both sending and receiving data is possible. Started working on July 1st at <a href="http://theonlinesolutions.com/">Online Solutions</a> as a PHP dev and started to &#8220;officially&#8221; give back to the Open Source community by joining the <a href="http://robertbasic.com/blog/zend-framework-bug-hunt-days/">ZF Bug Hunt Days</a> &#8211; so far few minor patches submitted and applied. Wrote a <a href="http://robertbasic.com/blog/zend-framework-18-web-application-development-book-review/">review on a ZF book</a> and another one on jQuery and PHP is in the drafts.</p>
<p>I ain&#8217;t making plans for this year, cause I have failed miserably to realize my most important plan for 2009; I&#8217;ll just improvise throughout the year.</p>
<p>Dear 2009 &#8211; up yours. 2010 &#8211; bring it on. </p>
<p>Happy new year!</p>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/2009-in-a-few-words/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Posterous</title>
		<link>http://robertbasic.com/blog/posterous/</link>
		<comments>http://robertbasic.com/blog/posterous/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 19:23:46 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Blablabla]]></category>
		<category><![CDATA[Free time]]></category>
		<category><![CDATA[Places on the web]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=829</guid>
		<description><![CDATA[Yes, I have another web social networking thingy. I opened a posterous account. All those links, images, videos&#8230; which do not have their place here, will be posted there. That way, this blog will be always for development stuff and on rare occasions some longer personal writings. You can find my posterous account at http://robertbasic.posterous.com/. [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I have another web social networking thingy. I opened a posterous account. All those links, images, videos&#8230; which do not have their place here, will be posted there. That way, this blog will be always for development stuff and on rare occasions some longer personal writings.</p>
<p>You can find my posterous account at <a href="http://robertbasic.posterous.com/">http://robertbasic.posterous.com/</a>.</p>
<p>That is all.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/posterous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ze Balkanic Tweetup</title>
		<link>http://robertbasic.com/blog/ze-balkanic-tweetup/</link>
		<comments>http://robertbasic.com/blog/ze-balkanic-tweetup/#comments</comments>
		<pubDate>Sun, 31 May 2009 15:37:17 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Blablabla]]></category>
		<category><![CDATA[Free time]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[tweetup]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=739</guid>
		<description><![CDATA[Image via CrunchBase It all started with this. Just another bored tweet from yours truly after the Sunday lunch. Followed by tweets like this and this and this and this and this. I&#8217;ll just blame the fact that it&#8217;s Sunday afternoon for the low response and that we geeks do have a life! (well, most [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl style="width: 220px;" class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/product/twitter"><img src="http://www.crunchbase.com/assets/images/resized/0000/2755/2755v2-max-450x450.png" alt="Image representing Twitter as depicted in Crun..." title="Image representing Twitter as depicted in Crun..." height="49" width="210"></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>It all started with <a href="http://twitter.com/robertbasic/status/1979854514">this</a>. Just another bored tweet from yours truly after the Sunday lunch. Followed by tweets like <a href="http://twitter.com/VladGeorgescu/status/1979859296">this</a> and <a href="http://twitter.com/anca_foster/status/1979880192">this</a> and <a href="http://twitter.com/bojanpejic/status/1980037924">this</a> and <a href="http://twitter.com/vranac/status/1980111818">this</a> and <a href="http://twitter.com/nikolaplejic/status/1980164728">this</a>. I&#8217;ll just blame the fact that it&#8217;s Sunday afternoon for the low response and that we geeks <strong>do have a life!</strong> (well, most of us&#8230; some of us&#8230;)</p>
<h2>What&#8217;s the point?</h2>
<p>To meet. To really get to know those people behind the avatars and tweets and funny names like &#8220;Swizec&#8221;.</p>
<h2>Who can come?</h2>
<p>Despite the &#8220;Balkanic&#8221; part in the name, anyone can come, no matter from where you are. Be friendly and don&#8217;t hate the geeks (geeks run the world, so, beware). One rule only: you have to have a <a class="zem_slink" href="http://twitter.com" title="Twitter" rel="homepage">Twitter</a> account. On the list below you&#8217;ll read later are my friends from <a class="zem_slink" href="http://en.wikipedia.org/wiki/Romania" title="Romania" rel="wikipedia">Romania</a>, <a class="zem_slink" href="http://en.wikipedia.org/wiki/Hungary" title="Hungary" rel="wikipedia">Hungary</a>, <a class="zem_slink" href="http://en.wikipedia.org/wiki/Slovenia" title="Slovenia" rel="wikipedia">Slovenia</a>, <a class="zem_slink" href="http://en.wikipedia.org/wiki/Croatia" title="Croatia" rel="wikipedia">Croatia</a>, <a class="zem_slink" href="http://en.wikipedia.org/wiki/Bosnia_and_Herzegovina" title="Bosnia and Herzegovina" rel="wikipedia">Bosnia</a> and <a class="zem_slink" href="http://en.wikipedia.org/wiki/Serbia" title="Serbia" rel="wikipedia">Serbia</a>. If you have a friend from these countries and I don&#8217;t know her or him, do not worry, she or he, can come too. As long as they have a Twitter account.</p>
<h2>When?</h2>
<p>In autumn. September, most likely, during a weekend, when no sane person should be working. Our dear <a href="http://twitter.com/anca_foster">Anca</a> had a knee surgery recently and will have another one sometimes in July and <strong>we shall wait for her to fully heal and recover!</strong> (the hashtag is #wewaitforanca).</p>
<p><strong>Update:</strong> I created <a href="http://twtpoll.com/tye3xy">a twtPoll on when to organize</a> the #balkanictweetup Please give your vote!</p>
<h2>Where?</h2>
<p><a class="zem_slink" href="http://en.wikipedia.org/wiki/Budapest" title="Budapest" rel="wikipedia">Budapest, Hungary</a>. Well, that&#8217;s one suggestion. But it can be somewhere else. As long as we are together :-* It would be great to last at least one night (2 days that is), but I&#8217;m fine with more, too. One day is not possible. I expect lots of you guys there and it would be impossible to drink beers with all of you in one day only (oh yeah baby, we&#8217;re gonna have lot&#8217;s of beers). So, it would be great to find a cheap hotel where there are those fancy conference halls.</p>
<h2>What will we do?</h2>
<p>Chat (IRL!!!) and eat and drink and goof around and laugh and cry and sleep (NOT!) and take pictures and go do stuff and most importantly, we&#8217;ll TWEET!!!1 There will be one special event that will be important for everyone to attend: we&#8217;ll sit around in a big freakin&#8217; circle and introduce &#8211; stand up, say hi my name is Robert, aka @robertbasic and sit down (no need for the &#8220;and I&#8217;m a Twitter addict&#8221; part, we all know that).</p>
<p>We also can give talks on some silly topics. We can show off our works. We can sing odes to the Twitter Bird. We really can do what we want. The sky is the limit.</p>
<h2>Other stuff of interest</h2>
<p>The official hashtag is <a href="http://search.twitter.com/search?q=+balkanictweetup">#balkanictweetup</a>.</p>
<p>The Tweetup tagline is &#8220;Bring netbooks and beers.&#8221;</p>
<p>The official #balkanictweetup Twitter account is <a href="http://twitter.com/balkanictweetup">@BalkanicTweetup</a>.</p>
<p>Send all your ideas, comments, appeals to zebalkanictweetup at gmail dot com</p>
<p><del datetime="2009-05-31T21:22:45+00:00">I spent all my money on beers and women so if a good Samaritan wants to support us with buying a domain and hosting for this event that would be, like, very nice of you. You would have your own page on the official #balkanictweetup page where we praise you and your good deeds.</del> The domain is bought by <a href="http://twitter.com/VladGeorgescu">Vlad Georgescu</a>. Thanks Vlad!</p>
<p>I am too lazy to make the list of my friends I promised earlier, so there will be no list for now. Sorry.</p>
<p>He, who likes this silly idea, drop me a love letter to zebalkanictweetup at gmail dot com with your real name (yes, Jozef, I mean, Swizec, you too!) and your Twitter username. I&#8217;ll make a list based on that.</p>
<p>I gotta run now. Please, share your thoughts in the comments below.</p>
<p>Love,<br />
Robert :-*</p>
<p>P.S.: Due to insane amounts of spam, I&#8217;m moderating the comments, so please wait while I approve yours. Thanks :)</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/7aa9a914-9bc9-4ce9-a0cc-b13ae5e331f6/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=7aa9a914-9bc9-4ce9-a0cc-b13ae5e331f6" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/ze-balkanic-tweetup/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Moblin, Linux for netbooks</title>
		<link>http://robertbasic.com/blog/moblin-linux-for-netbooks/</link>
		<comments>http://robertbasic.com/blog/moblin-linux-for-netbooks/#comments</comments>
		<pubDate>Thu, 21 May 2009 10:57:24 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Blablabla]]></category>
		<category><![CDATA[Free time]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[about]]></category>
		<category><![CDATA[introduction]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[moblin]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=720</guid>
		<description><![CDATA[Moblin got me curios and I wanted to test it out: Moblin is an open source project focused on building a Linux-based platform optimized for the next generation of mobile devices including Netbooks, Mobile Internet Devices, and In-vehicle infotainment systems. Cause I don&#8217;t own (yet!) a netbook, I installed it under VirtualBox (VB from now [...]]]></description>
			<content:encoded><![CDATA[<p><a class="zem_slink" href="http://www.moblin.org/" title="Moblin" rel="homepage">Moblin</a> got me curios and I wanted to test it out:</p>
<blockquote><p>Moblin is an <a class="zem_slink" href="http://www.wikinvest.com/concept/Open_Source" title="Open Source" rel="wikinvest">open source</a> project focused on building a Linux-based platform optimized for the next generation of mobile devices including Netbooks, <a class="zem_slink" href="http://en.wikipedia.org/wiki/Mobile_internet_device" title="Mobile internet device" rel="wikipedia">Mobile Internet Devices</a>, and In-vehicle infotainment systems.</p></blockquote>
<p>Cause I don&#8217;t own (yet!) a netbook, I installed it under <a class="zem_slink" href="http://www.virtualbox.org/" title="VirtualBox" rel="homepage">VirtualBox</a> (VB from now on). The image is 666 MB big and it comes not in an .iso, but in a .img format. But, VB, a really awesome software, had no troubles booting from it. As with the majority of Linux distros nowadays, Moblin image is also a <a class="zem_slink" href="http://en.wikipedia.org/wiki/Live_CD" title="Live CD" rel="wikipedia">Live CD</a>, which means you can run it, without installing it.</p>
<div id="attachment_729" class="wp-caption alignright" style="width: 310px"><a href="http://robertbasic.com/blog/wp-content/uploads/2009/05/step10.png"><img src="http://robertbasic.com/blog/wp-content/uploads/2009/05/step10-300x247.png" alt="Installing Moblin" title="Installing Moblin" class="size-medium wp-image-729" height="247" width="300"></a><p class="wp-caption-text">Installing Moblin</p></div>
<p>The preinstall process is made up from 6-7 steps: choosing the language, the keyboard layout, the timezone and, of course, the partitioning. Basically, it&#8217;s just another boring “Next-Next” process. The installation itself took around 6 minutes to finish. When it&#8217;s done, it asks for a username and a password.</p>
<p>The first boot went pretty quickly, considering that booting under VB takes longer than booting under regular installations. The thing about VB is that it needs, the so called “Guest Additions” installed on the guest machine, so that the guest machine can be used normally. In this case, I failed to install it: Moblin comes with one version of the <a class="zem_slink" href="http://www.kernel.org/" title="Linux kernel" rel="homepage">Linux kernel</a> and the additions are for another version of the kernel. This prevented me in my quest to test Moblin fully. Anyway, I&#8217;ve managed to take a few screenshots of it, all are uploaded to <a href="http://picasaweb.google.com/robertbasic.com/Moblin">my Picasa profile</a>.</p>
<div id="attachment_732" class="wp-caption alignleft" style="width: 310px"><a href="http://robertbasic.com/blog/wp-content/uploads/2009/05/screen1.png"><img src="http://robertbasic.com/blog/wp-content/uploads/2009/05/screen1-300x247.png" alt="The m_zone" title="The m_zone" class="size-medium wp-image-732" height="247" width="300"></a><p class="wp-caption-text">The m_zone</p></div>
<p>There was one thing that was strange. It has a “<a href="http://moblin.org/documentation/moblin-netbook-intro/how-get-around-moblin-netbook-ui/status-panel">Status panel</a>”, from which you can update your profiles on social networks. A really useful stuff. I just opened it up and updated <a href="http://twitter.com/robertbasic">my Twitter profile</a>. Almost. I wasn&#8217;t logged in to Twitter from it and Moblin didn&#8217;t say a word about it. It just happily said that my status is updated. Once I found the “<a href="http://moblin.org/documentation/moblin-netbook-intro/show-me-how-connect-stuff/setting-web-services">Web services</a>” panel I logged in and this time I was really updating my Twitter stream.</p>
<p>I really was hoping to test it normally and write a detailed review of it, but this guest additions thingy thought otherwise. Moblin is a great <a class="zem_slink" href="http://en.wikipedia.org/wiki/Linux_distribution" title="Linux distribution" rel="wikipedia">distro</a>, even in this beta stage I believe it&#8217;s useful. What do you think? Did you test it already, saw it in action?</p>
<p>One thing&#8217;s for sure: when I&#8217;ll get myself a netbook, it&#8217;ll run on Moblin.</p>
<p>Cheers!</p>
<p>P.S.: Check out the <a href="http://moblin.org/documentation/moblin-netbook-intro">Moblin intro</a>, too!</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/5d894d6e-e1b1-4532-9dc5-735a118271b5/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=5d894d6e-e1b1-4532-9dc5-735a118271b5" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/moblin-linux-for-netbooks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Back</title>
		<link>http://robertbasic.com/blog/back/</link>
		<comments>http://robertbasic.com/blog/back/#comments</comments>
		<pubDate>Thu, 21 May 2009 03:42:40 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Blablabla]]></category>
		<category><![CDATA[Free time]]></category>
		<category><![CDATA[about]]></category>
		<category><![CDATA[grad work]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=706</guid>
		<description><![CDATA[It&#8217;s been a while since I last wrote something; didn&#8217;t have anything smart or interesting to say. Not that I do have this time. It&#8217;s 4AM and I can&#8217;t sleep. Can&#8217;t really find the inspiration for work and writing (if you can consider these scribblings as writing). Lots of ssss&#8230; stuff happened which had a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I last wrote something; didn&#8217;t have anything smart or interesting to say. Not that I do have this time. It&#8217;s 4AM and I can&#8217;t sleep. Can&#8217;t really find the inspiration for work and writing (if you can consider these scribblings as writing). Lots of ssss&#8230; stuff happened which had a great impact on my mood and my ability to do something useful. And I just didn&#8217;t felt like doing something about it. Until recently&#8230;</p>
<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl style="width: 250px;" class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/27948364@N00/1260953913"><img src="http://farm2.static.flickr.com/1022/1260953913_7eaa7229c6_m.jpg" alt="Tuborg" title="Tuborg" width="240" height="180"></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/27948364@N00/1260953913">Tony Austin</a> via Flickr</dd>
</dl>
</div>
</div>
<p>I was having a couple of beers with a friend of mine, with whom I go to college. After the 3rd beer or so, we came to an idea of submitting a paper to this year&#8217;s <a href="http://bmf.hu/conferences/sisy2009/">SISY</a> conference. All I will say for now, that it will include <a class="zem_slink" href="http://www.python.org/" title="Python (programming language)" rel="homepage">Python</a>, Assembly, microcontrollers, electric motors and lots of other geeky stuff. This project, even while the idea is still only in my head, got my mind running again and might be the way out of this state of indifference. Why? Well, to be able to start this project, I first need to finish my current project, my graduate work. To finish my grad work, I needed to start working on it again (which I did, honest!). I&#8217;ll even spend my whole Saturday this week in the college to write/test/debug my app there. If all goes well, the app will be finished this week and I can go onto writing the documentation for the grad work. Everything will go fine, right?</p>
<p>I installed <a class="zem_slink" href="http://www.ubuntu.com/" title="Ubuntu" rel="homepage">Ubuntu</a> 9.04 on my laptop a few days ago. Loving it! Had only 2 minor issues with the hardware upon the installation. First, the graphic card was messing around, it didn&#8217;t want to enable all those funky visual effects. That got sorted out, thanks to <a href="http://twitter.com/firusvg">@firusvg</a> who suggested to install compiz and <a href="http://twitter.com/ivan86">@ivan86</a> who pointed me to <a href="http://bud.bljak.org/?p=38">this article</a>. Second, when plugged in the headphones, the sound was still coming out on the speakers. <a href="http://twitter.com/Asgrim">@Asgrim</a> sent me <a href="https://wiki.ubuntu.com/LaptopTestingTeam/SonyVaioVGN-FW31J#Notes">this link</a> which helped me to sort this out. Apart from this, everything else works out-of-box. Even the wifi!</p>
<p>OK, enough for now. Here&#8217;s to hoping that the bad times are over and the good times are coming. Cheers!</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/13cc664d-7645-41ee-9bb0-b30b8759e3e1/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=13cc664d-7645-41ee-9bb0-b30b8759e3e1" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/back/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Happy birthday, dear magician&#8230;</title>
		<link>http://robertbasic.com/blog/happy-birthday-dear-magician/</link>
		<comments>http://robertbasic.com/blog/happy-birthday-dear-magician/#comments</comments>
		<pubDate>Sun, 10 May 2009 14:24:59 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Blablabla]]></category>
		<category><![CDATA[Free time]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=701</guid>
		<description><![CDATA[Edit: Once, there was a youtube video clip here; Uriah Heep &#8211; The Magicians Birthday. Now, it is gone. That is all.]]></description>
			<content:encoded><![CDATA[<p>Edit: Once, there was a youtube video clip here; Uriah Heep &#8211; The Magicians Birthday. Now, it is gone. That is all.</p>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/happy-birthday-dear-magician/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New blog &#8211; Try Open Source</title>
		<link>http://robertbasic.com/blog/new-blog-try-open-source/</link>
		<comments>http://robertbasic.com/blog/new-blog-try-open-source/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 15:36:33 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Free time]]></category>
		<category><![CDATA[Places on the web]]></category>
		<category><![CDATA[about]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=635</guid>
		<description><![CDATA[Some of you might heard it, read it, that few of us started a new blog called Try Open Source. There&#8217;s not much there yet, but will be, I promise :) The main purpose of this blog is to educate users about open source software and to show alternatives to proprietary software. The original idea [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you might heard it, read it, that few of us started a new blog called <a href="http://tryopensource.info/">Try Open Source</a>. There&#8217;s not much there yet, but will be, I promise :)</p>
<p>The main purpose of this blog is to educate users about open source software and to show alternatives to proprietary software.</p>
<p>The original idea was a blog only in Serbian, but we got this awesome domain, so it ended up as a multi-language blog. The English version is on <a href="http://tryopensource.info/">tryopensource.info</a> and the Serbian is on <a href="http://sr.tryopensource.info/">sr.tryopensource.info</a>.</p>
<p>Be sure to <a href="http://feeds2.feedburner.com/TryOpenSourceInfo">grab the feed</a> and read our first article, an <a href="http://tryopensource.info/developer-interview-robert-castley/">interview</a> with <a href="http://twitter/robertcastley">Robert Castley</a>, the man behind <a href="http://jotbug.org" title="There's so gonna be a post about JotBug here, soon!">JotBug</a> :)</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/new-blog-try-open-source/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Full Circle Magazine</title>
		<link>http://robertbasic.com/blog/full-circle-magazine/</link>
		<comments>http://robertbasic.com/blog/full-circle-magazine/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 18:07:07 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Free time]]></category>
		<category><![CDATA[Places on the web]]></category>
		<category><![CDATA[about]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://robertbasic.com/blog/?p=581</guid>
		<description><![CDATA[Last night @zsteva shared a link of a free online magazine about Ubuntu called Full Circle Magazine: Full Circle is a free, independent, magazine dedicated to the Ubuntu family of Linux operating systems. Each month, it contains helpful how-to articles and reader submitted stories. The current issue is #21. All issues are available on the [...]]]></description>
			<content:encoded><![CDATA[<p>Last night <a href="http://twitter.com/zsteva">@zsteva</a> shared a link of a free online magazine about Ubuntu called <a href="http://fullcirclemagazine.org/">Full Circle Magazine</a>:</p>
<blockquote><p>
Full Circle is a free, independent, magazine dedicated to the Ubuntu family of Linux operating systems. Each month, it contains helpful how-to articles and reader submitted stories.
</p></blockquote>
<p>The current issue is <a href="http://fullcirclemagazine.org/2009/02/02/full-circle-21-out-now-finally/">#21</a>. All issues are available on the <a href="http://fullcirclemagazine.org/downloads/">download page</a>.</p>
<p>The current issue is a 45 page PDF; it contains news, tips on using the console, different how-tos, game reviews, interviews, etc.</p>
<p>Enjoy the reading, cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://robertbasic.com/blog/full-circle-magazine/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

