Mallim

Author posts

Where can I find cheatsheets for Python?

in Python 1 min read

Here is what I found: Cheatsheet for Matplotlib available at python-cheat-sheet - markdown format Python For Data Science - A Cheat Sheet For Beginners - I keeping to this one Python Crash Course - Cheat Sheets but all in PDF Python Cheat Sheet for Data Science: Basics there is ...

Let My Future be Complete...

in Java 1 min read

Introduction I have tried and put up some examples at https://github.com/mallim/java101 (look for completablefuture package). On my laptop, RealLifeWithoutCompletableFutureExample took 15087 ms and RealLifeCompletableFutureExample 5098 ms. Hmm.. so there is a a difference. Librar ...

Frontend Developer Handbook

in Handbook 1 min read

I spotted this on 2015 where the handbook is actually known as Front-End Developer Handbook 2016. And now it is updated to Front-End Developer Handbook 2017. Wow

Cross-Compilation Options: java -source -target

in Crossover Compilation 1 min read

Introduction Notes to myself to unwrap my head about this crossover compilation thingy. Cross-Compilation Options Given JDK 8 when -source 1.8 -target 1.6 then Cannot work Given JDK 8 when -source 1.8 -target 1.7 then Cannot work Given JDK 8 when -source 1.6 -target 1.6 then ...

Patterns - Pipeline / Chain of Reponsiblity in Java

in Design Pattern 1 min read

Pipeline and Chain of Reponsiblity both look quite similar to me. Pipeline: Pipeline pattern - Plumber quest - got an example here Function composition and the Collection Pipeline pattern it shows how you can transform multiple for loops to a functional ones Chain of Respon ...

Mother of all Java resource

in Mother Of-all 1 min read

This is my own awesome-java references. Here they are ... spring-modules fork of the abandoned SpringModules (unofficial extensions for Spring). Wow... Do it yourself Multi Value Map with Java 8 it shows examples in Apache Common Collections, Guava, Eclipse Collections and on ...