Understanding Git Worktrees

Posted on Mon 23 March 2026 in DevOps • Tagged with Git, Version Control

If you've been using Git for a while, you've probably been in this situation: you're deep into working on a feature branch, and suddenly you need to switch to another branch to fix a bug or review a PR. The usual approach is to either git stash your work or …


Continue reading

Understanding Git Submodules

Posted on Mon 23 March 2026 in DevOps • Tagged with Git, Version Control

Have you ever needed to use another Git repository inside your own project? Maybe a shared library, a theme, or a set of configuration files maintained separately? Git submodules let you do exactly that - embed one Git repository inside another while keeping their histories independent. Let's understand how they work …


Continue reading

Infrastructure as Code with Terraform

Posted on Sun 11 December 2022 in Terraform • Tagged with Terraform, Infrastructure as a Code

Infrastructure as Code (IaC) is an approach to managing IT infrastructure in which infrastructure resources are managed as code rather than through manual processes. Terraform is a popular open-source tool for implementing IaC. In this article, we'll explore how to use Terraform to manage infrastructure as code and how it …


Continue reading

Terraform and AWS Lambda

Posted on Tue 25 October 2022 in Terraform • Tagged with Terraform, Infrastructure as a Code

AWS Lambda is a serverless computing service that allows you to run your code without provisioning or managing servers. Terraform is a popular tool for infrastructure as code, which allows you to manage your infrastructure as code rather than using manual processes. In this article, we'll explore how to use …


Continue reading

Setting up CI/CD Pipelines with GitHub Actions

Posted on Mon 15 August 2022 in GitHub Actions • Tagged with Continuous Integration, Continuous Deployment, GitHub Actions

Continuous integration (CI) and continuous delivery (CD) are essential practices in modern software development. These practices allow teams to deliver software faster, with fewer bugs, and with more confidence. GitHub Actions is a powerful tool that can help you automate your CI/CD pipelines and integrate them seamlessly into your …


Continue reading

Pros And Cons Of Using JWT (JSON Web Tokens)

Posted on Sun 24 July 2022 in Auth • Tagged with Auth, identity, Security

JWT (JSON Web tokens) is a great way to implement authentication in your applications, though often it is being treated as a silver bullet for almost every backend project. While JWT provides a lot of benefits while implementing auth, it does come with a price. Anyone who is thinking to …


Continue reading

Django and Machine Learning: Building Intelligent Web Applications

Posted on Sun 19 September 2021 in Django • Tagged with Django, Machine Learning, Intelligent Web Applications

Machine learning and artificial intelligence (AI) are rapidly transforming the way we build and interact with web applications. By leveraging the power of machine learning algorithms, developers can build intelligent applications that can learn from user behavior, adapt to changing environments, and make data-driven decisions in real-time.

Django is a …


Continue reading

List of few tags that are supported in HTML5

Posted on Sat 24 August 2019 in Web Development

Hi everyone, some of you might be new to web development, so you must have thought that what is HTML5, how is it different from previous versions, what is new in HTML5.
In this article we will be discussing about the new tags which are now there in HTML5 but …


Continue reading

Understanding Event Dispatching Thread in Java

Posted on Sat 24 August 2019 in Java • Tagged with Java

Swing provides a rich toolkit of GUI components which can be used to create powerful User Interface. Sometimes, we don’t get expected results when we are working on complex GUI & try to update GUI of that running application. From running application we mean that we have a Swing application …


Continue reading

Few terms in C++

Posted on Sat 24 August 2019 in Programming

Howdy Coders!

Well, today we will learn about a few terms related to File Handling in C++.

Stream :- A sequence of bytes

File: A collection of data or information stored on some media with some specific name is called file.

Text File :- The file which stores data or information in …


Continue reading