I hereby claim:
- I am esfand on github.
- I am hub (https://keybase.io/hub) on keybase.
- I have a public key whose fingerprint is 12B3 DB53 DE16 262F B98F 175E EBD7 3E76 31CE 186D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
If you have two days to learn the very basics of modelling, Domain-Driven Design, CQRS and Event Sourcing, here's what you should do:
In the evenings read the [Domain-Driven Design Quickly Minibook]{http://www.infoq.com/minibooks/domain-driven-design-quickly}. During the day watch following great videos (in this order):
(by @andrestaltz)
So you're curious in learning this new thing called Reactive Programming, particularly its variant comprising of Rx, Bacon.js, RAC, and others.
Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:
Rx.Observable.prototype.flatMapLatest(selector, [thisArg])
Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.
/// <reference path="../../typings/tsd.d.ts" /> | |
/// | |
import {PipeFactory} from 'angular2/src/change_detection/pipes/pipe'; | |
import {async} from 'angular2/src/change_detection/change_detection'; | |
import {NullPipeFactory, Pipe, PipeRegistry, defaultPipes} from 'angular2/change_detection'; | |
import {bind} from 'angular2/di'; | |
import {ObservablePipe} from 'angular2/pipes'; | |
import * as Rx from 'rx'; | |
export function isObservable(obs) { |
cd /home/username/public_html/data/pages/ | |
git pull | |
git add -A | |
git commit -m "Dokuwiki external edit" | |
git push origin master |
Char Unicode | |
------------------------------ | |
Ä, ä \u00c4, \u00e4 | |
Ö, ö \u00d6, \u00f6 | |
Ü, ü \u00dc, \u00fc | |
ß \u00df |
package fi.markoa.experiment.servlet3; | |
import javax.servlet.AsyncContext; | |
import javax.servlet.ServletException; | |
import javax.servlet.annotation.WebServlet; | |
import javax.servlet.http.HttpServlet; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; | |
import java.io.IOException; |
package de.YonasCode.TheCore.MultiMap; | |
import java.io.Serializable; | |
import java.util.ArrayList; | |
import java.util.Collection; | |
import java.util.HashMap; | |
import java.util.Set; | |
public class MultiMap<A, B, C> implements Cloneable, Iterable<A>, Serializable { |
import com.memetix.mst.language.Language; | |
import com.memetix.mst.translate.Translate; | |
public class ExampleTranslation { | |
public static void main(String[] args) throws Exception { | |
//Replace client_id and client_secret with your own. | |
Translate.setClientId("CLIENT_ID_HERE"); | |
Translate.setClientSecret("CLIENT_SECRET_HERE"); | |
// Translate an english string to spanish |