All Devices in SVG
A little morphing animation to represent different devices.
Inspired by this
A Pen by Chris Gannon on CodePen.
[ | |
{name: 'Afghanistan', code: 'AF'}, | |
{name: 'Åland Islands', code: 'AX'}, | |
{name: 'Albania', code: 'AL'}, | |
{name: 'Algeria', code: 'DZ'}, | |
{name: 'American Samoa', code: 'AS'}, | |
{name: 'AndorrA', code: 'AD'}, | |
{name: 'Angola', code: 'AO'}, | |
{name: 'Anguilla', code: 'AI'}, | |
{name: 'Antarctica', code: 'AQ'}, |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
vms = [ | |
{ "ip" => "192.168.0.254", "name" => "router" }, | |
{ "ip" => "192.168.0.10" }, | |
{ "ip" => "192.168.0.11" } | |
] | |
Vagrant.configure("2") do |config| |
export default function addCorsHeaders (request, reply) { | |
if (!request.headers.origin) { | |
return reply.continue() | |
} | |
// depending on whether we have a boom or not, | |
// headers need to be set differently. | |
const response = request.response.isBoom | |
? request.response.output | |
: request.response |
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch |
<?php namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
/** | |
* If the incoming request is an OPTIONS request | |
* we will register a handler for the requested route | |
*/ | |
class CatchAllOptionsRequestsProvider extends ServiceProvider { |
A little morphing animation to represent different devices.
Inspired by this
A Pen by Chris Gannon on CodePen.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |