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
#!/usr/bin/perl -w | |
use strict; | |
# Reboot a Surfboard modem because it'll give wired connections a little bit of | |
# bandwidth while hogging wifi users are forced to renegotiate a connection. | |
# >:-) | |
# Last updated 2016-06-20 | |
use constant USER => '*****'; | |
use constant PASS => '*****'; |
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
// ==UserScript== | |
// @name REDDIT-modwarning | |
// @namespace reddit | |
// @include http://www.reddit.com/r/*/comments/* | |
// @include https://www.reddit.com/r/*/comments/* | |
// @require https://code.jquery.com/jquery-2.2.4.min.js | |
// @version 0.02 | |
// ==/UserScript== | |
(function () { |
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
Blues and Bullets - Anachronisms & Historical Inaccuracies | |
Chapter 2: | |
(~1950-1957) | |
- Black guy comes into diner and sits down (diners were segregated until 1964) | |
(~1930-1937 - "20 years earlier") | |
- Ness drinks from bottle of liquor (Prohibition in full effect, the real Ness | |
didn't drink until after prohibition ended) |
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
// GistID: c61ccc4fe17d876defa7 | |
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
#include <math.h> | |
#include <algorithm> | |
using namespace std; | |
template <typename T> |
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
/** | |
* Generate a random alphanumeric password | |
* precondition: len must be <= 32 | |
* param len: length of the random password | |
* param enforce_rules: enforce password security rules | |
* returns: the random password | |
**/ | |
public static function generateRandomPassword($len=8, $enforce_rules = false) | |
{ | |
$count = 0; |
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
--- hover_zoom-5.7_0/js/background.js.orig 2015-03-16 00:57:39.641351085 -0500 | |
+++ hover_zoom-5.7_0/js/background.js 2015-03-26 09:17:53.562204063 -0500 | |
@@ -79,11 +79,12 @@ | |
}); | |
}); | |
break; | |
- case 'trackEvent': | |
- if (options.enableStats && _gaq) { | |
- _gaq.push(['_trackEvent', message.event.category, message.event.action, message.event.label]); | |
- } |
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
#!/usr/bin/perl -w | |
use strict; | |
=head2 permute($arrayref) | |
Gives all permutations of a given set of elements. Stolen straight out of B. Heap's HeapPermute algorithm. | |
$ fxpr 'permute [0..1]' | |
[ 0 1 ] | |
[ 1 0 ] |
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
#!/bin/bash | |
# vi: et sts=4 sw=4 ts=4 | |
# uses imagemagick's import(1) utility to take a screenshot of the current | |
# window | |
USAGE() { | |
printf 'Usage: %s [OPTIONS] [FILE]...\n' \ | |
"${0##*/}" | |
} |
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
#!/usr/bin/perl -w | |
use strict; | |
use Getopt::Std qw/ getopts /; | |
sub HELP_MESSAGE { | |
my $fh = shift || *STDOUT; | |
print $fh qq% | |
Usage: $0 IMG_IN IMG_OUT | |
Cause deliberate errors in an image file (or any file). |
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
▗▄▄▄▄▄▄▄▟▄▄▄▄▄▄ | |
▐██████████████████▙▄▄ | |
███████████████████████▄ | |
▐████████████████████████▌ | |
██████████████████████████ | |
▐██████████████████████████▌ | |
███████████████████████████▌ | |
▗███████████████████████████▀ | |
▟███████████████████████████████████▄▄▖ | |
▐████████████████████████████████████████▄ |
NewerOlder