A service for your website that makes it surprisingly easy to collaborate in real-time. By MozillaLabs. Just include a tad of JavaScript and boom, instant collaboration! TowTruck → (via teusje)
Author Archives: Bramus!
Oblivion 2013 Extensive Behind the Scenes Inside Look
MacGyver and the new Mercedes-Benz Citan
Google Inactive Account Manager
Ninja Jamm
Ninja Jamm is the new remix App for iOS from Ninja Tune and Seeper. Featuring touch and gesture controls with a range of instant effects and remix modes, users can interact with their favourite Ninja Tune releases in a whole new way, or start using the intuitive interface to re-imagine the song as they desire …
The View: A “Back-to-the-Camera Shot” Supercut
bramus/router — A lightweight and simple object oriented PHP Router
For one of the courses I teach I was in need of a PHP Router. Having explored the available routers out there I found they either were: Outdated Not object oriented(sorry Klein (which has been updated by now, but wasn’t at the time)) Rather bad at the separation of concerns(sorry Ham & Klein; a router …
Continue reading “bramus/router — A lightweight and simple object oriented PHP Router”
JSON.stringify()’s arguments
JSON.stringify() has more than one argument: value – the value one wants to convert to a string replacer – an array or a function to filter fields space – the number of spaces (or a string) to use for indentation var person = {“name”:”Jim Cowart”,”location”:{“city”:{“name”:”Chattanooga”,”population”:167674},”state”:{“name”:”Tennessee”,”abbreviation”:”TN”,”population”:6403000}},”company”:”appendTo”}; JSON.stringify(person, [“name”, “company”], 4); /* produces: “{ “name”: “Jim Cowart”, …