Operators are symbols used to perform different operations on values and variables. In this first part, we'll look at arithmetic, comparison, and assignment operators.Arithmetic OperatorsArithmetic operators are used for basic...
AN
Anonymous
8/20/2026
Loops in Python
A for loop is useful when we want to repeat something a fixed number of times or go through items in a sequence.for i in range(5): print(i)Output0 1 2 3...
AN
Anonymous
8/20/2026
Installation of FastAPI
Introduction to FastAPIFastAPI is a modern Python web framework used to build APIs and backend applications quickly and efficiently.Built on top of Starlette and Pydantic, providing high performance and reliable...
AN
Anonymous
8/20/2026
Error Handling in Python
While writing Python programs, sometimes we may get errors. Errors can happen because of wrong input, incorrect code, or unexpected situations. Error handling helps us handle these problems without stopping...
AN
Anonymous
8/20/2026
Folder Placement & Project Organization
let's talk about the final picture of the folder/project /.venv /accounts /init.py /admin.py /apps.py /models.py ...
AN
Anonymous
8/20/2026
Request
If we are a little familiar with the English language, we can guess what we are about to discuss.Imagine a classroom scenario.Teacher: "Last week we discussed Back-End Engineering. Now we...
AN
Anonymous
8/20/2026
FastAPI Chatbot Blog
What is a Chatbot?A chatbot is an application that allows users to communicate with a computer through messages. In an AI chatbot, an AI model understands the user's message and...
AN
Anonymous
8/20/2026
Templates in Django
Templates are the HTML files with Django's template language ({{ }} and {% %})We can place this templates folder either inside each app as: appname/templates or globally in the project...
AN
Anonymous
8/20/2026
Best App Stucture & Importance of Dividing
Pushing everything into one app? It works for small projects, but as the codebase becomes large it becomes messy.Best way to avoid that is by:dividing apps by functionality like:\accounts\products\posts, etc...each...
AN
Anonymous
8/20/2026
What is a Domain and How Does DNS Work?
When we use websites on the internet, we usually type a name such as google.com or youtube.com instead of entering a long series of numbers.But how does the internet know...
AN
Anonymous
8/20/2026
FastAPI + Superbase connection
What is Supabase?Supabase is a backend platform that provides services like a PostgreSQL database, authentication, file storage, and APIs. We use Supabase with FastAPI to store and manage application data.Why...
AN
Anonymous
8/20/2026
Django App Structure & syntax
After running startapp command, we'll see bunch of files in the app. Such as:__init__.py-> it turns our app folder into a proper python package. Django expects apps to be proper...
AN
Anonymous
8/20/2026
What is a Linux Server?
When we talk about websites, cloud computing, or application deployment, we often come across the term Linux Server.We already know that Linux is an operating system. But what exactly makes...
AN
Anonymous
8/20/2026
Django Apps & command
When we first dive into Django, we hear the word app everywhere. An app is basically just a module that handles a piece of functionality. For example- accounts, posts, payments,...
AN
Anonymous
8/20/2026
File Handling in Python
File handling is an important topic in Python. It allows us to create, read, write, and manage files using Python programs. File handling is useful when we want to store...
AN
Anonymous
8/20/2026
Parameters to URL
Imagine going to a shopping mall. There are thousands of products, but you don't need all of them. You want a particular ice cream. So instead of looking through every...
AN
Anonymous
8/20/2026
Template Rendering in Django
If templates folder says where the HTML files are present then template rendering says how to display it and this is the part where Django takes HTML file and shows...
AN
Anonymous
8/20/2026
Radix UI
IntroductionAn open-source UI component library for building high-quality, accessible design systems and web apps.Radix Primitives is a low-level UI component library with a focus on accessibility, customization and developer experience....
AN
Anonymous
8/20/2026
What is a Server and How Does It Work?
What is a Server?Have you ever wondered what happens behind the scenes when you open a website, stream a movie, or send a message online?All these activities involve servers.The word...
AN
Anonymous
8/20/2026
How to Create a Templates Folder in Django
Before getting to know how to create the template folder let us know what is a templates folder.What is a template folder?In Django, HTML and python files are not kept...