Skip to content

Instantly share code, notes, and snippets.

View h3xx's full-sized avatar
#GiveUpGitHub

Dan Church h3xx

#GiveUpGitHub
View GitHub Profile
#!/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 ]
--- 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]);
- }
@h3xx
h3xx / AuthUtility.php
Last active August 29, 2015 14:19
Bad Code for generating a "random" password
/**
* 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;
@h3xx
h3xx / vidalia-0.2.15_fix_control_panel_height.patch
Created February 14, 2012 19:45
Fix control panel height in Vidalia 0.2.15
diff -ru vidalia-0.2.15.orig/src/vidalia/MainWindow.ui vidalia-0.2.15/src/vidalia/MainWindow.ui
--- vidalia-0.2.15.orig/src/vidalia/MainWindow.ui 2011-10-07 14:16:56.000000000 -0500
+++ vidalia-0.2.15/src/vidalia/MainWindow.ui 2012-02-14 13:29:55.000000000 -0600
@@ -12,7 +12,7 @@
<property name="maximumSize" >
<size>
<width>16777215</width>
- <height>1</height>
+ <height>0</height>
</size>
@h3xx
h3xx / elinks-git_ruby-1.9.1_compat.patch
Created March 4, 2012 01:38
Patch to fix elinks to work with Ruby 1.9.1+
@h3xx
h3xx / rapidsvn-0.12.0-1_wxWidgets_api_compat.patch
Created March 9, 2012 01:50
Fix rapidsvn-0.12.0-1 wxWidgets 2.8 compatibility
This patch fixes the following error in rapidsvn-0.12.0-1 when compiling against wxWidgets without 2.6 compatibility enabled:
preferences_dlg.cpp: In member function 'bool PreferencesDlg::SelectExecutable(const wxString&, wxTextCtrl*)':
preferences_dlg.cpp:129:41: error: 'wxOPEN' was not declared in this scope
listener.cpp: In member function 'void Listener::Data::callbackSslClientCertPrompt()':
listener.cpp:170:44: error: 'wxOPEN' was not declared in this scope
listener.cpp:170:53: error: 'wxFILE_MUST_EXIST' was not declared in this scope
diff -ru rapidsvn-0.12.0-1.orig/src/listener.cpp rapidsvn-0.12.0-1/src/listener.cpp
--- rapidsvn-0.12.0-1.orig/src/listener.cpp 2009-10-20 01:49:10.000000000 -0500
▗▄▄▄▄▄▄▄▟▄▄▄▄▄▄
▐██████████████████▙▄▄
███████████████████████▄
▐████████████████████████▌
██████████████████████████
▐██████████████████████████▌
███████████████████████████▌
▗███████████████████████████▀
▟███████████████████████████████████▄▄▖
▐████████████████████████████████████████▄
@h3xx
h3xx / glitch-jpeg.pl
Created December 26, 2013 07:15
Add deliberate errors to JPEG files (or any files)
#!/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).
@h3xx
h3xx / qq.cpp
Last active February 7, 2016 17:30
Solver for Energy Balance
// GistID: c61ccc4fe17d876defa7
#include <iostream>
#include <fstream>
#include <vector>
#include <math.h>
#include <algorithm>
using namespace std;
template <typename T>
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)