-
Does Typescript need Effect? - An introduction
Is the added complexity of Effect worth it in order to make TypeScript applications more robust?
-
How to actually start coding
About picking your first programming language and creating a cozy space for learning.
-
Live wallpaper - NodeJS
Remember those Windows 7 gadgets that everyone used to love? Can we recreate them using NodeJs.
-
My Worst JS Bug
I was setting up a new Node project like many times before. This time i was going to be pragmatic about testing. Yeah, the usual mindset when starting a new project. Then things took a turn.
-
DIY Javascript Iterators
Can we add a custom iteration hook for a plain Javascript Object which is not iterable by default?
-
JS forEach - 3 bad use cases
The forEach loop is part of most JS developers tool belt. Let’s get into the situations where the forEach loop is just a bad fit.
-
Simplifying Javascript Prototypes and the “new” keyword
JavaScript is a prototype based language. The language has a not so common but powerful feature that you can create objects directly without classes or other abstractions. Lets dig deeper...