Honestly, this tool looks like a lot of fun.
- ROT.js GitHub repo
- Manual Front Page
- Example Pineapple Tutorial
- Pineapple Game
- v1 - Multiple Pedros
- v2 - Story Box (No Pop-Ups)
Honestly, this tool looks like a lot of fun.
InfoSec Institute - How legit is that?
And here are the ones that look good to me:
import java.security.*; | |
import java.math.BigInteger; | |
public class md5 { | |
private static MessageDigest md; | |
private static final String charList = "0123456789abcdef"; | |
private static SecureRandom rand = new SecureRandom(); | |
private static final int numLoops = (int)1e6; |
I have moved my work on this hack-a-thon to its own repo.
#!/bin/bash | |
# | |
# Centipede game | |
# | |
# v2.0 | |
# | |
# Author: [email protected] | |
# | |
# Functions |
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# aliases I love | |
alias l='ls -thal' | |
alias lh='ls -thal' |
#!/usr/bin/env python | |
""" | |
XKCD Compile | |
Usage: compile_xkcd.py [FILE.c] | |
Compile your C code XKCD style. | |
Exactly one file must be specified. | |
Inspired by XKCD: https://xkcd.com/1513/ |