Skip to content

Instantly share code, notes, and snippets.

@IUnknown68
IUnknown68 / ArrowWorklet.js
Last active January 19, 2022 15:13
Houdini example
class ArrowWorklet {
static get contextOptions() {
return { alpha: true };
}
static get inputProperties() {
return [
'--arrow-bg-color',
'--arrow-outline-color',
'--arrow-length',
@IUnknown68
IUnknown68 / multitasking.js
Last active May 19, 2019 12:29
Cooperative multitasking for javascript
function multiTasking(schedule = setTimeout) {
const taskList = new Set();
let isRunning = false;
let isScheduled = false;
const next = () => {
isScheduled = false;
taskList.forEach(task => {
if (!isRunning) {
return;
@IUnknown68
IUnknown68 / combineAll.js
Created August 21, 2017 18:35
Creates all possible combinations of all entries of multiple arrays.
const combineAll = (function() {
/**
* Returns a `forEach`-function that either, when on a leaf, calls the callback,
* or calls `combine()` when on a branch.
* @param {Function} cb Callback
* @param {Array} arrays Array of arrays containing values to be combined.
* @param {Number} level Index in `arrays` the previous recursion is processing.
* @param {Array} pathValues Array containing values up to `level`
* @param {Array} pathIndices Array containing indices up to `level`
* @return {Function} Function to be supplied to `forEach` in `combine()`-functions.
@IUnknown68
IUnknown68 / debounceAndThrottle.js
Created June 2, 2017 06:09
Combined debounce and throttle
function debounceAndThrottle(fn, timeout) {
var throttled = _.throttle(function() {
fn.apply(null, arguments);
}, timeout)
return _.debounce(function() {
throttled.apply(null, arguments);
}, timeout);
}
var fn = debounceAndThrottle((a, b) => {
@IUnknown68
IUnknown68 / colorBrowserConsole.js
Created May 21, 2017 12:47
Adds color functions to the browser-console (e.g. console.green() or console.greenB() for bold-green. Simple and primitive.
(() => {
['white', 'silver', 'gray', 'black', 'red', 'maroon', 'yellow', 'olive', 'lime',
'green', 'aqua', 'teal', 'blue', 'navy', 'fuchsia', 'purple'
].forEach(color => {
console[color] = (...args) => {
console.log(`%c${args.join(' ')}`, `color:${color}`)
}
console[`${color}B`] = (...args) => {
console.log(`%c${args.join(' ')}`, `color:${color};font-weight:bold`)
}
@IUnknown68
IUnknown68 / MPromise.js
Last active September 28, 2018 01:39
Promise that can be resolved with multiple values.
class MPromise extends Promise {
constructor(executor) {
super((resolve, reject) =>
executor((...args) => resolve(args), (...args) => reject(args))
);
}
then(onFulfilled, onRejected) {
return super.then(
onFulfilled ? (args) => onFulfilled(...args) : undefined,
function step1(result) {
console.log('call step1');
return new Promise(function(resolve, reject) {
console.log('resolve step1');
result['step1'] = 'Step 1';
return resolve(result);
});
}
function step2(result) {
@IUnknown68
IUnknown68 / doWhen.js
Last active January 27, 2016 09:15
Run fn when Promise.all on remaining arguments gets resolved.
// Sugar.
// Instead of
//
// Promise.all([2, calculateValB(3), calculateValC(4)]).then((result) => {
// var res = calculateResult(result[0], result[1], result[2]);
// /* process result */
// });
//
// write
//
@IUnknown68
IUnknown68 / one-two-five.js
Last active November 25, 2015 13:12
Generate a 1-2-5-10-20-50... scale
function createScale(vals, iterations) {
var m = vals.length * iterations;
for (var n = 0; n < m; n++) {
var x = vals[n % vals.length] * Math.pow(10, Math.floor(n / vals.length));
console.log(x);
}
}
createScale([1,2,5], 3);
/**************************************************************************//**
* @file
* @brief SemVer.js: Semantic version implementation.
* @author Arne Seib <[email protected]>
* @copyright 2015 Arne Seib (http://www.seiberspace.de).
*****************************************************************************/
SemVer = (function() {
//------------------------------------------------------------------------------
// private function: validate `from[name]` with validator `type`.