<?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>Netflow Developments &#187; laptop</title>
	<atom:link href="http://blog.netflowdevelopments.com/tag/laptop/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.netflowdevelopments.com</link>
	<description>The latest and greatest happenings in the world of Science, Technology and everything else Geek</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:48:41 +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>Static discharge through earbuds into laptop = No sound</title>
		<link>http://blog.netflowdevelopments.com/2012/02/05/static-discharge-through-earbuds-into-laptop-no-sound/</link>
		<comments>http://blog.netflowdevelopments.com/2012/02/05/static-discharge-through-earbuds-into-laptop-no-sound/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 02:48:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[discharge]]></category>
		<category><![CDATA[headphones]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[no sound]]></category>
		<category><![CDATA[static electricity]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=841</guid>
		<description><![CDATA[Well this was a fun little problem that happened to me today.. Wearing track pants on shag carpenting means a lot of static apparently and at one point I felt a sudden jolt of electricity in my ear and then my sound card died.. Everything else was working fine, my system was playing sound according [...]]]></description>
			<content:encoded><![CDATA[<p>Well this was a fun little problem that happened to me today.. Wearing track pants on shag carpenting means a lot of static apparently and at one point I felt a sudden jolt of electricity in my ear and then my sound card died.. Everything else was working fine, my system was playing sound according to the level meters but nothing was coming out of the earbuds or my speakers when I unplugged them.</p>
<p>Of course my first thoughts were that this was a linux issue as sound cards and linux don&#8217;t play so nice to say the least so I rebooted into windows and lo and behold the problem persisted.  I could see the volume levels going u pand down with the music I played but the laptop was dead silent.</p>
<p>It took me a while of working ins ilence and just assuming that my sound card was fried to think about unplugging the whole machine, taking out the battery and then turning it back on again.. After doing so I&#8217;m happy to report that I have sound again and the laptop is back up to being it&#8217;s spiffy self!  Huzzah!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2012/02/05/static-discharge-through-earbuds-into-laptop-no-sound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to turn off / Disable your touchpad while typing in linux</title>
		<link>http://blog.netflowdevelopments.com/2010/01/04/how-to-turn-off-disable-your-touchpad-while-typing-in-linux/</link>
		<comments>http://blog.netflowdevelopments.com/2010/01/04/how-to-turn-off-disable-your-touchpad-while-typing-in-linux/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 13:24:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux / Freebsd]]></category>
		<category><![CDATA[accident]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[syndaemon]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[typing]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=385</guid>
		<description><![CDATA[So after having the edge of my hand touch my touchpad and mess up an email for the upteenth time today I went around and did some research to see if there was a quick shortcut key or something I could press to turn the bloody thing off and then on again when I was [...]]]></description>
			<content:encoded><![CDATA[<p>So after having the edge of my hand touch my touchpad and mess up an email for the upteenth time today I went around and did some research to see if there was a quick shortcut key or something I could press to turn the bloody thing off and then on again when I was done typing.  Well let me tell you I found something so much better!  There&#8217;s a command in shell that will automatically disable the touchpad if you&#8217;ve been typing for a set amount of time and then turn it back on automatically when you&#8217;re done..  Genius!  Genius I say!!  But what is this command you ask?  How do you enable it to save yourself endless frustration?  Well I&#8217;m glad you asked because I was just about to explain it:</p>
<p>The program is syndaemon and it can be enabled in shell by typing: syndaemon -i 3 -d</p>
<p>Where</p>
<ul>
<li>-i parameter defines number of seconds to wait after keyboard is used – ( 3 seconds suites me. )</li>
<li>-d  parameter is used for running syndaemon in background mode ( as a daemon ).</li>
</ul>
<p>If above command throws some error then you are using other than 9.04 release. To get it working type in terminal,</p>
<div>
<div>
<pre>wget http://people.ubuntuwire.com/~fujitsu/syndaemon
chmod +x syndaemon
sudo mv syndaemon /usr/bin/
syndaemon -i 3 -d</pre>
</div>
</div>
<p>Again type the syndaemon command in terminal, it shouldn`t give any error messages.</p>
<p>Above command has to be executed each time machine is rebooted. To execute above command automatically we can create a tiny bash script and add it to startup items.</p>
<p>1. Create a new file somewhere ( My BSD habits puts files like this in /usr/local/etc/rc.d/ but that&#8217;s just me ) and copy paste following into it.</p>
<div>
<div>
<pre>#!/bin/bash
syndaemon -i 2.5 -d</pre>
</div>
</div>
<p>2. To add above script to startup items, go to System &gt; Preferences &gt; Startup Applicaitons &gt;  Add. In new  pop-up box name it something meaningful and type in the path and command.. After that click “Add”.</p>
<p>There you go, done like dinner <img src='http://blog.netflowdevelopments.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />    Enjoy not having the hell of your cursor selecting 2 paragraphs of text and typing over it before you know what&#8217;s going on!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/01/04/how-to-turn-off-disable-your-touchpad-while-typing-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Rolltop Laptop Concept</title>
		<link>http://blog.netflowdevelopments.com/2009/11/20/cool-rolltop-laptop-concept/</link>
		<comments>http://blog.netflowdevelopments.com/2009/11/20/cool-rolltop-laptop-concept/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 05:16:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[rolltop]]></category>
		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=383</guid>
		<description><![CDATA[Found a concept design for tomorrow&#8217;s laptop today and thought it was cool enough to share.  What I like about this is that it doens&#8217;t just look cool and look pretty in a futuristic way but it incorporates common sense technology that not only makes sense but will be feasible very very shortly if not [...]]]></description>
			<content:encoded><![CDATA[<p><script src="http://widgets.fbshare.me/files/fbshare.js"></script> <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
<p><!-- google_ad_section_start -->Found a concept design for tomorrow&#8217;s laptop today and thought it was cool enough to share.  What I like about this is that it doens&#8217;t just look cool and look pretty in a futuristic way but it incorporates common sense technology that not only makes sense but will be feasible very very shortly if not already.  The design was created by <a href="http://www.orkin-design.de/" target="_blank">Orkin Design</a>, a german design firm.  Either way very cool</p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop.jpg" alt="rolltop Rolltop: A Laptop Concept that Can be Rolled and Carried" width="423" height="296" /></p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop-laptop.jpg" alt="rolltop laptop" width="437" height="286" /></p>
<p><a href="http://www.orkin-design.de/" target="_blank">Orkin Design</a> has unveiled the rolltop concept with the support of Schlagheck-Design and the device comes with a flexible display which can be rolled and carried wherever you want.</p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop-monitor.jpg" alt="rolltop monitor" width="423" height="342" /></p>
<p>Thanks to its OLED-Display technology and a multi touch screen, it can be used a laptop while it weighs as much as mini notebook. It comes with a 13 inch screen while being used a laptop and when being used as a monitor, you could get a cool 17 inches screen. Power supply, multi media integrated pen and even a holding belt are integrated in the ROLL TOP and it certainly is an all-in-one gadget.</p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop-tablet.jpg" alt="rolltop tablet" width="434" height="283" /></p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop-laptop-backside.jpg" alt="rolltop laptop backside" width="442" height="355" /></p>
<p><a href="http://blog.netflowdevelopments.com/2009/11/20/cool-rolltop-laptop-concept/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2009/11/20/cool-rolltop-laptop-concept/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

