Metropolitain is a visual and interactive experiment on the Parisian underground network Métropolitain → Métropolitain: a fresh outlook on Paris’ metro system →
Tag Archives: link
Map Projection Transitions
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 …
Sublime Web Inspector — Debug JavaScript in SublimeText
CSS Jellyfish
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 …
Continue reading “wp-cli — A command line interface for WordPress”
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" } ); …
Continue reading “Pusher — HTML5 WebSocket Powered Realtime Messaging Service”
Docverter
Starting + Sustaining
Starting + Sustaining will help you plan, launch, and run your own web application with less pain and fewer mistakes. By Garret Dimon of Sifter. If you like the aforementioned Bootstrapping a Software Product presentation you’ll love the book. Starting + Sustaining: A book and spreadsheet to help you launch and maintain a web application …