Skip to content

Instantly share code, notes, and snippets.

View rodrigocnascimento's full-sized avatar
🐯
i'm a turtle

Rodrigo Nascimento rodrigocnascimento

🐯
i'm a turtle
View GitHub Profile
function imageToBase64(URL) {
var imagem = new Image();
imagem.src = URL;
imagem.onload = function () {
var canvas = document.createElement("canvas");
canvas.width = this.width;
canvas.height = this.height;
var cvx = canvas.getContext("2d");
cvx.drawImage(this, 0, 0);
var dataURL = canvas.toDataURL("image/png");
@rodrigocnascimento
rodrigocnascimento / gist:6582939
Created September 16, 2013 16:22
Box shadow and perspective skew
.box{
z-index: 100;
/*css3 radius*/
-webkit-border-radius: 5px;
-moz-border-radius: 3px;
border-radius: 3px;
/*css3 shadow*/
box-shadow: 5px 5px 15px #000;
-webkit-box-shadow: 5px 5px 15px #000;
-moz-box-shadow: 5px 5px 15px #000;
/*****************************************************************************
* __ __ _ _ ___ _
* \ \/ _\ /\/\ (_)_ __ | |_ _ _ / __\ __ ___ ___| |__
* \ \ \ / \| | '_ \| __| | | | / _\| '__/ _ \/ __| '_ \
* /\_/ /\ \ / /\/\ \ | | | | |_| |_| | / / | | | __/\__ \ | | |
* \___/\__/ \/ \/_|_| |_|\__|\__, | \/ |_| \___||___/_| |_|
* |___/
*
* Identifying and Eliminating Code Smells
*
@rodrigocnascimento
rodrigocnascimento / gist:6679740
Created September 24, 2013 02:43
cakephp pagination
.paging {
height: 36px;
margin: 18px 0;
}
.paging span{
float: left;
padding: 0 14px;
line-height: 34px;
border-right: 1px solid;
border-right-color: #DDD;
@rodrigocnascimento
rodrigocnascimento / gist:7082935
Created October 21, 2013 12:17
Git ignore to cakephp projects
# Test URI
# Ignore netbeans folder
nbproject/*
# Ignore private folder
/app/private/*
!/app/private/empty
# Ignore packed asset files
/app/webroot/css/packed/*
@rodrigocnascimento
rodrigocnascimento / gist:8547108
Created January 21, 2014 19:53
Gerando XML com ASP
'GERANDO XML ------------------------------------------------------------------------------------------------
ArquivoXML = "lance_a_lance.xml" 'adicionando um nome no arquivo
timestamp = DateAdd("h", 3, Time)
Set FSO = CreateObject("Scripting.FileSystemObject") 'criando o objeto FSO
Set Linhas = FSO.CreateTextFile(Server.MapPath(ArquivoXML), True) 'salvando o arquivo no servidor através do método "CreateTextFile"
'gerando linas
Linhas.WriteLine("<?xml version=""1.0""?>")
Linhas.WriteLine("<LANCE_A_LANCE>")
Linhas.WriteLine("<TEMPO_JOGO>"&titulo&"</TEMPO_JOGO>" )

#DIRETRIZES DE SEGURANÇA PARA WORDPRESS

###IMEDIATAS

  • Criar senhas únicas de autenticação e salt: https://api.wordpress.org/secret-key/1.1/salt/
  • Não usar 'admin' como usuário e senhas fáceis. De preferência senhas com caracteres minúsculos, maiúsculos e, quando possível, caracteres especiais.
  • Permissões corretas em diretórios e arquivos
  • todos os aquivos - 644
  • diretórios 755
  • themes 555
@rodrigocnascimento
rodrigocnascimento / webroot
Created February 21, 2014 00:09
colocar dentro de webroot
# 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
@rodrigocnascimento
rodrigocnascimento / app
Created February 21, 2014 00:09
dentro de app
# 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