Must watch videos about JavaScript.
Month: July 2014
Sentry – an event logging platform focused on capturing and aggregating exceptions
Sentry – an event logging platform focused on capturing and aggregating exceptions. Â Most of the code is Open Source (except for a few proprietary plugins), in case you want to run your own hosted version.
Supports Ruby, Python, JavaScript, Java, Rails, Django, PHP, iOS, node.js, .NET, and more.
Breach – a browser written entirely in JavaScript
Breach – a browser written entirely in JavaScript. Â Free, modular, hackable, Open Source.
Daily dose of Instagram
PHP Fine Diff – PHP library to diff strings
PHP Fine Diff – PHP library to diff strings. Â I’ve tried a few different implementations and all of them either required an external diff program couldn’t render HTML, or failed to due to enormous resource usage. Â PHP Fine Diff does all I need and does it fast. Â It’s also rediculously easy to use:
$fineDiff = new FineDiff($strOrig, $strNew); $htmlDiff = $findDiff->renderDiffToHTML();
Found via this StackOverflow discussion.