Skip to content

Instantly share code, notes, and snippets.

Untitled Note
Thu, May 18, 2023 8:13PM • 1:01:13
SUMMARY KEYWORDS
teleport, roll, feet, damage, tethered, spell, hit, chained, kobolds, points, top, cobalt, tower, fly, attack, kill, sleet storm, gym, turn, moonbeam
SPEAKERS
Hunter, Daniel, ira, Ira, Mel, Plechazunga, Aster, Aditi, Sam, Raz
Hunter 00:01
She pushes the spell into the gym which begins pulsing and glowing and you see all five of the kobolds that you can see they're just all rise, and you see a tether just bursts out of their chest into the gym. That brings us to Brekka.
Untitled Note
Thu, May 18, 2023 8:13PM • 1:01:13
SUMMARY KEYWORDS
teleport, roll, feet, damage, tethered, spell, hit, chained, kobolds, points, top, cobalt, tower, fly, attack, kill, sleet storm, gym, turn, moonbeam
SPEAKERS
Hunter, Daniel, ira, Ira, Mel, Plechazunga, Aster, Aditi, Sam, Raz
Hunter 00:01
She pushes the spell into the gym which begins pulsing and glowing and you see all five of the kobolds that you can see they're just all rise, and you see a tether just bursts out of their chest into the gym. That brings us to Brekka.
@plechazunga
plechazunga / tar
Created March 25, 2013 12:33
Tar a file...keep forgetting how to do this
tar -cvf mytarfile.tar mydir/
/**
* Add "first" and "last" CSS classes to dynamic sidebar widgets. Also adds numeric index class for each widget (widget-1, widget-2, etc.)
*/
function widget_first_last_classes($params) {
global $my_widget_num; // Global a counter array
$this_id = $params[0]['id']; // Get the id for the current sidebar we're processing
$arr_registered_widgets = wp_get_sidebars_widgets(); // Get an array of ALL registered widgets
if(!$my_widget_num) {// If the counter array doesn't exist, create it
@plechazunga
plechazunga / Javascript
Created September 7, 2012 17:37
Prototypes - The beget method
// Thanks Douglas Crockford
if (typeof Object.beget !== 'function') {
Object.beget = function(o) {
var F = function() {};
F.prototype = o;
return new F();
};
}
@plechazunga
plechazunga / Javascript
Created September 7, 2012 17:35
Max/Min in Array
Array.max = function( array ){
return Math.max.apply( Math, array );
};
Array.min = function( array ){
return Math.min.apply( Math, array );
};
@plechazunga
plechazunga / jQuery
Created July 28, 2012 19:03
Highlight Codeblocks w/ Prettify
$(document).ready(function() {
// add prettyprint class to all <pre><code></code></pre> blocks
var prettify = false;
$("pre code").parent().each(function() {
$(this).addClass('prettyprint');
prettify = true;
});
// if code blocks were found, bring in the prettifier ...
@plechazunga
plechazunga / WordPress
Created June 27, 2012 13:32
Shortcode in Template
<?php echo do_shortcode("[shortcode]"); ?>
@plechazunga
plechazunga / CSS Tricks: Layered Paper
Created March 23, 2012 18:06
CSS Tricks: Layered Paper
/* Layered Paper */
.layered-paper {
background: #eee;
box-shadow:
0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */
0 10px 0 -5px #eee, /* The second layer */
0 10px 1px -4px rgba(0,0,0,0.15), /* The second layer shadow */
0 20px 0 -10px #eee, /* The third layer */
0 20px 1px -9px rgba(0,0,0,0.15); /* The third layer shadow */