Exploring Apache Pinot

Introduction Apache Pinot stands out as a specialised, real-time distributed OLAP data-store designed for swift analytics, catering to high-volume, low-latency queries effortlessly handling data ingestion from diverse sources such as Apache Kafka, Amazon S3, and others. It excels

By |2024-03-06T18:30:06+05:306 March 2024|0 Comments

Django ORM Optimisations

In this blog, we will explore various optimization techniques in Django ORM such as subqueries, select_related, prefetch_related, and more. These methods not only guide us in consolidating multiple queries into a single, efficient query but also play a

By |2024-02-08T17:38:40+05:3012 January 2024|Comments Off on Django ORM Optimisations

Ansible

Automating with Ansible: A Newbie-Friendly Guide Ansible is a powerful DevOps tool designed for automating tasks on remote servers or nodes. In simple terms, it allows you to automate commands and functions on multiple remote machines from a

By |2023-11-03T14:50:37+05:303 November 2023|0 Comments

Python Parallel Processing

  “ If you can't explain it simply, you don't understand it well enough. ” INTRODUCTION OF  PARALLEL PROCESSING In the world of Python programming, efficient execution of tasks is essential for building high-performance applications. Threads and Python

By |2023-10-25T14:47:24+05:3025 October 2023|0 Comments

Docker Series – Blog 1: Getting Started with Docker and Building Your First Image

In the ever-evolving landscape of software development and deployment, containerization has emerged as a revolutionary technology. Getting Started with Docker is the first step in this journey, where we will explore core Docker concepts, its architecture, and

By |2023-10-23T11:11:54+05:3023 October 2023|0 Comments

Google OAuth Integration in Django Without Utilizing django-allauth

Google OAuth integration in Django project can sometimes seem daunting, especially with the myriad of third-party solutions available. This guide will provide a methodical walkthrough to integrate Google OAuth, devoid of the django-allauth solution. Source Code: Link

By |2023-09-20T18:29:23+05:3020 September 2023|0 Comments

Azure Graph API

What is Azure? Azure Graph API, also known as Microsoft Graph API, is a powerful RESTful API provided by Microsoft as part of the Azure ecosystem. It allows developers to integrate their applications with various Microsoft services,

By |2023-08-29T00:01:26+05:3029 August 2023|0 Comments

Graphql With Django

What is GraphQL? GraphQL, as its name implies, is a game-changing query language designed specifically for APIs. It revolutionizes the way data is fetched from a server to a client, bringing a whole new level of flexibility

By |2023-06-16T10:59:49+05:3016 June 2023|0 Comments

Optimizing Database Operations in Django

Why do you need to know this? Optimizing database operations is crucial for improved application performance, scalability, cost efficiency, and enhanced user experience. It reduces query execution time, minimizes resource utilization and ensures the database can handle

By |2023-06-26T15:25:43+05:306 June 2023|0 Comments

Create simple Blockchain using Python

Blockchain is a time-stamped decentralized series of fixed records that contains data of any size is controlled by a large network of computers that are scattered around the globe and not owned by a single organization. Every block is

By |2023-04-17T17:37:00+05:3026 December 2022|Comments Off on Create simple Blockchain using Python

Fortran-with-Python_Linux

Fortran is a general-purpose, compiled imperative programming language that is especially suited to numeric computation and scientific computing. In this Blog we'll understand how can we automate a Fortran program using python. Pre-Requisite : * Fortran file.

By |2023-04-17T17:40:09+05:3027 April 2021|Comments Off on Fortran-with-Python_Linux

Email Notification in Django

For sending email notification in django we use django's send_mail function, with using some smtp sever. we can get smtp server from free smtp service providers like SendGrid. In our settings.py file we define some parameters for sending

By |2023-04-17T17:30:16+05:3029 December 2020|Comments Off on Email Notification in Django

Custom Forgot Password in Django

Custom-Forgot-Password-in-Django Custom Forgot Password Functionality in Django Admin Site AIM: As for now, the Django Admin Site does not provide to reset the password without login or when we forget the Current Password. This Blog will make you

By |2023-04-17T17:38:32+05:3019 December 2020|Comments Off on Custom Forgot Password in Django

MySQL Stored Procedures

Recently we were working on a project where we needed to categorize or manipulate a large dataset for further processing. The data needed to be filtered based on certain criteria where we would check the relationship of

By |2023-06-06T15:32:55+05:3011 July 2019|Comments Off on MySQL Stored Procedures
Go to Top