PHPStorm 7.1 released. I like Search Everywhere feature and Speed Search.
PHPVerbalExpressions - the easiest way to start with Regular Expressions. Write it in OOP way
$regex=new VerbalExpressions;
$regex ->startOfLine()
->then("http")
->maybe("s")
->then("://")
->maybe("www.")
->anythingBut(" ")
->endOfLine();
$regex->test("http://d.com")
A lot of implementations on other languages exist
PHPStorm 7.1 released. I like Search Everywhere feature and Speed Search.
XPort Pro Lx6 RJ45-sized Linux server. I don't know what it really can handle, but size is impressive.
Autoprefixer parse CSS and add vendor prefixes to CSS rules using values from the Can I Use.
Full Russian translation of ebook "The Architecture of Open Source Applications"
Chrome 32 for Android (beta) removes 300ms delay on unzoomable mobile optimized pages. As a polyfill for other browsers FastClick could be used.