Skip to content

Instantly share code, notes, and snippets.

View haykam821's full-sized avatar

haykam821

View GitHub Profile
@haykam821
haykam821 / signatures.md
Last active April 20, 2020 22:06
Signatures for Java/mixin

Signatures

  • int: I
  • boolean: Z
  • void/no type: V
  • long: J
  • float: F
  • double: D
  • byte: B
  • char: C
@haykam821
haykam821 / index.html
Last active May 29, 2018 14:18
Password hashing vs. plaintext example
<body>
<h2>Hash it!</h2>
<input type="text" id="input"></input><br />
<span id="output">(type text above)</span>
<h2>Login</h2>
<div id="database"></div><br />
Username: <input type="text" id="usr"></input><br />
Password: <input type="password" id="pass"></input><br /><br />

Table of Contents

Keybase proof

I hereby claim:

  • I am haykam821 on github.
  • I am haykam (https://keybase.io/haykam) on keybase.
  • I have a public key ASC-tItngd6v43sPJnhPxGFDrKhlVkky4eYWrIlM07E15Ao

To claim this, I am signing this object:

@haykam821
haykam821 / coordination.js
Last active March 19, 2021 05:22
here you go
var request = require("request");
var Discord = require('discord.io');
var bot = new Discord.Client({
autorun: true,
token: "my token"
});
// Really messy code. Do not code like this.
// Example using function
alert(joinSeparated(['test','+','test'],'+'));
@haykam821
haykam821 / Reverse Binds for Diep.user.js
Last active March 22, 2017 23:12
A TamperMonkey extension to reverse Diep.io's keybinds. This includes 1-8 for stat upgrades, movement using arrow keys and WASD, and C+E.
// ==UserScript==
// @name Reverse Binds for Diep
// @namespace http://reddit.com/user/haykam821/
// @version 0.2
// @description A TamperMonkey extension to reverse Diep.io's keybinds. This includes 1-8 for stat upgrades, movement using arrow keys and WASD, and C+E.
// @author /u/haykam821
// @match http*://diep.io/*
// @grant none
// ==/UserScript==