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
class FilePosition: | |
def __init__(self, bufferId): | |
self.bufferId = bufferId #sets the bufferId | |
self.filePositions = [] # where the modified lines will be stored | |
self.lastPos = 0 | |
self.counter = 0 | |
def addFilePosition(self, pos): | |
self._findDelete(pos) # checks if the line number is already in the list |
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
/* | |
sources: | |
http://www.justatheory.com/computers/programming/javascript/emulating_namespaces.html | |
http://www.dustindiaz.com/namespace-your-javascript/ | |
http://www.crockford.com/javascript/private.html | |
http://yuiblog.com/blog/2007/06/12/module-pattern/ | |
http://stackoverflow.com/questions/881515/javascript-namespace-declaration | |
*/ |
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
#!/bin/sh | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/' | |
} | |
current_branch=$(parse_git_branch) | |
if [[ -n "$current_branch" ]]; then | |
git fetch -v upstream | |
git checkout master |
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
# Probaby windows with msys (old times) | |
alias ls='ls -A --color=yes' | |
alias dir='ls -A --color=yes' | |
alias vi='vim' | |
alias gb='git branch' | |
alias gba='git branch -a' | |
alias gc='git commit -v' | |
alias gfu='git fetch upstream master:upstream' | |
alias gf='git fetch origin master:remote-master' | |
alias gp='git push' |
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
%s/\(:\)\(\S\+\)\s\+=>/\2:/ |
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
before_filter :find_position, only: [:show, :destroy, :edit] | |
def destroy | |
if @position.destroy | |
flash[:success] = t('labels.success') | |
else | |
flash[:error] = t('labels.error') | |
end | |
redirect_to positions_path | |
end |
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
\pset null 'NULL' | |
\set HISTFILE ~/.psql_history- :HOST - :DBNAME | |
\set HISTSIZE 100000 | |
\timing | |
\set PROMPT1 '(%n@%M:%>) [%/] > ' | |
\set PROMPT2 '' | |
\encoding unicode | |
\timing | |
\pset pager always | |
\setenv LESS '-iMSsx2 -FX' |
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
#/etc/udev/rules.d/99-displaymagic.rules | |
# enable LVDS on HDMI disconnect | |
SUBSYSTEM=="drm", ACTION=="change", RUN+="/usr/local/bin/displaymagic.sh" |
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
unless File.exist?('Gemfile') | |
File.write('Gemfile', <<-GEMFILE) | |
source 'https://rubygems.org' | |
gem 'rails', '4.2.0' | |
gem 'arel' | |
gem 'sqlite3' | |
GEMFILE | |
system 'bundle' | |
end |
OlderNewer