Create a Global gitignore

Each time you set up a project, there’s that dreaded repetitive task of creating a new .gitignore file and adding in all the same files/directories that need to be ignored. This sometimes can get pretty tedious. There are OS-generated files (like .DS_Store, Thumbs.db) or IDE-generated files (like .idea/)  that will always clutter up your repository structure. You could also have dependencies like node_modules, built resources like .dll, .so or even logs …read more

Top Fascinating Uses of the Spread Operator

The Spread Operator ES2016 brings us many many goodies, one of which I came across a couple of days ago is the Spread Operator. I have become a big fan of it, not just because of its utility but also as it helps me to shorten my code. So what is it exactly? Simply put, the spread operator allows an expression(that could be an array/object) to be expanded in places …read more

Hello Coders!

Today, while I was at work, as I was researching about some coding issue online, I realised that there are still so many many things to learn and so many more that aren’t well documented or perhaps documented at all. So, after long hours of thinking, finally I have decided to start writing about my coding experiences. I think this will not only help me to always have a place …read more