Jimmy Fallon & Justin Timberlake show you what a Twitter conversation sounds like in real life.
Category Archives: Elsewhere
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, …
Image masking using canvas
All you need to do is add the canvasmask.js script and add a class of mask to each image you want to mask. You also need to provide a PNG file as the mask using the data-mask attribute. <img src="red-panda.jpg" alt="Red panda" class="mask" data-mask="centerblur.png"> Canvas Masking Demo → Canvas Masking Source →