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
<?php | |
add_action( 'gform_post_submission_1', 'be_event_timestamp', 10, 2 ); | |
/** | |
* Create a UNIX timestamp based on Gform date fields | |
* @author Bill Erickson | |
* @link http://www.billerickson.net/code/gravity-forms-unix-timestamp | |
* @link http://www.gravityhelp.com/documentation/page/Gform_post_submission | |
* | |
* 'gform_post_submission' applies to all forms, append form ID to specify |
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 | |
# ./curl-urls.sh numprocessses http://urltograp urlpattern | |
# ./curl-urls.sh 3 http://www.domain.com domain.com | |
numprocessses=$1 | |
baseurl=$2 | |
urlpattern=$3 | |
function forky() { | |
local num_par_procs | |
if [[ -z $1 ]] ; then |