Skip to content

Instantly share code, notes, and snippets.

View Tiny-Giant's full-sized avatar

Tiny Giant Tiny-Giant

  • Ladysmith, BC, Canada
View GitHub Profile
<div class="product-thumbnail-container clr">
<div class="product-thumbnail-wrap">
<img data-big="<?php echo $url ?>" title="<?php the_field('colour'); ?>" tray="A.1.C" class="product-thumb product-thumb-active" src="<?php the_field('featured_image_a_thumbnail'); ?>" />
<div class="product-thumbnail-name"><?php the_field('colour'); ?></div>
</div>
<?php if(get_field('featured_image_b')) { ?>
<div class="product-thumbnail-wrap">
<img data-big="<?php the_field('featured_image_b'); ?>" tray="B.1.B" title="<?php the_field('featured_image_b_thumbnail_name'); ?>" class="product-thumb" src="<?php the_field('featured_image_b_thumbnail'); ?>" />
<div class="product-thumbnail-name"><?php the_field('featured_image_b_thumbnail_name'); ?></div>
@Tiny-Giant
Tiny-Giant / TaggedQuestionList.user.js
Last active September 26, 2015 19:39 — forked from mogsdad/TaggedQuestionList.user.js
This userscript will add a list (initially hidden in an expandable div) containing links to every question listed on a tag page (i.e., questions/tagged/something). When a link in this list is clicked, it goes away. This allows you to easily open up many questions with this tag at the same time. Simply ctrl-click on the first link, then keep clic…
// ==UserScript==
// @name Tag list
// @namespace http://stackapps.com/questions/4207/burninator-toolkit
// @author Will Sullivan (Will)
// @developer David Bingham (Mogsdad)
// @version 1.2.6
// @grant none
// @description Adds an expandable list containing a link to every question on the current tag page. Useful when you want to open many questions with the same tag at the same time.
// @include /^https?://(meta\.)?(stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com/(questions/(new|popular|need-answers)|search).*/
// ==/UserScript==
// ==UserScript==
// @name Stack Overflow CV Request Generator
// @namespace http://your.homepage/
// @version 0.1
// @description This script generates formatted close vote requests and sends them to a specified chat room
// @author @TinyGiant
// @match http://*.stackoverflow.com/questions/*
// @grant GM_xmlhttpRequest
// ==/UserScript==