XPort Pro Lx6 RJ45-sized Linux server. I don't know what it really can handle, but size is impressive.
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
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.
slavcodev made autoloader extension to use Upper Case namespaces in Yii2. And now if you really mind it - you can use Yii\Web\Controller
instead of use yii\web\Controller
.