<?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>eBlog &#187; linux</title>
	<atom:link href="http://emresaglam.com/blog/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://emresaglam.com/blog</link>
	<description>My Blog about my life and my thoughts...</description>
	<lastBuildDate>Fri, 03 Feb 2012 07:08:53 +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>Airlink Ultra Mini USB Adapter with Linux</title>
		<link>http://emresaglam.com/blog/988</link>
		<comments>http://emresaglam.com/blog/988#comments</comments>
		<pubDate>Wed, 16 Mar 2011 16:36:38 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/?p=988</guid>
		<description><![CDATA[We recently bought this Ultra mini usb wifi adapter for our laptop that had it&#8217;s internal wifi card fried. Since this laptop was acting really bad with Windows XP, we installed Ubuntu on it. At first Ubuntu couldn&#8217;t recognize the adapter. Then I wanted to try ndiswrapper. All I had to do was to install [...]]]></description>
			<content:encoded><![CDATA[<p>We recently bought this Ultra mini usb wifi adapter for our laptop that had it&#8217;s internal wifi card fried. Since this laptop was acting really bad with Windows XP, we installed Ubuntu on it.</p>
<p>At first Ubuntu couldn&#8217;t recognize the adapter. Then I wanted to try ndiswrapper. All I had to do was to install ndisgtk (sudo apt-get install ndisgtk). It installs ndiswrapper-utils package as a dependency. Then point the ndisgtk to the .inf file of the driver.  (net8192cu.inf)</p>
<p>Here is a more detailed write-up for <a href="https://help.ubuntu.com/community/WifiDocs/Driver/Ndiswrapper">generic ndiswrapper configuration</a> from ubuntu.</p>
<p>The ID for this adapter is: 0bda:8176<br />
When you run <em>lsusb</em> it shows as: Bus 001 Device 002: ID 0bda:8176 Realtek Semiconductor Corp.<br />
The manufacturer id is: AWLL5088</p>
<p><img class="aligncenter" title="AWLL5088" src="http://i.imgur.com/hjqQ5l.jpg" alt="" width="480" height="640" /></p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/988/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repeat the last macro in vim</title>
		<link>http://emresaglam.com/blog/966</link>
		<comments>http://emresaglam.com/blog/966#comments</comments>
		<pubDate>Tue, 09 Nov 2010 18:26:36 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/?p=966</guid>
		<description><![CDATA[So you wrote a macro in vim and you want to repeat the last macro multiple times and you don&#8217;t know how. You type @@ Now you know how.]]></description>
			<content:encoded><![CDATA[<p>So you wrote a macro in vim and you want to repeat the last macro multiple times and you don&#8217;t know how. </p>
<p>You type @@</p>
<p>Now you know how. <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/966/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating random files.</title>
		<link>http://emresaglam.com/blog/951</link>
		<comments>http://emresaglam.com/blog/951#comments</comments>
		<pubDate>Tue, 07 Sep 2010 21:28:59 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/?p=951</guid>
		<description><![CDATA[Here is a bash script to create 100 random files with random sizes smaller than 400KB. I needed this to quickly generate 100 files to use it on a stress test. for ((i=1;i&#60;101;i++)); do size=`expr $RANDOM % 400` dd if=/dev/urandom of=/tmp/testfile.$i bs=1024 count=$size done Explanation: The for loop is pretty straightforward, it counts from 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a bash script to create 100 random files with random sizes smaller than 400KB. I needed this to quickly generate 100 files to use it on a stress test.</p>
<p><code>for ((i=1;i&lt;101;i++)); do<br />
size=`expr $RANDOM % 400`<br />
dd if=/dev/urandom of=/tmp/testfile.$i bs=1024 count=$size<br />
done</code></p>
<p>Explanation:</p>
<p>The for loop is pretty straightforward, it counts from 1 to 100.</p>
<p><code>size=`expr $RANDOM % 400`</code></p>
<p>This line generates a random number between 0 &#8211; 399</p>
<p><code>dd if=/dev/urandom of=/tmp/testfile.$i bs=1024 count=$size</code></p>
<p>This line generates a file with blocksize (bs / not bullsh!t) 1024 times the random number that we generated. The input for that file is the special urandom device in linux. (It&#8217;s the random number generator for the linux kernel)<br />
The name of the file is also straightforward.</p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/951/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lotus Notes 8.5 on Ubuntu 10.04</title>
		<link>http://emresaglam.com/blog/933</link>
		<comments>http://emresaglam.com/blog/933#comments</comments>
		<pubDate>Wed, 30 Jun 2010 15:22:16 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/?p=933</guid>
		<description><![CDATA[If you need to run native Linux client for Lotus Notes 8.5 on Ubuntu 10.04: 1) After installing your ibm_lotus_notes*.deb files, drop the following files under /opt/ibm/lotus/notes libgdk-x11-2.0.so.0 libgtk-x11-2.0.so.0 libgdk_pixbuf_xlib-2.0.so.0 libgdk_pixbuf-2.0.so.0 You can get the files here. 2) Install msttcorefonts package: sudo apt-get install msttcorefonts 3) Go to File -&#62; Preferences and choose Windows and [...]]]></description>
			<content:encoded><![CDATA[<p>If you need to run native Linux client for Lotus Notes 8.5 on Ubuntu 10.04:</p>
<p>1) After installing your ibm_lotus_notes*.deb files, drop the following files under /opt/ibm/lotus/notes</p>
<p>libgdk-x11-2.0.so.0<br />
libgtk-x11-2.0.so.0<br />
libgdk_pixbuf_xlib-2.0.so.0<br />
libgdk_pixbuf-2.0.so.0</p>
<p>You can get the files <a href="http://www.freetechie.com/upload/lotus_notes/">here</a>.</p>
<p>2) Install msttcorefonts package: sudo apt-get install msttcorefonts</p>
<p>3) Go to File -&gt; Preferences and choose Windows and Themes on the left pane. For Theme, choose Operating System Theme. This way most of the fonts in the UI look much better.</p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/933/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gnome and the glslideshow screensaver setup.</title>
		<link>http://emresaglam.com/blog/924</link>
		<comments>http://emresaglam.com/blog/924#comments</comments>
		<pubDate>Tue, 25 May 2010 20:23:00 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bitching]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/?p=924</guid>
		<description><![CDATA[First of all, setting up screensaver configurations in gnome is a total mess. I don&#8217;t know why they decided to release and use gnome-screensaver instead of using xscreensaver. And I don&#8217;t want to know either. My ubuntu setup is an archaic one. It&#8217;s an upgrade over an upgrade over an upgrade. I probably upgraded 4 [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, setting up screensaver configurations in gnome is a total mess. I don&#8217;t know why they decided to release and use gnome-screensaver instead of using xscreensaver. And I don&#8217;t want to know either.</p>
<p>My ubuntu setup is an archaic one. It&#8217;s an upgrade over an upgrade over an upgrade. I probably upgraded 4 or 5 times. So my config files might be overwritten, wrongly upgraded, etc&#8230; But I was having this horrible issue of not being able to setup my glslideshow settings.</p>
<p>You can search this online. Mainly people are complaining about how to setup the directory from where glslideshow reads the images, also how to set it up so that it doesn&#8217;t idiotically show the same images 5 times over and over again. Well I&#8217;ll repeat these in this blog post and some more which are not covered.</p>
<h2><strong>Initial Setup:</strong></h2>
<p>First of all to setup the directory to read the images go to your home directory and create/edit file <em>.xscreensaver</em> like the one below:</p>
<blockquote><p>imageDirectory: /home/username/Pictures/Slideshow/or/wherever</p></blockquote>
<p>This sets up your screensavers that are using images, to use this directory instead of  <em>/usr/share/backgrounds </em>(the default directory). Some people on the internet tells you to symlink it to your directory, but I think this is a far better way of doing it.</p>
<p>If you read the glslideshow manual (RTFM), it tells you that by default glslideshow pans an image for 6 seconds (Ken Burns/Pan Scale effect) and displays it for 30 seconds. This means that the glslideshow will idiotically display the same image 5 times. (30/6=5)</p>
<p>In order to fix this issue, you will need to tell it to pan it <em>n</em> seconds and display it also <em>n</em> seconds. So the command should be:</p>
<blockquote><p>/usr/lib/xscreensaver/glslideshow -root -pan 6 -duration 6</p></blockquote>
<p>(-root means display on the root window which is the way screensavers work)</p>
<p>The configuration for this resides at: <em>/usr/share/applications/screensavers/glslideshow.desktop</em></p>
<p>Go ahead and edit that file as root and change the line that reads:</p>
<blockquote><p>Exec=/usr/lib/xscreensaver/glslideshow -root</p></blockquote>
<p>to</p>
<blockquote><p>Exec=/usr/lib/xscreensaver/glslideshow -root -pan 6 -duration 6</p></blockquote>
<p>Now you are ready to have a slideshow that displays with pan/scale each image for 6 seconds.</p>
<h2><strong>And it all doesn&#8217;t work&#8230;</strong></h2>
<p>This is where the shit hit the fan for me. No matter what I did, my glslideshow was still running as <em>/usr/lib/xscreensaver/glslideshow -root</em> (ps aux | grep glslideshow)</p>
<p>After a stubborn and painful few hours I discovered that these settings were being cached in a file called: <em>/usr/share/applications/desktop.en_US.utf8.cache</em> (This is WTF number one)</p>
<p>If you look at this file, it&#8217;s a 56 KB cache file of all the settings gnome is reading for all of it&#8217;s applications!! I guess it should have been setup to delete it on restart but for some reason it never got deleted&#8230;</p>
<p>After renaming this file (never delete them, always rename them <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) the slideshow started to run as I wanted it to be.</p>
<p>WTF number two was that when I tried to add new images to my slideshow directory, glslideshow never picked them up. At the end of another painful search I found that the list of images are actually cached in a file called <em>.xscreensaver-getimage.cache</em> under <em>/home/username/tmp/</em> (username is your username). I got rid of that file&#8230;</p>
<p>So now, it looks like I have a slideshow screensaver which kind of works. And hopefully you too&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/924/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia n900 new firmware is out.</title>
		<link>http://emresaglam.com/blog/911</link>
		<comments>http://emresaglam.com/blog/911#comments</comments>
		<pubDate>Tue, 16 Feb 2010 17:14:24 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[n900]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/911</guid>
		<description><![CDATA[Nokia released a 16 MB minor release for the n900. The firmware version is: 3.2010.02-8 I had some issues with the update. I basically ran out of rootfs disk space. The update application complains as: Not enough space in location. For me disabling all the extra repositories and running apt-get clean; apt-get autoremove did the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" title="new firmware" src="http://imgur.com/COq69l.jpg" alt="" width="558" height="335" /></p>
<p>Nokia released a 16 MB minor release for the n900. The firmware version is: 3.2010.02-8</p>
<p>I had some issues with the update. I basically ran out of rootfs disk space. The update application complains as: Not enough  space in location. For me disabling all the extra repositories and running apt-get clean; apt-get autoremove did the trick.</p>
<p>This looks like a bugfix update, and might be paving the road for the PR1.2 release. Still official changelog is a mystery. For more info check <a href="http://talk.maemo.org/showthread.php?t=44650">this thread</a> on talk.maemo.org.</p>
<p>Also the update takes another ~3 MB on your rootfs. <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/911/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More about battery life on my n900</title>
		<link>http://emresaglam.com/blog/901</link>
		<comments>http://emresaglam.com/blog/901#comments</comments>
		<pubDate>Thu, 21 Jan 2010 22:43:45 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[n900]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/?p=901</guid>
		<description><![CDATA[This battery life situation is kinda pissing me off. I wrote a script to get charge, battery %, and cpu load. Made it run every 10 mins to collect the data. I unplugged the phone at 9:40 am. No 3g, no wireless, very few interaction. About 10-20 mins phone conversation. And at 15:30 the battery [...]]]></description>
			<content:encoded><![CDATA[<p>This battery life situation is kinda pissing me off. <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I wrote a script to get charge, battery %, and cpu load. Made it run every 10 mins to collect the data. I unplugged the phone at 9:40 am. No 3g, no wireless, very few interaction. About 10-20 mins phone conversation. And at 15:30 the battery was completely drained. It gives me 6 hours of battery life under normal conditions.</p>
<p>The handset runs very warm. I found a temp sensor in the /sys folder but I don&#8217;t know if it&#8217;s telling me the truth since it&#8217;s constantly at 38﻿° C. I contacted the Nokia support, I hope they can provide me something. Maybe I have a defect battery.</p>
<p>Here are the charts since I love them&#8230; <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://emresaglam.com/blog/wp-content/uploads/2010/01/charge.png"><img class="aligncenter size-full wp-image-899" title="Discharge graphic" src="http://emresaglam.com/blog/wp-content/uploads/2010/01/charge.png" alt="Discharge graphic" width="897" height="163" /></a><a href="http://emresaglam.com/blog/wp-content/uploads/2010/01/load.png"></a></p>
<p><a href="http://emresaglam.com/blog/wp-content/uploads/2010/01/perc.png"><img class="aligncenter size-full wp-image-898" title="Battery %" src="http://emresaglam.com/blog/wp-content/uploads/2010/01/perc.png" alt="Battery %" width="897" height="163" /></a></p>
<p><a href="http://emresaglam.com/blog/wp-content/uploads/2010/01/load.png"><img class="aligncenter size-full wp-image-900" title="System Load" src="http://emresaglam.com/blog/wp-content/uploads/2010/01/load.png" alt="System Load" width="881" height="163" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/901/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia n900 review</title>
		<link>http://emresaglam.com/blog/881</link>
		<comments>http://emresaglam.com/blog/881#comments</comments>
		<pubDate>Tue, 19 Jan 2010 19:47:41 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[n900]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/?p=881</guid>
		<description><![CDATA[Background information: All and all I&#8217;m definitely a Linux person. That means my expectations from n900 was primarily to be hackable I&#8217;m also coming from the world of blackberry. My previous hand-held was 8320. Other than being an extremely well designed smart-phone for business and email, it was pretty much useless for me. In this [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Background information:</strong><br />
All and all I&#8217;m definitely a Linux person. That means my expectations from n900 was primarily to be hackable <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;m also coming from the world of blackberry. My previous hand-held was 8320. Other than being an extremely well designed smart-phone for business and email, it was pretty much useless for me. In this review i will also try to compare them.</p>
<p>I actually wanted buy the new google nexus one, it turned out that being a T-mobile customer for almost ten years would actually <strong>not</strong> allow you to qualify for the discount price of $180 with a two year plan renewal. So I said phukitol, and went and spent my $500+ to a Nokia n900 instead of a Nexus One.</p>
<p><strong>N900:</strong><br />
N900 is the flagship product of Nokia for 2009-2010. It&#8217;s running maemo as the OS. It&#8217;s the &#8220;other&#8221; linux based handheld OS currently developed only by Nokia (well apart being open source for most parts of it). It&#8217;s debian based. So ubuntu/debian users will find theirselves pretty much at home. (System wise of course. UI is completely unrelated)</p>
<p><a href="http://emresaglam.com/blog/wp-content/uploads/2010/01/nokia-n900-wide_keyboard.jpg"><img class="size-medium wp-image-884 alignleft" title="nokia n900 keyboard" src="http://emresaglam.com/blog/wp-content/uploads/2010/01/nokia-n900-wide_keyboard-300x231.jpg" alt="" width="180" height="139" /></a>It has a full qwerty (for US) keyboard. The screen slides up to reveal it. If you don&#8217;t want to use the physical keyboard, it also offers a virtual one. It&#8217;s kinda weird though because the virtual keyboard is a full screen keyboard <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It also has a great camera. Very good widescreen 800&#215;480 resolution. It works with t-mobile 3g, which is first for me. I had a chance to test the 3g around Washington, DC and Providence, RI. I&#8217;m not very impressed. But when it really is on 3g things get super fast.</p>
<p><strong>Goods:</strong></p>
<ul>
<li>Awesome environment if you are a linux person.</li>
<li>Great user interface. Very smooth and shiny. Almost never slow and never frustrating.</li>
<li>Basic applications are already bundled out of the box. Nokia default software repositories are setup. (Apt-get with a good UI) if you want community supported apps you have to enable the Extras(-devel|-testing) repositories. (Which is setup but disabled for Extras) More infor <a href="http://wiki.maemo.org/Extras">here</a> and <a href="http://thenokiablog.com/2009/10/27/maemo-extras-nokia-n900-applications/">here</a>.</li>
<li>Killer web browser. It has the new <a href="https://wiki.mozilla.org/Projects/Mobile">fennec</a> in it. Fennec is basically mobile version of Mozilla Firefox. So far i had no issues opening any web page! It supports flash player, javascript&#8230; If you need one reason to switch from blackberry, this would be it. Zooming, Copy/Paste, Hovering are very well implemented.</li>
<li>The maemo SDK and emulator was very easy to <a href="http://www.nokiausers.net/forum/nokia-n900/31920-howto-get-linux-maemo-sdk-w-emulator-running.html">install</a> on my ubuntu. I will soon start hacking <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>It has all the beauties of a linux box. I mean ssh, sshd, terminal, vi, grep, more, busybox, etc&#8230; you get what i mean <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  It&#8217;s a great feeling to port forward your home machine&#8217;s web server to localhost and open the web browser to browse your home machine through the ssh tunnel for example <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>The media player is very very good. One really great thing is that it has an FM transmitter built-in! You can transmit your songs to any usable FM frequency and listen on a car radio for example. Including the network streaming radios! (Bridge between conventional and internet radio!) It also comes with a good in ear headset with microphone.</li>
<li>Great contacts management. With some tricks you can import your google and gtalk contacts and manually merge them. The contacts become a unified messaging system. You can call, gtalk IM, gtalk voice, skype, SIP call from the very same contacts manager. Merging contacts are also very intuitive and easy.</li>
</ul>
<p><strong>Not So Goods:</strong></p>
<ul>
<li>Battery: It is better than a laptop, but worse than a smartphone. OK, I&#8217;m heavily using the phone, meaning browsing, SIP, IM&#8230; And I was expecting a not so good battery life, but I wasn&#8217;t expecting this bad <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  This is the only thing that is on the frustrating level. With daily usage (whatever that means) I get around 6-10 hours of battery life at max.</li>
<li>Email Client (Modest): It&#8217;s an OK client. It displays your emails, it let&#8217;s you write an email, if you are offline, it let&#8217;s you queue them and it knows how to send then when you get online. But it ends there <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  There is no search! You cannot search your emails. If you are a blackberry convert, you would be dissatisfied. It needs improvements.</li>
<li>Applications: As you could imagine, there are not many applications à la iPhone or Android. But there are a lot of good, stable open applications. For example, there is no google maps. (But there is a nokia maps app which is not that bad) I think with the popularity of this phone, there will be more apps out. <a href="https://store.ovi.com/">Ovi Store</a> is a good start.</li>
<li>Keyboard: It&#8217;s a good slim keyboard. But the top line of keys are sometimes hard to press because they are very close to the sliding &#8220;lid&#8221;. There is very little space to fit your fingers.</li>
</ul>
<p>Overall, I think this phone has a lot of potential. It sleek, very sexy and user friendly. Absolutely a great potential for linux hackers and developers. If I would have an option to return it, I probably wouldn&#8217;t. And I&#8217;m happy that I didn&#8217;t buy a Nexus One. <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Note: Wow it looks like me and engadget did a <a href="http://www.engadget.com/2010/01/19/nokia-n900-review/">review</a> at the same time <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/881/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Digital Frame or bust&#8230;</title>
		<link>http://emresaglam.com/blog/843</link>
		<comments>http://emresaglam.com/blog/843#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:46:46 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://emresaglam.com/blog/?p=843</guid>
		<description><![CDATA[I&#8217;m writing this entry to push me to finish my neverending story about the digital frame project I started. I&#8217;m hoping that the entry will give me some sort of ignition after more than a year. I had an old Dell Latitude c600 sitting at home and collecting dust. Like many other old hardware I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing this entry to push me to finish my neverending story about the digital frame project I started. I&#8217;m hoping that the entry will give me some sort of ignition after more than a year.</p>
<p>I had an old Dell Latitude c600 sitting at home and collecting dust. Like many other old hardware I have at home&#8230; So I decided to convert it to a digital frame that I can hang it somewhere.</p>
<p>Here are my goals:</p>
<ol>
<li>Have a low power, low cost digital frame.</li>
<li>Ability to manage it wirelessly.</li>
<li>Make it easy to use</li>
<li>Have fun.</li>
<li>Make an old hardware happy.</li>
</ol>
<p>The very first step was to dissect the laptop and remove the guts. It turned out to be somewhat challenging, but with the right tools and time, things moved pretty good. I&#8217;m not going to go into details on how to dissect a c600, but here is a picture in the late stages of the dissection.</p>
<p><a href="http://emresaglam.com/blog/wp-content/uploads/2009/11/IMG_9183.jpg"><img class="size-medium wp-image-844 alignnone" title="Guts and glory" src="http://emresaglam.com/blog/wp-content/uploads/2009/11/IMG_9183-300x225.jpg" alt="Guts and glory" width="300" height="225" /></a></p>
<p>Next step was to remove all the unnecessary parts like battery, CD-ROM, and some mini pci cards like ethernet/modem combo. I kept the pcmcia slot for the wireless card, and while there, added some leftover RAM to it. After neatly placing them all together, here is how it looks with BIOS setup on. The image is tilted to get rid of the flash glare.</p>
<p><a href="http://emresaglam.com/blog/wp-content/uploads/2009/11/IMG_9185.jpg"><img class="size-medium wp-image-850 alignnone" title="bios view" src="http://emresaglam.com/blog/wp-content/uploads/2009/11/IMG_9185-225x300.jpg" alt="bios view" width="225" height="300" /></a></p>
<p>Now the software step. Of course my OS of choice is Debian/Linux. I installed bare minimum <a href="http://debian.org">Debian </a>with <a href="http://www.fluxbox.org/">fluxbox</a> as desktop manager. Al I needed to do was to find a low cpu/memory usage image viewer. At first I thought about not having a Graphic User interface, and use <a href="http://www.svgalib.org/rus/zgv/">zgv</a> from the console, but then I gave up since it was too much trouble. (Still I think it would be cool to have a console only picture frame, maybe on the next version)</p>
<p>Instead, I decided to use <a href="http://linuxbrit.co.uk/software/feh/">feh</a>. I must say i&#8217;m extremely satisfied with feh and recommend to everybody <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  The only issue I had was that the mouse pointer was showing in the middle of the frame which was not a good sight. I used <a href="http://www.ibiblio.org/pub/X11/contrib/utilities/unclutter-8.README">unclutter </a>to get rid of that. (I had to hack the program a bit to my taste)</p>
<p>I wrote some scripts and changed some config files for all this to start automatically. I will share the scripts later when the whole project is completed.</p>
<p>Now that the computer part is done, I need to take the measurements and head home depot or similar place to create some base for the frame and also buy a nice looking frame to place everything inside. So I guess there will be a second part of the blog entry.</p>
<p>Here is how it looks like as of now:</p>
<p><img class="alignleft size-medium wp-image-856" title="Haris and me" src="http://emresaglam.com/blog/wp-content/uploads/2009/11/IMG_9190-225x300.jpg" alt="Haris and me" width="225" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/843/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Viewing word files on a Linux console</title>
		<link>http://emresaglam.com/blog/313</link>
		<comments>http://emresaglam.com/blog/313#comments</comments>
		<pubDate>Tue, 25 Nov 2008 15:38:41 +0000</pubDate>
		<dc:creator>Emre</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I needed to see a word file on my ssh session this time&#8230; If you have a similar need try to use antiword. It basically parses the word document and sends the output as a text file to your console. Of course don`t expect it to render the graphic files in your word document]]></description>
			<content:encoded><![CDATA[<p>I needed to see a word file on my ssh session this time&#8230; If you have a similar need try to use <a href="http://www.winfield.demon.nl/">antiword</a>. It basically parses the word document and sends the output as a text file to your console. Of course don`t expect it to render the graphic files in your word document <img src='http://emresaglam.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://emresaglam.com/blog/313/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

