Comments on: How I keep track of notes http://www.xaprb.com/blog/2010/07/03/how-i-keep-track-of-notes/ Stay curious! Thu, 02 May 2013 12:36:53 +0000 hourly 1 http://wordpress.org/?v=3.5.1 By: Jim Plush http://www.xaprb.com/blog/2010/07/03/how-i-keep-track-of-notes/#comment-18506 Jim Plush Tue, 20 Jul 2010 16:43:18 +0000 http://www.xaprb.com/blog/?p=1920#comment-18506 I actually have a personal wiki that I keep all my notes on. It’s been fantastic for the past few years. I can add tags to make things more searchable, all the pages can be organized a number of ways and it’s available from anywhere I am.

]]>
By: ex http://www.xaprb.com/blog/2010/07/03/how-i-keep-track-of-notes/#comment-18487 ex Thu, 08 Jul 2010 13:36:14 +0000 http://www.xaprb.com/blog/?p=1920#comment-18487 Try http://zim-wiki.org/

Fast and nice desktop based wiki with:
- calendar (year/month/day layout)
- links, backlinks (helps organize per project, person)
- files attaching
- search, etc

Works for me

]]>
By: Xaprb http://www.xaprb.com/blog/2010/07/03/how-i-keep-track-of-notes/#comment-18476 Xaprb Mon, 05 Jul 2010 21:26:19 +0000 http://www.xaprb.com/blog/?p=1920#comment-18476 Dan,

The ‘t’ script is this:

mkdir -p ~/etc/`date +"%Y/%m/"`;
vim ~/etc/`date +"%Y/%m/%d"`-$1.txt

The ‘c’ script is simply the same thing with ‘cat’ instead of ‘vim’. The scripts to list today, this week, this month, just do stuff like

ls -1 ~/etc/`date +"%Y/%m/%d"`-*.txt

]]>
By: Dan http://www.xaprb.com/blog/2010/07/03/how-i-keep-track-of-notes/#comment-18471 Dan Sat, 03 Jul 2010 21:28:59 +0000 http://www.xaprb.com/blog/?p=1920#comment-18471 Would mind posting your scripts/functions? Sounds very efficient.

]]>