Models | Examples |
---|---|
Display ads | Yahoo! |
Search ads |
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
rsync -r --delete -h --progress --stats /Users/arturo/Documents /Volumes/Arthur/ |
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
https://secure.phabricator.com/D7689 | |
+---------------------------------------------------------------+ | |
| * * * PUSH REJECTED BY EVIL DRAGON BUREAUCRATS * * * | | |
+---------------------------------------------------------------+ | |
\ | |
\ ^ /^ | |
\ / \ // \ | |
\ |\___/| / \// .\ | |
\ /V V \__ / // | \ \ *----* |
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
#!/usr/bin/env bash -e | |
script_path=$( cd $(dirname $0) ; pwd -P ) |
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
#!/usr/bin/env bash | |
shopt -s globstar | |
for file in **/* | |
do | |
slash=${file//[^\/]} | |
case "${#slash}" in | |
0) echo "|-- ${file}";; | |
1) echo "| |-- ${file}";; |
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
#!/usr/bin/env bash | |
mail="[email protected]" | |
maxload="9" | |
hostname=`hostname` | |
load=`w | head -n1 | awk '{print $10}' | cut -d"," -f1` | |
if [ $load -gt $maxload ] | |
then | |
echo "$hostname - High load 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
Any modern, innovative and worth learning framework or programming | |
language implements a subset of Smalltalk's features but lacks its | |
vision and design principles. |
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
for d in *; do (cd $d && git pull); done |
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/bash | |
# Script para descargar los documentos de issuu.com como imagenes JPG | |
# y convertirlos a PDF. | |
# kurtsik-2011 | |
# | |
TMP_DIR="/tmp/issud/" | |
TMP_FILE="issuufile" | |
KONT=1 | |
I_MAGICK=0 |