This file contains hidden or 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
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. |
This file contains hidden or 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
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. |
This file contains hidden or 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
tar -cvf mytarfile.tar mydir/ |
This file contains hidden or 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
/** | |
* 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 |
This file contains hidden or 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
// Thanks Douglas Crockford | |
if (typeof Object.beget !== 'function') { | |
Object.beget = function(o) { | |
var F = function() {}; | |
F.prototype = o; | |
return new F(); | |
}; | |
} |
This file contains hidden or 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
Array.max = function( array ){ | |
return Math.max.apply( Math, array ); | |
}; | |
Array.min = function( array ){ | |
return Math.min.apply( Math, array ); | |
}; |
This file contains hidden or 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
$(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 ... |
This file contains hidden or 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 echo do_shortcode("[shortcode]"); ?> |
This file contains hidden or 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
/* 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 */ | |