Java - RxJava
Recommended reading for RxJava http://akarnokd.blogspot.com.au/2015/06/subjects-part-1.html Another worth reading article about Rx https://gist.github.com/st...
Recommended reading for RxJava http://akarnokd.blogspot.com.au/2015/06/subjects-part-1.html Another worth reading article about Rx https://gist.github.com/st...
1. Void return and zero paramter Use Runnable 1 2 3 4 5 6 void runTask(Runnable task) { task.run(); } runTask(()-> { // do something }); 2. Return v...
http://thbecker.net/articles/rvalue_references/section_01.html
How C++11 can help to make C++ meta programming easier http://jguegant.github.io/blogs/tech/sfinae-introduction.html
The following URL has a nice article about git flow http://yakiloo.com/getting-started-git-flow/