This is a simple checklist that I follow since 2011.
the unmarked items were interrupted or are still made.
- 3 For 5 (HTML5 and CSS3)
//services/GithubService.js | |
function GithubService ($http) { | |
var url = 'https://api.github.com/users/'; | |
var getUser = () => $http.get(url + user); | |
return { | |
getUser : getUser | |
}; | |
} |
var gulp = require('gulp'), | |
sass = require('gulp-ruby-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
jshint = require('gulp-jshint'), | |
uglify = require('gulp-uglify'), | |
rename = require('gulp-rename'), | |
clean = require('gulp-clean'), | |
concat = require('gulp-concat'), | |
notify = require('gulp-notify'), |
angular.module('app',[]) | |
.directive('preventEnterSubmit', function () { | |
return function (scope, el, attrs) { | |
el.bind('keydown', function (event) { | |
if (13 == event.which) { | |
event.preventDefault(); // Doesn't work at all | |
window.stop(); // Works in all browsers but IE... | |
document.execCommand('Stop'); // Works in IE | |
return false; // Don't even know why it's here. Does nothing. | |
} |
If you need learn about new tecnologies and others stuff, and no have idea what make, read this:
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Tournament Bracket Generator</title> | |
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script> | |
<script src="http://underscorejs.org/underscore-min.js"></script> | |
<script> | |
$(document).on('ready', function() { | |
var knownBrackets = [2,4,8,16,32], // brackets with "perfect" proportions (full fields, no byes) |
#My Essentials Softwares
###Development
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " | |
#export CLICOLOR=1 | |
export CLICOLOR="auto" | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
alias ls='ls -GFh' | |
export GREP_OPTIONS="--color=auto" | |
export GREP_COLOR="4;33" | |
export TERM="xterm-color" |
create table clientes( | |
id int primary key auto_increment, | |
nome_razao varchar(255) not null, | |
cpf_cnpj varchar(20) not null, | |
email varchar(100) not null, | |
senha varchar(100) not null, | |
telefone varchar(20) not null, | |
celular varchar(20) not null, | |
cep varchar(8) not null, | |
endereco varchar(255) not null, |