from my daughter's class at Eastern Middle School
There was free discussion of the objectives until members commit themselves to them; the objectives are meaningful to each group member.
// fix for https://gist.github.com/mreidsma/69a42480f157647cd710#file-summonalerts-js-L4 | |
// Set the text of the alert | |
var message = 'The Database of Broken Dreams is currently unavailable.'; | |
// Turn the alert on or off (true = on, false = off) | |
var showAlert = false; | |
angular.module('summonApp.directives').directive("resultsFeed", | |
function() { | |
return { |
from my daughter's class at Eastern Middle School
There was free discussion of the objectives until members commit themselves to them; the objectives are meaningful to each group member.
<?php | |
$form = '<form role="search" method="get" id="searchform" action="' . esc_url( home_url( '/' ) ) . '"> | |
<div> | |
<label class="screen-reader-text" for="s">' . __( 'Search for:', 'woocommerce' ) . '</label> | |
<input type="text" value="' . get_search_query() . '" name="s" id="s" placeholder="' . __( 'My Super Search form', 'woocommerce' ) . '" /> | |
<input type="submit" id="searchsubmit" value="'. esc_attr__( 'Search', 'woocommerce' ) .'" /> | |
<input type="hidden" name="post_type" value="product" /> | |
</div> | |
</form>'; |
#!/usr/bin/ruby | |
# tp-dailylog.rb - Log TaskPaper tasks completed on the current day to a Day One entry | |
# Brett Terpstra 2012 <http://brettterpstra.com> | |
# | |
# Run it with launchd at 11pm and forget about it | |
# | |
# Notes: | |
# * Uses `mdfind` to locate all .taskpaper files changed in the last day | |
# * Scans for @done(xxxx-xx-xx) tags in each line matching today's date | |
# * Does not alter TaskPaper files in any way |