.gitignore: vendor/*
Bash: git rm --cached vendor -r
| #!/usr/bin/ruby | |
| require 'benchmark' | |
| require 'set' | |
| $VERBOSE = nil | |
| H = 'md' | |
| N = 10 | |
| Size = 3 | |
| # H ='md' |
| 1. Useful Commands | |
| gg - jump to begining of file | |
| G - jumo to end of file | |
| { - jump to paragraph | |
| i - insert mode | |
| a - insert mode after cursor | |
| o - insert in new line below and swtich to insert mode | |
| O - insert in new line above and swtich to insert mode | |
| r - change letter | |
| x - delele character |
| # Aliases | |
| # Navigation | |
| alias ll='ls -alhF' | |
| alias ls='ls -alhFG --color' | |
| alias l='ls -lhFG --color' | |
| alias md="mkdir -pv" | |
| alias ~='cd ~' | |
| alias ..='cd ..' | |
| alias ...='cd ../..' |
| // Source http://www.thatjsdude.com/interview/js1.html | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Log p() | |
| |-------------------------------------------------------------------------- | |
| | | |
| */ | |
| var p = function(a) { |
.gitignore: vendor/*
Bash: git rm --cached vendor -r
| // ==UserScript== | |
| // @name GreenIsBad | |
| // @namespace GreenIsBad | |
| // @version 0.2 | |
| // @description Ukrywa wpisy/komentarze zielonek za spojlerami | |
| // @author Feuer | |
| // @match http://wykop.pl/* | |
| // @match http://www.wykop.pl/* | |
| // @grant none | |
| // ==/UserScript== |