This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cronjob to get a Growl notification every half hour. | |
| # | |
| # Get growl & growlnotify from http://growl.info/ then | |
| # install this cronjob using "crontab -e" | |
| # | |
| 0,30 * * * * /usr/local/bin/growlnotify -m "The time is now `date +\%H:\%M`" -a "iCal" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $("p.row").each(function(index) { | |
| var csv = $(this).text().trim().replace(/[ \r\n\t]+/g, ' '); | |
| csv = csv.replace(/ pic$/, "\tpic") | |
| csv = csv.replace(/ pic img$/, "\tpic img") | |
| csv = csv.replace(/^([^-]*)- /, "$1\t") | |
| csv = csv.replace(/ - ([($])/, "\t$1") | |
| //csv = csv.replace(/(\$[0-9]+) ([^(])/, "$1\t\t$2") |
NewerOlder