Great pieces of work by Craig Davison. Check out his website to see some more (but very small) drawings. (via)
Author Archives: Bramus!
I know what you did last summer
Yes, bram.us is still a thing. Save a few posts mid July not that much has happened around here. So, what have I been up to the past two months? Here’s a small list (saving the best for last): I reviewed a book I went diving I renovated my house I went camping with my …
Live-Action Real Life First Person Shooter
The Martian
During a manned mission to Mars, Astronaut Mark Watney (Matt Damon) is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find …
Web Bluetooth API in Chrome
navigator.bluetooth.requestDevice({ filters: [{ services: [‘battery_service’] }] }) .then(device => { // Human-readable name of the device. console.log(device.name); // Indicates whether or not the device is paired with the system. console.log(device.paired); // Filtered UUIDs of GATT services the website origin has access to. console.log(device.uuids); // Attempts to connect to remote GATT Server. return device.connectGATT(); }) .then(server …
Crayon.css – Because colors have a name
PHP Markdown
use \Michelf\Markdown; $my_html = Markdown::defaultTransform($my_text); This is a library package that includes the PHP Markdown parser and its sibling PHP Markdown Extra with additional features. Originally it was a port to PHP of the Markdown tool written by John Gruber. Here’s how to get it via Composer: composer require michelf/php-markdown PHP Markdown →