Skip to content

Instantly share code, notes, and snippets.

View tincho's full-sized avatar

Martin tincho

View GitHub Profile
@tincho
tincho / ary.js
Created December 6, 2018 14:53
ES5 vs ES6 function for fix a function to take up to N-arguments (see N-ary or arity)
// pre-ES6
function _ary(fn, arity) {
arity = arity || 1;
return function() {
// could use Array.from(arguments).slice(0, arity) ?
var args = Array.prototype.slice.call(arguments, 0, arity);
return fn.apply(null, args);
};
}
/**
* @license MIT
* @requires AngularJs 1.x
* @author github.com/tincho
* Tiny helper for listener deregistration on scope destroy
* You'll have to wrap it up in a module/provider/whatever
* (that's out of my focus)
*/
function LDisposer(scope) {
var _list = [];
@tincho
tincho / roller.js
Created November 22, 2018 19:09
timer function to change contents of DOM element at given interval (default: 5s)
// first iteration
// v0.1
(function(globalObject, document) {
function randomItem(collection) {
var index = Math.floor(Math.random() * collection.length);
return collection[index];
}
@tincho
tincho / alltogethernow.js
Last active June 11, 2018 16:17
all functional-programming js tools i've written
// var logHello = _partial(console.log, "hello ");
// logHello("world");
// accepts _partial (fn reference) as placeholder just like underscore accepts _
// var partialApplied = _partial(originalFn, _partial, "second", _partial, "fifth");
// partialApplied("first", "third") will call originalFn("first", "second", "third", "fifth")
function _partial() {
var args = Array.prototype.slice.call(arguments);
var method = args.shift();
var self = this;
@tincho
tincho / download.js
Created October 25, 2017 16:15
script for downloading HTTP-Auth'ed file through XHR
var form = document.getElementById("dlFile");
form.onsubmit = function(e) {
e.preventDefault();
var user = form.user.value; // "mayoristas";
var pass = form.pass.value;
requestFile(user, pass);
return false;
}
@tincho
tincho / Ajaxify.js
Created June 28, 2017 19:14
simple jquery snippet to override a native form's with an ajax call
// requires jQuery!
const noop = () => {};
const constant = v => () => v;
const beTrue = constant(true); // () => true;
function $Ajaxify(form, ...callbacks) {
if (typeof callbacks[0] === 'object') {
var {
onSuccess = noop, onError = noop, beforeSend = beTrue
@tincho
tincho / introrx.md
Created March 2, 2017 13:30 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@tincho
tincho / compose.js
Last active January 9, 2017 20:30
ES6 compose
// both answers copied from challange posted at e-mail list of my former job
// not-so oneliner
var compose = function () {
var composableFunctions = Array.prototype.slice.call(arguments).reverse();
return (x) => composableFunctions.reduce((result, composable) => composable(result), x);
/*
ES5:
return function(x) {
return composableFunctions.reduce(function(result, composable) {
@tincho
tincho / getData.js
Created December 29, 2016 16:00
Sample vainilla XHR get function
function getData(uri, done, evt) {
var request = new XMLHttpRequest();
request.open('GET', uri);
request.onreadystatechange = function() {
if(! (request.readyState == 4 && request.status === 200)) {
return;
}
return done(request);