1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 20:21:50 +02:00

Added git, slack, messaging queues, serverless content (#2169)

Co-authored-by: arbhard2 <arbhard2@cisco.com>
This commit is contained in:
Arpit Bhardwaj
2022-10-05 20:48:09 +05:30
committed by GitHub
parent eb245d72f0
commit 93804dc6bc
4 changed files with 30 additions and 4 deletions

View File

@@ -1 +1,8 @@
# Git
# Git
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://git-scm.com/'>Git</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Official Docs' href='https://git-scm.com/doc'>Git Documentation</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.atlassian.com/git/tutorials/what-is-git'>All about Git</BadgeLink>

View File

@@ -1 +1,8 @@
# Slack
# Slack
Slack is a messaging app for business that connects people to the information that they need. By bringing people together to work as one unified team, Slack transforms the way that organisations communicate.
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://slack.com'>Slack</BadgeLink>
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=q19RtuCHt1Q'>What is Slack?</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Official Docs' href='https://slack.com/intl/en-in/help/categories/360000049043'>Getting Started</BadgeLink>

View File

@@ -1 +1,7 @@
# Serverless
# Serverless
Serverless architecture (also known as serverless computing or function as a service, FaaS) is a software design pattern where applications are hosted by a third-party service, eliminating the need for server software and hardware management by the developer. Applications are broken up into individual functions that can be invoked and scaled individually.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Docs' href='https://aws.amazon.com/lambda/serverless-architectures-learn-more/'>Serverless Architectures By AWS</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://martinfowler.com/articles/serverless.html'>Serverless in Detail</BadgeLink>

View File

@@ -1 +1,7 @@
# Messaging queues
# Messaging queues
Message queuing makes it possible for applications to communicate asynchronously, by sending messages to each other via a queue. A message queue provides temporary storage between the sender and the receiver so that the sender can keep operating without interruption when the destination program is busy or not connected.
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Docs' href='https://aws.amazon.com/message-queue/'>Messaging Queues</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.tutorialspoint.com/inter_process_communication/inter_process_communication_message_queues.htm'>Messaging Queues Tutorial</BadgeLink>