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: #FFa215; | |
background: linear-gradient( #FFa215, #d78100); | |
min-height:100%; | |
background: #FFa215; | |
}; | |
background: #FFa215 |
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
# Apache configuration file | |
# httpd.apache.org/docs/2.2/mod/quickreference.html | |
# Note .htaccess files are an overhead, this logic should be in your Apache | |
# config if possible: httpd.apache.org/docs/2.2/howto/htaccess.html | |
# Techniques in here adapted from all over, including: | |
# Kroc Camen: camendesign.com/.htaccess | |
# perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/ | |
# Sample .htaccess file of CMS MODx: modxcms.com |
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
Links | |
http://vocab.data.gov/ - Vocabulário de Dados Abertos EUA | |
github.com/opengovwebplataform | |
http://opengovplatform.org/ |
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
Realidade Aumentada é trazer um ambiente virtual para um ambiente real. | |
1 Passo detectar o getUSerMedia | |
2 - Reproduzir o conteudo da webcam numa tag <video> | |
3 - Rastrear um padrao de pixels <canvas> | |
Hello World Tracking JS | |
- Importar o core da lib tracking.js | |
- Importar o modulo de rastreamento de cor. |
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
Vantagens de trabalhar com appCache | |
= Disponibilidade | |
= Mobilidade | |
= Otimizacao de banda | |
Possibilidades | |
= Gravar dados txt |
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
Show hidden characters
{ | |
"files": | |
{ | |
"Dynamic-Carousel": "https://raw.github.com/Wilto/Dynamic-Carousel/master/plugin.js", | |
"FitText": "https://raw.github.com/davatron5000/FitText.js/master/jquery.fittext.js", | |
"FitVids": "https://raw.github.com/davatron5000/FitVids.js/master/jquery.fitvids.js", | |
"Lettering.js": "https://raw.github.com/davatron5000/Lettering.js/master/jquery.lettering.js", | |
"Normalize.css": "https://raw.github.com/necolas/normalize.css/master/normalize.css", | |
"Sass-Css3-Mixins": "https://raw.github.com/matthieua/Sass-Css3-Mixins/master/css3-mixins.scss", | |
"_rem.scss": "https://raw.github.com/ry5n/rem/master/stylesheets/_rem.scss", |
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
git config alias.st status | |
git config alias.cm commit | |
git config alias.bh branch | |
git config alias.lg log -p | |
git config alias.ck checkout | |
git config alias.lg1 log --name-only | |
# Alias Avançados | |
git config alias.cmm commit -a -m |
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
git ls-files --deleted | xargs git rm |
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
message.keypress(function(e) { | |
var fieldValue = $('textarea').val(), | |
lengthValue = fieldValue.length, | |
set = 400, | |
remain = parseInt( set - lengthValue ); | |
$( '#counter > span' ).text( remain ); | |
if ( remain <= 0 && e.which !== 0 && e.charCode !== 0 ) | |
$('textarea').val( ( fieldValue ).substring( 0, lengthValue - 1 ) ); |
OlderNewer