Using Inactive Account Manager, you can decide if and when your account is treated as inactive, what happens with your data and who is notified. A few years ago I stumbled upon a WordPress plugin that did the same, can’t find it back though :-S 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”, …