Gangmax Blog

Java SynchronousQueue

Synchronous queues are similar to rendezvous channels used in CSP and Ada. They are well suited for handoff designs, in which an object running in one thread must sync up with an object running in another thread in order to hand it some information, event, or task. –From Java offical document here

Nix

Nix is a powerful package manager for Linux and other Unix systems that makes package management reliable and reproducible. I install Nix to use boot.

WebSocket

WebSocket is a computer communications protocol, providing full-duplex communication channels over a single TCP connection. It is designed to be implemented in web browsers and web servers, but it can be used by any client or server application.