#My Essentials Softwares
###Development
- Android Studio
- Apache Tomcat
- Astah Community (FIAP)
- Atom (Text Editor by Github)
- Codekit
// Packages Installed (Package Control) | |
// - AdvancedNewFile | |
// - All Autocomplete | |
// - AngularJS | |
// - AutoFileName | |
// - Better JavaScript | |
// - BracketHighlither | |
// - Emmet | |
// - FileDiffs | |
// - JavaScript Console |
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, |
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" |
#My Essentials Softwares
###Development
<!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) |
If you need learn about new tecnologies and others stuff, and no have idea what make, read this:
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. | |
} |
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'), |