Skip to content

Instantly share code, notes, and snippets.

View NSFWExpert's full-sized avatar
🐳
in love

Esseff NSFWExpert

🐳
in love
View GitHub Profile
import copy
import json
import os
from openai import OpenAI
client = OpenAI(
api_key="<Your api key here>"
)
@NSFWExpert
NSFWExpert / easing.js
Created October 4, 2023 01:41 — forked from gre/easing.js
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 = {