Tag: webdevelopment


The best free resources to learn web development

Web development means developing websites or web applications which also includes developing APIs, designing UI/UX, database design and many more. It consists various technologies like HTML, CSS, J...

Data fetching in Next.js

Next.js provides various ways to fetch data from an API or any other source. These methods can be used to either generate static pages(SSG) or for server-side rendering(SSR). getStaticProps, getSta...

Custom User Model in Django

In this tutorial, we will be learning how to create a custom user model or extending user model to add some fields and to grab more control over user model.