Skip to content

Instantly share code, notes, and snippets.

View ACPixel's full-sized avatar

Pixel ACPixel

View GitHub Profile
@ACPixel
ACPixel / snake.js
Created May 28, 2018 04:58
Snake on launchpad
var midi = require('midi');
// Set up a new output.
var output = new midi.output();
var input = new midi.input();
output.openPort(0);
input.openPort(0)
@ACPixel
ACPixel / captcha.js
Created February 28, 2018 18:39
Captcha finder
const doesClassExist = (c)=>{
let item = document.getElementsByClassName(c);
if (item.length > 0) {
return true;
} else {
return false;
}
}