Ah, a fresh install of WordPress…. New design is out mostly and the time has come to apply some content. Normally I delete this post and start my ow but considering this is a programming / web design blog it seemed an appropriate enough title. So without further ado, the first bit of code:
Simple Python snippet to parse a TSV(tab separated value) into a list:
1 2 | for line in open('fileName.tsv', 'rU'): lineEntry = line.split('\t') |
jQuery powered script to hide a given div on pageload
1 2 3 4 | $(document).ready( function(){ $(this).find(".divToHide").hide(); return false; }); |
That’s all for now, check back again soon.
July 14th, 2009
by Cindy
Looks great!