Mutex is a very simple technique that helps to handle the problems came from shared memory programming. Simple, but very useful!
Big O Notation of Object and Array in Javascript
I. Objects In Javascript, you use Object when: The object itself is really fast, let’s… Read More… Continue reading Big O Notation of Object and Array in Javascript
Big O Notation and basic terms of algorithms
Basic terms about big O Notation, Useful for considering which solutions is suitable. Preparing for practicing analyze the Big O Notation for time and space complexity.
waitGroup in Golang – Essential part of Shared memory technique
WaitGroup is the very common keyword to handle concurrency in golang. It is an essential part of shared memory programming
Factory method pattern in PHP
Factory method in general and how to implement it in PHP.
Strategy pattern in Golang – Easily control the flow
Strategy pattern in Golang, the concept and how to implement strategy pattern in the multi databases example. The rules of strategy
Iframe and Javascript – Magic solution
Handle Iframe using javacript, many magic solution for website integration
Adapter Pattern – Simple but useful!
Adapter patern in general, the concept an how to implement it in PHP
Factory pattern in PHP – make the complicated logic disappear!
Factory pattern in PHP