Skip to content

Instantly share code, notes, and snippets.

View EliTheCoder's full-sized avatar
😀

Eli Frigo EliTheCoder

😀
View GitHub Profile
// Code By: EX master
// Website: EX-Games.org
// Add Bookmarklet with URL: 'javascript:(function() {Game.LoadMod('https://gist.github.com/EXmaster9/4572b8e9f9a12671514cf0968613afa3.js');}());'
// _____ _ _ _____ _
// / ____| | | (_) / ____| | |
// | | ___ ___ | | ___ ___ | | ___ _ __ ___ _ __ ___ __ _ _ __ __| | ___ _ __
// | | / _ \ / _ \| |/ / |/ _ \ | | / _ \| '_ ` _ \| '_ ` _ \ / _` | '_ \ / _` |/ _ \ '__|
// | |___| (_) | (_) | <| | __/ | |___| (_) | | | | | | | | | | | (_| | | | | (_| | __/ |
// \_____\___/ \___/|_|\_\_|\___| \_____\___/|_| |_| |_|_| |_| |_|\__,_|_| |_|\__,_|\___|_|
// MultiPlayerPiano.com
// Paste into JS Console:
var currentchord = 0;
var c = ["c3","e3","g3"];
var em = ["b3","e3","g3"];
var am = ["a3","c3","e3"];
var f = ["a3","c3","f3"];
var song = [c,em,am,f];
window.addEventListener("keyup", function (e) {if (e.keyCode==32) {MPP.press(song[currentchord][0],1);MPP.press(song[currentchord][1],1);MPP.press(song[currentchord][2],1);}});
setInterval(function(){currentchord++;if(currentchord==4){currentchord=0}},2000)
javascript:(function () { var refreshRate = 100; var particleLimit = 15; var snake = { x: (window.innerWidth * Math.random()) - window.pageXOffset, y: (window.innerHeight * Math.random()) - window.pageYOffset, dx: Math.ceil(Math.random() * 30) - 15, dy: Math.ceil(Math.random() * 30) - 15, atan2: Math.atan2(this.dx, this.dy) + (Math.PI / 2), body: [], update: function () { // IIC.setAngle(Math.ceil(Math.random() * 360) * Math.PI / 180); if (this.x < 0) { this.x = 0; this.dx = -this.dx; } else if (this.x > window.innerWidth) { this.x = window.innerWidth; this.dx = -this.dx; } if (this.y < 0) { this.y = 0; this.dy = -this.dy; } else if (this.y > window.innerHeight) { this.y = window.innerHeight; this.dy = -this.dy; } var ddx = (this.dx + ((Math.random() * 10) - 5)); var ddy = (this.dy + ((Math.random() * 10) - 5)); this.x = this.x + ddx; this.y = this.y + ddy; this.atan2 = M
var refreshRate = 100; var particleLimit = 15;
var snake = {
x: (window.innerWidth * Math.random()) - window.pageXOffset,
y: (window.innerHeight * Math.random()) - window.pageYOffset,
dx: Math.ceil(Math.random() * 30) - 15,
dy: Math.ceil(Math.random() * 30) - 15,
atan2: Math.atan2(this.dx, this.dy) + (Math.PI / 2), body: [],
update: function () {
if (this.x < 0) { this.x = 0; this.dx = -this.dx;}
else if (this.x > window.innerWidth) { this.x = window.innerWidth; this.dx = -this.dx; }
IIC.onChat((id,n,m) => {
if (n !== "Name") {
switch (m) {
case "hello":
say("Hello there!");
break;
}
}
});
let bint2bin = (bint) => {
let bintarr = bint.split(" "); // puts the string of numbers seperated by spaces into an array
let togg = false; // toggles whether the number means 0 or 1 (false is 0, true is 1)
let result = ""; // the string we will put all the binary numbers into
for (let i = 0; i < bintarr.length; i++) {
let str = ""; // string of 0s or 1s to add to result
for (let n = 0; n < parseInt(bintarr[i]); n++) {
if (togg) {
str += "1"; // adds a 1 to str
} else {
let person = 0;
let toggle = false;
window.addEventListener("keydown", (e)=>{
if (e.keyCode == 219) {
if (person == 0) {
person = IIC.getConnectedIds.length-1;
} else {
person--;
}
}
Johnny was a king
Sid was magnificent
Angus was nothing
Lennen was nothing
The river was nothing
While Angus is weaker than Johnny,
Build Angus up
Put Lennen with Sid into the river
Put Sid into Lennen
function factorial(num) {
let answer = 1;
for (let i = 0; i < num; i++) {
answer *= num
num--;
}
return answer;
}

Keybase proof

I hereby claim:

  • I am elithecoder on github.
  • I am elithecoder (https://keybase.io/elithecoder) on keybase.
  • I have a public key whose fingerprint is 0250 C532 F502 5BC1 ADC4 1333 17B3 2BAC 4B0A A3B6

To claim this, I am signing this object: