I hereby claim:
- I am andrix on github.
- I am andresmoreira (https://keybase.io/andresmoreira) on keybase.
- I have a public key whose fingerprint is 6E28 2A10 9503 D200 54A2 356F 92DD D775 1991 A9FA
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import sys, json | |
| import codecs | |
| import gzip | |
| out = codecs.getwriter('utf8')(sys.stdout) | |
| def _get_input(): | |
| if len(sys.argv) <= 1: | |
| return sys.stdin |
I hereby claim:
To claim this, I am signing this object:
| import sys | |
| from PyQt4.QtCore import * | |
| from PyQt4.QtGui import * | |
| from PyQt4.QtWebKit import * | |
| qWebSettings = { | |
| QWebSettings.JavascriptEnabled : True, | |
| # Plugins are enabled because we need to render Flash Ads from Google, | |
| # and seems that google sends which plugins we have enabled to serve |
| import sys | |
| import time | |
| from collections import deque | |
| N = 10000 | |
| class FifoMemoryQueue(object): | |
| """Memory FIFO queue.""" | |
| def __init__(self): |
| # This is a pylint configuration file tuned for checking scrapy code | |
| [MASTER] | |
| # Specify a configuration file. | |
| #rcfile= | |
| # Profiled execution. | |
| profile=no |
| syntax on | |
| let g:Powerline_symbols = 'fancy' | |
| set guifont=Inconsolata-dz\ for\ Powerline\ 10 | |
| set background=dark | |
| colorscheme molokai | |
| set encoding=utf-8 | |
| set guioptions='a' |
| filetype off | |
| call pathogen#infect() | |
| filetype on | |
| filetype plugin on | |
| filetype plugin indent on | |
| set nocompatible " vi-- | |
| set smarttab " tabulacion, indentacion, etc | |
| set shiftwidth=4 |
| from __future__ import division | |
| def c_avrg(the_dict, exclude): | |
| """ Calculate the average excluding the given element""" | |
| i = 0 | |
| total = 0 | |
| for e in the_dict: | |
| if e != exclude: | |
| i += 1 | |
| total += the_dict[e] |
| #!/bin/sh | |
| for domain in $*; do | |
| curl "http://www.isup.me/$domain" 2>/dev/null | grep "It's just you" > /dev/null | |
| if [ $? -eq 0 ]; then | |
| echo "$domain: UP" | |
| else | |
| echo "$domain: DOWN" | |
| fi | |
| done |
| #!/usr/bin/env python | |
| import re | |
| import sys | |
| from urllib import urlopen | |
| def isup(domain): | |
| resp = urlopen("http://www.isup.me/%s" % domain).read() | |
| return "%s: %s" % (domain, "UP" if re.search("It's just you.", resp, | |
| re.DOTALL) else "DOWN") |