Here’s a killer visualization: http://hint.fm/wind/ It’s a living graphic that provokes and rewards curiosity (zoom in and out, look at the eddies and whorls) as well as teaches. Really astonishing. Probably will go away someday, but check this out (the real one @ the link moves ;)) This one does just about everything right.
Note to self… use this perl program+backup…. http://blog.tsheets.com/2008/tips-tricks/extract-a-single-table-from-a-mysqldump-file.html And since things break over time… the program. Not mine, use at your own peril, etc… just don’t ask why I needed it…. extract_sql Attachments extract_sql (ERROR)
Useful little things. Beat on that old perl script and added support… a few lines of code, a lot of beating my head against the wall, but I didn’t see any other perl solutions. [attachments] Attachments wordpress-upload-post (ERROR)
It’s time.
5 lines… display arbitrary XML trees on a web page… nice. After fighting with so many others, a breath of fresh air. <link rel=’stylesheet’ type=’text/css’ href=’xmltree.css’ /> <script src=’https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js’></script> <script src=’xmltree.js’></script> <script>$(function() { new XMLTree({fpath: ‘/ness.xml’, container: ‘#tree’, startCollapsed: true}); });</script> <div id=’tree’></div> Courtesy of http://www.mitya.co.uk/scripts/XML-Tree—visualise-and-traverse-your-XML-186