<?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>Biodegradable Geek &#187; List</title>
	<atom:link href="http://biodegradablegeek.com/category/list/feed/" rel="self" type="application/rss+xml" />
	<link>http://biodegradablegeek.com</link>
	<description></description>
	<lastBuildDate>Tue, 22 Jun 2010 21:52:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bash Tips for Power Users</title>
		<link>http://biodegradablegeek.com/2009/06/bash-tips-for-power-users/</link>
		<comments>http://biodegradablegeek.com/2009/06/bash-tips-for-power-users/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 19:22:14 +0000</pubDate>
		<dc:creator>Isam</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[getting things done]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://biodegradablegeek.com/?p=105</guid>
		<description><![CDATA[Every Geek site needs an obligatory Bash Tips post
Copy Files Securely Between Two Machines
I used to always forget the syntax for this, until I realized that the syntax is exactly like the standard cp command. In fact, you can copy files like you normally would using scp, on your local machine. The following are equivalent:

$ [...]]]></description>
			<content:encoded><![CDATA[<p>Every Geek site needs an obligatory Bash Tips post</p>
<h2><strong>Copy Files Securely Between Two Machines</strong></h2>
<p>I used to always forget the syntax for this, until I realized that the syntax is exactly like the standard <strong>cp</strong> command. In fact, you can copy files like you normally would using scp, on your local machine. The following are equivalent:</p>
<pre class="brush: bash;">
$ cp file file.orig
$ scp file file.orig
</pre>
<p>Where they differ is, <strong>scp</strong> lets you copy files over a network, through SSH. Here&#8217;s an example:</p>
<pre class="brush: bash;">
$ scp contents.txt silver@ssh.domain.com:/tmp
</pre>
<p>This will copy local file contents.txt to /tmp on the remote machine ssh.domain.com, as user silver. Here are some more examples:</p>
<pre class="brush: bash;">
$ scp draft.pdf ssh.domain.com:
</pre>
<p>(copy draft.pdf to my home dir on remote machine. username is implied to be the same locally and remotely.)</p>
<pre class="brush: bash;">
$ scp swine.jpg rex@ssh.domain.com
</pre>
<p>(<strong>read</strong>: This will copy swine.jpg to local machine as a file named rex@ssh.domain.com. To make it go remote, append a : to the address, like above)<strong> </strong></p>
<p><strong>scp</strong> supports, among other things, compression (-C) and recursive copying of directories (-r).<br />
<strong> </strong></p>
<pre class="brush: bash;">
$ scp -rC code/ ssh.domain.com:/archive/code_02032009
</pre>
<p><strong></strong></p>
<p>Trying to copy to a directory you don&#8217;t have permission to (/usr etc) will fail.</p>
<h2>Don&#8217;t Get Lost Jumping To and Fro Between Directories</h2>
<p>You can use <strong>cd -</strong> to jump to the previous (NOT parent) dir. For example:</p>
<pre class="brush: bash;">
kiwi@localhost: ~ $ cd /usr/local/share
kiwi@localhost: /usr/local/share $ cd -
/home/kiwi
kiwi@localhost: ~ $ cd -
/usr/local/share
kiwi@localhost: /usr/local/share $
</pre>
<p>Another way is using <strong>pushd/popd</strong> &#8211; A Last In First Out (LIFO) stack of dirs.</p>
<pre class="brush: bash;">
kiwi@localhost: ~ $ pushd /usr/local/share/
/usr/local/share ~
</pre>
<p><strong>pushd</strong> is like cd but keeps note of the current dir before cd&#8217;ing into a new one. The stack of dirs is listed every time you invoke <strong>pushd</strong> <em>(the &#8220;/usr/local/share ~&#8221; output you see above.)</em></p>
<pre class="brush: bash;">
kiwi@localhost: /usr/local/share $ pushd /
/ /usr/local/share ~
</pre>
<p>Stack is ordered left to right, latest push first. If we pop the first dir off:</p>
<pre class="brush: bash;">
kiwi@localhost: / $ popd
/usr/local/share /tmp ~
kiwi@localhost: /usr/local/share $
</pre>
<p>We&#8217;re back in the share dir. We can keep popping until there&#8217;s nothing left (throws an error):</p>
<pre class="brush: bash;">
kiwi@localhost: /usr/local/share $ popd
/tmp ~
kiwi@localhost: /tmp $ pushd /lib
/lib /tmp ~
kiwi@localhost: /lib $ popd
/tmp ~
kiwi@localhost: /tmp $ popd
~
kiwi@localhost: ~ $ popd
bash: popd: directory stack empty
</pre>
<h2>Working with Long Lines</h2>
<p>No need for more Bash shortcut <a href="http://cheat.errtheblog.com/s/bash/" target="_blank">cheat sheets</a>, but here are some useful ones to help you work with long lines.</p>
<p>You can jump to the <strong>start &amp; end</strong> of a line using <strong>CTRL+a &amp; CTRL+e</strong> respectively. Example (* is the cursor):</p>
<pre class="brush: bash;">
kiwi@localhost: ~ $ echo al the ducks are swimming in the w*
</pre>
<p>and you want to fix the first word. You can hop to the beginning of the line with <strong>CTRL+a</strong>:</p>
<pre class="brush: bash;">
kiwi@localhost: ~ $ *echo al the ducks are swimming in the w
</pre>
<p>and now you can jump to the end of the misspelled word &#8220;al&#8221; using <strong>CTRL+Right</strong> twice to correct it:</p>
<pre class="brush: bash;">
kiwi@localhost: ~ $ echo all*the ducks are swimming in the w
</pre>
<p>Now ctrl+e to jump to the end of line:</p>
<pre class="brush: bash;">
kiwi@localhost: ~ $ echo all the ducks are swimming in the w*
</pre>
<p>Instead of backspacing every character, use <strong>ALT+Backspace</strong> to backspace entire words. You can also delete <strong>all</strong> or part of a line using <strong>CTRL+u</strong> combo. It deletes everything before the cursor. Likewise, <strong>CTRL+k</strong> wipes out everything after the cursor. I&#8217;ve developed a habit of using CTRL+e CTRL+k to delete lines.</p>
<p>Bash has a lot of <strong>ALT</strong> commands that let you move and manipulate words. <strong>ALT+l</strong> and <strong>ALT+u</strong> will make a word in front of the cursor lowercase or uppercase, for example. A neat one I don&#8217;t think I ever used is ALT+\ It pulls everything after the cursor left to the first non-whitespace character. Here&#8217;s an example, * is the cursor:</p>
<p><strong>BEFORE:</strong></p>
<pre class="brush: bash;">
$ my     spacebar is    *sticky
</pre>
<p><strong>AFTER (ALT+\):</strong></p>
<pre class="brush: bash;">
$ my     spacebar issticky
</pre>
<h2>Avoid Retyping Commands &amp; Arguments</h2>
<p><strong>ESC + .</strong> is <span style="text-decoration: underline;">very</span> useful. Escape followed by a period will output the argument you sent to your last Bash command. Command calls themselves are outputted if they were invoked without any arguments <em>(popd, ls, etc).</em></p>
<p>Example, unzipping a file and moving the archive to /tmp:</p>
<pre class="brush: bash;">
$ unzip archive-with-a-long-ambiguous-name-03092009-5960-1.2.5.zip
$ mv archive-with-a-long-ambiguous-name-03092009-5960-1.2.5.zip /tmp
</pre>
<p>In the mv command, the archive name was outputted by pressing <strong>ESC+.</strong> (full command being mv (ESC+.) /tmp) There was no need to type the long archive name twice.</p>
<p>The argument is taken from your bash history. You can keep invoking ESC+. to cycle back through all your recent command arguments. (history -c to clear)</p>
<p>Try not to forget this; You&#8217;ll naturally find plenty of uses for it.</p>
<p>Another way to avoid re-typing commands is <strong>CTRL+R</strong>. It will initiate a search of your command history. Begin typing, and watch Bash try to complete your command from previous ones you entered.</p>
<h2>Command Getting Too Big? Send it to your Editor</h2>
<p>Sometimes you begin writing what you think will be a simple command, only to realize that it has grown too complex for the command line, and you wish you were in your text editor.</p>
<p>First make sure your default editor is set. This is either in $EDITOR (export EDITOR=/usr/local/bin/vim) or elsewhere depending on the distro.</p>
<p>Use &#8220;fc&#8221; to open the last executed command in your editor:</p>
<pre class="brush: bash;">
ls -paul --sort=size
... ls output ...
fc
</pre>
<p>Now the <em>ls</em> line will be open in your editor. But what if you hadn&#8217;t executed the command yet? No problem. You&#8217;re sending off an email, but quickly realize that the command line isn&#8217;t ideal for everything:</p>
<pre class="brush: bash;">
echo -e &quot;Dear Santa, \n\n\tIt has become evident that your fat ass is contributing to Global Warming, primarily due to the large quantity of coal you distribute annually. We hereby
</pre>
<p>No matter where you are on the line, hit <strong>CTRL+x, CTRL+e</strong> to invoke your editor, which now contains what you were typing on the cmd line.</p>
<p>I always find myself wanting to finish a command in vim, but unwilling to type the first few lines over, especially when I&#8217;m trying to write a for loop or any ugly multiline Bash code.</p>
<p><strong>IMPORTANT: Whatever you type in your editor is executed automatically after you quit the editor.</strong><br />
<span id="more-105"></span></p>
<h2>Multiple Commands on a Single Line</h2>
<p>There are a number of ways to piece together commands (||, pipes, etc), depending on your need, but sometimes, you just commands executed consecutively. You can use ; or &amp;&amp;.</p>
<p><strong>semicolon (;) vs AND (&amp;&amp;)</strong>: The semicolon will run through each command consecutively, whereas &amp;&amp; is a little smarter, and will not continue if a command does not end successfully (return 0 &#8211; you can check the return value of the last app ran with <strong>echo $?</strong>).</p>
<p>&amp;&amp; is generally safer. i.e., ./configure &amp;&amp; make (&amp;&amp; sudo make install)</p>
<p>AND</p>
<pre class="brush: bash;">
$ cp bogus &amp;amp;&amp;amp; echo &quot;** copied&quot;
cp: missing destination file operand after `bogus'
Try `cp --help' for more information.
</pre>
<p>SEMICOLON;</p>
<pre class="brush: bash;">
cp bogus; echo &quot;** copied... or did I? tun tun tunnn!&quot;
cp: missing destination file operand after `bogus'
Try `cp --help' for more information.
** copied... or did I? tun tun tunnn!
</pre>
<h2>Convert between DOS and UNIX ASCII files</h2>
<p>Sometimes you get a text file that has weird ^M characters in it. These are due to a difference in how Unix and Windows systems end lines. You can convert between these formats using <strong>unix2dos</strong> or <strong>todos</strong> and <strong>dos2unix</strong> or <strong>fromdos</strong>.</p>
<pre class="brush: bash;">
$ mkdir /tmp/rcfl
$ cd /tmp/rcfl
$ echo -e &quot;Justa Lonely\nASCII File&quot; &gt; out
$ file out
out: ASCII text
$ todos out
$ file out
out: ASCII text, with CRLF line terminators
$ vim out # notice [dos] flag in status bar, quit :q!
$ fromdos out
$ file out
out: ASCII text
</pre>
<h2>Background Processes</h2>
<p>Have a little more control over your apps.</p>
<p><strong>Stop Right Thurr</strong><br />
When a program is running in the foreground, you no longer have access to the command line. An example is &#8216;tail -f&#8217; or &#8216;ruby script/server&#8217;</p>
<p>You can have a running process pause for a sec with <strong>CTRL+z</strong>.<br />
Do your dirty work and then bring the app back to the foreground with <strong>fg</strong>.<br />
To list the processes you have paused, use <strong>jobs</strong></p>
<pre class="brush: bash;">
$ tail -f useful.log
00:00:50 User did something that was log-worthy
00:00:56 User did something that was log-worthy
00:00:57 User did something that was log-worthy

# (press CTRL+z)
[1]+  Stopped                 tail -f useful.log

$ echo &quot;look ma, I can type&quot;
look ma, I can type

$ fg
tail -f useful.log

# (press CTRL+z)
[1]+  Stopped                 tail -f useful.log

$ tail -f blah.tmp

# (press CTRL+z)
[2]+  Stopped                 tail -f blah.tmp

$ jobs
[1]-  Stopped                 tail -f useful.log
[2]+  Stopped                 tail -f blah.tmp
$ fg 1
(process [2] continues)
</pre>
<p><strong>In the Background</strong></p>
<p>You can have a process start in the background by appending to it a <strong>&amp;</strong>.<br />
and bring this to the foreground using <strong>fg [#]</strong>.<br />
As before, jobs will list background processes, but with status <em>Running</em> instead of <em>Stopped</em>.</p>
<p>Programs running in the background will still output to stdout, which means they&#8217;ll make the shell ugly. So if you plan on using them, think about redirecting the output.</p>
<h2>Bash Redirection</h2>
<p>Some things are mentioned on nearly every &#8216;bash tips&#8217; page &#8212; like redirecting output. Here are the basics. We&#8217;re concerned with 2 I/O streams: STDOUT and STDERR. STDOUT has a value of 1, and it is the screen. If a program writes to stdout, that text is shown in the console. Errors are sent through a different stream, stderr, which has a value of 2. Value 0 is stdin, used for user input. The technical details aren&#8217;t important. Just remember that 1 is screen and 2 is error.</p>
<p>There&#8217;s a number of ways to redirect output:</p>
<pre class="brush: bash;">
$ echo &quot;asdfasdf&quot; 1&gt; /tmp/asdf.txt # overwrite existing file
$ echo &quot;asdfasdf&quot; &gt; /tmp/asdf.txt # (same, 1 is default, optional)
$
$ echo &quot;32452345&quot; &gt;&gt; /tmp/asdf.txt # append to end of existing file*
$ echo &quot;wash the dishes&quot; &gt; /dev/null # just ignore output
$ echo &quot;wash the dishes&quot; 2&gt; /dev/null # just ignore errors
$
$ more 1&gt; /dev/null # error still shown
$ more 2&gt; /dev/null # nothing shown
$ more &amp;&gt; /dev/null # nothing shown
$
$ more 2&gt;| /dev/null # silence errors
$ more &gt;| /tmp/more.txt # save output to file
$
$ more 1&gt; /tmp/more.txt 2&gt;&amp;1 # redirect stdout to file and redirect stderr to stdout (same file)
$ more 2&gt; /tmp/more.txt 1&gt;&amp;2 # have stdout follow stderr to file
</pre>
<p>To redirect output to a file &amp; screen, use <strong>tee</strong></p>
<pre class="brush: bash;">
$ echo &quot;dont forget the milk&quot; | tee /tmp/toforget.txt
</pre>
<p>More a more extensive guide on redirection, see <a href="http://tldp.org/LDP/abs/html/io-redirection.html" target="_blank">Bash IO Redirection</a> or some of the External Links below.</p>
<h2>Art of teh Alias</h2>
<p>I use a lot of aliases. Here are a few:</p>
<pre class="brush: bash;">
# I use these a lot. Can also have aptupdate, aptremove etc...
alias aptinstall='sudo apt-get install'
alias aptsearch='apt-cache search'
alias suvim='sudo vim'

# Aliasing command names. To use original commands, you'd need to specify absolute path.
alias a2restart='sudo apache2ctl restart'
alias gem='sudo gem'
alias checkinstall='sudo checkinstall'

# I used these to workaround the infamous FF memory leak (ugly)
# alias swapoff='sudo swapoff'
# alias swapon='sudo swapon'

# Going places. This + ssh keypair
alias macbookshell='ssh 192.168.1.17'
alias workshell='ssh meh@ssh.domain.com'

# Pretty output. (--group-directories-first might not work on your system).
alias lsf='ls -hAlF --group-directories-first --color=always --time-style=+&quot; %m/%d/%y %I:%M %p &quot;'

# List only directories
alias lsd='ls -d */'

# I'm a measly human!
alias free=&quot;free -m&quot;

# 'gimme x' is equivalent to 'sudo chown me.me x'
# alias gimme=&quot;ME6=`whoami` &amp;amp;&amp;amp; sudo \&quot;chown $ME6.$ME6\&quot;&quot;

# Usage: nullminate bloated-file.log
alias nullminate=&quot;cat /dev/null &gt; &quot;

# Search contents of an entire dir. Usage: scan &quot;PESKY_VARIABLE ?=&quot; project-123/
alias scan=&quot;grep -Rin --color&quot;
</pre>
<p>These should go in a ~/.bash_aliases file and invoked from within your user conf (.bashrc?)</p>
<p><!--<br />
screen<br />
public keys<br />
sub sections (shortcuts, history, redirection)<br />
--></p>
<p><strong>External links (related): </strong></p>
<ul>
<li><a href="http://www.caliban.org/bash/" target="_blank">Working more productively with bash 2.x/3.x</a></li>
<li><a href="http://www.hypexr.org/bash_tutorial.php" target="_blank">Getting Started with BASH</a></li>
<li><a href="http://www.wains.be/index.php/2007/11/26/bash-tips-and-tricks/" target="_blank">Bash Tips &amp; Tricks</a></li>
<li><a href="http://hacktux.com/bash/script/efficient" target="_blank">10 Tips for Writing Efficient Bash Scripts</a></li>
<li><a href="http://www.linuxtutorialblog.com/post/tutorial-the-best-tips-tricks-for-bash" target="_blank">Best Tips &amp; Trips for Bash</a></li>
<li><a href="http://linuxhelp.blogspot.com/2005/08/bash-shell-shortcuts.html" target="_blank">Bash Shell Shortcuts</a></li>
<li><a href="http://bashish.sourceforge.net/" target="_blank">Bashish</a></li>
<li><a href="http://www.davidpashley.com/articles/writing-robust-shell-scripts.html" target="_blank">Writing Robust Shell Scripts</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://biodegradablegeek.com/2009/06/bash-tips-for-power-users/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>4 Do-It-Yourself Whiteboard Alternatives</title>
		<link>http://biodegradablegeek.com/2009/04/4-do-it-yourself-whiteboard-alternatives/</link>
		<comments>http://biodegradablegeek.com/2009/04/4-do-it-yourself-whiteboard-alternatives/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 01:58:36 +0000</pubDate>
		<dc:creator>Isam</dc:creator>
				<category><![CDATA[List]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://biodegradablegeek.com/?p=165</guid>
		<description><![CDATA[
Whiteboards are as useful as they are overpriced. I built one using tileboard (the thing they use in bathrooms), and I highly recommend making/buying one. It took me awhile to find tileboard in my area. In case anyone has the same problem, here are 4 alternatives I considered:
They are not in any specific order. 
Glass [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://biodegradablegeek.com/wp-content/uploads/2009/04/post_it_note_wall_by_rainbowcookee-300x225.jpg" alt="post it note wall by rainbowcookee 300x225 4 Do It Yourself Whiteboard Alternatives" title="post_it_note_wall" width="300" height="225" class="alignright size-medium wp-image-419" /><br />
Whiteboards are as useful as they are overpriced. I built one using tileboard (the thing they use in bathrooms), and I highly recommend making/buying one. It took me awhile to find tileboard in my area. In case anyone has the same problem, here are 4 alternatives I considered:</p>
<p><em>They are not in any specific order. </em></p>
<h2>Glass or Plexiglas</h2>
<p>Anything Expo markers can write on may be used as a board surface. This means a piece of glass, or <a href="http://en.wikipedia.org/wiki/Acrylic_glass" target="_blank">acrylic glass (Plexiglas)</a>, placed over a bright white surface it (i.e., a wall or table). Glass actually works pretty well in terms of eligibility and clean up, but it&#8217;s heavy, has sharp edges and cannot be drilled into (easily). It&#8217;s also not cheap.</p>
<p>Plexiglas works well, but I heard some dry erase Expo markers have problems coming off. Research this before trying Plexiglas. <strong><a href="http://harleyjcooper.com/2007/02/02/my-expo-markers-story/" target="_blank">Never use Acetone to clean Plexiglas</a></strong> (or any plastic). </p>
<p>Plexiglas might be a hassle to cut. Sawing at a high speed, be it power or manual, might cause the edge to melt and stick back together between each cut. It&#8217;s usually cut underwater ( don&#8217;t try putting a power saw in your bathtub). </p>
<p>What I did was use a regular hack saw, and had my friend shoot the area I was sawing with a <strong>water gun</strong> to cool it between each cut. A water gun.</p>
<p>Both glass and plexiglass have the advantage of letting you make overlays (assuming they are translucent). You can put anything behind this <em>board</em>, as opposed to having an all white surface. Some examples I&#8217;ve seen are adding templates like a blank calendar or checklist behind the glass.</p>
<p>If you put some work into it, this can be a nice, cheap setup.</p>
<h2>Chalkboard or Chalkpaper</h2>
<p>Chalkboards are cheaper than whiteboards, and even cheaper if you go the DIY route and make one using chalk paper. Chalk paper is basically a rough surface you can buy in rolls, which can be written on using standard chalk. Which means.. hopscotch in the office!</p>
<p>Chalkboards have great contrast, and chalk is dirt cheap compared to dry/wet erase markers (unless you steal those from your local college). The problem, and it&#8217;s a big one, is chalk dust. Chalk dust in a small room or office make this route unacceptable for most people. There is &#8220;anti-dust&#8221; / dust-free chalk, but dust can still be a problem if you don&#8217;t have good ventilation.<br />
<span id="more-165"></span></p>
<h2>Paper Whiteboard, or Just Paper</h2>
<p>Paper. Big paper. There exists huge books of pages that you hang up on the wall, meant to act as a huge Post-It book. I&#8217;ve seen these sold at Michael&#8217;s. An alternative is to just hang up a big sketch book, but that might get expensive. Paper has plenty of advantages&#8230;</p>
<p>You can write on a page using a pen, pencil, markers, crayons, blood etc. It&#8217;s flexible and mobile; You can detach papers for storage or to just generally move around, tear in two, etc. Clean up is as easy as curling up a huge piece of paper and shooting a basket.</p>
<p>The cons? Erasing is a nuisance (and only possible if you use a pencil or erasable pen), and the entire thing is meant to be disposable, making this a a recurring expense. This might mean you will end up squeezing as much content on each page as you can to save money. </p>
<p>I&#8217;ve seen &#8220;paper whiteboards&#8221; at IKEA &#8211; but with a short stand, designed for children. You get far less cool points hanging up paper than you would having a <em>real</em> (looking) whiteboard in your house. </p>
<h2>DIY Digital / Touch Whiteboard</h2>
<p>Expensive from scratch, but you might be able to use what you have around the house to hack up a nice digital whiteboard; One great example is the <a href="http://www.google.com/search?q=wiimote+whiteboard" target="_blank">Wiimote Whiteboard</a>:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/5s5EvhHy7eQ&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5s5EvhHy7eQ&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>If you can find tileboard, I suggest using that instead. It&#8217;s cheap and it works well. You can probably cover an entire wall for $20. These alternative methods are OK, and in some cases might even be great, but they&#8217;re no match for a &#8216;real&#8217; whiteboard, or one made of tileboard. </p>
<p><em><a href="http://rainbowcookee.deviantart.com/art/Post-It-Note-Wall-82626130" target="_blank">* Post-It Wall pic by RainBowCookee</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://biodegradablegeek.com/2009/04/4-do-it-yourself-whiteboard-alternatives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 Linux Apps That&#8217;ll Boost Your Productivity</title>
		<link>http://biodegradablegeek.com/2008/10/top-5-linux-apps-thatll-boost-your-productivity/</link>
		<comments>http://biodegradablegeek.com/2008/10/top-5-linux-apps-thatll-boost-your-productivity/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 05:57:53 +0000</pubDate>
		<dc:creator>Isam</dc:creator>
				<category><![CDATA[Intertubes]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[adhd]]></category>
		<category><![CDATA[appz]]></category>
		<category><![CDATA[getting things done]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[prism]]></category>
		<category><![CDATA[recommended]]></category>
		<category><![CDATA[rescue time]]></category>
		<category><![CDATA[rescuetime]]></category>
		<category><![CDATA[thinking]]></category>
		<category><![CDATA[time management]]></category>
		<category><![CDATA[top10]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://biodegradablegeek.com/?p=199</guid>
		<description><![CDATA[These are not in any specific order. Also, some might be available on other operating systems.

Tomboy
 
This is the best note taking app I&#8217;ve ever used. It sits in your taskbar, doesn&#8217;t annoy you and doesn&#8217;t hog your cpu cycles or memory. When you wanna jot down something, hit a global shortcut, type away, and [...]]]></description>
			<content:encoded><![CDATA[<p><em>These are not in any specific order. Also, some might be available on other operating systems.</em><br />
<br/></p>
<h2><a href="http://www.gnome.org/projects/tomboy/" class="top10src" target="_blank">Tomboy</a></h2>
<p><img class="plainimg size-full wp-image-224 alignleft" style="padding: 5px;" title="tomboy-128" src="http://biodegradablegeek.com/wp-content/uploads/2008/10/tomboy-128.png" alt="tomboy 128 Top 5 Linux Apps Thatll Boost Your Productivity" width="90" height="85" /> <img class="plainimg size-full wp-image-225 alignnone" style="padding: 5px;" title="tomboy" src="http://biodegradablegeek.com/wp-content/uploads/2008/10/tomboy.png" alt="tomboy Top 5 Linux Apps Thatll Boost Your Productivity" width="207" height="66" /></p>
<p>This is the best note taking app I&#8217;ve ever used. It sits in your taskbar, doesn&#8217;t annoy you and doesn&#8217;t hog your cpu cycles or memory. When you wanna jot down something, hit a global shortcut, type away, and then close. Notes are saved as you type, and it automatically links notes together if you use CamelCase words. It&#8217;s written in C#, and still pretty young, but I&#8217;ve never had a problem with it in regard to stability or compatibility.</p>
<p>If your distro&#8217;s repository doesn&#8217;t have a package for the latest version (0.12.0, I highly recommend downloading a newer binary and/or install from trunk/)</p>
<p><strong>Official site:</strong> <a href="http://www.gnome.org/projects/tomboy/" target="_blank">http://www.gnome.org/projects/tomboy/</a><br />
<strong>Subversion:</strong> <a href="http://svn.gnome.org/viewvc/tomboy/trunk/" target="_blank">http://svn.gnome.org/viewvc/tomboy/trunk/</a></p>
<p><br/></p>
<h2><a href="http://sourceforge.net/projects/tilda/" class="top10src" target="_blank">Tilda and friends</a></h2>
<p><img class="plainimg alignleft size-full wp-image-226" style="padding: 5px;" title="fetchphp" src="http://biodegradablegeek.com/wp-content/uploads/2008/10/fetchphp.png" alt="fetchphp Top 5 Linux Apps Thatll Boost Your Productivity" width="128" height="128" /><br />
You know those slide-down consoles in FPS games like Quake, UT, Half-Life, that you invoke by hitting tilde (~), and use to enter your leet r_picmip hacks? Tilda is a Quake style drop-down terminal that gives you the same quick access to your Linux console on any workspace. No more opening a new terminal window for every little task.</p>
<p><strong>Official site:</strong> <a href="http://sourceforge.net/projects/tilda/" target="_blank">http://sourceforge.net/projects/tilda/</a></p>
<p><em>Tilda isn&#8217;t the only app of its kind. It&#8217;s not even the first. Check out the alternatives as well: </em><br />
<strong>sjterm (&#8220;works well with Compiz&#8221;):</strong> <a href="https://gna.org/projects/stjerm/" target="_blank">https://gna.org/projects/stjerm/</a> (<a href="https://gna.org/projects/stjerm/" target="_blank">alt page</a>)<br />
<strong>Yet Another Kuake (Yakuake, for KDE):</strong> <a href="http://yakuake.uv.ro/" target="_blank">http://yakuake.uv.ro/</a><br />
<strong>Kuake:</strong> <a href="http://www.nemohackers.org/kuake.php" target="_blank">http://www.nemohackers.org/kuake.php</a><br />
<strong>Visor (OS X):</strong> <a href="http://docs.blacktree.com/visor/visor" target="_blank">http://docs.blacktree.com/visor/visor</a></p>
<p><br/></p>
<h2><a href="http://rescuetime.com/" class="top10src" target="_blank">RescueTime</a></h2>
<p><a href="http://biodegradablegeek.com/wp-content/uploads/2008/10/rescue_time_logo_white.gif"><img class="plainimg alignleft size-full wp-image-227" title="rescue_time_logo_white" src="http://biodegradablegeek.com/wp-content/uploads/2008/10/rescue_time_logo_white.gif" alt="rescue time logo white Top 5 Linux Apps Thatll Boost Your Productivity" width="213" height="60" /></a></p>
<p>RescueTime is a little program you download (Mac, Windows, Linux) that sits in the background and checks what windows/apps have focus, and uses this data to compile statistics about your computer habits and productivity. It creates neat graphs and shows how productive you are compared to others within a certain time frame.</p>
<p>The commercial versions have some great team features but the free one is enough to track your own productivity. If you&#8217;re paranoid, run it through a proxy or chew some Alprazolam or Zyprexa. <strong>It&#8217;s worth it. </strong></p>
<p>An app sorta like this was an idea I had but never implemented. It was one of those <em>wake up in the middle of the night with an epiphany, scramble to find a pen and paper to jot it down before it&#8217;s gone forever</em> idea, that you then wake up and either find silly or just toss in the idea bin never to be thought of again. The idea stemmed from wanting to create a chart of how I spend my time and compare myself week by week. My proposed implementation was a lot simpler though. I was thinking about having it only track apps that you specify.</p>
<p>This differs from RT which has a gigantic db of categorized apps and lets you choose categories to tag as productive or not (i.e., rhythmbox and mplayer would go under audio/video) I like RT&#8217;s implementation.</p>
<p><strong>Official Site:</strong> <a href="http://rescuetime.com/" target="_blank">http://rescuetime.com/</a><br />
<strong>Unofficial Linux client (works great):</strong> <a href="https://launchpad.net/rescuetime-linux-uploader" target="_blank">https://launchpad.net/rescuetime-linux-uploader</a></p>
<p><br/></p>
<h2><a href="http://www.gnu.org/software/screen/" class="top10src" target="_blank">Screen</a></h2>
<p><img class="plainimg alignleft size-full wp-image-230" style="padding: 5px;" title="gnu_split_screen" src="http://biodegradablegeek.com/wp-content/uploads/2008/10/gnu_split_screen1.png" alt="gnu split screen1 Top 5 Linux Apps Thatll Boost Your Productivity" width="220" height="142" /><br />
Screen is something you find on everybody&#8217;s list of Top/Fav Linux apps. If you use the console a lot, especially remotely, <strong>screen is a must have.</strong></p>
<p>It keeps a persistent console session open, and lets you attach and detach from it anytime you want, which is great if you get disconnected while working over a network, or when you want to continue what you&#8217;re doing at home from work or while on the road. It also has neat features like split screen, tabbed consoles, etc.</p>
<p>When you first run it, you might not notice anything different, but you&#8217;re actually in a screen session. Press <strong>CTRL+a</strong>, followed by &#8216;<strong>?</strong>&#8216; to see a list of shortcuts. Tilda + screen = hacks.</p>
<p><em>Note:</em> The CTRL+a keystroke is part of many of screen&#8217;s shortcuts. Unfortunately, it&#8217;s a shortcut in Bash that I frequently use (lets you jump to the beginning of the line), so this is annoying to me. There are ways around this but I&#8217;ve just gotten used to the workaround. To jump to the beginning of the line in screen, press <strong>CTRL+a, a</strong></p>
<p><strong>Official site:</strong> <a href="http://www.gnu.org/software/screen/ " target="_blank">http://www.gnu.org/software/screen/ </a></p>
<p>You might have it installed. If not:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #c20cb9; font-weight: bold;">screen</span></pre></div></div>

<p>Also check out <strong>screenie</strong>, a wrapper for screen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> screenie</pre></div></div>

<p><br/></p>
<h2><a href="http://labs.mozilla.com/2007/10/prism/" class="top10src" target="_blank">Google Calendar Prism</a></h2>
<p><img class="plainimg alignleft size-full wp-image-228" title="prism-google-calendar-gcal" src="http://biodegradablegeek.com/wp-content/uploads/2008/10/prism-google-calendar-gcal.png" alt="prism google calendar gcal Top 5 Linux Apps Thatll Boost Your Productivity" width="130" height="160" /><br />
Digital calendars are either <em>too lean</em> (lack features), or are too bloated to keep open. I don&#8217;t need the email features that come with some of them, and hate the fact that they&#8217;re written in Java.</p>
<p>I tried a number of apps before trying web apps, and now use Google Calendar. It&#8217;s secure, fast and you can see your life anywhere. One nice feature is being able to add to or edit the calendar from your PDA  or using text messages. I was initially weary of putting my calendar online, but the benefits outweigh the cons (paranoia).</p>
<p>Going back to desktop apps. The only decent one I&#8217;ve tried was <a href="http://www.rainlendar.net/">Rainlendar</a>, but it&#8217;s broken on Linux and it&#8217;s closed source. Besides, I only liked it because it was simple but synced with Google Cal. At the time, the only alternative I considered was keeping a tab open with Google Calendar, which I wasn&#8217;t going to do because Firefox needs to be xkill&#8217;d every few days. Then it hit me; Mozilla Prism!</p>
<p><a href="http://labs.mozilla.com/2007/10/prism/">Prism</a> is (basically) a stripped down web browser that is meant to help integrate web apps onto your desktop. <strong>prism-google-calendar</strong> is a packaged Mozilla Prism setup with Google Calendar out of the box.</p>
<p>It runs independent of your browser and can be treated as a webApp. And since it has its own memory space, it doesn&#8217;t go sluggish with Firefox and never needs to be restarted.</p>
<p>I keep it open fullscreen on my second monitor, and can glance at it anytime I feel lost in life.</p>
<p>The only thing missing is a decent alarm feature. Javascript alert()s are shit, and I don&#8217;t want annoying emails about my events. I suppose there are hacks around the problem but I learned to glance at the calendar often and don&#8217;t need reminders so much anymore.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> prism-google-calendar</pre></div></div>

<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://biodegradablegeek.com/2008/10/top-5-linux-apps-thatll-boost-your-productivity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 10 Firefox Extensions that Enhance Usability</title>
		<link>http://biodegradablegeek.com/2008/09/firefox-extensions/</link>
		<comments>http://biodegradablegeek.com/2008/09/firefox-extensions/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 19:35:40 +0000</pubDate>
		<dc:creator>Isam</dc:creator>
				<category><![CDATA[List]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[getting shit done]]></category>
		<category><![CDATA[gvim]]></category>
		<category><![CDATA[internet addiction]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[recommended add-ons]]></category>
		<category><![CDATA[useability]]></category>
		<category><![CDATA[vi]]></category>

		<guid isPermaLink="false">http://biodegradablegeek.com/?p=108</guid>
		<description><![CDATA[All of these extensions work on Firefox 3.x
Firebug

What can I say.. Firebug is indispensable. It&#8217;s quite possibly the greatest piece of software since Firefox itself. It&#8217;s a *must* have if you do any sort of XHTML/CSS/Javascript/AJAX/er.. anything!
You can edit code on any site, live. Hate the annoying background on a specific site? Get rid of [...]]]></description>
			<content:encoded><![CDATA[<p><em>All of these extensions work on Firefox 3.x</em></p>
<p><a class="top10src" href="https://addons.mozilla.org/firefox/addon/1843" target="_blank">Firebug</a></p>
<p><img src="http://biodegradablegeek.com/wp-content/uploads/2008/09/firebug-firefox-addon.jpg" alt="firebug firefox addon Top 10 Firefox Extensions that Enhance Usability" title="Firebug firefox addon" class="plainimg alignright size-full wp-image-133" /><br />
What can I say.. Firebug is indispensable. It&#8217;s quite possibly the greatest piece of software since Firefox itself. It&#8217;s a *must* have if you do any sort of XHTML/CSS/Javascript/AJAX/er.. anything!</p>
<p>You can edit code on any site, live. Hate the annoying background on a specific site? Get rid of it. Ugly font? Change it. No contrast between colors? No problem. The changes aren&#8217;t permanent, of course (that&#8217;s what <a href="https://addons.mozilla.org/firefox/addon/748" target="_blank">Greasemonkey</a>&#8217;s for). </p>
<p>There&#8217;s no better AJAX/CSS debugger. It even has a console you can use to interact with the site. Works with AJAX libraries (since they&#8217;re essentially just Javascript), and <a href="http://jquery.com/" target="_blank">jQuery</a> can output text to the Firebug console. No more alerts()!I won&#8217;t even go into the neat array of plugins it has. </p>
<p><strong>Just get it</strong>. <em>Tip: F12 toggles Firebug, and ctrl+F12 opens it in its own window. </em></p>
<p><br/></p>
<p><a class="top10src" href="https://addons.mozilla.org/en-US/firefox/addon/8207" target="_blank">Open In Browser</a></p>
<p><em>This should be built into Firefox.</em> </p>
<p><a href="http://biodegradablegeek.com/wp-content/uploads/2008/09/open-in-browser-save-as-dialog.png" target="_new"><img src="http://biodegradablegeek.com/wp-content/uploads/2008/09/open-in-browser-save-as-dialog-150x150.png" alt="FF Save as.. dialog" title="FF Save as... dialog" width="150" height="120" class="size-thumbnail wp-image-128 alignright" /></a></p>
<p>It&#8217;s still experimental, so you need to register to install it, but it&#8217;s well worth it. Sometimes when you&#8217;re viewing images or ASCII files (like source code) online, you want them viewed in the browser, but the site forces you to download them. </p>
<p>One example any Google Images Surfer is aware of is the fact that images hosted on Blogger cannot be viewed in the browser. Very annoying &#8211; unless you have this extension installed. It adds an option to open files in the browser to the file download dialog.</p>
<p><br/></p>
<p><a class="top10src" href="https://addons.mozilla.org/en-US/firefox/addon/1956" target="_blank">Tabs Open Relative</a></p>
<p><em>This should not only be built into Firefox, it should be the default behavior.</em> </p>
<p>Causes new tabs to open next to the current tab, instead of launching after the last tab you have open. </p>
<p><br/></p>
<p><a class="top10src" href="https://addons.mozilla.org/en-US/firefox/addon/26" target="_blank">Download Statusbar</a></p>
<p>What&#8217;s more annoying than tabs opening a thousand pixels away? The Firefox download dialog. It&#8217;s big and too intrusive to keep open permanently, and I get annoyed when the download is done and it suddenly vanishes. Solution? Download to the desktop and don&#8217;t use the download dialog.</p>
<p>Another solution? Use this extension. In mini-mode (full-mode is too bloated IMO), it displays the number of files still in progress on the bottom-right of the browser, and a single click on this opens a little &#8220;drop up&#8221; menu that displays your downloads and their status. Hovering over the filename reveals all the info you need about that download. Double clicking the file opens it and removes it from the download list. </p>
<p>And the ctrl+Y default download dialog is still available and functions normally (if you want to use it).</p>
<p><br/></p>
<p><a class="top10src" href="http://labs.mozilla.com/2008/08/introducing-ubiquity/" target="_blank">Ubiquity</a><br />
<img src="http://biodegradablegeek.com/wp-content/uploads/2008/09/mozilla-labs-presents-ubiquity.png" alt="mozilla labs presents ubiquity Top 10 Firefox Extensions that Enhance Usability" title="mozilla-labs-presents-ubiquity" class="plainimg alignright size-medium wp-image-136" /></p>
<p>Ubiquity is to Firefox what <a href="http://blacktree.com/?quicksilver" target="_blank">Quicksilver</a> is to OS X, what <a href="http://do.davebsd.com/" target="_blank">Gnome Do</a> is to Linux. From its Wikipedia page: </p>
<blockquote><p>Ubiquity&#8217;s main goal is to take a disjointed web and bring everything the user needs to them. This is accomplished through a command-line-like interface which is based on natural language commands. These commands are supplied both by Mozilla and by individual users. Commands are written in Javascript and either directly typed into the command editor that comes with Ubiquity or subscribed to. Commands to which a user subscribes are automatically updated when the author updates the code.</p></blockquote>
<p>I won&#8217;t go in-depth about this because <a href="http://www.azarask.in/blog/post/ubiquity-in-depth/" target="_blank">Aza has done so already</a>.<a href="https://addons.mozilla.org/firefox/addon/722" target="_blank"><strong></strong></a><br />
<br/><br />
<br/><br/></p>
<p><a class="top10src" href="https://addons.mozilla.org/firefox/addon/722" target="_blank">NoScript</a> </p>
<p>This extension is initially unappealing because it seems to break most sites. What it does is disable Javascript (and by default, Flash) on any new sites you visit, until you explicitly teach NoScript that they&#8217;re trustworthy.<br />
<img src="http://biodegradablegeek.com/wp-content/uploads/2008/09/ugly-noscript-icon.jpg" alt="ugly noscript icon Top 10 Firefox Extensions that Enhance Usability" title="ugly-noscript-icon" class="alignright plainimg size-medium wp-image-137" /><br />
Besides nuisance and security reasons, one huge benefit is the fact that you can block/unblock specific domains per site. So you can enable JS on a site but keep Google Analytics or some annoying JS ads being loaded remotely, disabled.</p>
<p>I used NoScript on and off, but finally settled on making it permanent by changing some options to make it less annoying to me. These settings work good for my own browsing habits; YMMV.</p>
<ul>
<li>Stop auto-page reload &#8211; I prefer doing this manually.</li>
<li>Forbid everything <em>except</em> Flash and IFRAME &#8211; nspluginwrapper crashes Flash all the time anyway :P</li>
<li>Show Status bar icon (not label)</li>
<li>Place <em>blocked-scripts message</em> on the bottom instead of top</li>
<li>Hide message after 3 seconds &#8211; I don&#8217;t even need this. I&#8217;m aware that JS is off by default now</li>
<li>Allow local links &#8211; Good if you develop</li>
</ul>
<p>The main turn-off people have towards NoScript is the fact that you need to get used to unblocking sites you&#8217;ve been visiting hassle-free for years, but <strong>after a few days you&#8217;ll notice that, since you only need to allow a site once</strong> (permanently), nearly every site you visit on a regular basis will be whitelisted and will work as it always had. </p>
<p>My whitelist has hundreds of items, and I do view new sites on a daily basis, but in the past few days the only site I recall turning JS on for was InventiveLabs&#8217;, to see the <a href="http://www.inventivelabs.com.au/weblog" target="_blank">crazy js light-switch effect</a>.</p>
<p><br/></p>
<p><a class="top10src" href="https://addons.mozilla.org/en-US/firefox/addon/1306" target="_blank">Stealther</a></p>
<p>Stealther has plenty of uses, one of which is being able to quickly see what your site will look like for users with cookies disabled, but it&#8217;s not a very versatile <em>porn-mode</em>. A lot of sites require cookies to be enabled, including Google Images (to keep the filter option saved), but Stealther has be fine tuned. </p>
<p>Hiding your history can also be achieved by using ctrl+H, sorted by Last Visited, and just hitting DEL on the top few links (why can&#8217;t you ctrl/shift select?) you visited. It doesn&#8217;t remove everything, but removes enough. </p>
<p><br/></p>
<p><a class="top10src" href="https://addons.mozilla.org/en-US/firefox/addon/173" target="_blank">Gmail Notifier</a> </p>
<p><em>This is not the same as Google&#8217;s Gmail Notifier Toolbar.</em><br />
<img src="http://biodegradablegeek.com/wp-content/uploads/2008/09/gmail-icon.jpg" alt="gmail icon Top 10 Firefox Extensions that Enhance Usability" title="gmail-icon" class="alignright size-medium wp-image-135" /></p>
<p>I&#8217;ve tried a bunch of Gmail notifiers for browsers, Gnome, KDE, etc. Nothing compares to Firefox&#8217; Gmail Notifier. First, who only has 1 email address anymore? A notifier needs to allow multiple accounts. Second, I&#8217;d like to be notified of unread messages only until I actually visit my inbox and decide whether I want to read them or not. Many notifiers will continue to bug me until I mark the emails read or explicitly tell the notifier to stop.</p>
<p><br/></p>
<p><a class="top10src" href="https://addons.mozilla.org/en-US/firefox/addon/1865" target="_blank">Adblock Plus</a></p>
<p>I like ads. Well placed ads, not the Adsense box in the middle of an article, or sites that have more ads than content, like About.com. Ads are downplayed and taken for granted, but some are brilliant, and <a href="http://www.sciencedaily.com/releases/2007/05/070510123709.htm" target="_blank">they still work</a>, even on us geeks. But people hate them, and so we have Adblock.</p>
<p><img src="http://biodegradablegeek.com/wp-content/uploads/2008/09/logo-adblock-plus.png" alt="logo adblock plus Top 10 Firefox Extensions that Enhance Usability" title="logo-adblock-plus" class="plainimg alignright size-medium wp-image-134" /></p>
<p>I initially couldn&#8217;t stand this extension because it kept blocking legitimate images. That was way-back-when, and I was re-introduced to adblock when I picked up <a href="http://swiftweasel.sourceforge.net/">Swiftweasel</a>. Actually, I don&#8217;t know if re-introduced is the right word. I just happened to notice it was available and was too lazy to remove it.</p>
<p>Install it, set it on the easy-filter and forget about it. If curious, here is the difference between <a href="http://www.neowin.net/forum/index.php?showtopic=467681" target="_blank">Adblock vs Adblock Plus</a>.</p>
<p><br/></p>
<p><a class="top10src" href="https://addons.mozilla.org/en-US/firefox/addon/1887" target="_blank">TimeTracker</a></p>
<p>I have a bad habit of losing track of my time when browsing the web (I&#8217;m literally addicted to the Internet). This extension helps shed light on this fact. . It keeps track of how long you&#8217;ve been using <del>wasting your life</del> browsing the web. </p>
<p>Has a useful filter option to disregard specific sites (i.e., editing your router settings, doing job related work, etc). However, in practice, I usually forget I have it installed and don&#8217;t notice it. What I really want is a timer that will alert me every N minutes I&#8217;m viewing a site. So if I&#8217;m on Wikipedia for more than 10 minutes, it&#8217;ll bring me back to Earth and make me realize that I should be working instead of holding ctrl and clicking every in-site link on the Wikipedia page.</p>
<p>The extension is actively being developed, and a lot of nice features are planned (<a href="http://forums.mozillazine.org/viewtopic.php?t=370288" target="_blank">see this thread</a>).<br />
<br/></p>
<p><em>(Honorable mention) </em><br />
<img src="http://biodegradablegeek.com/wp-content/uploads/2008/09/vim-super-cleaner-mr-sparkle.png" alt="vim super cleaner mr sparkle Top 10 Firefox Extensions that Enhance Usability" title="vim-super-cleaner-mr-sparkle" class="alignleft size-full plainimg wp-image-139" /><br />
<a class="top10src" href="http://vimperator.mozdev.org/" target="_blank">Vimperator</a></p>
<p>Vimperator is amazing. You know those crazy ideas you get sometimes that you think are brilliant in a humorous, &#8220;if only,&#8221; sarcastic, sort of way, like &#8220;Why can&#8217;t everything in life have a vim-like interface and bindings?&#8221; &#8212; yeah, that&#8217;s exactly what Vimperator does with Firefox. </p>
<p>Opera users may check out <a href="http://www.calmar.ws/opera/">this page</a>.</p>
<p><br/><br />
<br/></p>
<h2>What Firefox extensions do <strong>you</strong> recommend?</h2>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://biodegradablegeek.com/2008/09/firefox-extensions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
