This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
CSS animated loading dots | |
*/ | |
body | |
{ | |
background: #5A5C64; | |
} | |
.loading_dots |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
3D Heading Via CSS | |
*/ | |
body | |
{ | |
background: #5F616C; | |
} | |
h1 | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
3D Heading Via CSS | |
*/ | |
body | |
{ | |
background: #5F616C; | |
} | |
h1 | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Move in a circle without wrapper elements | |
* Idea by Aryeh Gregor, simplified by Lea Verou | |
*/ | |
@keyframes rot { | |
from { | |
transform: rotate(0deg) | |
translate(-150px) | |
rotate(0deg); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[@ fakturoid#master]→ bin/rake db:reset | |
-- enable_extension("plpgsql") | |
-> 0.1679s | |
-- enable_extension("hstore") | |
-> 0.0881s | |
-- create_table("accounts", {:force=>true}) | |
-> 0.0725s | |
-- add_index("accounts", ["subdomain"], {:name=>"index_accounts_on_subdomain", :unique=>true, :using=>:btree}) | |
-> 0.0231s | |
-- create_table("broadcasts", {:force=>true}) |