Understanding Recursion in JavaScript: Forward vs Backward RecursionRecursion is a fundamental concept in programming where a function calls itself to solve a problem. It’s commonly used in scenarios like tree traversal, searching, and mathematical computations. In this blog, we’ll explore two types of recursion in J...Feb 18, 2025·3 min read
Setting Up a GPU Server on Ubuntu for Azure N-Series VMs: A Step-by-Step GuideSep 18, 2024·2 min read
Harnessing Multi-Threading in Node.js: A Guide to Clustering and Parallel ProcessingMay 15, 2024·3 min read
Title: The Power and Precision of Cron Jobs: Automating Tasks for EfficiencyIntroduction In the realm of computer programming and system administration, automation is the key to efficiency. One of the most versatile tools in this regard is the Cron Job. Cron Jobs are automated tasks scheduled to run at specific intervals on ...Oct 27, 2023·4 min read
Project Name: AWS S3 Memory MonitoringDescription: This project consists of two components: a Python script and a shell script. The Python script creates an Amazon S3 bucket using the Boto3 library and uploads a text file containing available memory information. The shell script records ...Oct 14, 2023·2 min read
Deploying a Django-Blog app using Docker on Amazon EC21) Storing Code To Deploy Any App we would require some version control storage . In this project i have used github for the same . The code given is pushed to Githu repository :-https://github.com/kus123123/new-django-app.git Runnning Link :-http://...Sep 25, 2023·2 min read
Project :- Deploying a 2-Tier architecture with help of jenkins on AzureThe Active link For this project is : - http://20.40.57.2:80 Github Repo Link :- https://github.com/kus123123/django-notes-app.git The 2 contains one frontend and other sqlite . Steps To Follow Create a Virtual Machine in azure with ubuntu os . i h...Sep 23, 2023·2 min read
Install Latest Version of Node.js for Ubuntu and linuxThe NodeSource PPA provides the latest stable Node.js releases. To install the latest version (currently v20.6.1), run the following commands: Update Package List: sudo apt-get update /sudo apt update This command updates the list of available pac...Sep 18, 2023·2 min read
Demystifying API : Your Complete ResourceWhat is an API? An API is like a menu in a restaurant. It provides a list of dishes you can order, along with a description of each dish. When you specify what you'd like to order, the kitchen (i.e., the system) prepares the dish and serves it to you...Sep 17, 2023·4 min read