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
<!DOCTYPE html> | |
<html lang="pt-BR"> | |
<head> | |
<title></title> | |
<meta charset="UTF-8"> | |
<meta name="description" content=""> | |
<meta name="keywords" content=""> | |
<!-- Estilos --> |
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
<img src="" alt="" title=""> |
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
<img src="http://placehold.it/200x200/ffffff" title="" alt="" /> |
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
Options +FollowSymlinks | |
RewriteEngine on | |
rewriterule ^(.*)$ /caminho/absoluto/da/pasca [r=301,nc] |
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
root = true | |
[*.*] | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 2 | |
trim_trailing_whitespace = true |
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
function isEmptyObject(obj){ | |
for(undefined in obj){ | |
return false; | |
} | |
return true; | |
} |
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
/** | |
* Objeto criador de gerenciador de outros objetos e métodos. | |
* | |
* Esta objeto tem por finalidade ensentivar as boas práticas na | |
* programação javascript, criando classes, extenções e objetos. | |
* | |
* @type {Object} | |
* @author Allan Batista | |
*/ | |
App = { |
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/bash | |
css=$(git status --porcelain | sed -e 's!.*/!!' | sed -e "s/css\///g" | grep "\.css$" | tr "\n" ',') | |
ant css-homologacao -Dcss.files=$css | |
ant homologacao |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<title>Simple snippet</title> | |
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
</head> | |
<body> | |
</body> |
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 profile = { | |
basePath: ".", | |
releaseDir: "./dist/scripts", | |
action: "release", | |
optimize: "closure", | |
layerOptimize: "closure", | |
selectorEngine: "acme", | |
packages:[{ | |
name: "dojo", |
OlderNewer