Teton Gravity Research Aerial Reel – The Bay Area in 4K

From the Golden Gate Bridge to Alcatraz to the Bay Lights at night, see the Bay Area’s most iconic locations like you’ve never seen them before. Shot in 4K/”Ultra-HD,” Teton Gravity Research presents the first footage from their new RED Epic-equipped gyrostabilized camera platform: The GSS C520.

Silex Code Fiddles/Examples

For the course Webscripting2 I’m lecturing at ikdoeict.be/KaHo Sint-Lieven, we’re working with Silex. Next to the slidedeck explaining Silex, all examples are freely available on GitHub (links at the bottom of this post) The collection of examples start with the very basics of Silex and introduce more routing options and services as they continue. Basic:The …

Événement — PHP Event Dispatcher

Événement is a very simple event dispatching library for PHP. It has the same design goals as Silex and Pimple, to empower the user while staying concise and simple. Concise indeed. At the core it’s a tad above 50 lines of codes. Listening for events: $emitter->on(‘user.created’, function (User $user) use ($logger) { $logger->log(sprintf(“User ‘%s’ was …

How to troll frontend web developers

@media only screen and (min-width: 960px) and (max-width: 970px) { body { -webkit-transform : rotate(180deg); -moz-transform : rotate(180deg); -o-transform : rotate(180deg); transform : rotate(180deg); } } That’ll teach them, constantly resizing their browser windows and what not! — Puh! (via)

Sublime Web Inspector — Debug JavaScript in SublimeText

Set and remove breakpoints right in SublimeText See all console messages with level See object properties See a stack and all variables (local, global, closure) Evaluate selection on current call frame Live reload Sublime Web Inspector →

wp-cli — A command line interface for WordPress

wp-cli is a set of command-line tools for managing WordPress installations. You can update plugins, set up multisite installs, create posts and much more. Once installed, you can run commands such as: wp plugin install hello-dolly which will output: Installing Hello Dolly (1.5) Downloading install package from http://downloads.WordPress.org/plugin/hello-dolly.1.5.zip … Unpacking the package … Installing the …

Pusher — HTML5 WebSocket Powered Realtime Messaging Service

Pusher is a hosted API for quickly, easily and securely adding scalable realtime functionality to web and mobile apps It’s as easy as subscribing to a channel: var channel = pusher.subscribe(‘my-channel’); channel.bind(‘my-event’, function(data) { alert(‘Received my-event with message: ‘ + data.message); }); and pushing messages to it: pusher.trigger(‘my-channel’, ‘my-event’, { "message": "hello world" } ); …