Great script to layout information. http://isotope.metafizzy.co/
Only have Sysomos tweet context? Extract username from URL.
Using regular expressions you can extract the username from a twitter URL. var twitterURL = item.link; var twitterName = twitterURL.match(/https?:\/\/(www\.)?twitter\.com\/(#!\/)?@?([^\/]*)/)[3];
Alternative to Bootstrap: Gumby Framework
Good find by my very cool co-worker and partner in crime, Rob Lowe. @rhlowe http://gumbyframework.com/
Unique and Interesting background visuals with Jarallax.js
Jarallax gives some interesting control over background manipulation. I am going to build a test site with this in the next couple of weeks to show off some of its…
JavaScript based conditionals for scripts and content
This little script wields a lot of power. The ability to control scripts and content is possible based on browser and other user attributes. There are so many uses for…
A useful lightweight URL parser
I cant express how handy this little javascript is. If you ever need to parse a URL and get something out of it, this is a groovy little script that…
Prototyping function to add commas to numbers
Thanks to my predecessor Mike Grace for this helpful little script. It extends javascript to add the correct comma places to any number. Number.prototype.addCommas = function() { var nStr =…