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
(* | |
http://veritrope.com | |
Apple Mail -- Text File Exporter | |
Version 1.1 | |
January 17, 2011 | |
Project Status, Latest Updates, and Comments Collected at: | |
http://veritrope.com/code/export-apple-mail-messages-and-notes-to-text-files | |
Installation: Just double-click on the script! |
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
<?php | |
// Setup | |
$account = "YOUR_ACCOUNT_NAME"; | |
$form = "FORM_ID"; | |
$api_key = "API_KEY"; | |
$offset = 0; | |
$limit = 100; | |
$all_results = array(); |
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
<?php | |
function wufoo_entries() { | |
// Setup | |
$account = "ACCOUNT_NAME"; | |
$form = "FORM_NAME"; | |
$api_key = "YOUR-API-KEY"; | |
$offset = 0; | |
$limit = 100; | |
$check_int = 15 * 60; // 15 minutes |
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
### AWS Developer Tools ### | |
export EC2_HOME=~/.ec2 | |
export PATH=$PATH:$EC2_HOME/bin:/usr/local/bin | |
##export EC2_PRIVATE_KEY=`ls $EC2_HOME/pk-*.pem` | |
##export EC2_CERT=`ls $EC2_HOME/cert-*.pem` | |
export EC2_PRIVATE_KEY=***.pem | |
export EC2_CERT=***.pem | |
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home/ |
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 | |
echo -e '\033[1;30m==========================================' | |
## check for a directory | |
if test -z "$1"; then | |
echo -e ' \033[0;31m✖ Please provide a directory name' | |
exit | |
fi |
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 | |
echo '\033[1;30m==========================================' | |
## check for a directory | |
if test -z "$1"; then | |
echo ' \033[0;31m✖ Please provide a directory name' | |
else | |
## check if directory already exist |