Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@re1ro
re1ro / grunt.js
Created February 1, 2013 16:22
grunt config for coffee project
module.exports = function (grunt) {
"use strict";
grunt.loadNpmTasks('grunt-bg-shell');
// Project configuration.
grunt.initConfig({
bgShell: {
watchCoffee: {
@re1ro
re1ro / rAF.js
Created August 16, 2012 16:02
requestAnimationFrame polyfill
// requestAnimationFrame polyfill by @rma4ok
!function (window) {
var
equestAnimationFrame = 'equestAnimationFrame',
requestAnimationFrame = 'r' + equestAnimationFrame,
ancelAnimationFrame = 'ancelAnimationFrame',
cancelAnimationFrame = 'c' + ancelAnimationFrame,
expectedTime = 0,