React Router DOM v6 - Part - I
top of page

React enables us to develop single-page applications i.e single HTML pages. Essentially we render different components in a single HTML...

- Jun 24, 2022
- 2 min
Deploying and Kubernetes
Once you finish your application, you pack it into the container; hence, your application is containerized. Eventually, we will move this...

- Jun 19, 2022
- 1 min
Docker Recap
When you develop an application in any program, ask these questions! What if many developers use different OS and versions on their local...

- May 19, 2022
- 2 min
Compounding Rules
Everything you do starts Compounding. Compounding accumulates and grows on top of accumulation. It is counterintuitive because we can't...

- May 18, 2022
- 2 min
Docker Compose
We use docker based on commands like docker build, docker run,-v,-p, etc., every time we develop images or containers. Even though...

- May 10, 2022
- 2 min
Communication in Containers
We choose dockers because of isolation and separation. But no application is complete without communication. By communication, I mean...

- May 5, 2022
- 3 min
Managing Data in Containers
We have code and its environment(e.g. node dependencies) in our local machine. We create docker file and instruct them to create an...

- May 3, 2022
- 2 min
Managing Containers
We build images based on commands we give in the Docker file. A Docker file is the text file that builds Docker images. This text file...

- Apr 29, 2022
- 3 min
Making sense of Containers
Please read Docker pre-requisites here Why Containers? When we develop an app, we choose a language like JS, Python, Java, etc. These...

- Apr 26, 2022
- 2 min
Docker Pre-requisites
Usually, any web applications consist of a Frontend, Backend, and Database. As a developer, we may use different languages or frameworks...
![An investigative guide to React JS[State and Props] Part-X](https://static.wixstatic.com/media/1f7141_0ed75ad5ed21404485fa847b0a7821c3~mv2.png/v1/fill/w_292,h_293,fp_0.50_0.50,q_95,enc_auto/1f7141_0ed75ad5ed21404485fa847b0a7821c3~mv2.png)
- Apr 2, 2022
- 2 min
An investigative guide to React JS[State and Props] Part-X
We know that State is like a variable that can be of data type numbers to array/objects. If the variable is dynamic(changes), we use...
![An investigative guide to React JS[State and Props] Part-IX](https://static.wixstatic.com/media/1f7141_62ca52e092544b9097c3009a0316992f~mv2.png/v1/fill/w_292,h_169,fp_0.50_0.50,q_95,enc_auto/1f7141_62ca52e092544b9097c3009a0316992f~mv2.png)
- Mar 28, 2022
- 2 min
An investigative guide to React JS[State and Props] Part-IX
Till the last article, we have been dealing more with the UI part of React. Now let's get shifted to the Data part of react. Data brings...
![An investigative guide to React JS[DOM, Virtual DOM and JSX] Part-VIII](https://static.wixstatic.com/media/1f7141_6903fa4829984dd2992a1cd2f9fbafc4~mv2.png/v1/fill/w_292,h_320,fp_0.50_0.50,q_95,enc_auto/1f7141_6903fa4829984dd2992a1cd2f9fbafc4~mv2.png)
- Mar 25, 2022
- 2 min
An investigative guide to React JS[DOM, Virtual DOM and JSX] Part-VIII
Highlights of part VII Since React.createElement can't be written every time you want react elements, React team ends up creating JSX...
![An investigative guide to React JS[DOM, Virtual DOM and JSX] Part-VII](https://static.wixstatic.com/media/1f7141_8ff50bbd79c24eac89bd59afbbd6c7ea~mv2.png/v1/fill/w_292,h_164,fp_0.50_0.50,q_95,enc_auto/1f7141_8ff50bbd79c24eac89bd59afbbd6c7ea~mv2.png)
- Mar 23, 2022
- 2 min
An investigative guide to React JS[DOM, Virtual DOM and JSX] Part-VII
We can't write React.createElement() every time to create a virtual DOM. Therefore we need some sort of syntax for converting what we...
![An investigative guide to React JS[DOM, Virtual DOM and JSX] Part-VI](https://static.wixstatic.com/media/1f7141_a6ae0dca39c74f4fb3f3258173c14a0d~mv2.png/v1/fill/w_292,h_164,fp_0.50_0.50,q_95,enc_auto/1f7141_a6ae0dca39c74f4fb3f3258173c14a0d~mv2.png)
- Mar 19, 2022
- 3 min
An investigative guide to React JS[DOM, Virtual DOM and JSX] Part-VI
Highlights of part - V React is a Javascript framework and hence React virtual DOM is created by javascript methods. This method is...

- Mar 17, 2022
- 1 min
Interpreting Balance Sheets - Part -II
Assets Assets = What business owns Like liabilities, assets are divided into Current and Non-current. Current and Non-current assets are...

- Mar 16, 2022
- 2 min
Agreeableness
I recently took a personality test here. It scored me very low in agreeableness. This makes me ponder over my usual behaviour. In fact,...

![An investigative guide to React JS[DOM, Virtual DOM and JSX] Part-V](https://static.wixstatic.com/media/1f7141_685b1786391b4c6aad4e31219a91e172~mv2.jpg/v1/fill/w_292,h_292,fp_0.50_0.50,q_90,enc_auto/1f7141_685b1786391b4c6aad4e31219a91e172~mv2.jpg)
- Mar 15, 2022
- 2 min
An investigative guide to React JS[DOM, Virtual DOM and JSX] Part-V
Highlights of Part - IV Every time a new repaint happens in a real DOM tree, it comes with a huge performance cost. This is because more...

- Mar 14, 2022
- 3 min
Interpreting Balance Sheets - Part - I
Please read why any company needs to be balanced here? Any listed you observe releases a Balance sheet as a part of Annual Financial...
bottom of page