diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
index 15faa88cf..b9386e7de 100644
--- a/.github/workflows/deployment.yml
+++ b/.github/workflows/deployment.yml
@@ -1,13 +1,6 @@
name: Deploy to EC2
on:
workflow_dispatch: # allow manual run
- push:
- branches:
- - master
- paths:
- - 'src/**'
- - 'public/**'
- - 'editor/**'
jobs:
deploy:
runs-on: ubuntu-latest
diff --git a/contributing.md b/contributing.md
index 883a5ffc3..48475098c 100644
--- a/contributing.md
+++ b/contributing.md
@@ -2,23 +2,11 @@
First of all thank you for considering to contribute. Please look at the details below:
-- [Create a New Branch](#create-a-new-branch)
- [New Roadmaps](#new-roadmaps)
- [Existing Roadmaps](#existing-roadmaps)
- [Adding Content](#adding-content)
- [Guidelines](#guidelines)
-## Create A New Branch
-
-To create a new branch against `develop` for your contribution please do the following:
-
-```bash
-git clone https://github.com/kamranahmedse/developer-roadmap.git # Clone Repo
-cd developer-roadmap # Change Directory
-git switch develop && git pull # Switch and pull
-git checkout -b "a-sensible-branch-name" # Create your branch
-```
-
## New Roadmaps
For new roadmaps, you can either:
@@ -58,10 +46,6 @@ Visit the following resources to learn more:
## Guidelines
--
Please open your pull request (PR) against the develop branch.
-
- To keep caching and deployments under control, please open your PR's against the `develop` branch, which will then be merged into `master` at the end of the day.
-
-
Adding everything available out there is not the goal!
The roadmaps represent the skillset most valuable today, i.e., if you were to enter any of the listed fields today, what would you learn? There might be things that are of-course being used today but prioritize the things that are most in demand today, e.g., agreed that lots of people are using angular.js today but you wouldn't want to learn that instead of React, Angular, or Vue. Use your critical thinking to filter out non-essential stuff. Give honest arguments for why the resource should be included.
diff --git a/src/data/roadmaps/api-design/content/api-security@qIJ6dUppjAjOTA8eQbp0n.md b/src/data/roadmaps/api-design/content/api-security@qIJ6dUppjAjOTA8eQbp0n.md
index 25ba03c7c..6451eecb6 100644
--- a/src/data/roadmaps/api-design/content/api-security@qIJ6dUppjAjOTA8eQbp0n.md
+++ b/src/data/roadmaps/api-design/content/api-security@qIJ6dUppjAjOTA8eQbp0n.md
@@ -1,3 +1,7 @@
# API Security
-API Security refers to the practices and products that are used to secure application programming interfaces (APIs). In the context of design, it is an essential component that helps ensure that a deployed API achieves its objectives in a safe and secure manner. This includes safeguarding the data, preventing unauthorized access, and protecting the system that hosts the API. API security encompasses the strategies, procedures and technology used to protect APIs from malicious attacks or unauthorized access while guaranteeing optimum performance, availability, and data privacy.
\ No newline at end of file
+API Security refers to the practices and products that are used to secure application programming interfaces (APIs). In the context of design, it is an essential component that helps ensure that a deployed API achieves its objectives in a safe and secure manner. This includes safeguarding the data, preventing unauthorized access, and protecting the system that hosts the API. API security encompasses the strategies, procedures and technology used to protect APIs from malicious attacks or unauthorized access while guaranteeing optimum performance, availability, and data privacy.
+
+Have a look at the following resources to understand API security and vulnerabilties further:
+
+- [OWASP Project API Security](https://owasp.org/API-Security/editions/2023/en/0x00-toc/)
diff --git a/src/data/roadmaps/flutter/content/100-dart-basics/102-built-in-types.md b/src/data/roadmaps/flutter/content/100-dart-basics/102-built-in-types.md
index 04a96062f..266b5a3c1 100644
--- a/src/data/roadmaps/flutter/content/100-dart-basics/102-built-in-types.md
+++ b/src/data/roadmaps/flutter/content/100-dart-basics/102-built-in-types.md
@@ -7,6 +7,7 @@ There are several built-in data types, including:
- String: used to store text
- bool: used to store true or false values
- List: used to store ordered collections of objects
+- Sets: used to store unordered collection of unique items
- Map: used to store unordered collections of key-value pairs
Additionally, there are other complex data types like dynamic, var, and Object in Dart programming language which is used in Flutter.
@@ -15,3 +16,4 @@ Visit the following resources to learn more:
- [Built-in types](https://dart.dev/guides/language/language-tour#built-in-types)
- [Overview of Built-in Types](https://dart.dev/guides/language/coming-from/js-to-dart#built-in-types)
+- [Collections | Dart](https://dart.dev/language/collections)