Skip to content

Instantly share code, notes, and snippets.

View LandonPowell's full-sized avatar
🏴
Nestor Makhno's Ghost 2020

Landon J. Powell LandonPowell

🏴
Nestor Makhno's Ghost 2020
View GitHub Profile
@LandonPowell
LandonPowell / anime.py
Last active June 30, 2016 15:37 — forked from Getindor/anime.py
rei rate my desktop :3333333 xddd asuka miku rate my desktop rei miku waifu miku anime is technology rate my desktop :3 rate my desktop waifu s-senpai :3333333 rate my desktop rei s-senpai :3 rate my desktop rei miku s-senpai asuka miku anime is technology miku rei xddd rate my desktop anon-kun s-senpai rei rei anon-kun waifu :3333333 waifu anim…
import random
trash = ":3.xddd.rate my desktop.senpai.anon-kun.:3333333.s-senpai.anime is technology.waifu.no bully.asuka.rei.miku.desu".split('.')
i = int(input("h-how much anime do you want senpai: "))
print(" ".join( random.choice(trash) for _ in range(i) ))
@LandonPowell
LandonPowell / mostHorribleCode1.js
Created July 20, 2016 06:03
The most horrible code in the god damn world.
for(;;){alert(["\u0059\u004f\u0055" + (` r` || 'regexLibrary' && ".active_##"), (3735928559).toString(16).substr(0, 4), (3735928559).toString(16).substr(4)].join(" ").toUpperCase())}
@LandonPowell
LandonPowell / mostHorribleCode2.py
Last active July 20, 2016 06:21
Even in glorious Python, the most horrible code possible can be written. I'm not man enough to actually test this out. WARNING: HARMFUL.
for _ in range(int(42 == 420/10)):
while int(not _):
_+=int(not 1336 == 666)
with open(hex(_), "a+") as ride_my_eggplant:
ride_my_eggplant.write(str(_) * 6661337420)
@LandonPowell
LandonPowell / FizzGen.py
Last active August 10, 2016 14:00
Someone on 4chan's /g/ board posted bad code so I sperged out and wrote this.
from sys import argv
def generatePrimes(words):
limit = len(words) ** 2
notPrimes = []
for a in range(3, limit):
for b in range(a * 2, limit, a):
notPrimes += [b]
notPrimes = set(notPrimes)
@LandonPowell
LandonPowell / asshole.html
Created September 20, 2016 01:53
Very Small Asshole XSS
<script>for(;;)alert()</script>
<(\w*) *(?:(\w*)(?:=("[^"]*"|[^"]*) *)?)*>([^<]*)<\/\1>
@LandonPowell
LandonPowell / polbot.py
Last active January 16, 2017 20:45
Stop browsing /pol/, start running this python script from your terminal instead.
import random
vocabulary = {
"[negative_noun]" : ["whiteknight", "cuck", "jew", "anti-white", "ahmed", "shill"]
}
templates = [
"you're a [negative_noun]",
"fuck off [negative_noun]",
"nice try [negative_noun]",
@LandonPowell
LandonPowell / The_Face_of_True_Terror.php
Last active January 29, 2017 23:00
THE MOTHER OF ALL PHP PROGRAMS. TRULY A HORRIFYING SITE TO BEHOLD!
<?php
/*
One script to rule them all.
*/
/* Simple FizzBuzz */
for ($x = 1; $x <= 100; $x++) {
if ($x%3 == 0) echo "Fizz";
if ($x%5 == 0) echo "Buzz";
@LandonPowell
LandonPowell / not_a_vuln.js
Created February 20, 2017 00:47
Chrome Said This Was Okay
/*
Using these three functions, start in chrome://settings/passwords
*/
function listSites() {
var listOfSites = document.getElementById("saved-passwords-list").children;
var list = [];
for (var i = 0; i < listOfSites.length; i++) {
if (listOfSites[i].className != "spacer")
list.push(listOfSites[i].children[0].children[0].title);
@LandonPowell
LandonPowell / HackerTyper.py
Last active May 31, 2017 04:04
Basically I made hackertyper.net but now you can run it in a terminal with whatever file you want and look even more hacker than usual.
import curses
import curses.ascii
from sys import argv
def main(screen):
global termsize
# Startup.
screen.clear()
curses.start_color()
curses.use_default_colors()