In the previous post, we talked about the need for subnetting. However, our final purpose is to be able to perform subnetting based on some requirements. Therefore, it is important to understand some network terminologies. Also, it requires some knowledge of the binary number system. Otherwise, you can just memorize the numbers that we are […]
Django Rest API – From Scratch – Part 2
Let’s serialize our own models This is the continuation of part 1 of my tutorial series. So, if you haven’t viewed part 1 of the tutorial, then you can find it here: https://nepcodex.com/blog/2019/07/django-rest-api-from-scratch-part-1/ Register We have already created our todo app, hence we need to register it in our settings.py file. Creating own model Now, […]
A Guide To React, Redux, Router (Latest Version)
Introduction A step-wise-step guide to create frontend app in React, Redux, Router. React is a frontend library used to create Single Page Application (SPA). Redux is a state management library. When your project grows larger, it is difficult to handle all the states used in your app. Hence, you need a store, which keeps all […]