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
<!-- | |
ATENÇÃO: os links estão ordenados alfabeticamente. Siga esta nomenclatura ao adicionar o seu. | |
--> | |
<h2>#horaextra</h2> | |
<ul id="blogroll"> | |
<li><a href="http://caikesouza.com/?utm_campaign=horaextra">Caike Souza</a></li> | |
<li><a href="http://diegodukao.net/?utm_campaign=horaextra">Diego Dukão</a></li> | |
<li><a href="http://blog.distopico.org/?utm_campaign=horaextra">Edgard Arakaki</a></li> | |
<li><a href="http://tapajos.me/?utm_campaign=horaextra">Marcos Tapajós</a></li> | |
<li><a href="http://mariomariani.blogspot.com/?utm_campaign=horaextra">Mário Mariani</a></li> |
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
################################################################################################ | |
# | |
# Script to organize pictures uploaded from Mobile Devices to Dropbox's Camera Upload folder | |
# | |
# Daniel Spillere Andrade - www.danielandrade.net | |
# | |
################################################################################################ | |
import os, time | |
import glob |
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 | |
case $1 in | |
up) | |
TOTAL=`expr $CURRENT + $INCREMENT` | |
if [ $TOTAL -gt $MAX ]; then | |
exit 1 | |
fi | |
echo $TOTAL > $FILE | |
;; |