Skip to content

Instantly share code, notes, and snippets.

View JayantGoel001's full-sized avatar
♠️
If I lose it all, slip and fall, I will never look away.

Jayant Goel JayantGoel001

♠️
If I lose it all, slip and fall, I will never look away.
View GitHub Profile
@JayantGoel001
JayantGoel001 / easing.js
Created November 25, 2021 08:50 — 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: t => t,
// accelerating from zero velocity
easeInQuad: t => t*t,
// decelerating to zero velocity
@JayantGoel001
JayantGoel001 / codeforces.py
Created May 2, 2021 16:50 — forked from mishraprakhar11/codeforces.py
For both Win/Linux OS.
#If you system lacks any module, install it by help of google.
#further details in blog.
from sys import argv
import urllib2
import json
import time
import easygui
script , friends = argv
txt = open(friends).read()