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
{ | |
"www.fayerwayer.com": { | |
"www.fayerwayer.com/2012/05/coca-cola-lanza-su-aplicacion-smileworld-para-que-sigas-todos-los-detalles-de-la-eurocopa-2012-2/": [ | |
{ | |
"count": 7, | |
"term_type": { | |
"name": "Company", | |
"id": "Company" | |
}, | |
"value": "Coca-Cola", |
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
Document Id: 5e2d07e2-2f94-4745-ad8c-b45094dfc674 | |
Order Id: 60201754 | |
Field Name Field Value | |
FieldTerminology tweets | |
Facility Mall Plaza | |
Company YouTube | |
Technology iPhone | |
Person Marilyn Yañez | |
Continent Europa | |
Person Obama |
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 python2.7 | |
# Jorge Niedbalski <[email protected]> | |
# | |
# [ Typespeed bot ] | |
# | |
# * apt-get install python-virtkey | |
# * pip install python-ptrace | |
# * Run typespeed |
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
import zmq | |
import urlparse | |
import urllib | |
import json | |
DEFAULT_TIMEOUT=5 | |
def parse(link): | |
url_data = urlparse.urlparse(link) | |
query = urlparse.parse_qs(url_data.query) |
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
import zmq | |
import sys | |
context = zmq.Context() | |
socket = context.socket(zmq.PUSH) | |
socket.connect("tcp://172.21.0.49:5000") | |
socket.send_json({'video': sys.argv[1]}) | |
sys.exit(0) |
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
#include <lua.h> | |
#include <lauxlib.h> | |
#include <lualib.h> | |
#include <sys/stat.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <assert.h> | |
#include "nanoluadict.h" |
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
# This file uses centimeters as units for non-parametric coordinates. | |
mtllib Hand.mtl | |
g default | |
v 0.104451 0.238210 -0.347796 | |
v 0.140692 0.210493 -0.345325 | |
v 0.134587 0.212245 -0.319674 | |
v 0.097379 0.237200 -0.323455 | |
v -0.041789 0.206318 -0.341331 | |
v -0.004346 0.233812 -0.343423 |
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 python | |
__author__ = 'Jorge Niedbalski R. <[email protected]>' | |
from string import Template | |
import envoy | |
def act_as_executable(command): | |
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
diff -r ae783041933e nimbic_pkg/nimbic/amis/create_nimbic_amis.py | |
--- a/nimbic_pkg/nimbic/amis/create_nimbic_amis.py Thu Apr 04 14:10:08 2013 -0300 | |
+++ b/nimbic_pkg/nimbic/amis/create_nimbic_amis.py Wed May 08 16:34:12 2013 -0300 | |
@@ -181,6 +181,9 @@ | |
else: | |
self.security_group_name = context.sec_group | |
+ self.sec_group_vpc_id = context.sec_group_vpc_id | |
+ self.sec_group_vpc_subnet_id = context.sec_group_vpc_subnet_id | |
+ |
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 python | |
# -*- coding: utf-8 -*- | |
__author__ = 'Jorge Niedbalski R. <[email protected]>' | |
import peewee | |
import random | |
import datetime | |
import logging |