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 | |
# This scripts installs into the current active Python virtualenv: | |
# - pygobject-2.12.1 | |
# - pygtk-2.10.1 | |
# - pushd pycairo-1.2.0 | |
DATADIR=/tmp/py24gtk-data | |
WORKDIR=`mktemp -d` |
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 re | |
import sys | |
_RE_NUM = re.compile(r'\d+') | |
def get_triangle_path(stream, key=lambda x: x): | |
col = 0 #the column number in which the last step of the path was found |
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 -ruN nvidia-bl/nvidia_bl.c nvidia-bl-new/nvidia_bl.c | |
--- nvidia-bl/nvidia_bl.c 1970-01-01 06:13:08.000000000 -0300 | |
+++ nvidia-bl-new/nvidia_bl.c 2010-06-22 23:12:13.163776338 -0300 | |
@@ -30,8 +30,10 @@ | |
* but there's no guarantee that the chip's smartdimmer signals | |
* are actually connected to the display logic. Right now, these | |
* are the supported (read connected) vendors according to NvClock. | |
+ * | |
+ * TODO: Remove this stuff. Shouldn't be necessary. | |
*/ |
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
La bicicleta de mi hermana | |
========================== | |
Anoche soñé que le robaban la bicicleta a mi hermana. | |
Ella me llama al teléfono fijo de la casa de mi abuela y me dice: "Ren, me | |
acaban de robar la bici, fijate si no ves pasar al chorro por la vereda". Fui | |
hasta el garage, me descalcé y esperé tranquilo detrás de la puerta con mi bate | |
de baseball -no sabía que tenía uno-. |
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
Juan: Hey Ana, como estás? | |
Ana: Bien, y vos? Está lindo el día no? | |
Juan: Sí, pero... a mi en realidad me gusta la lluvia. | |
Ana: Ah, entonces ya no te quiero. |
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
from random import randint | |
def blamatrix(m, n, min=-100, max=100): | |
a = [[randint(min, max) for j in range(n)] for i in range(m)] | |
for i,row in enumerate(a): | |
others_sum = sum(map(abs, row[:i])) + sum(map(abs, row[i+1:])) | |
if abs(row[i]) <= others_sum: | |
row[i] = others_sum + 1 | |
return a |
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
autocmd! | |
syntax on | |
set background=dark | |
set showmatch | |
set showtabline=2 | |
set nu | |
set nuw=4 | |
set cursorline | |
set nowrap | |
set modifiable |
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
...:::BLUE GROOVE CONCEPCION DEL URUGUAY:::... | |
Este Jueves 15 te esperamos con el 1er evento de musica electronica en Concepcion del Uruguay... | |
Bufalo Disco & Eventos Electronicos de Concepcion del Uruguay te Presentan un Warm Up Increible | |
Line Up: | |
2:00 to 4:00 hs Enrique Castellanos ( Minimal Tech ) @ Parana, Entre Rios |
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
{ | |
"status": "OK", | |
"payload": { | |
"proyecto": { | |
"uuid": "6d21c24e-6f33-45b7-9d2e-8ebba2ce0ce7", | |
"tipo": "R", | |
"fundamentos": "", | |
"url": "/api/0/congreso/diputados/proyectos/6d21c24e-6f33-45b7-9d2e-8ebba2ce0ce7/", | |
"comisiones": [ | |
{ |
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
<?xml version="1.0" encoding="utf8"?> | |
<response status="OK"> | |
<payload> | |
<proyecto url="/api/0/congreso/diputados/proyectos/6d21c24e-6f33-45b7-9d2e-8ebba2ce0ce7/" uuid="6d21c24e-6f33-45b7-9d2e-8ebba2ce0ce7"> | |
<tipo>R</tipo> | |
<fundamentos/> | |
<comisiones> | |
<comision url="/api/0/congreso/diputados/comisiones/6128e64e-3542-4d59-a1b3-1ffd05732a72/" uuid="6128e64e-3542-4d59-a1b3-1ffd05732a72"/> | |
</comisiones> | |
<fecha>2010-05-10</fecha> |