Skip to content

Instantly share code, notes, and snippets.

View gre's full-sized avatar
3 cups required

@greweb gre

3 cups required
View GitHub Profile
@gre
gre / easing.js
Last active February 26, 2025 11:46
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 = {
@gre
gre / README.md
Created February 3, 2012 18:28
SelectorTemplating is a simple CSS-selector-based JavaScript templating.

SelectorTemplating is a simple CSS-selector-based JavaScript templating.

Whereas most templates use inherence, this one is based on "mixin", You can easily mix template fragment each others with the power of CSS selector (like in a CSS file).

It is made for highly modular and loosely coupled JS libraries or applications.

Hence, It perfectly fits the Scalable JavaScript Application Architecture

More infos

@gre
gre / nsSMILKeySpline.cpp
Created February 27, 2012 17:39
copy pasted from the Firefox source code - this is how Firefox render CSS Transitions Timing Functions.
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
@gre
gre / EasingFunctions.json
Last active January 11, 2023 10:28
DEPRECATED Please use http://github.com/gre/bezier-easing for latest vrrsion.
{
"ease": [0.25, 0.1, 0.25, 1.0],
"linear": [0.00, 0.0, 1.00, 1.0],
"ease-in": [0.42, 0.0, 1.00, 1.0],
"ease-out": [0.00, 0.0, 0.58, 1.0],
"ease-in-out": [0.42, 0.0, 0.58, 1.0]
}
@gre
gre / GridUtils.js
Created March 6, 2012 16:33
Algorithm to find the best grid step for chart rendering
var GridUtils = function() {
var log10 = Math.log(10.)
function powOf10 (n) {
return Math.floor(Math.log(n)/log10)
}
return {
findNiceRoundStep: function (delta, preferedStep) {
var n = delta / preferedStep;
@gre
gre / main.js
Created March 22, 2012 20:11
blog.greweb.fr canvas header
jQuery(function($){
if(!document.createElement('canvas').getContext) return; // canvas is required.
var requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
window.msRequestAnimationFrame ||
@gre
gre / perturbation.frag
Created June 18, 2012 20:19
GLSL Effects used by Drone Tank Arena ( http://dta.greweb.fr/ )
uniform float p;
uniform float amount;
uniform float seed;
uniform float lines;
uniform sampler2D tDiffuse;
varying vec2 vUv;
float rand(vec2 co){
return fract(sin(dot(co.xy ,vec2(12.9898,78.233))) * 43758.5453);
@gre
gre / MonoWaveEncoder.scala
Created July 28, 2012 09:45
Mono Wave Encoder
package encoders;
// Implementing the WAV format here!
case class MonoWaveEncoder (
frameRate: Int = 44100,
samplesPerFrame: Int = 1,
bitsPerSample: Int = 16 // not supported yet (need to adapt the encodeData function)
) {
val bytesPerSamples = ((bitsPerSample+7)/8).toInt
@gre
gre / sine.scala
Created August 2, 2012 16:01
Pure Enumeratee-based sound generation POC for Zound PlayFramework experiment
object Application extends Controller {
val buffSize = 10000
var f = 200.
val rawStream = {
var i = 0;
val ticker = Enumerator.generateM[Int]({
i += 1;
Promise.timeout(Some(i), (1000.*buffSize.toDouble/44100.).toInt)
@gre
gre / Application.scala
Created November 12, 2012 11:10
Generate Zip on-the-fly with Play!> Framework (2.1+)
package controllers
import play.api._
import play.api.mvc._
object Application extends Controller {
def zip = Action {
import play.api.libs.iteratee._
import java.util.zip._