I hereby claim:
- I am shadowmaru on github.
- I am shadowmaru (https://keybase.io/shadowmaru) on keybase.
- I have a public key ASDSp8YtijUg-Hr2ek00HFd3-XypP_-u70uz3Zf8qudFZAo
To claim this, I am signing this object:
set nocompatible | |
filetype off | |
set cursorline " highlight current line | |
set synmaxcol=128 | |
set number " show line numbers | |
set noswapfile " doesn't generate those awful .swp files | |
set nobackup " doesn't generate those awful .bkp files | |
set lazyredraw " redraw only when we need to. | |
set showmatch " highlight matching [{()}] | |
set wildignore+=*/tmp/*,*/_build/*,*/node_modules/*,*.so,*.swp,*.zip,*/.git/*,*/coverage/* |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
set -e | |
show_help() { | |
cat << EOF | |
Usage: ${0##*/} [-u USER] [-p PASS] [-P PORT] [-H HOST] [DATABASE] | |
${0##*/} -h | |
Open a standard connection in Sequel PRO. |
Entregue seu layout no formato Photoshop. Também inclua jpegs caso haja muitas variações do responsivo (break points).
Evite arquivos muito grandes, principalmente as imagens. Otimize-as para web e principalmente para mobile.
'use strict'; | |
angular.module('app') | |
.directive('my-input', [ | |
function() { | |
return { | |
restrict: 'E', | |
templateUrl: '/my-input.html', | |
scope: {}, | |
controllerAs: 'myInput', |
I hereby claim:
To claim this, I am signing this object:
deploy 7546 0.0 0.0 17724 656 ? S 22:41 0:00 -bash | |
deploy 7605 0.0 0.0 17724 640 ? S 22:42 0:00 -bash | |
deploy 7609 0.0 0.0 17724 664 ? S 22:42 0:00 -bash | |
deploy 7628 0.0 0.0 17724 668 ? S 22:42 0:00 -bash | |
deploy 7674 0.0 0.0 17724 668 ? S 22:43 0:00 -bash | |
deploy 7675 0.0 0.0 17724 668 ? S 22:43 0:00 -bash | |
deploy 7676 0.0 0.0 17724 672 ? S 22:43 0:00 -bash | |
deploy 7679 0.0 0.0 17724 676 ? S 22:43 0:00 -bash | |
deploy 7680 0.0 0.0 17724 672 ? S 22:43 0:00 -bash | |
deploy 7684 0.0 0.0 17724 672 ? S 22:43 0:00 -bash |
pt-BR: | |
errors: | |
messages: | |
expired: "expirou, por favor solicite uma nova" | |
not_found: "não encontrado" | |
already_confirmed: "já foi confirmado, por favor tente fazer login" | |
not_locked: "não foi bloqueado" | |
not_saved: | |
one: "1 erro evitou que este %{resource} fosse gravado:" | |
other: "%{count} erros evitaram que este %{resource} fosse gravado:" |
class MigrateProductsToPaperclip < ActiveRecord::Migration | |
def self.up | |
# Rename the old "image" column to "old_file_name", since Product.image will now try to do Paperclip stuff | |
rename_column :products, :image, :old_file_name | |
# Rename asset directories to pluralize | |
File.rename("public/system/product","public/system/products") | |
File.rename("public/system/products/image","public/system/products/images") | |