This file contains hidden or 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
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, blue); | |
| min-height:50%; |
This file contains hidden or 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
| .logo { | |
| background: url('http://envylabs.com/images/envylabs_logo.png'); | |
| width: 197px; | |
| height: 111px; | |
| display: inline-block; | |
| position: relative; | |
| cursor: pointer; | |
| } | |
| .logo:hover::before { |
This file contains hidden or 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
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; |
This file contains hidden or 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 Car | |
| , prius | |
| ; | |
| Car = function(b, m, y) { | |
| this.brand = b; | |
| this.model = m; | |
| this.year = y; | |
| }; |
This file contains hidden or 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
| #!/bin/sh | |
| GIT_REPO="/path/to/git/repo" | |
| cd $GIT_REPO | |
| git archive --format=tar --prefix=package/ master | gzip > ~/Dropbox/repo.tar.gz && open ~/Dropbox | |
| echo "Now generate the Dropbox link and add it to package.json." |
This file contains hidden or 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
| { | |
| "name": "awesome-project", | |
| "version": "0.1.0", | |
| "dependencies": { | |
| "mysecretproject": "https://dl.dropbox.com/s/randomcharshere/mysecretproject.tar.gz?dl=1" | |
| } | |
| } |
This file contains hidden or 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
| a::before { | |
| content: "this is a link => "; | |
| margin: 0 4px 0 2px; | |
| } |
This file contains hidden or 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
| a[target]::before { | |
| content: "this is a link => "; | |
| margin: 0 4px 0 2px; | |
| } |
This file contains hidden or 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
| a[target] { | |
| display: inline; | |
| } | |
| a[target]::before { | |
| content: "this is a link => "; | |
| margin: 0 4px 0 2px; | |
| } |
This file contains hidden or 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
| # first 2 digits represent dialing code | |
| # dialing codes in Brazil don't start with 0 | |
| # | |
| # the following represent the phone | |
| # must have 8 digits | |
| # might have 9 if dialing code is 11, 12, 13, 14, 15, 16, 17, 18 or 19 | |
| # http://g1.globo.com/sao-paulo/noticia/2013/08/nono-digito-comeca-valer-para-telefones-celulares-do-interior-paulista.html | |
| # first digit must start with 7, 8 or 9 | |
| # might start with 5 as well if dialing code is 11 | |
| # |
OlderNewer