<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: tnote: Simple is good</title>
	<atom:link href="http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/</link>
	<description>K.Mandla's blog of Linux experiences</description>
	<lastBuildDate>Mon, 11 Feb 2013 18:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Task managers for the console &#171; Motho ke motho ka botho</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-41405</link>
		<dc:creator><![CDATA[Task managers for the console &#171; Motho ke motho ka botho]]></dc:creator>
		<pubDate>Sat, 02 Jan 2010 03:02:26 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-41405</guid>
		<description><![CDATA[[...] organizer-type applications &#8212; hnb is my favorite, probably followed by vimwiki; I mentioned tnote a while back and I&#8217;ve used emacs&#8217; org-mode as well &#8212; but that&#8217;s certainly [...]]]></description>
		<content:encoded><![CDATA[<p>[...] organizer-type applications &#8212; hnb is my favorite, probably followed by vimwiki; I mentioned tnote a while back and I&#8217;ve used emacs&#8217; org-mode as well &#8212; but that&#8217;s certainly [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pescobar</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40834</link>
		<dc:creator><![CDATA[pescobar]]></dc:creator>
		<pubDate>Thu, 19 Nov 2009 23:03:44 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40834</guid>
		<description><![CDATA[simple note function inside my .bashrc

[sourcecode language=&quot;xml&quot;]nn() {
    local NOTE_FILE=$HOME/.notes
    #if file doesn&#039;t exist, create it
    [[ -f $NOTE_FILE ]] &#124;&#124; touch $NOTE_FILE
   
    #no arguments, print file
    if [[ $# == 0 ]]; then
       cat -n $NOTE_FILE &#124; less
    #clear file
    elif [[ $1 == &quot;-c&quot; ]]; then
        &gt; $NOTE_FILE
        #   for i in ; do
        #   sed -i -e &quot;$i d&quot; $NOTE_FILE
        #   done
    #edit file
    elif [[ $1 == &quot;-e&quot; ]]; then
        vim $NOTE_FILE
    elif [[ $1 == &quot;-s&quot; ]]; then
        tail -&quot;$2&quot; $NOTE_FILE
    elif [[ $1 == &quot;-h&quot; &#124;&#124; $1 == &quot;--help&quot; ]]; then
        printf &quot;Make quick notes\nUsage:   nn [options&#124;note]\n\t\t show notes from ${NOTE_FILE}\n\t-c\t clear ${NOTE_FILE}\n\t-e\t edit ${NOTE_FILE}\n\t-s  show last  lines\n&quot;
    #add all arguments to file
    else
        echo &quot;&gt;&gt; $@&quot; &gt;&gt; $NOTE_FILE
    fi
}[/sourcecode]]]></description>
		<content:encoded><![CDATA[<p>simple note function inside my .bashrc</p>
<pre class="brush: xml; title: ; notranslate">nn() {
    local NOTE_FILE=$HOME/.notes
    #if file doesn't exist, create it
    [[ -f $NOTE_FILE ]] || touch $NOTE_FILE
   
    #no arguments, print file
    if [[ $# == 0 ]]; then
       cat -n $NOTE_FILE | less
    #clear file
    elif [[ $1 == &quot;-c&quot; ]]; then
        &amp;gt; $NOTE_FILE
        #   for i in ; do
        #   sed -i -e &quot;$i d&quot; $NOTE_FILE
        #   done
    #edit file
    elif [[ $1 == &quot;-e&quot; ]]; then
        vim $NOTE_FILE
    elif [[ $1 == &quot;-s&quot; ]]; then
        tail -&quot;$2&quot; $NOTE_FILE
    elif [[ $1 == &quot;-h&quot; || $1 == &quot;--help&quot; ]]; then
        printf &quot;Make quick notes\nUsage:   nn [options|note]\n\t\t show notes from ${NOTE_FILE}\n\t-c\t clear ${NOTE_FILE}\n\t-e\t edit ${NOTE_FILE}\n\t-s  show last  lines\n&quot;
    #add all arguments to file
    else
        echo &quot;&amp;gt;&amp;gt; $@&quot; &amp;gt;&amp;gt; $NOTE_FILE
    fi
}</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vimwiki lag &#171; Motho ke motho ka botho</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40824</link>
		<dc:creator><![CDATA[Vimwiki lag &#171; Motho ke motho ka botho]]></dc:creator>
		<pubDate>Tue, 17 Nov 2009 13:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40824</guid>
		<description><![CDATA[[...] 2009/11/17   Linux Leave a&#160;Comment       I mentioned a brisk, clean and simple little &#8220;stickynote&#8221; program for the console the other day, and in the same breath mentioned both hnb and vimwiki. I wanted to add a quick note [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 2009/11/17   Linux Leave a&nbsp;Comment       I mentioned a brisk, clean and simple little &#8220;stickynote&#8221; program for the console the other day, and in the same breath mentioned both hnb and vimwiki. I wanted to add a quick note [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40781</link>
		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Thu, 12 Nov 2009 01:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40781</guid>
		<description><![CDATA[Not just colored tags and priorities - rule-based coloring.]]></description>
		<content:encoded><![CDATA[<p>Not just colored tags and priorities &#8211; rule-based coloring.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali Gündüz</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40778</link>
		<dc:creator><![CDATA[Ali Gündüz]]></dc:creator>
		<pubDate>Wed, 11 Nov 2009 03:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40778</guid>
		<description><![CDATA[I&#039;ve put together a quick AUR package for tnote:

http://aur.archlinux.org/packages.php?ID=31911

(Not that the manual installation is much complicated.)]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve put together a quick AUR package for tnote:</p>
<p><a href="http://aur.archlinux.org/packages.php?ID=31911" rel="nofollow">http://aur.archlinux.org/packages.php?ID=31911</a></p>
<p>(Not that the manual installation is much complicated.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: IceBrain</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40777</link>
		<dc:creator><![CDATA[IceBrain]]></dc:creator>
		<pubDate>Tue, 10 Nov 2009 21:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40777</guid>
		<description><![CDATA[Another simple app is Todo.txt: http://ginatrapani.github.com/todo.txt-cli/

It&#039;s only a simple bash script which uses common utilities (grep, sed, wc) to manage a simple todo in a text file.]]></description>
		<content:encoded><![CDATA[<p>Another simple app is Todo.txt: <a href="http://ginatrapani.github.com/todo.txt-cli/" rel="nofollow">http://ginatrapani.github.com/todo.txt-cli/</a></p>
<p>It&#8217;s only a simple bash script which uses common utilities (grep, sed, wc) to manage a simple todo in a text file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: n2j3</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40772</link>
		<dc:creator><![CDATA[n2j3]]></dc:creator>
		<pubDate>Tue, 10 Nov 2009 12:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40772</guid>
		<description><![CDATA[I&#039;ve been using taskwarrior for a couple of weeks now and although not as small (it&#039;s around a megabyte) it&#039;s still as simple and definitely more versatile than tnote (it even supports GTD stuff if you&#039;re so inclined). oh i almost forgot; it supports colours for different event priorities/tags ! 
get it here: http://taskwarrior.org/projects/show/taskwarrior]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using taskwarrior for a couple of weeks now and although not as small (it&#8217;s around a megabyte) it&#8217;s still as simple and definitely more versatile than tnote (it even supports GTD stuff if you&#8217;re so inclined). oh i almost forgot; it supports colours for different event priorities/tags !<br />
get it here: <a href="http://taskwarrior.org/projects/show/taskwarrior" rel="nofollow">http://taskwarrior.org/projects/show/taskwarrior</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Links 10/11/2009: Mandriva Tops Distrowatch, Oracle/Sun Blocked &#124; Boycott Novell</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40771</link>
		<dc:creator><![CDATA[Links 10/11/2009: Mandriva Tops Distrowatch, Oracle/Sun Blocked &#124; Boycott Novell]]></dc:creator>
		<pubDate>Tue, 10 Nov 2009 12:50:02 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40771</guid>
		<description><![CDATA[[...] tnote: Simple is good For a console note-taker, tnote is extremely simple. It weighs all of about 19Kb when packed, untars into a space smaller than your fingernail, and when installed runs no slower than your machine can spit things out on to the screen. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] tnote: Simple is good For a console note-taker, tnote is extremely simple. It weighs all of about 19Kb when packed, untars into a space smaller than your fingernail, and when installed runs no slower than your machine can spit things out on to the screen. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: IceBrain</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40770</link>
		<dc:creator><![CDATA[IceBrain]]></dc:creator>
		<pubDate>Tue, 10 Nov 2009 12:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40770</guid>
		<description><![CDATA[well, 

&lt;code&gt;alias tadd=&#039;echo $* &gt;&gt; ~/todofile&#039;&lt;/code&gt;

Then you can just do &quot;tadd my note text&quot; to add a new note. For removing, sed is your friend:

&lt;code&gt;alias trem=&#039;sed -i -v &quot;$*&quot; ~/todofile&#039;&lt;/code&gt;

Then you just have to give some identifiable word or substring (read: only present in that note) to remove the note.]]></description>
		<content:encoded><![CDATA[<p>well, </p>
<p><code>alias tadd='echo $* &gt;&gt; ~/todofile'</code></p>
<p>Then you can just do &#8220;tadd my note text&#8221; to add a new note. For removing, sed is your friend:</p>
<p><code>alias trem='sed -i -v "$*" ~/todofile'</code></p>
<p>Then you just have to give some identifiable word or substring (read: only present in that note) to remove the note.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rickard</title>
		<link>http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40769</link>
		<dc:creator><![CDATA[Rickard]]></dc:creator>
		<pubDate>Tue, 10 Nov 2009 10:07:32 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/11/10/tnote-simple-is-good/#comment-40769</guid>
		<description><![CDATA[For a while I&#039;ve used: alias todo=&#039;nano ~/documents/todo-list&#039; to handle all the notes. Perhaps it&#039;s a little to simple, but it get the work done.

Although it would not be lot of trouble to write a little script to handle arguments like -a to add -v to view and -r to remove.
I think this could be a great way for you to start learning bash.  =)]]></description>
		<content:encoded><![CDATA[<p>For a while I&#8217;ve used: alias todo=&#8217;nano ~/documents/todo-list&#8217; to handle all the notes. Perhaps it&#8217;s a little to simple, but it get the work done.</p>
<p>Although it would not be lot of trouble to write a little script to handle arguments like -a to add -v to view and -r to remove.<br />
I think this could be a great way for you to start learning bash.  =)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
