Choc is a tool for thinking powerful thoughts by stepping through code. It is an implementation of several ideas found in Bret Victor’s Learnable Programming. Bret Victor’s Learnable Programming was an eye-opener. This tool is the JavaScript execution of that eye-opener Choc →
The Brilliant Moment
9KPX
iOS7: Monitor Cellular Data Usage
#hashtag
iOS7 for Web Developers
PuPHPet – A simple GUI to set up virtual machines for PHP development
Magnific Popup
Trimble UX5 Aerial Imaging Solution
Engineered to help mapping and surveying professionals who require the highest accuracy work more efficiently, the Trimble UX5 sets a new standard in mapping and surveying by combining a robust and highly user-friendly system with a custom-designed camera that offers the most impressive deliverables. Made in Belgium Trimble UX5, A new standard in mapping →
Holla
// Sending a call var rtc = holla.connect(); rtc.register(“tom”, function(worked) { holla.createFullStream(function(err, stream) { var call = rtc.call(“bob”); call.addStream(stream); holla.pipe(stream, $(“#myVideo”)); call.on(“answered”, function() { console.log(“Remote user answered the call”); }); console.log(“Calling “, call.user); }); }); // Receiving a call var rtc = holla.connect(); rtc.register(“bob”, function(worked) { rtc.on(“call”, function(call) { console.log(“Inbound call from “, call.user); holla.createFullStream(function(err, …