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

Ansible?

Posted on Sat 24 August 2019 in DevOps

Ansible Logo

Hearing about Ansible lately? Everyone's using it! But what's the buzz about, what is ansible actually? And why should you use it? Lot's of questions and lot's of answers. Let's dive!

What is it?

Well Ansible is a tool to automate the setup of an EC2 instance, a vagrant box …


Continue reading

MD5 Hashing using C#

Posted on Sat 24 August 2019 in C# • Tagged with C#, Programming

Its common now a days that all the passwords are being encrypted in order to prevent data theft. So the passwords are being encrypted, the most common and most secure encryption method is MD5 hashing.
MD5 hashing stands for Message Digest algorithm 5. The idea of MD5 algorithm is to …


Continue reading

Hail GraphQL

Posted on Mon 12 August 2019 in GraphQL • Tagged with Python, GitHub

GraphQL Logo

We start with basics, but then we've to upgrade. But why? Because the latest solution to the old problem is more elegant and much faster! To me, it happened to be GraphQL. It's a query language that follows you. The mantra? The structure remains the same. Let's see how we …


Continue reading

Introduction to Shell Script

Posted on Tue 04 June 2019 in Linux • Tagged with Scripting, Shell

Introduction to Shell Scripting

Ever wanted to automate a task on your *nix machine? Or are you fed up executing some set of commands again and again? If yes, then shell scripting can help you out there. In this tutorial, introduce yourself to shell scripting, along with some hands-on examples to practice.

What is …


Continue reading