<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Connecting the dots</title>
	<atom:link href="http://benjaminbaka.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://benjaminbaka.wordpress.com</link>
	<description>The sky is not the limit</description>
	<lastBuildDate>Sat, 28 Jan 2012 16:32:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='benjaminbaka.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Connecting the dots</title>
		<link>http://benjaminbaka.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://benjaminbaka.wordpress.com/osd.xml" title="Connecting the dots" />
	<atom:link rel='hub' href='http://benjaminbaka.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Programming assembly for x86-64 bit machines</title>
		<link>http://benjaminbaka.wordpress.com/2012/01/28/programming-assembly-for-x86-64-bit-machines/</link>
		<comments>http://benjaminbaka.wordpress.com/2012/01/28/programming-assembly-for-x86-64-bit-machines/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 16:28:27 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[64 bit assembly code]]></category>
		<category><![CDATA[assembly code function 64 bit]]></category>
		<category><![CDATA[assembly language function x86-64 bit]]></category>
		<category><![CDATA[x86-64 bit assembly code]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=116</guid>
		<description><![CDATA[x86-64 bit assembly code example<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=116&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>    Following assembly books which are written for x86-32 bit machines on a 64 bit machine can be a pain in the ass. Thankfully I found this site <a href="http://www.x86-64.org/documentation/assembly.html"> http://www.x86-64.org/documentation/assembly.html</a><br />
 that really clarified things for me. Thus this is a short example of an assembly program written for an x86-64 bit machines demonstrating how a function can be called. The sample function takes a number a returns the square of that number.</p>
<p><pre class="brush: plain;">
# A program to call a function a compute 
# the square of a number.

.section .data

.section .text

.globl _start

_start:

	push $5			#push first argument	

	call square		# call the square function
	movq $1, %rax    #Call to exit

	int $0x80

# Square Function.
# takes a number and squares it.
# returns the squared number.

.type square, @function
square:
	push %rbp			# save old base pointer
	movq %rsp, %rbp     		# make stack pointer the base pointer
	movq 16(%rbp), %rcx   		# Copy the first argument from the
					# stack which is on position two. 
					# Thus its 2 quad-words which requires 16
	imul %rcx, %rcx   		# Square and store the number
	
	mov %rcx, %rbx			# store the return value
						
	movq %rbp, %rsp			# restore the stack pointer
	pop %rbp
	ret

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=116&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2012/01/28/programming-assembly-for-x86-64-bit-machines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>Insert code in wordpress posts</title>
		<link>http://benjaminbaka.wordpress.com/2012/01/25/insert-code-in-wordpress-posts/</link>
		<comments>http://benjaminbaka.wordpress.com/2012/01/25/insert-code-in-wordpress-posts/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 05:24:45 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[insert source code into wordpress]]></category>
		<category><![CDATA[using source code in wordpress]]></category>
		<category><![CDATA[wordpress syntax highlight]]></category>
		<category><![CDATA[wordpress.com insert code]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=110</guid>
		<description><![CDATA[enabling syntax highlight on code in wordpress.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=110&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Follow this link to insert code in your wordpress blogs which is hosted on the wordpress.com. This is for those who blog on wordpress.com <strong>itself.</strong></p>
<p><code> http://en.support.wordpress.com/code/posting-source-code/ </code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=110&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2012/01/25/insert-code-in-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>Enabling execution of cgi scripts on linux (debian)</title>
		<link>http://benjaminbaka.wordpress.com/2012/01/25/enabling-execution-of-cgi-scripts-on-linux-debian/</link>
		<comments>http://benjaminbaka.wordpress.com/2012/01/25/enabling-execution-of-cgi-scripts-on-linux-debian/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 05:17:41 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[cgi enable]]></category>
		<category><![CDATA[debian cgi script enable]]></category>
		<category><![CDATA[how to execute cgi on debian]]></category>
		<category><![CDATA[how to execute cgi on linux]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=98</guid>
		<description><![CDATA[how to execute cgi scripts on linux, <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=98&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is how to enable the execution of cgi scripts on linux. Add the following code the <code> /etc/apache2/httpd.conf <code> file.<br />
<pre class="brush: plain;">
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
&lt;Directory &quot;/var/www/cgi-bin/&quot;&gt;
    Options ExecCGI
    AllowOverride All
    Order allow, deny
    Allow from all
&lt;/Directory&gt;
</pre></p>
<p>Remember to make the files that are put there executable by the doing the following.<br />
<pre class="brush: bash;">
% chmod +x file.cgi
</pre></p>
<p>Lastly you should have had the cgi module loaded in apache.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=98&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2012/01/25/enabling-execution-of-cgi-scripts-on-linux-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting Up libcdio for Ruby on Debian Lenny</title>
		<link>http://benjaminbaka.wordpress.com/2010/07/01/setting-up-libcdio-for-ruby-on-debian-lenny/</link>
		<comments>http://benjaminbaka.wordpress.com/2010/07/01/setting-up-libcdio-for-ruby-on-debian-lenny/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 05:26:54 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[libcdio]]></category>
		<category><![CDATA[libcdio debian]]></category>
		<category><![CDATA[libcdio linux]]></category>
		<category><![CDATA[libcdio ruby]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=88</guid>
		<description><![CDATA[I am on the verge of a writing a program to read a list of tracks from an audio CD in C but since i also program Ruby i am playing around with it using an already existing library. This is how to set it up on a debian machine. % apt-get install libcdio % [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=88&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am on the verge of a writing a program to read a list of tracks from an audio CD in C but since i also program Ruby i am playing around with it using an already existing library. This is how to set it up on a debian machine.</p>
<p><strong>% apt-get install libcdio</strong></p>
<p><strong>% apt-get install libcdio-dev</strong></p>
<p><strong>% apt-get install libcdio-cdda-dev</strong></p>
<p><strong>% apt-get install iso9660-dev</strong></p>
<p><strong>% gem install rbcdio<br />
</strong></p>
<p><strong>% apt-get install libcddb-dev</strong></p>
<p>% irb</p>
<p>%</p>
<p><strong>irb(main):001:0&gt;</strong> require &#8216;rubygems&#8217;</p>
<p><strong>irb(main):002:0&gt;</strong> require &#8216;cdio&#8217;</p>
<p>And that is that.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=88&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2010/07/01/setting-up-libcdio-for-ruby-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>Restarting supertux</title>
		<link>http://benjaminbaka.wordpress.com/2010/06/04/restarting-supertux/</link>
		<comments>http://benjaminbaka.wordpress.com/2010/06/04/restarting-supertux/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 15:13:13 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[supertux]]></category>
		<category><![CDATA[supertux configure]]></category>
		<category><![CDATA[supertux linux]]></category>
		<category><![CDATA[supertux reinstallation]]></category>
		<category><![CDATA[supertux rm]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=83</guid>
		<description><![CDATA[If you have been wondering how to set your supertux installation so that you can play the whole game as if you just installed it then issue this command on your system. % rm -r ~/.supertux That is it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=83&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you have been wondering how to set your supertux installation so that you can play the whole game as if you just installed it then issue this command on your system.</p>
<p>% rm -r ~/.supertux</p>
<p>That is it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=83&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2010/06/04/restarting-supertux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>The tee command</title>
		<link>http://benjaminbaka.wordpress.com/2010/05/26/the-tee-command/</link>
		<comments>http://benjaminbaka.wordpress.com/2010/05/26/the-tee-command/#comments</comments>
		<pubDate>Wed, 26 May 2010 23:48:02 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tee command]]></category>
		<category><![CDATA[tee help]]></category>
		<category><![CDATA[tee linux]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=78</guid>
		<description><![CDATA[If you are looking for a very good tutorial to the tee command look no further. http://en.wikipedia.org/wiki/Tee_(command)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=78&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a very good tutorial to the tee command look no further.</p>
<p>http://en.wikipedia.org/wiki/Tee_(command)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=78&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2010/05/26/the-tee-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>Using xargs</title>
		<link>http://benjaminbaka.wordpress.com/2010/05/26/using-xargs/</link>
		<comments>http://benjaminbaka.wordpress.com/2010/05/26/using-xargs/#comments</comments>
		<pubDate>Wed, 26 May 2010 23:44:44 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[xargs]]></category>
		<category><![CDATA[xargs find]]></category>
		<category><![CDATA[xargs mv]]></category>
		<category><![CDATA[xargs whitespaces]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=75</guid>
		<description><![CDATA[For sometime now i have been trying to use the xargs command but it sometimes proves somewhat hard for me to understand but now i think i have got the hang of it. Here is a sample code to demonstrate how easy it really is. % find . -maxdepth 1 -name &#8216;filesys*&#8217; -print0 &#124; xargs [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=75&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For sometime now i have been trying to use the xargs command but it sometimes proves somewhat hard for me to understand but now i think i have got the hang of it. Here is a sample code to demonstrate how easy it really is.</p>
<p>% find . -maxdepth 1 -name &#8216;filesys*&#8217; -print0 | xargs -0 -Ifil mv fil &#8220;thefile&#8221;</p>
<p>The various parts of the command are :</p>
<ul>
<li>.   : Represents the current directory.</li>
<li>-maxdepth : Tells the find command to which depth should it recursively look for the search term. In this case its 1.</li>
<li>-name : The name of the search term or item.</li>
<li>-print0 : Note its &#8220;Zero&#8221; not O. This prints out the file matching the name. The 0 handles file names that have whitespaces in them. I think its always good to have them on.</li>
<li>-0 : It also handles white space characters for you.</li>
<li>-I : Temporarily store the currently matched file in the variable &#8220;fil&#8221;.</li>
<li>mv : Rename the file represented by fil to ;</li>
<li>the file. You can do without the double quotes.</li>
</ul>
<p>Hope that helped.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=75&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2010/05/26/using-xargs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>How to set your date on a linux machine</title>
		<link>http://benjaminbaka.wordpress.com/2010/03/18/how-to-set-your-date-on-a-linux-machine/</link>
		<comments>http://benjaminbaka.wordpress.com/2010/03/18/how-to-set-your-date-on-a-linux-machine/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 11:53:07 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[linux date]]></category>
		<category><![CDATA[linux time]]></category>
		<category><![CDATA[setting date]]></category>
		<category><![CDATA[setting the time]]></category>
		<category><![CDATA[setting time on linux]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=70</guid>
		<description><![CDATA[This blog is about setting the time on a linux machine<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=70&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been skimming through a lot of linux books and yet not even one was able to tell me how to set the time. I mean the popular books online. I later found out that the way to set the date is by the following way:</p>
<p>% date -s  &#8220;11:58&#8243;</p>
<p>By the way you have to be root or else use sudo</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=70&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2010/03/18/how-to-set-your-date-on-a-linux-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>Europe is not so beautiful after all. Ask any Ghanaian.</title>
		<link>http://benjaminbaka.wordpress.com/2010/02/24/europe-is-not-so-beautiful-after-all-ask-any-ghanaian/</link>
		<comments>http://benjaminbaka.wordpress.com/2010/02/24/europe-is-not-so-beautiful-after-all-ask-any-ghanaian/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 12:03:07 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[Ghana]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=68</guid>
		<description><![CDATA[In the end, if Ghanaians were to be shown all the money (taxes) that went into the building of first world countries, we would say we wanted Ghana just as it is, dirty, filthy and unplanned<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=68&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The recent increase in toll prices have given a view as to how Ghanaians think about Europe. Everyone in this country hopes to live or work in a more developed country because its conditions there are good. Good roads, constant supply of electricity and water, good internet connectivity, a sound environment and a free society. Everything is tracked in Europe. Phone numbers and calls, recent crime committed, the book one is currently reading and so on.</p>
<p>But do we know all this comes at a price? Do we know that for a country to be as clean as the ones we see on tv requires a huge amount of money being sunk into it without any political undertones? I guess not.  We think the people in Europe woke up one day to find all these things there. They paid no taxes, no fines, no charges, no bills. All these things came into being without a conscious effort.</p>
<p>A little* increase in the toll price in Ghana and every body is crying foul. Its like the money is going to end up in someones pocket. Even if that is the case, a large part will go into the repair and maintenance of the road. There is nothing like free lunch. If people want Ghana to build roads with good quality lighting, road demarcation,  enough security on the  road at night, then we should welcome the increase. We all have to know that if our dream of Ghana being like what we see on tv is going to materialize then it calls for us to be devoid of politiking everything even when its in the best interest of the country. When the announcement was made people were quick to point in all political directions. Tell me , which government in Ghana has never benefited from being in power ?  They are all the same.</p>
<p>In the end, if Ghanaians were to be shown all the money (taxes) that went into the building of first world countries, we would say we wanted Ghana just as it is, dirty, filthy and unplanned. Some how, it also seems that we do not like to live by the law (constitution). We set our standards as to what the law says about things.  Probably its not so much of our fault. If the state wants people to live by the law, then the state should provide the very basic needs of the society.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=68&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2010/02/24/europe-is-not-so-beautiful-after-all-ask-any-ghanaian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
		<item>
		<title>Some linux basics, not all. #1</title>
		<link>http://benjaminbaka.wordpress.com/2010/02/17/some-linux-basics-not-all-1/</link>
		<comments>http://benjaminbaka.wordpress.com/2010/02/17/some-linux-basics-not-all-1/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 23:04:45 +0000</pubDate>
		<dc:creator>bbaka</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[cd command]]></category>
		<category><![CDATA[cd linux]]></category>
		<category><![CDATA[listing files in linux]]></category>
		<category><![CDATA[ls]]></category>
		<category><![CDATA[ls command]]></category>

		<guid isPermaLink="false">http://benjaminbaka.wordpress.com/?p=65</guid>
		<description><![CDATA[With the ls command being one of the simplest commands to use, it lists files and folders/directories. Used alone it only displays visible files and folders. To display all files visible and not visible append -a to the ls command so that it looks like this. user@ubuntu:$ ls -a To see the directory in which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=65&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With the ls command being one of the simplest commands to use, it lists files and folders/directories. Used alone it only displays visible files and folders. To display all files visible and not visible append -a to the ls command so that it looks like this.</p>
<p>user@ubuntu:$ ls -a</p>
<p>To see the directory in which you are issue the pwd command. This prints the current working directory. This command is really useful when you have no idea as to where you are in a file system. For example when you are logged unto remote server.</p>
<p>Changing the directory in which you are is very simple. The cd command changes the directory in which you are. cd alone takes you to the users home directory, (/home/user/). To change to another directory change directory use the cd command and the directory you wish to enter like this.</p>
<p>user@ubuntu:$ cd /etc</p>
<p>The directory is changed to the /etc directory.<br />
Note : The trick about the cd command is that cd .. takes you back to the immediate parent directory.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/benjaminbaka.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/benjaminbaka.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/benjaminbaka.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/benjaminbaka.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/benjaminbaka.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/benjaminbaka.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/benjaminbaka.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/benjaminbaka.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/benjaminbaka.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/benjaminbaka.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/benjaminbaka.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/benjaminbaka.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/benjaminbaka.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/benjaminbaka.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=benjaminbaka.wordpress.com&amp;blog=2258922&amp;post=65&amp;subd=benjaminbaka&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://benjaminbaka.wordpress.com/2010/02/17/some-linux-basics-not-all-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f33ec1dbecddb478d8564e4b14eed790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bbaka</media:title>
		</media:content>
	</item>
	</channel>
</rss>
