@narashimha05
chinnari narashimha
@narashimha05
Just Developer loves developing software
Just Developer loves developing software
Berhampur, India
3
projects
3
0
prizes
0
10
hackathons
10
0
Hackathons org.
0
162
contributions in the last year
Jun
S
M
T
W
T
F
S
May
4
stars earned
40
repositories
8
followers
The TaskManager CLI application allows users to manage tasks through a command-line interface. It supports user registration, login, task creation, and management, including sharing tasks with other users. This documentation will guide you through setting up the application both locally and using MongoDB Atlas for cloud storage.
JavaScript
1Stars
0Forks
The Code Snippet Sharing CLI is a command-line tool that allows users to share and retrieve code snippets using MongoDB as the backend database. Users can enter their MongoDB Atlas connection details to store and share their snippets.
JavaScript
1Stars
0Forks
Team Webwiz Main Website
TypeScript
0Stars
0Forks
CSS
0Stars
0Forks
GitResume: Instantly generate a professional resume from your GitHub profile and projects.
Your personal AI stress companion, here to help you find calm in the chaos of everyday life.
Organizing made effortless! Hackhub empowers organizers, streamlining event management and reducing hassle. Currently, it offers three dynamic sections: Sponsorship, Community Partners, and Designers.
medium.com
Before we discuss why Docker wins the battle, we should understand the difference between Virtual Machines (VMs) and Containers. Virtual Machine (VM): It functions similarly to physical computers. Each VM possesses its own virtual resources, including RAM, Storage, CPU, etc. allowing it to operate independently. These VMs are hosted on physical servers, much like physical computers. A single physical server can accommodate multiple VMs simultaneously, each with distinct specifications such as different o...
medium.com
I know a lot of people, who are confused about whether to do a git merge or a git rebase in their project. While both achieve the goal of integrating the changes, they do so in fundamentally different ways. This will be my third article on Git. So let’s understand each topic. Git Merge Vs Git Rebase Git Merge So, what is git merge and what does it do? Basically, git merge is a command used to integrate changes from one branch to another. It creates a new commit called merge commit, that combines the merg...
medium.com
This is a part-2 series of my Git article. Why is writing meaningful commit messages so important? suppose you wrote a commit (which you can only understand) and pushed the code to the GitHub repository. Again 2 years later a new developer comes and reads the code and the commits. When he sees your commit, he can't understand what changes you made, based on your commit message. Therefore, writing good and meaningful commit messages is important for developers. Here is a list of best practices. 📋✨ 1. Fol...