del.icio.us- tommoor/tinycon - GitHub
- laktek/realie - GitHub
- cramforce/node-worker - GitHub
- creationix/do - GitHub
- phreeza/cells - GitHub
- mwild1/xmppjs - GitHub
- jo/quilt - GitHub
- simonw/dogproxy - GitHub
- ialexi/Ace - GitHub
- jed/utfn - GitHub
- gjritter/nodewiki - GitHub
- bunions1/fallingsand-webgl - GitHub
- simonw/ratelimitcache - GitHub
- davisp/cascade - GitHub
- DocSavage/bloog - GitHub
- docco.coffee
- karthick18/inception - GitHub
- nornagon/nodecraft - GitHub
- welterde/nodecraft - GitHub
- Jonty/Idiocy - GitHub
Category Archives: General
A JavaScript sqrt() function.
I know there’s a Math.sqrt() function; I just wanted to create my own. Is this how most people would implement a sqrt() function in JavaScript if one didn’t already exist? sqrt = function(x) { j = x / 2; min … Continue reading
Posted in General
Leave a comment
Upgrade to WordPress 2.5
I’ve upgraded to WordPress 2.5. In the process I made some nice backups of my site, and cleaned up my internal site structure. I’m now running on a nightly of the K2 theme, and hope to switch to a general … Continue reading
Posted in General
Leave a comment
JavaScript appendChild returning null
Update: Thanks to Michael in the comments for the solution. I forgot that JS begins executing before the DOM is finished loading. I’m trying to get the following code to work, but it’s failing: <html> <head> <title></title> <script type=”text/javascript”> var … Continue reading
Posted in General
2 Comments