I hereby claim:
- I am jsangilve on github.
- I am jsangil (https://keybase.io/jsangil) on keybase.
- I have a public key ASBuhUIyMzpOziszu3PLr_QQ9S7j13vcP5Hjkt2IFaKenwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
A compilation of resources I went through while getting deep into Domain-Driven Design (DDD), Event Sourcing (ES), and CQRS.
Unfortunately, there is not a single source of truth on these topics and the resources are quite scattered around the web. My goal is to create a guide on how to consume them while filtering repeated content.
import Html exposing (..) | |
import Html.App as Html | |
import Html.Events exposing (..) | |
import Random | |
main = | |
Html.program | |
{ init = init |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle' | |
}); |
let range = function (start, end, step = 1) { | |
if (arguments.length === 1) { | |
([start, end] = [0, start]); | |
} | |
const length = Math.ceil((end - start) / step); | |
if (length <= 0) return []; | |
return Array.from(new Array(length), (elem, index) => start + (index * step)); | |
} |
$(function () { | |
var timer; | |
$('#id_input').keyup(function() { | |
clearTimeout(timer); | |
var val = this.value | |
var ms = 1000 | |
timer = setTimeout(function() { | |
getSomething(val) | |
}, ms) | |
}); |