Merge branch 'master' into feat/mobile

feat/mobile
Arik Chakma 11 months ago
commit de54e7d8f8
  1. 7
      .github/workflows/deployment.yml
  2. 16
      contributing.md
  3. 6
      src/data/roadmaps/api-design/content/api-security@qIJ6dUppjAjOTA8eQbp0n.md
  4. 2
      src/data/roadmaps/flutter/content/100-dart-basics/102-built-in-types.md

@ -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

@ -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
- <p><strong>Please open your pull request (PR) against the develop branch.</strong><br />
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.
- <p><strong>Adding everything available out there is not the goal!</strong><br />
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.</p>

@ -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.
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/)

@ -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)

Loading…
Cancel
Save