Skip to content

Instantly share code, notes, and snippets.

View hwarlley's full-sized avatar

TroYano hwarlley

View GitHub Profile
@pneff
pneff / Back Template
Created February 14, 2014 08:33
Anki Card Type for multiple-choice
<div class="check-container"><span id="check"></span></div>
{{#Question}}
<p>{{Question}}</p>
{{/Question}}
{{#Image}}
<p class="image">{{Image}}</p>
{{/Image}}
@leoherzog
leoherzog / *WeatherWallpaper.tsk.xml
Last active December 13, 2017 21:32
Weather Wallpaper Flickr Tasker Task
<TaskerData sr="" dvi="1" tv="4.8u1m">
<Task sr="task19">
<cdate>1458152913165</cdate>
<edate>1458658344165</edate>
<id>19</id>
<nme>Weather Wallpaper</nme>
<pri>100</pri>
<Kid sr="Kid">
<launchID>19</launchID>
<pkg>eqs.wdr.ynk</pkg>
@BFTrick
BFTrick / functions.php
Created May 26, 2016 15:05
WooCommerce add an Empty Cart button
<?php
// check for empty-cart get param to clear the cart
add_action( 'init', 'woocommerce_clear_cart_url' );
function woocommerce_clear_cart_url() {
global $woocommerce;
if ( isset( $_GET['empty-cart'] ) ) {
$woocommerce->cart->empty_cart();
}
}