User:Jadrian Miles

From VrlWiki
Revision as of 21:25, 22 December 2008 by Jadrian Miles (talk | contribs)
Jump to navigation Jump to search

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]'