Linux society’s response to Microsoft’s Guitar Hero. 🙂 Terminal Hero →
Author Archives: Bramus!
Implementing Off-Canvas Navigation For A Responsive Website
Not only a good example on how to do it, but also an example on how to do it right: enhance progressively, don’t over-rely on jQuery, and trick your browser into using hardware acceleration where possible Implementing Off-Canvas Navigation For A Responsive Website → Not convinced or 100% about hardware acceleration? Be sure to watch …
Continue reading “Implementing Off-Canvas Navigation For A Responsive Website”
Boardwalk Empire VFX
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 …