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
#!/bin/bash | |
# https://www.google.com/doodles/hurdles-2012 | |
for i in `seq 1 600`; | |
do | |
xdotool search "Mozilla Firefox" windowactivate --sync key Left | |
xdotool search "Mozilla Firefox" windowactivate --sync key Right | |
done |
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 -*- | |
import kinterbasdb | |
import sys | |
""" Establece la base de datos, nombre, sin extension, de /media/db/desa/ """ | |
if len(sys.argv) < 2: | |
print "Debe colocar como parámetro el nombre de la base de datos" | |
sys.exit(1) |
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 python2.7 | |
# -*- coding: utf-8 -*- | |
import os | |
import sys | |
import random | |
### | |
# To Do | |
# - Agregar por Temporada. |
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 -*- | |
import os | |
import random | |
from mpd import (MPDClient, CommandError) | |
from audioscrobbler import AudioScrobblerQuery | |
""" MPD """ |
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
#!/bin/bash | |
# | |
# Script que descarga La Venganza Sera Terrible, de Alejando Dolina | |
# Gracias a Venganzasdelpasado.com.ar que siempre deja los links listos | |
# | |
# Recomendado: dejar cron programado para que lo corra despues de las 3am | |
# | |
day=`date +%d '--date=-1 day'` |
NewerOlder