From 5d43f4b1e6a4a5e5d73fda5cc92defe8f7b43101 Mon Sep 17 00:00:00 2001 From: Deepak Mardi Date: Sun, 31 Mar 2024 22:21:41 +0530 Subject: [PATCH 1/5] Updating the link for DevOps Roadmap to correct URL (https://roadmap.sh/docker) previously set to (https://roadmap.sh/best-practices) --- src/data/roadmaps/docker/docker.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/docker/docker.json b/src/data/roadmaps/docker/docker.json index e82b808d5..d19778343 100644 --- a/src/data/roadmaps/docker/docker.json +++ b/src/data/roadmaps/docker/docker.json @@ -4186,7 +4186,7 @@ "x": "23", "y": "52", "properties": { - "controlName": "ext_link:roadmap.sh/best-practices" + "controlName": "ext_link:roadmap.sh/devops" }, "children": { "controls": { @@ -4468,4 +4468,4 @@ }, "dependencies": [], "projectID": "file:///Users/kamrify/Desktop/New%20Roadmaps/New%20Project%201.bmpr" -} \ No newline at end of file +} From d4eef5ecd0dbfd2eb982d11814278729195b6448 Mon Sep 17 00:00:00 2001 From: Deepak Mardi Date: Sun, 31 Mar 2024 22:47:03 +0530 Subject: [PATCH 2/5] Fixed typo at Lazy Eager Explicit Loading topic --- .../103-lazy-eager-explicit-loading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md b/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md index 7b90ff860..667be18aa 100644 --- a/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md +++ b/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md @@ -2,7 +2,7 @@ ## Eager Loading -Eager Loading helps you to load all your needed entities at once; i.e., all your child entities will be loaded at single database call. This can be achieved, using the Include method, which returs the related entities as a part of the query and a large amount of data is loaded at once. +Eager Loading helps you to load all your needed entities at once; i.e., all your child entities will be loaded at single database call. This can be achieved, using the Include method, which returns the related entities as a part of the query and a large amount of data is loaded at once. ## Lazy Loading From dbdfb2226b56a0a7d8076ac36a7cdf887c0c99d9 Mon Sep 17 00:00:00 2001 From: Deepak Mardi Date: Sun, 31 Mar 2024 23:05:15 +0530 Subject: [PATCH 3/5] Keyboard Navigation only on vissible elements --- src/components/NavigationDropdown.tsx | 53 +++++++++++++-------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/src/components/NavigationDropdown.tsx b/src/components/NavigationDropdown.tsx index c0a691175..7eb9fed31 100644 --- a/src/components/NavigationDropdown.tsx +++ b/src/components/NavigationDropdown.tsx @@ -71,34 +71,33 @@ export function NavigationDropdown() { > -
- {links.map((link) => ( - - - - - - - {link.label} + {isOpen && ( + + + ))} +
+ )} ); } From 675f90adc6a08738792e0da9681e5305b1ac8bfb Mon Sep 17 00:00:00 2001 From: Deepak Mardi Date: Sun, 31 Mar 2024 23:41:38 +0530 Subject: [PATCH 4/5] Updated resource URL from figment.io(resource deleted) to Near docs(tutorial in rust) --- .../103-smart-contracts/100-programming-languages/102-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/blockchain/content/103-smart-contracts/100-programming-languages/102-rust.md b/src/data/roadmaps/blockchain/content/103-smart-contracts/100-programming-languages/102-rust.md index 40a3b5b03..77cd98516 100644 --- a/src/data/roadmaps/blockchain/content/103-smart-contracts/100-programming-languages/102-rust.md +++ b/src/data/roadmaps/blockchain/content/103-smart-contracts/100-programming-languages/102-rust.md @@ -5,4 +5,4 @@ Rust is a multi-paradigm, general-purpose programming language. Rust emphasizes Visit the following resources to learn more: - [Rust Programming Language](https://www.rust-lang.org/) -- [How to write and deploy a smart contract in Rust](https://learn.figment.io/tutorials/write-and-deploy-a-smart-contract-on-near) +- [How to write and deploy a smart contract in Rust](https://docs.near.org/tutorials/nfts/introduction) From 58960eb6d418286a5d8c074a30b611765586490a Mon Sep 17 00:00:00 2001 From: Deepak Mardi Date: Mon, 1 Apr 2024 01:54:27 +0530 Subject: [PATCH 5/5] update --- src/components/NavigationDropdown.tsx | 53 ++++++++++--------- .../103-lazy-eager-explicit-loading.md | 2 +- src/data/roadmaps/docker/docker.json | 4 +- 3 files changed, 30 insertions(+), 29 deletions(-) diff --git a/src/components/NavigationDropdown.tsx b/src/components/NavigationDropdown.tsx index 7eb9fed31..c0a691175 100644 --- a/src/components/NavigationDropdown.tsx +++ b/src/components/NavigationDropdown.tsx @@ -71,33 +71,34 @@ export function NavigationDropdown() { > - {isOpen && ( - ); } diff --git a/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md b/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md index 667be18aa..7b90ff860 100644 --- a/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md +++ b/src/data/roadmaps/aspnet-core/content/104-orm/100-entity-framework-core/103-lazy-eager-explicit-loading.md @@ -2,7 +2,7 @@ ## Eager Loading -Eager Loading helps you to load all your needed entities at once; i.e., all your child entities will be loaded at single database call. This can be achieved, using the Include method, which returns the related entities as a part of the query and a large amount of data is loaded at once. +Eager Loading helps you to load all your needed entities at once; i.e., all your child entities will be loaded at single database call. This can be achieved, using the Include method, which returs the related entities as a part of the query and a large amount of data is loaded at once. ## Lazy Loading diff --git a/src/data/roadmaps/docker/docker.json b/src/data/roadmaps/docker/docker.json index d19778343..e82b808d5 100644 --- a/src/data/roadmaps/docker/docker.json +++ b/src/data/roadmaps/docker/docker.json @@ -4186,7 +4186,7 @@ "x": "23", "y": "52", "properties": { - "controlName": "ext_link:roadmap.sh/devops" + "controlName": "ext_link:roadmap.sh/best-practices" }, "children": { "controls": { @@ -4468,4 +4468,4 @@ }, "dependencies": [], "projectID": "file:///Users/kamrify/Desktop/New%20Roadmaps/New%20Project%201.bmpr" -} +} \ No newline at end of file