BFS-Auto: High Speed Book Scanner at over 250 pages/min

BFS-Auto can achieve high-speed and high-definition book digitization at over 250 pages/min using the original media format. This performance is realized by three key points: high-speed fully-automated page flipping, real-time 3D recognition of the flipped pages, and high-accuracy restoration to a flat document image.

Stock Exchange

Apple just reported the most profitable year of any company ever, the fourth-most profitable quarter of any company ever, and the stock tanked after hours. — Daring Fireball As Lensco put it: Some Apple journalists discovered today that the stock exchange (and by extension the whole financial world) has nothing to do with reality. Update …

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 …

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 …