Let’s put someone else’s money where your mouth it.
Physicists are really clever, unlike biologist.
Correct whitespace around abbreviations and references (on a Mac). Don’t hyphenate “p-value(s)”.
sed -inplace -E -e 's/ \\(ref|cite)/~\\\1/g' -e 's/(e\.g\.|cf\.|et al\.|i\.e\.) /\1\\ /g' -e 's/([^{])(p-values?)([^}])/\1\\mbox{\2}\3/g' *.tex
You can only do two things a day, one before lunch and one after.
Finder, Go: Connect to server
vnc://server:590x
where x is the display port
defaults write com.iconfactory.Twitterrific \
tweetTextFilter -string 'ff\.im'
I want to go from
../www.fda.gov/medwatch/SAFETY/2003/03AUG_PI/Advair Diskus_PI.pdf
to
2003_-_03AUG_PI_-_Advair Diskus_PI.pdf
I came up with this hack:
find ../www.fda.gov/ -name '*_PI*pdf' > names_a
find ../www.fda.gov/ -name '*_PI*pdf' | \
sed -e 's/.*safety\/\(.*\)/\1/gi' -e 's/\//_-_/g'> names_b
paste names_a names_b | ~/src/misc/to_tsv.py -0 \' | \
xargs -l1 ln
(The to_tsv.py script is used to wrap the filenames in quotes.) I guess a quick Python script would have been better…
Take large unbiased data to find new components of well-studied pathways