CSS version of No Vacancy 404 http://codepen.io/rileyjshaw/pen/ufEIH by Riley Shaw
A Pen by Chris Coyier on CodePen.
| Copyright (c) 2011 ZURB, http://www.zurb.com/ |
CSS version of No Vacancy 404 http://codepen.io/rileyjshaw/pen/ufEIH by Riley Shaw
A Pen by Chris Coyier on CodePen.
Recreated http://imgur.com/GqdaY5F in one element. I don't take credit for the original (nor do I know where it's from)
There are some pretty cool tricks I came up with in order to do so:
All of the big rings are done using box shadows, as are three of the small circles
One of the small circles is done using :before, the other rotating counter clockwise is :before's box shadow
| <?php namespace Illuminate\Database\Connectors; | |
| class MySqlConnector extends Connector implements ConnectorInterface { | |
| /** | |
| * Establish a database connection. | |
| * | |
| * @param array $options | |
| * @return PDO | |
| */ |
| application: you-app-name-here | |
| version: 1 | |
| runtime: python | |
| api_version: 1 | |
| default_expiration: "30d" | |
| handlers: | |
| - url: /(.*\.(appcache|manifest)) | |
| mime_type: text/cache-manifest |
This gist assumes:
| <?php | |
| use Illuminate\Console\Command; | |
| use Illuminate\Filesystem\Filesystem; | |
| class ViewsCommand extends Command { | |
| /** | |
| * The console command name. | |
| * | |
| * @var string |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
This gist assumes: