from Whole-Exome Sequencing: Technical Details - James Mullikin http://www.youtube.com/watch?v=nh8Mkz9IzKM
2 months ago
from Whole-Exome Sequencing: Technical Details - James Mullikin http://www.youtube.com/watch?v=nh8Mkz9IzKM
2 months ago
Implementation of an Oil-Painting algorithm: http://supercomputingblog.com/graphics/oil-painting-algorithm.
Source: https://github.com/lindenb/jsandbox/blob/master/src/sandbox/OilPainting.java
java -jar src/jsandbox/dist/oilpainting.jar -r 5 -L 20 -o out.jpg 'http://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Barbara_McClintock_at_C.S.H._1947.jpg/400px-Barbara_McClintock_at_C.S.H._1947.jpg'8 months ago
Transforming mysql/xml to SVG for the UCSC.
Reference: https://github.com/lindenb/xslt-sandbox/blob/master/stylesheets/bio/ucsc/ucsc-sql2svg.xsl http://biostar.stackexchange.com/questions/6149
11 months ago
I just wrote a small java tool to paint a mosaic of my twitter friends/followers: https://github.com/lindenb/jsandbox/blob/master/src/sandbox/TwitterMosaic.java
1 year agoI can’t wait for diigo.com to import my ~6000 bookmarks from delicious.
I wrote the following java tool which upload the bookmarks using the digoo API: https://gist.github.com/747381
It works fine so far….
javac Delicious2Diigo1 year ago
curl -s "https://deliciouslogin:deliciouspassword@api.del.icio.us/v1/posts/all" |\
java Delicious2Diigo | tac |\
sed -e 's/__LOGIN__/mydiigologin/' -e 's/__PASSWORD__/mydiigopassword/' > file.sh
sh file.sh