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 IO::Socket; | |
use Fcntl; | |
# IOCTLs | |
$TIOCGPTN = -2147199952; | |
$TIOCSPTLCK = 1074025521; | |
$EAGAIN=11; |
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
?php | |
error_reporting(E_ERROR | E_PARSE); | |
ignore_user_abort(TRUE); | |
$packets = 0; | |
set_time_limit(0); | |
$length=65000; | |
$sp=1; | |
function rndstr($length) { | |
$charset = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; |
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
require 'nokogiri' | |
require 'open-uri' | |
def get_cve_description_text(cve_id) | |
cve_search = Nokogiri.HTML(open("http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=#{cve_id}")) | |
description = cve_search.xpath('//*[@id="GeneratedTable"]') | |
description_text = description.text | |
begin | |
description_text = description[0].children[1].children[3].text | |
rescue => e |
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
### Keybase proof | |
I hereby claim: | |
* I am diogomonica on github. | |
* I am diogomonica (https://keybase.io/diogomonica) on keybase. | |
* I have a public key whose fingerprint is 9D76 4CD5 0699 B67B 5840 5663 2392 3F3E 3881 7C25 | |
To claim this, I am signing this object: |
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
require 'rubygems' | |
require 'mechanize' | |
require 'pry' | |
def start_url() | |
return "https://booknow.appointment-plus.com/6gj719v2/" | |
end | |
url = start_url() | |
agent = Mechanize.new { |agent| |
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
insserver@bear:~/serverfiles/insurgency/cfg$ cat ins-server.cfg | |
// server name | |
hostname "Amor de Gandalf" | |
// rcon passsword | |
rcon_password "?????????" | |
// Server password | |
sv_password "bruno" | |
// --------------------------------------------------------------- |
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
<!DOCTYPE html> | |
<head> | |
<title>fft.js</title> | |
<script src='lib/real.js'></script> | |
<script src='lib/complex.js'></script> | |
<script> | |
var input = new Float64Array(32); | |
var result = new Float64Array(64); |
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
require 'rubygems' | |
require 'mechanize' | |
FIRST_NAME = 'FIRST_NAME' | |
LAST_NAME = 'LAST_NAME' | |
PHONE = 'PHONE' | |
EMAIL = '[email protected]' | |
PARTY_SIZE = 2 | |
SCHEDULE_RANGE = { :start_time => '19:00', :end_time => '20:30' } |
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 | |
url="http://rez.urbanspoon.com/b/widget/2086?background=ebf3fd&border=bbd4f1&header=000&link=0144a7&locale=en&source=selfhost&text=000" | |
hash=`cat /tmp/state_bird` | |
`curl $url | md5sum | awk '{print $1}' > /tmp/state_bird` | |
newhash=`cat /tmp/state_bird` | |
if [[ "$hash" != "$newhash" ]]; then echo "Reservations page just changed: http://statebirdsf.com/reservations/ - $newhash" | mail -s Reservations [email protected]; fi |
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
require 'rubygems' | |
require 'nokogiri' | |
ATTRIBUTES = ['accelx', 'accely', 'accelz', 'altitude', | |
'depth', 'heading', 'lat', 'long', 'pitch', | |
'pitchrate', 'roll', 'rollrate', 'yawrate'] | |
f = File.open(ARGV[0]) | |
doc = Nokogiri::XML(f) | |
f.close |