This file contains 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
%s/URL,Title,Selection,Folder\n// | |
%s/",[^,]*,[^,]*$/"/ | |
%s/\(.*\),"\(.*\)"$/<DT><A HREF="\1">\2<\/A>/ |
This file contains 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
#!/bin/bash | |
itc_username=some_username | |
itc_password=some_password | |
itc_account=12345678 | |
yesterday=`date -v-1d +"%Y%m%d"` | |
if [ "$1" == "" ]; then | |
echo downloading file for yesterday: $yesterday |
This file contains 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
:fu! Taskpaper() | |
:return setline(line("."), getline(line(".")) . "@done(" . strftime("%Y-%m-%d") . ")") | |
:endf | |
:map <F11> <ESC>:call Taskpaper()<CR><ESC> | |
:imap <F11> <ESC>:call Taskpaper()<CR><ESC> |
This file contains 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
set nocompatible | |
source $VIMRUNTIME/vimrc_example.vim | |
behave xterm | |
set selectmode=mouse | |
set lines=50 | |
set co=80 | |
set vb | |
set ignorecase | |
set lcs=tab:>-,trail:- | |
set nolist |