Skip to content

Instantly share code, notes, and snippets.

View peregrinogris's full-sized avatar
🧉
Drinking mate

Hernán Rodríguez Colmeiro peregrinogris

🧉
Drinking mate
View GitHub Profile
@peregrinogris
peregrinogris / .eslintignore
Last active February 24, 2016 19:10
Eslint error testcase
foo.js
@peregrinogris
peregrinogris / infile.sh
Created May 21, 2015 13:58
Find occurrences in files
#!/bin/bash
grepc $1 | awk -F':' '{print $1}' | sort | uniq -c
@peregrinogris
peregrinogris / clarin.css
Created March 18, 2015 14:23
Ocultar paywall en Clarín
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document regexp("http://www.clarin\\.com/.*") {
#cboxOverlay, #cboxContent {
display: none !important;
}
}
@peregrinogris
peregrinogris / jsconfar.js
Created November 3, 2014 19:48
JSConfAR ticket sold notification
function sendNotification(data){
new Notification("Entrada Vendida!", {icon: "http://i.imgur.com/PDqr3ZK.png", body: data.availableRegularTickets + "\n"+data.lastBuyerName.substring(0, 30).ucwords()});
}
function ticketSold(data) {
// Let's check if the user is okay to get some notification
if (Notification.permission === "granted") {
// If it's okay let's create a notification
sendNotification(data);
}
@peregrinogris
peregrinogris / .gvimrc
Last active May 4, 2018 12:52
Vim Config Files
set guioptions-=r
set guioptions-=L
set guicursor=a:blinkon0
set guioptions=egmrt
hi ColorColumn guibg=#3E3D32
@peregrinogris
peregrinogris / .pylintrc
Last active August 29, 2015 14:05
Pylint config file. Goes under ~/.pylintrc
[MESSAGES CONTROL]
disable=line-too-long, too-many-locals, too-few-public-methods, no-member, invalid-name, no-init, fixme, duplicate-code, import-error, missing-docstring, old-style-class, bad-format-string, no-self-use, too-many-branches, broad-except, star-args, too-many-arguments, too-many-return-statements, bad-continuation, maybe-no-member, too-many-statements, too-many-instance-attributes, super-on-old-class
[REPORTS]
output-format=colorized
reports=no
@peregrinogris
peregrinogris / pep8
Last active August 29, 2015 14:05
pep8 config file. Goes under ~/.config/pep8
[pep8]
ignore=E501,E711,E712,E122,E123,E128
@peregrinogris
peregrinogris / git-lint
Last active August 29, 2015 14:05
Run pylint and pep8 linters on all changed and added python files, or in the current branch (by passing 'fbranch')
#!/usr/bin/env bash
branch=`git branch | grep '*' | awk '{print $2}'`
get_files() {
if test "$1" = "fbranch"; then
echo `git diff develop..$branch --name-status | egrep '[AM]\t' | awk '{print $2}' | grep '.py'`
else
echo `git status --porcelain | egrep '[AM] ' | awk '{print $2}' | grep '.py'`
fi
@peregrinogris
peregrinogris / git-deploy
Created August 11, 2014 14:57
Push the current branch to remote origin and make it track the newly created remote branch.
#!/usr/bin/env bash
branch=`git branch | grep '*' | awk '{print $2}'`
git push -u origin $branch
@peregrinogris
peregrinogris / git-usebranch
Last active February 1, 2017 18:17
Use this to checkout a branch ending with a certain string
#!/usr/bin/env bash
branch=`git branch -a | egrep -io "([^/]+/)?[^/]+$1$" | sed 's/* //' | head -1`
git checkout $branch