View .eslintignore
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
foo.js |
View infile.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
#!/bin/bash | |
grepc $1 | awk -F':' '{print $1}' | sort | uniq -c |
View clarin.css
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document regexp("http://www.clarin\\.com/.*") { | |
#cboxOverlay, #cboxContent { | |
display: none !important; | |
} | |
} |
View jsconfar.js
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
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); | |
} |
View .gvimrc
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
set guioptions-=r | |
set guioptions-=L | |
set guicursor=a:blinkon0 | |
set guioptions=egmrt | |
hi ColorColumn guibg=#3E3D32 |
View .pylintrc
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
[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 |
View pep8
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
[pep8] | |
ignore=E501,E711,E712,E122,E123,E128 |
View git-lint
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
#!/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 |
View git-deploy
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
#!/usr/bin/env bash | |
branch=`git branch | grep '*' | awk '{print $2}'` | |
git push -u origin $branch |
View git-usebranch
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
#!/usr/bin/env bash | |
branch=`git branch -a | egrep -io "([^/]+/)?[^/]+$1$" | sed 's/* //' | head -1` | |
git checkout $branch |