Skip to content

Instantly share code, notes, and snippets.

@dvp0
dvp0 / ease.js
Created October 17, 2018 23:34 — forked from davidgilbertson/ease.js
function ease({
startValue = 0,
endValue = 1,
durationMs = 200,
onStep,
onComplete = () => {},
}) {
const raf = window.requestAnimationFrame || (func => window.setTimeout(func, 16));
const stepCount = durationMs / 16;
@dvp0
dvp0 / quotes_db.sql
Created January 22, 2019 16:20 — forked from jiskandar/quotes_db.sql
this is quotes database that i've grab from web
This file has been truncated, but you can view the full file.
-- phpMyAdmin SQL Dump
-- version 3.5.2.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 01, 2013 at 07:57 AM
-- Server version: 5.5.27
-- PHP Version: 5.4.7
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";