From 350e4ea9028009bfe63b30424e8fc93fd6dd740a Mon Sep 17 00:00:00 2001 From: Uma Das <61022623+CodeWithUma@users.noreply.github.com> Date: Sun, 18 Sep 2022 15:39:24 +0530 Subject: [PATCH] Backend Color Codes Fixed (#1785) --- content/roadmaps/101-backend/content/109-apis/103-grpc.md | 2 +- .../101-backend/content/109-apis/105-open-api-spec.md | 6 +++--- .../109-apis/106-authentication/103-token-authentication.md | 2 +- .../content/109-apis/106-authentication/104-jwt.md | 2 +- .../content/110-caching/101-server-side/101-memcached.md | 4 ++-- .../content/111-web-security-knowledge/102-bcrypt.md | 4 ++-- .../101-domain-driven-design.md | 2 +- .../114-design-and-development-principles/103-solid.md | 2 +- .../content/115-architectural-patterns/102-soa.md | 2 +- .../content/115-architectural-patterns/103-cqrs.md | 2 +- .../roadmaps/101-backend/content/119-graphql/100-apollo.md | 4 ++-- content/roadmaps/101-backend/content/119-graphql/readme.md | 2 +- .../123-scalability/103-horizontal-vertial-scaling.md | 4 ++-- 13 files changed, 19 insertions(+), 19 deletions(-) diff --git a/content/roadmaps/101-backend/content/109-apis/103-grpc.md b/content/roadmaps/101-backend/content/109-apis/103-grpc.md index 8df3c06c0..7ddff5be5 100644 --- a/content/roadmaps/101-backend/content/109-apis/103-grpc.md +++ b/content/roadmaps/101-backend/content/109-apis/103-grpc.md @@ -6,4 +6,4 @@ RPC stands for Remote Procedure Call, there's an ongoing debate on what the g st Free Content gRPC Website -gRPC Docs +gRPC Docs diff --git a/content/roadmaps/101-backend/content/109-apis/105-open-api-spec.md b/content/roadmaps/101-backend/content/109-apis/105-open-api-spec.md index 08f465abe..7c7e69144 100644 --- a/content/roadmaps/101-backend/content/109-apis/105-open-api-spec.md +++ b/content/roadmaps/101-backend/content/109-apis/105-open-api-spec.md @@ -5,7 +5,7 @@ The OpenAPI Specification (OAS) defines a standard, language-agnostic interface An OpenAPI definition can then be used by documentation generation tools to display the API, code generation tools to generate servers and clients in various programming languages, testing tools, and many other use cases. Free Content -OpenAPI Specification Website -Open API Live Editor -OpenAPI 3.0: How to Design and Document APIs with the Latest OpenAPI Specification 3.0 +OpenAPI Specification Website +Open API Live Editor Official training guide +OpenAPI 3.0: How to Design and Document APIs with the Latest OpenAPI Specification 3.0 diff --git a/content/roadmaps/101-backend/content/109-apis/106-authentication/103-token-authentication.md b/content/roadmaps/101-backend/content/109-apis/106-authentication/103-token-authentication.md index 8b9f100f6..d9d72b3fb 100644 --- a/content/roadmaps/101-backend/content/109-apis/106-authentication/103-token-authentication.md +++ b/content/roadmaps/101-backend/content/109-apis/106-authentication/103-token-authentication.md @@ -10,4 +10,4 @@ But using tokens requires a bit of coding know-how. Most developers pick up the Free Content -What Is Token-Based Authentication? +What Is Token-Based Authentication? diff --git a/content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md b/content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md index 3867e23c6..03c6bdb29 100644 --- a/content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md +++ b/content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md @@ -3,7 +3,7 @@ JWT stands for JSON Web Token is a token-based encryption open standard/methodology that is used to transfer information securely as a JSON object. Clients and Servers use JWT to securely share information, with the JWT containing encoded JSON objects and claims. JWT tokens are designed to be compact, safe to use within URLs, and ideal for SSO contexts. Free Content -jwt.io Website +jwt.io Website Introduction to JSON Web Tokens What is JWT? What Is JWT and Why Should You Use JWT diff --git a/content/roadmaps/101-backend/content/110-caching/101-server-side/101-memcached.md b/content/roadmaps/101-backend/content/110-caching/101-server-side/101-memcached.md index 1ec4e2f56..bacc42ecb 100644 --- a/content/roadmaps/101-backend/content/110-caching/101-server-side/101-memcached.md +++ b/content/roadmaps/101-backend/content/110-caching/101-server-side/101-memcached.md @@ -8,8 +8,8 @@ Memcached has no internal mechanism to track misses which may happen. However, s Free Content -Memcached, From Wikipedia +Memcached, From Wikipedia -Memcached, From Official Github +Memcached, From Official Github Memcached Tutorial diff --git a/content/roadmaps/101-backend/content/111-web-security-knowledge/102-bcrypt.md b/content/roadmaps/101-backend/content/111-web-security-knowledge/102-bcrypt.md index 12d4d3966..2d9bcbc68 100644 --- a/content/roadmaps/101-backend/content/111-web-security-knowledge/102-bcrypt.md +++ b/content/roadmaps/101-backend/content/111-web-security-knowledge/102-bcrypt.md @@ -3,6 +3,6 @@ bcrypt is a password hashing function, that has been proven reliable and secure since it's release in 1999. It has been implemented into most commonly-used programming languages. Free Content -bcrypt explained +bcrypt's npm package Understanding bcrypt -bcrypt's npm package +bcrypt explained diff --git a/content/roadmaps/101-backend/content/114-design-and-development-principles/101-domain-driven-design.md b/content/roadmaps/101-backend/content/114-design-and-development-principles/101-domain-driven-design.md index e0ccb7ae1..cd1c08f0d 100644 --- a/content/roadmaps/101-backend/content/114-design-and-development-principles/101-domain-driven-design.md +++ b/content/roadmaps/101-backend/content/114-design-and-development-principles/101-domain-driven-design.md @@ -12,4 +12,4 @@ DDD connects the implementation to an evolving model and it is predicated on the Free Content -Domain Driven Design Quickly +Domain Driven Design Quickly diff --git a/content/roadmaps/101-backend/content/114-design-and-development-principles/103-solid.md b/content/roadmaps/101-backend/content/114-design-and-development-principles/103-solid.md index 93341b0d8..caa8ff1b0 100644 --- a/content/roadmaps/101-backend/content/114-design-and-development-principles/103-solid.md +++ b/content/roadmaps/101-backend/content/114-design-and-development-principles/103-solid.md @@ -9,7 +9,7 @@ SOLID is a set of principles applied to object-oriented design (OOD) to create m - Dependency Inversion Free Content -Design Principles and +Design Principles and Design Patterns SOLID Principles SOLID: The First 5 Principles of Object Oriented Design diff --git a/content/roadmaps/101-backend/content/115-architectural-patterns/102-soa.md b/content/roadmaps/101-backend/content/115-architectural-patterns/102-soa.md index d6cb8ddf1..a3edddaae 100644 --- a/content/roadmaps/101-backend/content/115-architectural-patterns/102-soa.md +++ b/content/roadmaps/101-backend/content/115-architectural-patterns/102-soa.md @@ -3,4 +3,4 @@ SOA, or service-oriented architecture, defines a way to make software components reusable via service interfaces. These interfaces utilize common communication standards in such a way that they can be rapidly incorporated into new applications without having to perform deep integration each time. Free Content -Reference Architecture Foundation for Service Oriented Architecture +Reference Architecture Foundation for Service Oriented Architecture diff --git a/content/roadmaps/101-backend/content/115-architectural-patterns/103-cqrs.md b/content/roadmaps/101-backend/content/115-architectural-patterns/103-cqrs.md index fe13a1a93..a0ded4d0b 100644 --- a/content/roadmaps/101-backend/content/115-architectural-patterns/103-cqrs.md +++ b/content/roadmaps/101-backend/content/115-architectural-patterns/103-cqrs.md @@ -3,4 +3,4 @@ CQRS, or command query responsibility segregation, defines an architectural pattern where the main focus is to separate the approach of reading and writing operations for a data store. CQRS can also be used along with Event Sourcing pattern in order to persist application state as an ordered of sequence events, making it possible to restore data to any point in time. Free Content -CQRS Pattern +CQRS Pattern diff --git a/content/roadmaps/101-backend/content/119-graphql/100-apollo.md b/content/roadmaps/101-backend/content/119-graphql/100-apollo.md index 7d1fa06ba..54ad410dd 100644 --- a/content/roadmaps/101-backend/content/119-graphql/100-apollo.md +++ b/content/roadmaps/101-backend/content/119-graphql/100-apollo.md @@ -4,6 +4,6 @@ Apollo is a platform for building a unified graph, a communication layer that he Free Content Apollo Website -Official Docs -Official YouTube Channel +Official Docs +Official YouTube Channel GraphQL With React Tutorial - Apollo Client diff --git a/content/roadmaps/101-backend/content/119-graphql/readme.md b/content/roadmaps/101-backend/content/119-graphql/readme.md index 83ffa621d..d1722008b 100644 --- a/content/roadmaps/101-backend/content/119-graphql/readme.md +++ b/content/roadmaps/101-backend/content/119-graphql/readme.md @@ -6,4 +6,4 @@ GraphQL is a query language for APIs and a runtime for fulfilling those queries Introduction to GraphQL The Fullstack Tutorial for GraphQL GraphQL Tutorials -GraphQL Course for Beginners +GraphQL Course for Beginners diff --git a/content/roadmaps/101-backend/content/123-scalability/103-horizontal-vertial-scaling.md b/content/roadmaps/101-backend/content/123-scalability/103-horizontal-vertial-scaling.md index 5acf6230b..eefa3f4cb 100644 --- a/content/roadmaps/101-backend/content/123-scalability/103-horizontal-vertial-scaling.md +++ b/content/roadmaps/101-backend/content/123-scalability/103-horizontal-vertial-scaling.md @@ -4,7 +4,7 @@ Horizontal scaling is a change in the **number** of a resource. For example, inc Free Content -System Design Basics: Horizontal vs. Vertical Scaling -System Design 101 Horizontal vs Vertical Scaling Scaling In Databases +System Design Basics: Horizontal vs. Vertical Scaling +System Design 101