JavaScript
Thursday, November 1st, 2012
Category: JavaScript
The Traversty DOM utility has as its purpose to allow you to traverse the DOM and manage collections of DOM elements. Proponents admit core Traversty traversal methods are inspired by Prototype’s DOM Traversal toolkit, but now in a multi-element environment that is more like jQuery and less like Prototype’s single element implementation.
3.1 rating from 290 votes
Friday, July 27th, 2012
Category: JavaScript
, Node
The BinaryJS framework employs websockets to handle binary data bidirectionally between browser-side javascript and server-side Node.js. Ikt supports a BinaryPack serialization format that is JSON-type compatible. It is said to automatically chunk large binary data buffers for streaming performance. BinaryJS currently supports Chrome 15+ and Firefox 11+, IE10. View the Hello World example.
3.3 rating from 270 votes
Saturday, January 14th, 2012
Category: Browsers
, JavaScript
, Testing
Shim was developed within the Boston Globe’s media lab as a way to study how Web sites look on various devices and browsers. A laptop intercepts all wifi traffic – this is redirected to a custom node.js server – which inserts a javascript, or “shim,” at the head of each web page that is visited. Read the rest…
3.1 rating from 264 votes
Saturday, October 8th, 2011
Category: JavaScript
Intel’s Parallel Extensions for JavaScript, code named River Trail, hooks into on-chip vector extensions to improve performance of Web applications. Details of Intel’s attempt to get on the JavaScript juggernaut emerged last month at its developer event. The prototype JavaScript extension offered by Intel is intended to allow JavaScript apps to take advantage of modern parallel Read the rest…
3.3 rating from 269 votes
Tuesday, October 4th, 2011
Category: JavaScript
, Mobile
As it kicked off its yearly developer event, Adobe announced that it had acquired Nitobi Software, maker of PhoneGap open source software for cross-platform mobile application building with HTML5 and JavaScript. In a blog, Nitobi CEO Andre Charland pledged to pursue donation of the PhoneGap code to the Apache Software Foundation ”to ensure open stewardship Read the rest…
3.1 rating from 249 votes
Monday, December 6th, 2010
Category: JavaScript
Jupiter IT announced today the release of v3.0 of JavaScriptMVC, their OSS framework for enterprise-scale applications. The release encompasses a bevy of new features which touch on testing, Less and CoffeeScript support and enhanced documentation. The features/updates mentioned include: FuncUnit – Web Testing Framework Stand Alone Sub Projects – You can download only the tools Read the rest…
Monday, November 29th, 2010
Category: JavaScript
There are a number of resources on the Internet for reading up on JavaScript but very few viable options for actually exchanging ideas with extremely knowledgeable JavaScript developers, especially when it comes to just wanting to know about JavaScript itself and not a specific JS library. This was a pain point I (Rey) personally felt Read the rest…
Friday, November 12th, 2010
Category: Firefox
, JavaScript
Mounir Lamouri looks at native browser-side form validation in Firefox4 – while re-iterating the need for re-validating on the server-side too. The objective of the browser-side form validation is to relieve JavaScript of the need to do a lot of basic form checking. Lanouri writes: ”All new input types introduced with HTML5 forms except search Read the rest…
Tuesday, October 26th, 2010
Category: JavaScript
, Library
In computer science, a fiber is a particularly lightweight thread of execution. Like threads, fibers share address space. However, fibers use co-operative multitasking while threads use pre-emptive multitasking. Threads often depend on the kernel’s thread scheduler to preempt a busy thread and resume another thread; fibers yield themselves to run another fiber while executing. The Read the rest…
Thursday, October 7th, 2010
Category: Announcements
, Framework
, JavaScript
, Library
Dave Balmer (formerly YUI, currently working with me on webOS) has created a fantastic cross platform mobile Web framework called Jo. What do I mean by cross platform? webOS, iOS, Android, Symbian, Safari, Chrome, and even Dashboard Widgets. It’s philosophy is: If you want to jam an existing web page into an application framework, jo Read the rest…
Tuesday, October 5th, 2010
Category: JavaScript
, jQuery
Here’s a live blog from jQuery creator John Resig’s talk at FOWA, where he’s giving us an update on the new toys from the jQuery team. Data Link jQuery already supports a data API: < View plain text > javascript $("div").data("test", 5); $("div").data("test")===5; $("div").removeData(); This is better than attaching data directly to data nodes for Read the rest…
Category: Games
, JavaScript
The JS1K conference wrapped up recently. One of the winners that jumped out at me recently was an implementation of Wolfenstein 3D…. in 1K of JavaScript: The author mentions some of the features: WOLF1K features a 32×32 map ( a 1024 cells grid ) with textured walls colored by orientation ( North, South, East, West Read the rest…
Monday, October 4th, 2010
Category: JavaScript
James Burke has rapidly of late sequenced through a series of releases of RequireJS file and module loader for JavaScript – reaching Release 0.14.2 (mostly bug fixes) this week. The software recently gained preliminary support for anonymous modules. Looking forward, Burke has posted a design sketch and code on GitHub (“rough at the moment, mostly Read the rest…
Sunday, September 26th, 2010
Category: JavaScript
Do a search for JavaScript and you find a painful set of returns. The worst offender is having Java results show up. Ouch. (Remember: Java is to JavaScript as Ham is to Hamster!). Compare to a search for Java, or C#, or Ruby, (or ….). Ouch. We need better. To begin with the pirates of Read the rest…
Thursday, August 26th, 2010
Category: Google
, JavaScript
Ryan Seddon, aka the CSS Ninja, has a nice blog post up where he reverse engineers the new feature in Gmail where you can drag attachments from an email on to your desktop. Note that the feature only currently works in Chrome. Ryan begins with the following code: < View plain text > javascript var Read the rest…
Thursday, August 19th, 2010
Category: JavaScript
Been hearing about HTML5 Web Workers but can’t wrap your brain around them? Mark Pilgrim is here to help with an (implausibly) illustrated tongue-in-cheek guide. A small visual snippet: Yet another snippet: [Disclosure: Mark Pilgrim owes me money; just kidding]