This file contains 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
[credential] | |
helper = osxkeychain | |
[user] | |
name = Eduardo Matos | |
email = [email protected] | |
[color] | |
ui = auto | |
[color "diff"] | |
meta = blue bold | |
frag = yellow reverse dim |
This file contains 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
# append to the history file, don't overwrite it | |
shopt -s histappend | |
#enbles color in the terminal bash shell export | |
CLICOLOR=1 | |
#sets up the color scheme for list export | |
LSCOLORS=cxfxcxdxbxegedabagacad | |
c_cyan=`tput setaf 6` | |
c_red=`tput setaf 1` |
This file contains 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
"avoiding annoying csapprox warning message | |
let g:csapprox_verbose_level = 0 | |
"necessary on some Linux distros for pathogen to properly load bundles | |
filetype on | |
filetype off | |
"load pathogen managed plugins | |
call pathogen#infect() |
This file contains 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
// ---- | |
// Sass (v3.3.0) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$profile_themes: ( | |
basic: ( | |
title: ( | |
color: blue, | |
font-family: Arial |
This file contains 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
// ---- | |
// Sass (v3.3.0) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
.post { | |
color: #333; | |
.link { | |
color: blue; | |
@at-root .link { |
This file contains 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
# See https://help.github.com/articles/ignoring-files for more about ignoring files. | |
# | |
# If you find yourself ignoring temporary files generated by your text editor | |
# or operating system, you probably want to add a global ignore instead: | |
# git config --global core.excludesfile '~/.gitignore_global' | |
# Ignore bundler config. | |
/.bundle | |
# Ignore the default SQLite database. |
This file contains 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
/* | |
Author: Eduardo Matos | |
Release Date: 2014-04-18 | |
Lista de todos os DDDs e as datas de liberação. | |
- Todos os lotes de dígitos serão liberados no dia 31 de dezembro de cada ano (2014, 2015, 2016); | |
Para usar, importe no seu javascript o link desse gist (versão 'raw') e chame: | |
This file contains 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
@each $font-face in | |
"MyFont-Regular", | |
"MyFont-Bold", | |
"MyFont-Medium" { | |
@font-face { | |
font-family: $font-face; | |
font-style: normal; font-weight: normal; | |
src: font-url('#{$font-face}.eot'); | |
src: font-url('#{$font-face}.eot?#iefix') format('embedded-opentype'), |
This file contains 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
desc "Fix asset names with .min at end of filename" | |
task :fixassets => :environment do | |
puts "\n\n" | |
manifest_file = "" | |
manifest_json = "" | |
Dir.glob(File.join(Rails.root, 'public/assets/manifest*.json')) do |file| | |
manifest_file = file |
This file contains 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
section { | |
max-width: max-content; | |
margin: auto; | |
border: 1px solid #000; | |
} | |
section p { | |
padding: 10px; | |
background-color: yellow; | |
} |
OlderNewer