07. July 2020

Setting up Thunk with Redux and React

This is one of the reasons why getting up and running with Redux may take sometime. The setting up of the whole thing takes time. And it may take more time, if you want to setup this after you have a working React project. To start a React project today, it is easy to get up and running with Create-React-App. But gluing up Redux after that point is a very difficult and confusing process. And then comes Thunk which will take some more involvement into it.

more

09. June 2020

Vue {{ it }}

Working with Vue is just sweet. The most important thing for me is less noise in the web.

While the community is active, very active, no one is making a loud noise throughout the internet. I think that is because, no one is trying to please the corporates they are working for and they are targetting to. Which is a very good sign as far as the framework goes.

Appart from that, the documentation is just spot on. There is no way anyone will get to a wrong place and search for answers somewhere else.

The eco-system for the framework is also just spot on and their documentation is as sweet. It all just works.

more

08. June 2020

Database and doing things without the 'for' Loop

This is valid for all the languages and database engines. The thing is to create / read / update / delete somethings in database. So it is about multiple actions in a table inserts / reads / updates / deletes. The quick and easy solution is to put the actions in a ‘for loop’ and then try to solve the problems created by the loop itself! There are better ways.

more