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
for(int x = 0; x < 3; x++) { | |
if(this.getElement(x, 0) == this.getElement(x, 1) && this.getElement(x, 0) == this.getElement(x, 2)) { | |
return true; | |
} | |
} |
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
:!diff -u js/proxyManager.js js/proxyManager-mine.js | |
--- js/proxyManager.js 2013-07-06 11:27:25.000000000 +0200 | |
+++ js/proxyManager-mine.js 2013-07-06 11:26:41.000000000 +0200 | |
@@ -176,7 +176,7 @@ | |
case "manual": | |
if (!proxy.data.pac || proxy.data.pac.length == 0) { | |
console.log("regular proxy manual used"); | |
- proxyStr = '"' + (proxy.data.isSocks ? "SOCKS " : "PROXY ") + proxy.data.host + ":" + proxy.data.port + '"'; | |
+ proxyStr = '"' + (proxy.data.isSocks ? (proxy.data.socks == 5 ? "SOCKS5 " : "SOCKS ") : "PROXY ") + proxy.data.host + ":" + proxy.data.port + '"'; | |
} else { |
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
nicholas@nicklaptop:~/code/metacpan_api_server$ dzil listdeps | |
!!! [CompileTests] is deprecated and may be removed in a future; replace it with [Test::Compile] | |
!!! [MinimumVersionTests] is deprecated and will be removed in a future release; replace it with [Test::MinimumVersion] at /home/nicholas/installed/perl5/perls/perl-5.14.2/lib/site_perl/5.14.2/Dist/Zilla/Plugin/MinimumVersionTests.pm line 13. | |
couldn't determine document name for bin/write_config_json at /home/nicholas/installed/perl5/perls/perl-5.14.2/lib/site_perl/5.14.2/Pod/Weaver.pm line 73 |
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
Installing Oracle 8.1.7 client libs to then build DBD::Oracle 1.14 | |
A final, successful result flowed from the following environment: | |
Debian 3.0 (Woody) installed into a VM from isos. | |
VM environment provides ne2k-pci network card. | |
STEPS FROM THE HOST |
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
So let's put some potential locations down for meet up with a few criteria: | |
1) Non-smoking. | |
2) Not too loud. | |
3) Somewhat affordable. | |
3) One or two locations per quadrant of the metroplex. | |
Potential locations for DFW.pm social meet up: | |
* |
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
Mar 10, 2010 08:09:14 PST | Transaction ID: XXXXXXXX | |
Hello NICHOLAS R PEREZ, | |
You sent a payment of $9.95 USD to Rock Solid Games ([email protected]) | |
It may take a few moments for this transaction to appear in your account. |
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
sudo plackup -p 80 hacks.psgi |
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
use Web::Simple 'Hacks'; | |
{ | |
package Hacks; | |
use IO::All; | |
dispatch | |
{ | |
sub (GET + /verify/Robokill/*/*/) | |
{ | |
my ($self, $email, $salt) = @_; |
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
# pseudo code | |
if($result eq 'Valid ' . $salt) | |
{ | |
# THANKS FOR REGISTERING | |
} |
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
use Web::Simple 'Hacks'; | |
{ | |
package Hacks; | |
use IO::All; | |
use Digest::MD5('md5_hex'); | |
dispatch | |
{ | |
sub (GET + /verify/Robokill/*/*/) | |
{ |
NewerOlder