This file contains 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
<div class="boxright"> | |
<ul> | |
<li><a href="http://example.com/page/1">111th Accomplishments</a></li> | |
<li><a href="http://example.com/page/2">112th Accomplishments</a></li> | |
<li><a href="#\http://example.com/page/3">Accomplishments</a></li> | |
</ul> | |
</div> |
This file contains 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(){ | |
jQuery('.signuperror').hide(); | |
function sleep(milliseconds) { | |
var start = new Date().getTime(); | |
for (var i = 0; i < 1e7; i++) { | |
if ((new Date().getTime() - start) > milliseconds){ | |
break; | |
} |
This file contains 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
r/cache/local/preseeding/mysql-server.seed | |
==> burkeforwisconsin: [2014-07-23T14:09:46+00:00] INFO: template[/var/cache/local/preseeding/mysql-server.seed] owner changed to 0 | |
==> burkeforwisconsin: [2014-07-23T14:09:46+00:00] INFO: template[/var/cache/local/preseeding/mysql-server.seed] group changed to 0 | |
==> burkeforwisconsin: [2014-07-23T14:09:46+00:00] INFO: template[/var/cache/local/preseeding/mysql-server.seed] mode changed to 600 | |
==> burkeforwisconsin: [2014-07-23T14:09:46+00:00] INFO: template[/var/cache/local/preseeding/mysql-server.seed] sending run action to execute[preseed mysql-server] (immediate) | |
==> burkeforwisconsin: [2014-07-23T14:09:46+00:00] INFO: execute[preseed mysql-server] ran successfully | |
==> burkeforwisconsin: | |
==> burkeforwisconsin: ================================================================================ | |
==> burkeforwisconsin: Error executing action `start` on resource 'service[mysql]' | |
==> burkeforwisconsin: ===================================================================== |
This file contains 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
<table class="table table-striped table-condensed table-hover"> | |
<thead> | |
<tr> | |
<th>Bill</th> | |
<th>Date</th> | |
<th>Motion to Recommit (MTR)</th> | |
<th>Text</th> | |
<th>Vote</th> | |
</tr> | |
</thead> |
This file contains 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
<!-- TWO COLS --> | |
<div class="row"> | |
<div class="col-md-6"> | |
LEFT | |
</div> | |
<div class="col-md-6"> | |
RIGHT | |
</div> | |
</div> |
This file contains 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 | |
$args = array('post_type' => array('post'), 'posts_per_page' => -1); | |
$loop = new WP_Query($args); | |
while ( $loop->have_posts() ) : $loop->the_post(); | |
$posttags = get_the_tags(); |
This file contains 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
// Create Base64 Object | |
var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(e){var t="";var n,r,i,s,o,u,a;var f=0;e=Base64._utf8_encode(e);while(f<e.length){n=e.charCodeAt(f++);r=e.charCodeAt(f++);i=e.charCodeAt(f++);s=n>>2;o=(n&3)<<4|r>>4;u=(r&15)<<2|i>>6;a=i&63;if(isNaN(r)){u=a=64}else if(isNaN(i)){a=64}t=t+this._keyStr.charAt(s)+this._keyStr.charAt(o)+this._keyStr.charAt(u)+this._keyStr.charAt(a)}return t},decode:function(e){var t="";var n,r,i;var s,o,u,a;var f=0;e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(f<e.length){s=this._keyStr.indexOf(e.charAt(f++));o=this._keyStr.indexOf(e.charAt(f++));u=this._keyStr.indexOf(e.charAt(f++));a=this._keyStr.indexOf(e.charAt(f++));n=s<<2|o>>4;r=(o&15)<<4|u>>2;i=(u&3)<<6|a;t=t+String.fromCharCode(n);if(u!=64){t=t+String.fromCharCode(r)}if(a!=64){t=t+String.fromCharCode(i)}}t=Base64._utf8_decode(t);return t},_utf8_encode:function(e){e=e.replace(/\r\n/g,"\n");var t="";for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r |
This file contains 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
/* Make Container Relative */ | |
.video-wrapper { | |
position: relative; | |
} | |
/* Position the pause/play buttons in corner */ | |
.video-icon-item { | |
font-family: "FontAwesome"; /* Font Awesome HTML Entity Trick verus using <i class="fa fa-play"></i> */ | |
position: absolute; | |
right: 20px; |
This file contains 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
================================================================================ | |
Error executing action `install` on resource 'package[screen]' | |
================================================================================ | |
Mixlib::ShellOut::ShellCommandFailed | |
------------------------------------ | |
Expected process to exit with [0], but received '100' | |
---- Begin output of apt-get -q -y install screen=4.0.3-14ubuntu8 ---- | |
STDOUT: Reading package lists... |
This file contains 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
this is a gist I just made |