I hereby claim:
- I am reyjrar on github.
- I am reyjrar (https://keybase.io/reyjrar) on keybase.
- I have a public key ASBhL2F7FpCetTBbHeSajnZusy0pe2QJNTX69go64Lwm_wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
================================================== | |
Changes from 2014-02-27 00:00:00 +0000 to present. | |
================================================== | |
---------------------------------------- | |
version 4.4 at 2016-02-27 07:15:06 +0000 | |
---------------------------------------- | |
Change: 4a832f92659ebc575d2de0948dbb01b8e349138b | |
Author: Brad Lhotsky <[email protected]> |
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Irssi; | |
use Irssi::Irc; | |
use MIME::Lite; | |
use Sys::Hostname; |
WITH dups AS( | |
select response_id, answer_id, section | |
from meta_answer | |
group by response_id, answer_id, section | |
having count(1) > 1 | |
) | |
DELETE FROM meta_answer ma | |
WHERE EXISTS ( | |
SELECT 1 | |
FROM dups |
#!/usr/bin/env perl | |
# | |
use strict; | |
use warnings; | |
use Benchmark qw(cmpthese timethese); | |
my @tests = ( | |
q{testing 12345 some more stuff}, | |
q{123 testing some stuff}, |
Expunge Slave | |
Create Both | |
CopyArrivalDate yes | |
Sync All | |
SyncState * | |
IMAPAccount company | |
Host imap.company.com | |
CertificateFile ~/Certificates/godaddy.pem | |
UseIMAPS yes |
commit 32e77a880484a60431b7e2d841549e0b6a96057f | |
Author: Brad Lhotsky <[email protected]> | |
Date: Wed Apr 2 22:11:05 2014 +0200 | |
Initializing source repository. | |
--- | |
audit_repo: /Users/blhotsky/tmp/repo | |
branch: master | |
reviewer: [email protected] | |
source_repo: [email protected]:reyjrar/Parse-Syslog-Line.git |
#!/usr/bin/env perl | |
# | |
use strict; | |
use warnings; | |
use Benchmark qw(cmpthese); | |
my @tests = ( | |
q{testing 12345 some more stuff}, | |
q{123 testing some stuff}, |
$ ./bin/bit-whois.pl adobe.com | |
adobe.com variation bdobe.com is taken (ns01.domaincontrol.com) | |
adobe.com variation aeobe.com is !! ERROR !! | |
No Match Domain! | |
adobe.com variation acobe.com is taken (ns1.s416.sureserver.com) | |
adobe.com variation adpbe.com is taken (ns2.hastydns.com) | |
adobe.com variation adnbe.com is ** AVAILABLE ** | |
adobe.com variation adoce.com is taken (ns2.warptech.net) | |
adobe.com variation adoae.com is ** AVAILABLE ** | |
adobe.com variation adobf.com is ** AVAILABLE ** |
<decoder name="uptime"> | |
<regex>load avergage: (\S+),</regex> | |
<order>var:load<order> | |
</decoder> | |
<rule id="100000" level="10"> | |
<decoded_as>uptime</decoded_as> | |
<compare var="load" is="numeric" check="gt">2</compare> | |
</rule> |