Skip to content

Instantly share code, notes, and snippets.

View Vap0r1ze's full-sized avatar
🤍

Justice Almanzar Vap0r1ze

🤍
  • 11:03 (UTC -04:00)
View GitHub Profile
@devsnek
devsnek / funcord.js
Last active December 27, 2020 08:31
super cool custom discord client with nice events for your browser
'use strict';
class EventEmitter {
on(e, d) {
window.addEventListener(e, eOn);
function eOn(e) { // this function is optional, but you will need to use d.details in your event listener
d.apply(this, e.detail)
}
}
@parmentf
parmentf / GitCommitEmoji.md
Last active March 28, 2024 14:20
Git Commit message Emoji
@gre
gre / easing.js
Last active March 19, 2024 01:19
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the COPYING file for more details.
*/
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {