User:Jadrian Miles: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 9: | Line 9: | ||
* [[/Plan your PhD]] | * [[/Plan your PhD]] | ||
* [[/Diffusion MRI techniques]] | * [[/Diffusion MRI techniques]] | ||
* [[/sandbox]] | |||
==== Nifty code snippets ==== | ==== Nifty code snippets ==== | ||
* Generate a random filename from the command line: <pre>set tmpfile=/tmp/`head -q -c 8 /proc/sys/kernel/random/uuid`</pre> | * Generate a random filename from the command line: <pre>set tmpfile=/tmp/`head -q -c 8 /proc/sys/kernel/random/uuid`</pre> | ||
* Convert stdin to lowercase on stdout: <pre>tr '[A-Z]' '[a-z]'</pre> | * Convert stdin to lowercase on stdout: <pre>tr '[A-Z]' '[a-z]'</pre> | ||
Revision as of 18:46, 8 January 2009
I started my PhD in CS at Brown in Fall 2006. I work on data processing, measurement, and model reconstruction from diffusion MRI of the brain.
You can find me elsewhere online:
Draft pages / notes
Nifty code snippets
- Generate a random filename from the command line:
set tmpfile=/tmp/`head -q -c 8 /proc/sys/kernel/random/uuid`
- Convert stdin to lowercase on stdout:
tr '[A-Z]' '[a-z]'