Blogs

Clear
  • AWS
  • 10 min read
What is AWS Cloud Formation?

AWS Cloud Formation is an AWS service that helps to automate the setup of AWS resources using template files.

Read More
What are the golden rules of programming?

Some rules of programming which you should always take care.

Read More
Top 10 rules of handling money and personal finance?

Rules of money handling and personal finance

Read More
What are the rules of money?

Some useful rules of money

Read More
Top Life Rules for a More Fulfilling Life

Follow these essential life rules to stay happy and successful. Don't lose your cool when someone flirts with you, keep cash in check, stay hydrated,…

Read More
What's new in Python 3.11?

Python 3.11 is between 10-60% faster than Python 3.10. On average, we measured a 1.25x speedup on the standard benchmark suite.

Read More
Django and OpenAPI 3 - DRF Spectacular

drf-spectacular provides as its tagline suggests sane and flexible OpenAPI 3 schema generation for Django REST framework.

Read More
What is an OpenAPI?

The OpenAPI Specification (OAS) defines a standard, language-agnostic interface to HTTP APIs which allows both humans and computers to discover and u…

Read More
Humanize - Django Utils

Django comes with a set of template filters to add a "human touch" to data. It is used to translate numbers and dates into a human readable format.

Read More
Django Redirects App

Django comes with an optional redirects application. It lets you store redirects in a database and handles the redirecting for you. It uses the HTTP …

Read More
How to Use Django's Flatpages App

A flatpage is an object with a URL, title and content. Use it for one-off, special-case pages, such as “About” or “Privacy Policy” pages, that you wa…

Read More
Django Designing Better Models

Models definition is one of the most important parts of your application. Something that makes all the difference is defining the field types properly

Read More
Snowball vs Avalanche Method: Which is the Best Debt Paydown Strategy?

Looking to pay off your debt? Learn about the snowball and avalanche method, and find out which one might be the best debt paydown strategy for you.

Read More
19 Money Rules You Should Learn By 25

Learn some basic money rules, that will help you to build financially stable and independent.

Read More
Using Environment Variables in Django

Python Decouple is a great library that helps you strictly separate the settings parameters from your source code. The idea is simple: Parameters rel…

Read More
Python's Generator and Yield Explained

Generators are iterators, a kind of iterable you can only iterate over once. An iterator is an object that can be iterated (looped) upon.

Read More
How to create a virtual environment for Python

A virtual environment is a self-contained directory tree that contains dependencies required by different projects isolated to existing packages. By …

Read More
How To Install Python 3 on Mac OS

Python is a versatile language used for multi-purpose programming it is undoubtedly the most popular dynamic programming language that is being used …

Read More
QuerySets and Aggregations in Django

Learn Django Querysets and Aggregations, Optimize the Django Queryset operations

Read More
Django dumpdata and loaddata

Django provides management commands, which can be use to backup(export) or import the model instances or whole database.

Read More