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 | |
// note, to use $subject within your closure below you have to pass it along in the "use (...)" clause. | |
$subject = 'Welcome!'; | |
Mail::send('emails.welcome', ['key' => 'value'], function($message) use ($subject) { | |
// note: if you don't set this, it will use the defaults from config/mail.php | |
$message->from('[email protected]', 'Sender Name'); | |
$message->to('[email protected]', 'John Smith') | |
->subject($subject); |
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 | |
# try 3 times - sometimes getting an initial DNS failure that clears up | |
COUNTER=0 | |
while [ $COUNTER -lt 3 ]; do | |
ping -c 1 google.com &> /dev/null | |
if [ $? -ne 0 ]; then | |
echo "`date`: ping failed, isp is down!" >> /Users/aking/Dropbox/Temp/isp-ping-result.log | |
echo "`date`: ping failed, isp is down!" >> /Users/aking/Dropbox/Temp/isp-downtime.log |
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
jQuery(function($) { | |
// add a handler for form submit (makes an AJAX call) | |
$(document).on('submit', 'form.my-class', myFormSubmitHandler); | |
// submit form on command + enter if in a textarea | |
$(document).on('keydown', 'body', function(e) { | |
if (!(e.keyCode == 13 && e.metaKey)) return; | |
var $target = $(e.target); | |
if ($target.is('textarea')) { |
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
// readable and easily re-orderable | |
$(document).on('submit', '#foo', myCallback1); | |
$(document).on('submit', '#bar', myCallback2); | |
$(document).on('click', '.baz', myCallback3); | |
// performant | |
$(document).on('submit', '#foo', myCallback1) | |
.on('submit', '#bar', myCallback2) |
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
[alias] | |
subup = "!f() { git submodule sync; git submodule update --init --recursive; }; f" |
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
In classes/deploy.class.php find this code on or around line 426: | |
<p>'.__('The batch session token does not match.', 'cf-deploy').'</p> | |
Replace that with: | |
<p>'.sprintf(__('The batch session token does not match. Expected "%s", received "%s"', 'cf-deploy'), esc_html($session_token), esc_html($args['batch_session_token'])).'</p> | |
This will show you the expected and received tokens. |
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 | |
function aktt_replace_tweet_content($posts) { | |
foreach ($posts as $post) { | |
if ($post->post_type == AKTT::$post_type && !empty($post->tweet)) { | |
$post->post_content = esc_url(AKTT::status_url($post->tweet->username(), $post->tweet->id())); | |
} | |
} | |
} | |
add_action('the_posts', 'aktt_replace_tweet_content', 11); |
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
function onEdit(e) { | |
setColors(); | |
}; | |
function setColors() { | |
var activeSheet = SpreadsheetApp.getActiveSheet(); | |
var numRows = activeSheet.getMaxRows(); | |
var numCols = activeSheet.getMaxColumns(); | |
var row, cell, value; |
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 | |
/* | |
Plugin Name: Favorites | |
Plugin URI: | |
Description: Let users save posts/pages as favorites - then access them through a quick menu. | |
Version: 1.0 | |
Author: Crowd Favorite | |
Author URI: http://crowdfavorite.com | |
*/ |
NewerOlder