Skip to content

Instantly share code, notes, and snippets.

@axhixh
axhixh / split_keyboards.md
Created April 25, 2020 00:29 — forked from itod/split_keyboards.md
Every "split" mechanical keyboard currently being sold that I know of
@axhixh
axhixh / instalike.js
Created December 28, 2018 01:53 — forked from jadeallencook/instalike.js
Scripts that auto likes posts on instagram via tag.
let likesGiven = 0;
setInterval(() => {
const heart = document.querySelector('.coreSpriteHeartOpen'),
arrow = document.querySelector('.coreSpriteRightPaginationArrow');
if (heart) likesGiven++, heart.click();
arrow.click();
console.log(`You've liked ${likesGiven} post(s)!`);
}, 10000);
@axhixh
axhixh / reflect.py
Last active April 9, 2016 01:56 — forked from huyng/reflect.py
A simple echo server to inspect http web requests
#!/usr/bin/env python
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE
# Written by Nathan Hamiel (2010)
import os
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
from optparse import OptionParser
class RequestHandler(BaseHTTPRequestHandler):