Skip to content

Instantly share code, notes, and snippets.

View edoguido's full-sized avatar

Edoardo Guido edoguido

View GitHub Profile

Keybase proof

I hereby claim:

  • I am edoguido on github.
  • I am edoguido (https://keybase.io/edoguido) on keybase.
  • I have a public key ASCgA5otEWFjy7TISfhRlz5SOpjN6pmUWGLG1vBT1u3XMwo

To claim this, I am signing this object:

{
"Farmacie": {
"icon": "👩‍⚕️",
"data": [
{
"name": "Farmacia Duse",
"tel": "",
"whatsapp": "3429518047",
"mail": "",
"city": "monza",
@edoguido
edoguido / easing.js
Created December 17, 2018 10:09 — forked from gre/easing.js
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {
// no easing, no acceleration
linear: function (t) { return t },
// accelerating from zero velocity
easeInQuad: function (t) { return t*t },
// decelerating to zero velocity