-
Steg 1: Gå in på http://www.facebook.com/pokes i Firefox(eller nån annan webbläsare som kan köra Javascript, som t.ex med GreaseMonkey)
-
Steg 2: Öppna ett kladdblock i Firefox(eller skapa skript till GreaseMonkey som sagt) och lägg in denna kod: https://gist.github.com/ArmedGuy/5438437
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
setInterval(function() { | |
a=document.getElementsByTagName("a"); | |
for(i in a){if(a[i].className == "uiIconText") | |
{ | |
if(a[i].getAttribute("ajaxify").indexOf("pokeback=1") !== -1) { | |
a[i].click(); | |
} | |
} | |
} | |
}, 500); |
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
#!/bin/sh | |
apt-get update | |
apt-get upgrade | |
apt-get remove --purge apache2* | |
apt-get remove --purge bind9* | |
apt-get remove --purge xinetd* | |
apt-get install nano |
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
var net = require('net'); | |
var crypto = require('crypto'); | |
var util = require('util'); | |
var events = require('events'); | |
function rcon(options) { | |
$rcon = this; | |
this.client = net.connect( | |
{ | |
host: options.host, | |
port: options.port |
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
http://steamcommunity.com/app/6840/discussions/0/864973760877927926/ | |
https://sites.google.com/site/xbootx/home/commandos3 |
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
from university import LTU | |
class data14(LTU): | |
def __init__(self, tits): | |
if tits == True: | |
self.welcome() | |
else: | |
self.gtfo() | |
#JOMO #geFanI #KKKK |
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
class BinaryTree: | |
def __init__(self, rootNode): | |
self.root = rootNode | |
def __getNodes(self): | |
return [self.root] + self.root.nodes | |
nodes = property(__getNodes) | |
class BinaryNode: | |
def __init__(self, name, value): |
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
#!/usr/bin/env python | |
import sys | |
import os | |
import os.path | |
import subprocess | |
nginx_conf = """ | |
server { | |
server_name %s; |