Author: Nguyễn Xuân Thu

Chuyện làm việc

Chuyện phải làm Một buổi họp bất thường của công ty bán đồ thực phẩm ABC được diễn ra, nguyên nhân là có nhân viên...

Understanding extensions method in Scala

Extension Method in Scala import scala.concurrent.duration._ class SampleActor extends TaskExecutorBase { val taskTimeout = 10.seconds def doTask(task: Task): Unit = { println("Sample task start.") ......

Module Pattern in Javascript

Module pattern in Javascript The Module Pattern is what we’d call a “design pattern” in Javascript. It keeps our source code simple and easy to...

Lodash – Functional Javascript library

Introduce If you are familiar with functional programming language such as Haskell, Erlang… or fell in love with awesome collection method of Scala, you will may...
Scroll Up