assorted-commits Mailing List for Assorted projects (Page 45)
Brought to you by:
yangzhang
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(9) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(86) |
Feb
(265) |
Mar
(96) |
Apr
(47) |
May
(136) |
Jun
(28) |
Jul
(57) |
Aug
(42) |
Sep
(20) |
Oct
(67) |
Nov
(37) |
Dec
(34) |
2009 |
Jan
(39) |
Feb
(85) |
Mar
(96) |
Apr
(24) |
May
(82) |
Jun
(13) |
Jul
(10) |
Aug
(8) |
Sep
(2) |
Oct
(20) |
Nov
(31) |
Dec
(17) |
2010 |
Jan
(16) |
Feb
(11) |
Mar
(17) |
Apr
(53) |
May
(31) |
Jun
(13) |
Jul
(3) |
Aug
(6) |
Sep
(11) |
Oct
(4) |
Nov
(17) |
Dec
(17) |
2011 |
Jan
(3) |
Feb
(19) |
Mar
(5) |
Apr
(17) |
May
(3) |
Jun
(4) |
Jul
(14) |
Aug
(3) |
Sep
(2) |
Oct
(1) |
Nov
(3) |
Dec
(2) |
2012 |
Jan
(3) |
Feb
(7) |
Mar
(1) |
Apr
|
May
(1) |
Jun
|
Jul
(4) |
Aug
(5) |
Sep
(2) |
Oct
(3) |
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
(9) |
Apr
(5) |
May
|
Jun
(2) |
Jul
(1) |
Aug
(10) |
Sep
(1) |
Oct
(2) |
Nov
|
Dec
|
2014 |
Jan
(1) |
Feb
(3) |
Mar
(3) |
Apr
(1) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2016 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(5) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <yan...@us...> - 2008-05-13 07:44:26
|
Revision: 802 http://assorted.svn.sourceforge.net/assorted/?rev=802&view=rev Author: yangzhang Date: 2008-05-13 00:44:31 -0700 (Tue, 13 May 2008) Log Message: ----------- added informational output to prereq checking; fixed the bashrc checking; added final done output Modified Paths: -------------- configs/trunk/setup-cron.bash Modified: configs/trunk/setup-cron.bash =================================================================== --- configs/trunk/setup-cron.bash 2008-05-13 07:43:35 UTC (rev 801) +++ configs/trunk/setup-cron.bash 2008-05-13 07:44:31 UTC (rev 802) @@ -2,7 +2,7 @@ # Installs cron jobs. -. common.bash +. common.bash || exit 1 shopt -s extglob @@ -13,20 +13,28 @@ install .cron/ cron/!(crontab) -silence type duplicity -silence type gbookmark2delicious.py -[ -f ~/.gbookmark2delicious.auth ] -silence type mlf.py -[ -f ~/.mlf.auth ] -silence type mysqldump -[ -f ~/.y_z.cnf ] +check() { + local arg="$1" + if [[ "${arg:0:1}" == / ]] + then [ -f "$arg" ] || die "could not find file $arg" + else silence type "$arg" || die "could not find proram $arg" + fi +} +check duplicity +check gbookmark2delicious +check ~/.gbookmark2delicious.auth +check mlf.py +check ~/.mlf.auth +check mysqldump +check ~/.y_z.cnf + if ! silence crontab -l then crontab - < crontab else warn "crontab already exists; not overwriting." fi -if fgrep PS1 ~/.bashrc && ! fgrep ~/.bashrc FORCE_BASHRC ~/.bashrc ; then +if silence fgrep PS1 ~/.bashrc && ! silence fgrep FORCE_BASHRC ~/.bashrc ; then # NOTE: do not try to use "$( ... )" here instead of backticks, since that # will break this! warn "` cat << "EOF" @@ -37,3 +45,5 @@ EOF `" fi + +echo done! This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-13 07:43:28
|
Revision: 801 http://assorted.svn.sourceforge.net/assorted/?rev=801&view=rev Author: yangzhang Date: 2008-05-13 00:43:35 -0700 (Tue, 13 May 2008) Log Message: ----------- fail-fast . common.bash Modified Paths: -------------- configs/trunk/setup-defaults.bash configs/trunk/setup-yang.bash configs/trunk/setup.bash Modified: configs/trunk/setup-defaults.bash =================================================================== --- configs/trunk/setup-defaults.bash 2008-05-13 07:34:14 UTC (rev 800) +++ configs/trunk/setup-defaults.bash 2008-05-13 07:43:35 UTC (rev 801) @@ -6,7 +6,7 @@ # Note: this currently doesn't work; SimpleSetup doesn't support specifying individual target files. -. common.bash +. common.bash || exit 1 required=1 pkg=configs Modified: configs/trunk/setup-yang.bash =================================================================== --- configs/trunk/setup-yang.bash 2008-05-13 07:34:14 UTC (rev 800) +++ configs/trunk/setup-yang.bash 2008-05-13 07:43:35 UTC (rev 801) @@ -2,7 +2,7 @@ # Installs files that I personally use (most likely not useful to others). -. common.bash +. common.bash || exit 1 pkg=configs . simple-setup.bash Modified: configs/trunk/setup.bash =================================================================== --- configs/trunk/setup.bash 2008-05-13 07:34:14 UTC (rev 800) +++ configs/trunk/setup.bash 2008-05-13 07:43:35 UTC (rev 801) @@ -2,7 +2,7 @@ # Installs all the base configuration files. -. common.bash +. common.bash || exit 1 pkg=configs . simple-setup.bash This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-13 07:34:19
|
Revision: 800 http://assorted.svn.sourceforge.net/assorted/?rev=800&view=rev Author: yangzhang Date: 2008-05-13 00:34:14 -0700 (Tue, 13 May 2008) Log Message: ----------- fixed bug with no --debug flags Modified Paths: -------------- mailing-list-filter/trunk/src/mlf.py Modified: mailing-list-filter/trunk/src/mlf.py =================================================================== --- mailing-list-filter/trunk/src/mlf.py 2008-05-13 07:32:41 UTC (rev 799) +++ mailing-list-filter/trunk/src/mlf.py 2008-05-13 07:34:14 UTC (rev 800) @@ -83,7 +83,7 @@ help = "Do not mark newly revelant threads as unread.") p.add_argument('--no-mark-seen', action = 'store_true', help = "Do not mark newly irrevelant threads as read.") - p.add_argument('--debug', action = 'append', + p.add_argument('--debug', action = 'append', default = [], help = """Enable logging for messages of the given flags. Flags include: refs (references to missing Message-IDs), dups (duplicate Message-IDs), main (the main program logic), and star (which messages are being This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-13 07:32:45
|
Revision: 799 http://assorted.svn.sourceforge.net/assorted/?rev=799&view=rev Author: yangzhang Date: 2008-05-13 00:32:41 -0700 (Tue, 13 May 2008) Log Message: ----------- added webdb paper Modified Paths: -------------- personal-site/trunk/src/index.txt Modified: personal-site/trunk/src/index.txt =================================================================== --- personal-site/trunk/src/index.txt 2008-05-13 07:32:12 UTC (rev 798) +++ personal-site/trunk/src/index.txt 2008-05-13 07:32:41 UTC (rev 799) @@ -142,6 +142,10 @@ <!-- TODO: sigcomm --> <!-- TODO: webtables --> +- Michael Cafarella, Nodira Khoussainova, Daisy Wang, Eugene Wu, Yang Zhang, + Alon Halevy. _Uncovering the Relational Web_. WebDB 2008. <!-- + [PDF](papers/webdb08.pdf) --> + - Yang Zhang. _ICEDB: Intermittently-Connected Continuous Query Processing_. MS Thesis, January 2008. [PDF](icedb-thesis.pdf) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-13 07:32:17
|
Revision: 798 http://assorted.svn.sourceforge.net/assorted/?rev=798&view=rev Author: yangzhang Date: 2008-05-13 00:32:12 -0700 (Tue, 13 May 2008) Log Message: ----------- using common.bash Modified Paths: -------------- configs/trunk/src/cron/mlf.bash Modified: configs/trunk/src/cron/mlf.bash =================================================================== --- configs/trunk/src/cron/mlf.bash 2008-05-13 07:31:53 UTC (rev 797) +++ configs/trunk/src/cron/mlf.bash 2008-05-13 07:32:12 UTC (rev 798) @@ -2,7 +2,7 @@ FORCE_BASHRC=1 . ~/.bashrc && . common.bash || exit 1 -mv ~/.mlf.cache/yan...@gm...{,-$(date +'%Y%m%d')} 2> /dev/null || true +try mv ~/.mlf.cache/yan...@gm...{,-$(date +'%Y%m%d')} exec mlf.py --debug main --debug star --debug unstar \ yan...@gm... 'imap.gmail.com/[Gmail]/All Mail' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-13 07:31:57
|
Revision: 797 http://assorted.svn.sourceforge.net/assorted/?rev=797&view=rev Author: yangzhang Date: 2008-05-13 00:31:53 -0700 (Tue, 13 May 2008) Log Message: ----------- added monthly full backup Modified Paths: -------------- configs/trunk/src/cron/backup.bash Modified: configs/trunk/src/cron/backup.bash =================================================================== --- configs/trunk/src/cron/backup.bash 2008-05-13 07:31:00 UTC (rev 796) +++ configs/trunk/src/cron/backup.bash 2008-05-13 07:31:53 UTC (rev 797) @@ -2,6 +2,11 @@ FORCE_BASHRC=1 . ~/.bashrc && . common.bash || exit 1 +if [[ "$( date +%d )" == 01 ]] +then args=--full +else args= +fi + eval `keychain --eval --nogui id_dsa 2> /dev/null` export PASSPHRASE="$( cat ~/.backup.auth )" -exec duplicity ~/personal/ scp://hv//export/home/yang/backup-zs.ath.cx +exec duplicity $args ~/personal/ scp://hv//export/home/yang/backup-zs.ath.cx This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-13 07:31:15
|
Revision: 796 http://assorted.svn.sourceforge.net/assorted/?rev=796&view=rev Author: yangzhang Date: 2008-05-13 00:31:00 -0700 (Tue, 13 May 2008) Log Message: ----------- check prereqs in setup-cron Modified Paths: -------------- configs/trunk/setup-cron.bash Modified: configs/trunk/setup-cron.bash =================================================================== --- configs/trunk/setup-cron.bash 2008-05-13 07:30:41 UTC (rev 795) +++ configs/trunk/setup-cron.bash 2008-05-13 07:31:00 UTC (rev 796) @@ -13,6 +13,14 @@ install .cron/ cron/!(crontab) +silence type duplicity +silence type gbookmark2delicious.py +[ -f ~/.gbookmark2delicious.auth ] +silence type mlf.py +[ -f ~/.mlf.auth ] +silence type mysqldump +[ -f ~/.y_z.cnf ] + if ! silence crontab -l then crontab - < crontab else warn "crontab already exists; not overwriting." This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-13 07:30:39
|
Revision: 795 http://assorted.svn.sourceforge.net/assorted/?rev=795&view=rev Author: yangzhang Date: 2008-05-13 00:30:41 -0700 (Tue, 13 May 2008) Log Message: ----------- added sync-bookmarks.bash Modified Paths: -------------- configs/trunk/src/cron/crontab Modified: configs/trunk/src/cron/crontab =================================================================== --- configs/trunk/src/cron/crontab 2008-05-13 07:30:32 UTC (rev 794) +++ configs/trunk/src/cron/crontab 2008-05-13 07:30:41 UTC (rev 795) @@ -1,4 +1,5 @@ # m h dom mon dow command 00 07 * * * $HOME/.cron/backup-blog.bash + 00 07 * * * $HOME/.cron/sync-bookmarks.bash 10 07 * * * $HOME/.cron/backup.bash 00 07 * * * $HOME/.cron/mlf.bash This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-13 07:30:36
|
Revision: 794 http://assorted.svn.sourceforge.net/assorted/?rev=794&view=rev Author: yangzhang Date: 2008-05-13 00:30:32 -0700 (Tue, 13 May 2008) Log Message: ----------- added sync-bookmarks.bash Added Paths: ----------- configs/trunk/src/cron/sync-bookmarks.bash Added: configs/trunk/src/cron/sync-bookmarks.bash =================================================================== --- configs/trunk/src/cron/sync-bookmarks.bash (rev 0) +++ configs/trunk/src/cron/sync-bookmarks.bash 2008-05-13 07:30:32 UTC (rev 794) @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +FORCE_BASHRC=1 . ~/.bashrc && . common.bash || exit 1 + +exec gbookmark2delicious.py --debug main --debug compare --underscores Property changes on: configs/trunk/src/cron/sync-bookmarks.bash ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-11 19:20:39
|
Revision: 793 http://assorted.svn.sourceforge.net/assorted/?rev=793&view=rev Author: yangzhang Date: 2008-05-11 12:20:37 -0700 (Sun, 11 May 2008) Log Message: ----------- updated to use .bashrc, common.bash; compressing blog backups; removing custom logging Modified Paths: -------------- configs/trunk/src/cron/backup-blog.bash configs/trunk/src/cron/backup.bash configs/trunk/src/cron/mlf.bash Modified: configs/trunk/src/cron/backup-blog.bash =================================================================== --- configs/trunk/src/cron/backup-blog.bash 2008-05-11 19:18:40 UTC (rev 792) +++ configs/trunk/src/cron/backup-blog.bash 2008-05-11 19:20:37 UTC (rev 793) @@ -1,8 +1,6 @@ #!/usr/bin/env bash -. common.bash +FORCE_BASHRC=1 . ~/.bashrc && . common.bash || exit 1 -set -o noclobber - -exec mysqldump --defaults-extra-file=$HOME/.y_z.cnf -h sql.mit.edu y_z+wp > \ - ~/personal/backups/wp-$( date +%Y%m%d ).mysqldump +exec mysqldump --defaults-extra-file=$HOME/.y_z.cnf -h sql.mit.edu y_z+wp | +bzip2 -c > ~/personal/backups/wp-$( date +%Y%m%d ).mysqldump.bz2 Modified: configs/trunk/src/cron/backup.bash =================================================================== --- configs/trunk/src/cron/backup.bash 2008-05-11 19:18:40 UTC (rev 792) +++ configs/trunk/src/cron/backup.bash 2008-05-11 19:20:37 UTC (rev 793) @@ -1,9 +1,7 @@ #!/usr/bin/env bash -. common.bash +FORCE_BASHRC=1 . ~/.bashrc && . common.bash || exit 1 -set -o noclobber - eval `keychain --eval --nogui id_dsa 2> /dev/null` export PASSPHRASE="$( cat ~/.backup.auth )" exec duplicity ~/personal/ scp://hv//export/home/yang/backup-zs.ath.cx Modified: configs/trunk/src/cron/mlf.bash =================================================================== --- configs/trunk/src/cron/mlf.bash 2008-05-11 19:18:40 UTC (rev 792) +++ configs/trunk/src/cron/mlf.bash 2008-05-11 19:20:37 UTC (rev 793) @@ -1,12 +1,9 @@ #!/usr/bin/env bash -. common.bash +FORCE_BASHRC=1 . ~/.bashrc && . common.bash || exit 1 -set -o noclobber +mv ~/.mlf.cache/yan...@gm...{,-$(date +'%Y%m%d')} 2> /dev/null || true -mv ~/.mlf.cache/yan...@gm...{,-$(date +'%Y%m%d')} || true - exec mlf.py --debug main --debug star --debug unstar \ - yan...@gm... 'imap.gmail.com/[Gmail]/All Mail' \ - >& ~/.mlf.cache/log-$(date +'%Y%m%d') + yan...@gm... 'imap.gmail.com/[Gmail]/All Mail' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-11 19:18:44
|
Revision: 792 http://assorted.svn.sourceforge.net/assorted/?rev=792&view=rev Author: yangzhang Date: 2008-05-11 12:18:40 -0700 (Sun, 11 May 2008) Log Message: ----------- added check for a cooperative .bashrc (since these are loaded by the cron scripts) Modified Paths: -------------- configs/trunk/setup-cron.bash Modified: configs/trunk/setup-cron.bash =================================================================== --- configs/trunk/setup-cron.bash 2008-05-10 05:46:06 UTC (rev 791) +++ configs/trunk/setup-cron.bash 2008-05-11 19:18:40 UTC (rev 792) @@ -17,3 +17,15 @@ then crontab - < crontab else warn "crontab already exists; not overwriting." fi + +if fgrep PS1 ~/.bashrc && ! fgrep ~/.bashrc FORCE_BASHRC ~/.bashrc ; then + # NOTE: do not try to use "$( ... )" here instead of backticks, since that + # will break this! + warn "` cat << "EOF" +Ensure that your bashrc doesn't guard against non-interactive shells or, if it +does, that it responds to FORCE_BASHRC. For instance, on Ubuntu: + + [[ -z "$PS1" && -z "$FORCE_BASHRC" ]] && return +EOF +`" +fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-10 05:46:09
|
Revision: 791 http://assorted.svn.sourceforge.net/assorted/?rev=791&view=rev Author: yangzhang Date: 2008-05-09 22:46:06 -0700 (Fri, 09 May 2008) Log Message: ----------- fixed date insertion Modified Paths: -------------- configs/trunk/src/vim/plugin/_yang.vim Modified: configs/trunk/src/vim/plugin/_yang.vim =================================================================== --- configs/trunk/src/vim/plugin/_yang.vim 2008-05-10 05:45:51 UTC (rev 790) +++ configs/trunk/src/vim/plugin/_yang.vim 2008-05-10 05:46:06 UTC (rev 791) @@ -25,7 +25,7 @@ map <space> <c-f> map <s-space> <c-b> -imap <f6> <c-o>=system("date")[0:-2]<cr> +imap <f6> <c-r>=system("date")[0:-2]<cr> " imap <f6> <c-r>=strftime("%d/%m/%Y %H:%M:%S")<cr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-10 05:45:47
|
Revision: 789 http://assorted.svn.sourceforge.net/assorted/?rev=789&view=rev Author: yangzhang Date: 2008-05-09 22:45:41 -0700 (Fri, 09 May 2008) Log Message: ----------- added cron jobs Added Paths: ----------- configs/trunk/setup-cron.bash configs/trunk/src/cron/ configs/trunk/src/cron/backup-blog.bash configs/trunk/src/cron/backup.bash configs/trunk/src/cron/crontab configs/trunk/src/cron/mlf.bash Added: configs/trunk/setup-cron.bash =================================================================== --- configs/trunk/setup-cron.bash (rev 0) +++ configs/trunk/setup-cron.bash 2008-05-10 05:45:41 UTC (rev 789) @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +# Installs cron jobs. + +. common.bash + +shopt -s extglob + +pkg=configs +. simple-setup.bash + +cd src + +install .cron/ cron/!(crontab) + +if ! silence crontab -l +then crontab - < crontab +else warn "crontab already exists; not overwriting." +fi Property changes on: configs/trunk/setup-cron.bash ___________________________________________________________________ Name: svn:executable + * Added: configs/trunk/src/cron/backup-blog.bash =================================================================== --- configs/trunk/src/cron/backup-blog.bash (rev 0) +++ configs/trunk/src/cron/backup-blog.bash 2008-05-10 05:45:41 UTC (rev 789) @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +. common.bash + +set -o noclobber + +exec mysqldump --defaults-extra-file=$HOME/.y_z.cnf -h sql.mit.edu y_z+wp > \ + ~/personal/backups/wp-$( date +%Y%m%d ).mysqldump Property changes on: configs/trunk/src/cron/backup-blog.bash ___________________________________________________________________ Name: svn:executable + * Added: configs/trunk/src/cron/backup.bash =================================================================== --- configs/trunk/src/cron/backup.bash (rev 0) +++ configs/trunk/src/cron/backup.bash 2008-05-10 05:45:41 UTC (rev 789) @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +. common.bash + +set -o noclobber + +eval `keychain --eval --nogui id_dsa 2> /dev/null` +export PASSPHRASE="$( cat ~/.backup.auth )" +exec duplicity ~/personal/ scp://hv//export/home/yang/backup-zs.ath.cx Property changes on: configs/trunk/src/cron/backup.bash ___________________________________________________________________ Name: svn:executable + * Added: configs/trunk/src/cron/crontab =================================================================== --- configs/trunk/src/cron/crontab (rev 0) +++ configs/trunk/src/cron/crontab 2008-05-10 05:45:41 UTC (rev 789) @@ -0,0 +1,4 @@ +# m h dom mon dow command + 00 07 * * * $HOME/.cron/backup-blog.bash + 10 07 * * * $HOME/.cron/backup.bash + 00 07 * * * $HOME/.cron/mlf.bash Added: configs/trunk/src/cron/mlf.bash =================================================================== --- configs/trunk/src/cron/mlf.bash (rev 0) +++ configs/trunk/src/cron/mlf.bash 2008-05-10 05:45:41 UTC (rev 789) @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +. common.bash + +set -o noclobber + +mv ~/.mlf.cache/yan...@gm...{,-$(date +'%Y%m%d')} || true + +exec mlf.py --debug main --debug star --debug unstar \ + yan...@gm... 'imap.gmail.com/[Gmail]/All Mail' \ + >& ~/.mlf.cache/log-$(date +'%Y%m%d') + Property changes on: configs/trunk/src/cron/mlf.bash ___________________________________________________________________ Name: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-10 05:45:47
|
Revision: 790 http://assorted.svn.sourceforge.net/assorted/?rev=790&view=rev Author: yangzhang Date: 2008-05-09 22:45:51 -0700 (Fri, 09 May 2008) Log Message: ----------- removed extraneous var Modified Paths: -------------- configs/trunk/setup-yang.bash Modified: configs/trunk/setup-yang.bash =================================================================== --- configs/trunk/setup-yang.bash 2008-05-10 05:45:41 UTC (rev 789) +++ configs/trunk/setup-yang.bash 2008-05-10 05:45:51 UTC (rev 790) @@ -4,7 +4,6 @@ . common.bash -required=1 pkg=configs . simple-setup.bash This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 08:15:15
|
Revision: 788 http://assorted.svn.sourceforge.net/assorted/?rev=788&view=rev Author: yangzhang Date: 2008-05-09 01:15:21 -0700 (Fri, 09 May 2008) Log Message: ----------- added link to spp Modified Paths: -------------- assorted-site/trunk/index.txt Modified: assorted-site/trunk/index.txt =================================================================== --- assorted-site/trunk/index.txt 2008-05-09 08:14:51 UTC (rev 787) +++ assorted-site/trunk/index.txt 2008-05-09 08:15:21 UTC (rev 788) @@ -41,8 +41,8 @@ serialization, emphasizing compactness, speed, and simplicity (done) - TopCoder tools: crawl [TopCoder] rankings to analyze players; currently only produces language statistics (done) - - Simple Pre-Processor (spp): tiny implementation of the C preprocessor's - _object-like macros_ (done) + - [Simple Preprocessor](simple-preprocessor): tiny Scala implementation of + the C preprocessor's _object-like macros_ (done) - Tools for various websites or services - [Facebook](facebook-tools): monitor changes in your [Facebook] network (done) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 08:14:45
|
Revision: 787 http://assorted.svn.sourceforge.net/assorted/?rev=787&view=rev Author: yangzhang Date: 2008-05-09 01:14:51 -0700 (Fri, 09 May 2008) Log Message: ----------- typo Modified Paths: -------------- simple-preprocessor/trunk/README Modified: simple-preprocessor/trunk/README =================================================================== --- simple-preprocessor/trunk/README 2008-05-09 08:13:40 UTC (rev 786) +++ simple-preprocessor/trunk/README 2008-05-09 08:14:51 UTC (rev 787) @@ -2,7 +2,7 @@ -------- Just a tiny C preprocessor-like program written in Scala. It only implements -C's [object-like macros] (as opposed to [function-like macros]. +C's [object-like macros] (as opposed to [function-like macros]). [object-like macros]: http://gcc.gnu.org/onlinedocs/gcc-3.3.6/cpp/Object_002dlike-Macros.html [function-like macros]: http://gcc.gnu.org/onlinedocs/gcc-3.3.6/cpp/Object_002dlike-Macros.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 08:13:40
|
Revision: 785 http://assorted.svn.sourceforge.net/assorted/?rev=785&view=rev Author: yangzhang Date: 2008-05-09 01:13:34 -0700 (Fri, 09 May 2008) Log Message: ----------- added publisher Added Paths: ----------- simple-preprocessor/trunk/publish.bash Copied: simple-preprocessor/trunk/publish.bash (from rev 761, scala-commons/trunk/publish.bash) =================================================================== --- simple-preprocessor/trunk/publish.bash (rev 0) +++ simple-preprocessor/trunk/publish.bash 2008-05-09 08:13:34 UTC (rev 785) @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +. common.bash || exit 1 + +fullname='Simple Preprocessor' +version=0.1 +license=scala +websrcs=( README ) +webfiles= +rels=( src-tgz: ) +nodl=true +. assorted.bash "$@" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 08:13:35
|
Revision: 786 http://assorted.svn.sourceforge.net/assorted/?rev=786&view=rev Author: yangzhang Date: 2008-05-09 01:13:40 -0700 (Fri, 09 May 2008) Log Message: ----------- tweak Modified Paths: -------------- simple-preprocessor/trunk/src/spp.bash Modified: simple-preprocessor/trunk/src/spp.bash =================================================================== --- simple-preprocessor/trunk/src/spp.bash 2008-05-09 08:13:34 UTC (rev 785) +++ simple-preprocessor/trunk/src/spp.bash 2008-05-09 08:13:40 UTC (rev 786) @@ -1,4 +1,6 @@ #!/usr/bin/env bash -make -C "$(dirname "$0")" > /dev/null -scala -cp "$(dirname "$0")/out" Preprocessor +# Simple wrapper script for the spp + +make -C "$(dirname "$0")" -s +exec scala -cp "$(dirname "$0")/out" Preprocessor This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 08:10:37
|
Revision: 784 http://assorted.svn.sourceforge.net/assorted/?rev=784&view=rev Author: yangzhang Date: 2008-05-09 01:10:39 -0700 (Fri, 09 May 2008) Log Message: ----------- added a readme Added Paths: ----------- simple-preprocessor/trunk/README Added: simple-preprocessor/trunk/README =================================================================== --- simple-preprocessor/trunk/README (rev 0) +++ simple-preprocessor/trunk/README 2008-05-09 08:10:39 UTC (rev 784) @@ -0,0 +1,8 @@ +Overview +-------- + +Just a tiny C preprocessor-like program written in Scala. It only implements +C's [object-like macros] (as opposed to [function-like macros]. + +[object-like macros]: http://gcc.gnu.org/onlinedocs/gcc-3.3.6/cpp/Object_002dlike-Macros.html +[function-like macros]: http://gcc.gnu.org/onlinedocs/gcc-3.3.6/cpp/Object_002dlike-Macros.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 07:54:35
|
Revision: 783 http://assorted.svn.sourceforge.net/assorted/?rev=783&view=rev Author: yangzhang Date: 2008-05-09 00:54:19 -0700 (Fri, 09 May 2008) Log Message: ----------- added link to software configs Modified Paths: -------------- assorted-site/trunk/index.txt Modified: assorted-site/trunk/index.txt =================================================================== --- assorted-site/trunk/index.txt 2008-05-09 07:53:37 UTC (rev 782) +++ assorted-site/trunk/index.txt 2008-05-09 07:54:19 UTC (rev 783) @@ -59,8 +59,8 @@ - Configuration resources and desktop tools - [Vim syntax file for JavaFX](http://www.vim.org/scripts/script.php?script_id=1943) (done) - - Software Configurations: dot files, rc files, bootstrapping, etc.; note - that this includes third-party code (passive) + - [Software Configurations](configs): dot files, rc files, bootstrapping, + etc.; note that this includes third-party code (passive) - Wallpaper Tools: tools for managing wallpapers as they are being rotated through (done) - Exploration and experimentation This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 07:53:32
|
Revision: 782 http://assorted.svn.sourceforge.net/assorted/?rev=782&view=rev Author: yangzhang Date: 2008-05-09 00:53:37 -0700 (Fri, 09 May 2008) Log Message: ----------- backslashes in pandoc... Modified Paths: -------------- configs/trunk/README Modified: configs/trunk/README =================================================================== --- configs/trunk/README 2008-05-09 07:52:33 UTC (rev 781) +++ configs/trunk/README 2008-05-09 07:53:37 UTC (rev 782) @@ -43,5 +43,5 @@ ### screen -- sensible control key (ctrl-\) +- sensible control key (ctrl-\\) - informative status string This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 07:52:27
|
Revision: 781 http://assorted.svn.sourceforge.net/assorted/?rev=781&view=rev Author: yangzhang Date: 2008-05-09 00:52:33 -0700 (Fri, 09 May 2008) Log Message: ----------- rename Modified Paths: -------------- configs/trunk/publish.bash Modified: configs/trunk/publish.bash =================================================================== --- configs/trunk/publish.bash 2008-05-09 07:51:51 UTC (rev 780) +++ configs/trunk/publish.bash 2008-05-09 07:52:33 UTC (rev 781) @@ -1,6 +1,6 @@ #!/usr/bin/env bash -fullname='Configurations' +fullname='Software Configurations' version=0.1 project=configs clean=false This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 07:51:45
|
Revision: 780 http://assorted.svn.sourceforge.net/assorted/?rev=780&view=rev Author: yangzhang Date: 2008-05-09 00:51:51 -0700 (Fri, 09 May 2008) Log Message: ----------- updated for published website Modified Paths: -------------- configs/trunk/README configs/trunk/publish.bash Modified: configs/trunk/README =================================================================== --- configs/trunk/README 2008-05-09 07:46:07 UTC (rev 779) +++ configs/trunk/README 2008-05-09 07:51:51 UTC (rev 780) @@ -1,16 +1,17 @@ -Configurations -============== +Overview +-------- -These are my configuration files, mostly HOME dir *rc's. I keep this mainly for -my own use, of course, but perhaps others can make use of these. +These are my configuration files, mostly home directory dot-files. This is +organized for my personal use, but perhaps others will also find this +interesting. Dependencies ------------ These configuration files can be installed using the provided [simple-setup] -scripts. +scripts, but this isn't necessary. -[simple-setup]: http://assorted.sf.net/projects/ +[simple-setup]: http://assorted.sf.net/shell-tools/ Installation ------------ @@ -27,14 +28,20 @@ To set up the author's topcoder environment, run `src/topcoder/setup.bash`. +To set up a new environment to the author's liking, run `bootstrap.bash +(local|global)`. Ideally, this is all the author will need to run to have the +basics (shell-tools and configs) set up. + Features -------- -=== Vim === +I'll try to jot down noteworthy features here as I think of them. +### Vim + - search parent directories for project-wide settings -=== screen === +### screen - sensible control key (ctrl-\) - informative status string Modified: configs/trunk/publish.bash =================================================================== --- configs/trunk/publish.bash 2008-05-09 07:46:07 UTC (rev 779) +++ configs/trunk/publish.bash 2008-05-09 07:51:51 UTC (rev 780) @@ -1,7 +1,11 @@ #!/usr/bin/env bash +fullname='Configurations' +version=0.1 project=configs clean=false +license=gpl3 +rels= websrcs=( README ) webfiles=() . assorted.bash "$@" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 07:46:02
|
Revision: 779 http://assorted.svn.sourceforge.net/assorted/?rev=779&view=rev Author: yangzhang Date: 2008-05-09 00:46:07 -0700 (Fri, 09 May 2008) Log Message: ----------- cleaned up battlecode projects Modified Paths: -------------- assorted-site/trunk/index.txt Modified: assorted-site/trunk/index.txt =================================================================== --- assorted-site/trunk/index.txt 2008-05-09 07:44:54 UTC (rev 778) +++ assorted-site/trunk/index.txt 2008-05-09 07:46:07 UTC (rev 779) @@ -63,14 +63,6 @@ that this includes third-party code (passive) - Wallpaper Tools: tools for managing wallpapers as they are being rotated through (done) -- [BattleCode] - - [BattleCode 2007], Team Little: [Greg] and my work for the 2007 competition - (done) - - [BattleCode 2008], Team Little: our (i.e. Greg's) work for the 2008 - competition (done) - - BattleCode Gene Pool: a parallel implementation of a genetic algorithm for - optimizing parameters (done) - - BattleCode Composer: express and mix strategies quickly (abandoned) - Exploration and experimentation - [Hash distribution](hash-dist): for observing the distribution of hash functions on supplied data (done) @@ -90,6 +82,9 @@ - Bibliography: my pan-paper BibTeX; i.e., stalling for ZDB (passive) - Subtitle adjuster: for time-shifting SRTs (done) - Javascript Beautifier: a thin [Tamarin] wrapper for [js_beautify]. + - [BattleCode 2007 entry, Team Little](battlecode-2007-little): [Greg] and my + work for the [2007 competition]; see also [our (i.e. Greg's) entry] for the + [2008 competition] (done) - Programming Problems: my workspace for solving programming puzzles (hiatus) - Source management: various tools for cleaning up and maintaining a source @@ -98,9 +93,9 @@ - [This website](http://assorted.sf.net/) (passive) - [My personal website](http://www.mit.edu/~y_z/) (passive) -[BattleCode]: http://battlecode.mit.edu/ -[BattleCode 2007]: http://battlecode.mit.edu/2007/ -[BattleCode 2008]: http://battlecode.mit.edu/2008/ +[2007 competition]: http://battlecode.mit.edu/2007/ +[2008 competition]: http://battlecode.mit.edu/2008/ +[our (i.e. Greg's) entry]: http://www.assembla.com/spaces/battlecode2008 [JavaFX]: https://openjfx.dev.java.net/ [ncurses]: http://www.gnu.org/software/ncurses/ [OpenLaszlo]: http://www.openlaszlo.org/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-09 07:44:48
|
Revision: 778 http://assorted.svn.sourceforge.net/assorted/?rev=778&view=rev Author: yangzhang Date: 2008-05-09 00:44:54 -0700 (Fri, 09 May 2008) Log Message: ----------- added link to the 2008 entry Modified Paths: -------------- battlecode-2007-little/trunk/README Modified: battlecode-2007-little/trunk/README =================================================================== --- battlecode-2007-little/trunk/README 2008-05-09 07:40:25 UTC (rev 777) +++ battlecode-2007-little/trunk/README 2008-05-09 07:44:54 UTC (rev 778) @@ -27,3 +27,17 @@ wanted to see our final submitted player. ...Yeah. [Greg]: http://glittle.org/ + +See Also +-------- + +We also have a [2008 competition entry], though we didn't have nearly enough +time for that. This time we hosted our code privately over at [Assembla]. The +highlight of our 2008 code is that we parameterized many aspects of the +fundamental strategy (e.g., how much archons preferred to spawn each of +bombers, soldiers, etc.), and then tried to optimize these parameters by using +a parallel genetic algorithm that pits our generated variants against each +other. + +[2008 competition entry]: http://www.assembla.com/spaces/battlecode2008 +[Assembla]: http://assembla.com/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |