"Clean Code" by Robert C. Martin (a.k.a. Uncle Bob) is particularly helpful in the practice of day-to-day software development. But how relevant is it now?
Read more »
This example is about type checking and detecting polymorphic argument and return types of functions.
(more…)
Read more »
In the absence of a strong type system and a stateful paradigm, JavaScript developers need to be extra careful when managing state so that their code doesn't become a tangled mess. Dealing with ansynchronicity can get especially messy. We can learn a lot ... (more…)
Read more »
Hello stranger! So this might come as an unexpected advice. But if you're new to JavaScript or Web development in general, you really should consider playing around with userscripts.
In this article, I will try to explain what are userscripts, why I ... (more…)
Read more »
The Y combinator is an interesting function which only works with functional languages, showing how... (more…)
Read more »