View proxy.py
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/python | |
import json | |
from subprocess import Popen, PIPE | |
txt = raw_input(); | |
cmd = txt.split() | |
o = None | |
e =None | |
try: | |
p = Popen(cmd, stdout=PIPE, stderr=PIPE) |
View 1fh.vcl
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
backend default { | |
.host = "127.0.0.1"; # IP address of your backend (Apache, nginx, etc.) | |
.port = "8080"; # Port your backend is listening on | |
} | |
sub vcl_recv { | |
# Set the URI of your system directory | |
if (req.request == "POST" || req.http.X-Requested-With == "XMLHttpRequest") | |
{ |
View bootstrap.php
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 | |
register_shutdown_function(function() { | |
$error = error_get_last(); | |
$message = $error['message']; | |
if ($error['type'] == 64 && !empty($message)) { | |
throw new Exception($message); | |
} | |
}); |
View fb.js
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
$(document).ready(function() { | |
function rC(nam) {var tC = document.cookie.split('; '); for (var i = tC.length - 1; i >= 0; i--) {var x = tC[i].split('='); if (nam == x[0]) return unescape(x[1]);} return '~';} | |
function wC(nam,val) {document.cookie = nam + '=' + escape(val);} | |
function lC(nam,pg) {var val = rC(nam); if (val.indexOf('~'+pg+'~') != -1) return false; val += pg + '~'; wC(nam,val); return true;} | |
function firstTime(cN) {return lC('meskuciobatonelis',cN);} | |
function thisPage() {var page = location.href.substring(location.href.lastIndexOf('\/')+1); pos = page.indexOf('.');if (pos > -1) {page = page.substr(0,pos);} return page;} | |
if (firstTime(thisPage())) { | |
$('<div>') |
View gist:6f1dc21481ec98ad0ae5
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
Verifying that +putna is my Bitcoin username. You can send me #bitcoin here: https://onename.io/putna |
View fb_friends.py
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
import requests | |
import json | |
import urllib2 | |
import webbrowser | |
from pprint import pprint | |
token = '' | |
api_url = 'https://graph.facebook.com/v2.1/' | |
params = {'access_token' : token} |
View latest.html
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> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<div class="container"> | |
<p> | |
<a href="#" class="release-download btnd btnd-1 btnd-1d">Download</a> |
View RabbitRpc.php
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 | |
use PhpAmqpLib\Connection\AMQPConnection; | |
use PhpAmqpLib\Message\AMQPMessage; | |
class RabbitRpc | |
{ | |
const TIMEOUT = 15; |
View static_server.js
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
var http = require("http"), | |
url = require("url"), | |
path = require("path"), | |
fs = require("fs") | |
port = process.argv[2] || 8888; | |
http.createServer(function(request, response) { | |
var uri = url.parse(request.url).pathname | |
, filename = path.join(process.cwd(), uri); |
View Facebook.php
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 | |
namespace Ai; | |
class Facebook | |
{ | |
private $token; | |
public function __construct($token) | |
{ | |
$this->token = $token; |
OlderNewer