I hereby claim:
- I am JCMais on github.
- I am jonathancardoso (https://keybase.io/jonathancardoso) on keybase.
- I have a public key whose fingerprint is BA38 640E FD59 598A 5ACB F22D A1D2 A6FA 4FD5 02D8
To claim this, I am signing this object:
Array.prototype.duplicates = function ( ) { | |
return this.filter ( function ( x , y , k ) { | |
return y !== k.lastIndexOf ( x ); | |
}); | |
}; | |
Array.prototype.hasDuplicates = function ( ) { | |
var me = this; | |
return me.some ( function ( idx ) { | |
return me.indexOf( idx ) !== me.lastIndexOf ( idx ); |
Drop in replace functions for setTimeout() & setInterval() that | |
make use of requestAnimationFrame() for performance where available | |
http://www.joelambert.co.uk | |
Copyright 2011, Joe Lambert. | |
Free to use under the MIT license. | |
http://www.opensource.org/licenses/mit-license.php |
DO WTF YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Alexey Silin <[email protected]> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WTF YOU WANT TO PUBLIC LICENSE |
/** | |
* Javascript implementation of the Itearated Logarithm {@link http://en.wikipedia.org/wiki/Iterated_logarithm} | |
* @author Jonathan Cardoso | |
* | |
* @param {Number} n The number to get the iterated logarithm. | |
* @return {Number} | |
*/ | |
var iteratedLog = function( n ) { | |
var result = 0; |
#include <SPI.h> | |
#include <Adafruit_WS2801.h> | |
#include <FastLED.h> | |
#define ADAFRUIT 1 | |
#define NUM_LEDS 17 | |
#define DATA_PIN 11 | |
#define CLOCK_PIN 13 |
I hereby claim:
To claim this, I am signing this object:
{ | |
"tools":{ | |
"axe" : { | |
"toollist": [ | |
"abyssalcraft:aaxe", | |
"abyssalcraft:coraxe", | |
"abyssalcraft:dreadiumaxe", | |
"abyssalcraft:daxe", | |
"abyssalcraft:daxe", | |
"abyssalcraft:ethaxiumaxe", |
'use strict'; /** | |
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
* | |
* | |
*/ |
// @flow | |
// https://github.com/FormidableLabs/react-native-svg-mock | |
import React from 'react'; | |
const createComponent = function(name: string) { | |
return class extends React.Component { | |
// overwrite the displayName, since this is a class created dynamically | |
static displayName = name; |