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
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> |
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
diff -ru elinks.orig/src/scripting/ruby/core.c elinks/src/scripting/ruby/core.c | |
--- elinks.orig/src/scripting/ruby/core.c 2009-12-04 21:47:38.000000000 -0600 | |
+++ elinks/src/scripting/ruby/core.c 2009-12-04 21:41:43.000000000 -0600 | |
@@ -76,10 +76,10 @@ | |
break; | |
case TAG_RAISE: | |
case TAG_FATAL: | |
- eclass = CLASS_OF(ruby_errinfo); | |
- einfo = rb_obj_as_string(ruby_errinfo); | |
+ eclass = CLASS_OF(rb_errinfo); |
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
#!comment: This is a list of the top 100,000 most frequently-used English words | |
#!comment: according to Wiktionary. | |
#!comment: | |
#!comment: It was compiled in August 2005 and coalesced into a handy list for | |
#!comment: use in John the Ripper. | |
#!comment: | |
#!comment: | |
#!comment: Pull date: Sun Jan 15 22:03:54 2012 GMT | |
#!comment: | |
#!comment: Sources: |
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
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 |
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
▗▄▄▄▄▄▄▄▟▄▄▄▄▄▄ | |
▐██████████████████▙▄▄ | |
███████████████████████▄ | |
▐████████████████████████▌ | |
██████████████████████████ | |
▐██████████████████████████▌ | |
███████████████████████████▌ | |
▗███████████████████████████▀ | |
▟███████████████████████████████████▄▄▖ | |
▐████████████████████████████████████████▄ |
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
#!/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 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
#!/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 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
#!/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 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
--- 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 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
/** | |
* 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; |
OlderNewer