PHP TokenPhrase Generator

Based up on this TokenPhrase Ruby Gem I decided to quickly write a PHP variant of it. With it, one can generate unique phrases for you to use in your app as tokens. <?php require_once __DIR__ . ‘/../src/autoload.php’; for ($i = 0; $i < 10; $i++) { echo TokenPhrase\TokenPhrase::generate() . PHP_EOL; } The resulting output …

Flickable — A Zepto Plugin to Enable Touch Gestures on Any HTML Element

Zepto is great for handling basic gesture events, but for more complex touch interactions it can be lacking. Flickable allows you to make any element touchable; useful for flicking between sections, or sliding elements around the page. Flickable → Flickable Thumbnail Slider Demo → Looking for a jQuery flickable plugin? Check out jQuery.flickable. Note that …