Search the web
Sign In
New User? Sign Up
todotxt · Todo.txt
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2278 - 2307 of 2423   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2278
Anyone else having this problem?: 2.3 uses gawk for listcon and listproj, but gawk has been replaced with the following grep command: grep -w -o '@[^ ]\+'...
Jon Smajda
jonsmajda
Offline Send Email
May 10, 2009
9:05 pm
2279
I am using GeekTool to output my todo.txt list on to the desktop, but I am getting strange garbage characters that I don't get in terminal or when I view the...
noahhendrix
Offline Send Email
May 10, 2009
10:20 pm
2280
... Use the -p parameter to enable "plain mode," that is, no color codes (which is the "garbage" you're seeing). In the GeekTool call to todo.sh, just add -p...
Gina Trapani
gina.trapani
Offline Send Email
May 10, 2009
10:27 pm
2281
... Here's the commit where we took out gawk and uniq, and some of the reasoning behind it (mostly just to remove the dependencies, grep is more widely...
Gina Trapani
gina.trapani
Offline Send Email
May 10, 2009
10:34 pm
2282
... The idea of using -w is to bracket "words" and not catch (iirc) foo@... as a context. But yeah, I guess that's not POSIX. (Then again, neither is...
Emil Sit
emilsit
Offline Send Email
May 10, 2009
11:29 pm
2283
... You can achieve the same effect with grep -o '[^ ]*@[^ ]\+' "$TODO_FILE" | grep -v '^[^@]'|sort -u...
Philippe Teuwen
doegox2
Offline Send Email
May 10, 2009
11:57 pm
2284
... Is this more direct? grep -o '@[^ ]\+' "$TODO_FILE" | grep '^@' | sort -u -- Emil Sit / http://www.emilsit.net/...
Emil Sit
emilsit
Offline Send Email
May 11, 2009
12:38 am
2285
... Interesting. What's your LANG and LC* env variables look like? What version of grep are you using? set | egrep '^(LANG|LC)' grep --version Also, I have a...
Emil Sit
emilsit
Offline Send Email
May 11, 2009
2:17 am
2286
... GNU grep 2.5.1 LANG=en_US.UTF-8 LC_COLLATE=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 LC_MONETARY=en_US.UTF-8 LC_NUMERIC=en_US.UTF-8 ...
Jon Smajda
jonsmajda
Offline Send Email
May 11, 2009
2:59 am
2287
... But wrong: $ echo -e 'foo@wrong\n@correct' |grep -o '[^ ]*@[^ ]\+' | grep -v '^[^@]'|sort -u @correct $ echo -e 'foo@wrong\n@correct' |grep -o '@[^ ]\+' |...
Philippe Teuwen
doegox2
Offline Send Email
May 11, 2009
7:56 am
2288
... Yes, despite the fact that [^ ]* can match nothing, it's useful to have for those times when you want it to match the foo part. However, $ echo -e...
Emil Sit
emilsit
Offline Send Email
May 11, 2009
10:29 am
2289
... yes indeed ... From my grep changelog I see for example that one, sounds appealing: 2005-11-10 Charles Levert <charles_levert@...> The introduction...
Philippe Teuwen
doegox2
Offline Send Email
May 11, 2009
4:32 pm
2290
... Ah, fabulous. Thanks for looking that up. I've updated the commit message to indicate that. Gina, if Phil has no objections, please merge my fix-grep...
Emil Sit
emilsit
Offline Send Email
May 11, 2009
5:06 pm
2291
... Nice patch with regression tests, thanks for your time on that one! Just one remark: I'm always hesitant to use real email addresses anywhere it's not...
Philippe Teuwen
doegox2
Offline Send Email
May 11, 2009
6:15 pm
2292
... Yes, that was a great patch Emil, esp the tests. I'm sorry I didn't wait to hear back from Phil--I was hot to merge this today, because it's the project's...
Gina Trapani
gina.trapani
Offline Send Email
May 11, 2009
7:11 pm
2293
Wohooo! (I changed the title as the original announce was quite discrete) ... I wanted to say I'm also very happy of participating to this modest open-source...
Philippe Teuwen
doegox2
Offline Send Email
May 11, 2009
8:48 pm
2294
Am trying to follow the instruction to edit the .cfg file, etc. as in this install guide: http://wiki.github.com/ginatrapani/todo.txt-cli/quick-start-guide But...
jonathan.soroko@...
jonathan.sor...
Offline Send Email
May 12, 2009
3:02 pm
2295
Hi Johnathan, Those instructions are designed for a system with some type of Unix/like command line interface installed. Line number 2 requires you to use a...
Jeremy Gransden
vvdtcvv
Offline Send Email
May 12, 2009
3:14 pm
2296
... Now that we have TODOTXT_FINAL_FILTER, this was fairly easy to implement: http://github.com/FND/todo.txt-cli/blob/extensions/futureTasks This script...
Frederik Dohr
ace_noone
Offline Send Email
May 12, 2009
7:31 pm
2297
... I have a pre_filter_command that uses awk to do that. That way the "X of N tasks" is correct. I've been out of the loop with development, so maybe...
Ed Blackman
edgewood73
Offline Send Email
May 12, 2009
7:49 pm
2298
... It appears TODOTXT_FINAL_FILTER does the right thing, in- or decreasing X as required. (I'm not familiar with pre_filter_command myself.) Would you mind...
Frederik Dohr
ace_noone
Offline Send Email
May 12, 2009
8:33 pm
2299
... Not at all. I've attached it. Ed # This script relies on the fact that a lexical sort of YYYY-MM-DD datestrings # produces the same result as a calendar...
Ed Blackman
edgewood73
Offline Send Email
May 12, 2009
9:22 pm
2300
... Hear, hear! -- http://ginatrapani.org...
Gina Trapani
gina.trapani
Offline Send Email
May 14, 2009
5:49 pm
2301
... In the future, instead of attaching scripts, consider making a gist - http://gist.github.com/ Gists have a simple URL, they're versioned (and anyone can...
Emil Sit
emilsit
Offline Send Email
May 15, 2009
1:50 am
2302
I've run into a somewhat annoying issue: The TODOTXT_FINAL_FILTER script is also used for listall, and there doesn't seem to be a way to differentiate this...
Frederik Dohr
ace_noone
Offline Send Email
May 16, 2009
12:03 am
2303
... Instead of setting TODOTXT_FINAL_FILTER in the config file, you could create a thin action override for "list" that just sets TODOTXT_FINAL_FILTER in the...
Ed Blackman
edgewood73
Offline Send Email
May 16, 2009
1:21 pm
2304
... If that's the way to do it, I have no objections. However, creating a list override seems to affect neither variations like listpri nor shortcuts like ls. ...
Frederik Dohr
ace_noone
Offline Send Email
May 17, 2009
12:38 pm
2305
... Good idea, thanks Emil--Gists do appear to be a really neat way to swap pieces of code. -- http://ginatrapani.org http://twitter.com/ginatrapani...
Gina Trapani
gina.trapani
Offline Send Email
May 21, 2009
9:58 pm
2306
... And perfect for the todo.txt crowd: try gist.sh to post gists from the command line: http://github.com/gmarik/gist.sh Cheers, Raman...
Raman Gupta
rocketraman
Online Now Send Email
May 23, 2009
4:40 pm
2307
I've taken Phil's code and ported it to the last 'master' branch. After a delay of several weeks, I finally found some time to work on this; as usual, it took...
Dave Hein
thinkcritica...
Offline Send Email
May 25, 2009
10:33 pm
Messages 2278 - 2307 of 2423   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help