This file contains hidden or 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
# lame --decode song.mp3 song.wav | |
WAV=$1 | |
OFFSET=$2 | |
# podría integrar los cambios en un solo comando, | |
# sin usar archivos intermedios, con 'delay' | |
# 'remix' hace el equivalente de 'pan', el canal | |
# derecho aparece antes al hacer offset |
This file contains hidden or 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
/* Uso: 'node gsearch.js'; en el navegador, 'http://localhost:8000/?q=la búsqueda' */ | |
var http = require('http') | |
, url = require('url') | |
, google = require('google-tools') | |
, mu = require('mu2'); | |
mu.root = __dirname + '/templates'; | |
http.createServer(function (req, web_out) { |
This file contains hidden or 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 subprocess import check_output | |
data = check_output(["pkg", "info", "-a", "-d"]) | |
fuente = '' | |
print "digraph Dependencias {" | |
for linea in data.split('\n'): | |
if linea: |
This file contains hidden or 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 -*- | |
""" | |
A minimal web browser. | |
Original: http://ralsina.me/weblog/posts/BB948.html | |
Features: | |
+++ verificar no tráfico no solicitado (startup, al menos) |
This file contains hidden or 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 -*- | |
""" | |
minimalistic browser levering off of Python, PyQt and Webkit | |
Original: https://code.google.com/p/foobrowser/ | |
[email protected] | |
+ tabs |
This file contains hidden or 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 subprocess | |
import networkx as nx | |
import matplotlib.pyplot as plt | |
from sys import argv | |
root = argv[1] | |
G = nx.DiGraph() |
This file contains hidden or 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
/* | |
Copyright (c) 2009, David Anderson; 2016, Jaime Soffer. | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without | |
modification, are permitted provided that the following conditions are met: | |
* Redistributions of source code must retain the above copyright | |
notice, this list of conditions and the following disclaimer. | |
* Redistributions in binary form must reproduce the above copyright | |
notice, this list of conditions and the following disclaimer in the |
OlderNewer