This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
nicediff() { | |
RED='\033[31m' | |
GREEN='\033[32m' | |
CYAN='\033[36m' | |
BOLD='\033[1;37m' | |
NC='\033[0m' | |
R_REMOVED="^\-([^-]|$)" | |
R_ADDED="^\+([^+]|$)" | |
R_AT="^\@\@ \-[0-9]+,[0-9]+ \+[0-9]+,[0-9]+ \@\@$" | |
R_DIFF_HEAD="^(\-\-\-|\+\+\+)[^\-\+]+$|^=+$|^Index:" |
#-*- coding: utf-8 -*- | |
""" | |
Copyright (c) 2011, Jhonathan Sneider Salguero Villa (http://www.novatoz.com/) | |
script para extraer imágenes de archivos ppt, pptx y pps | |
Requiere: | |
- pywin32 | |
- Microsoft PowerPoint 2007 | |
""" | |
try: |
#-*- coding: utf-8 -*- | |
""" | |
Copyright (c) 2011, Jhonathan Sneider Salguero Villa (http://www.novatoz.com/) | |
script para descarga automática de archivos alojados en megaupload. | |
Intenta burlar proxies que bloquean por nombre de dominio y extensión de archivos | |
""" | |
from base64 import urlsafe_b64encode | |
from contextlib import closing |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
#!/usr/bin/env bash | |
# Copyright (c) 2011, Jhonathan Sneider Salguero Villa (http://www.novatoz.com/) | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |