Compare commits

..

14 Commits

Author SHA1 Message Date
eric 745bc3f991 capitalize?? 2023-11-17 11:50:14 -05:00
eric 6dd7598cbe collate 2023-11-17 11:47:51 -05:00
eric 986f8fdfe1 Merge branch 'main' into pr/10695 2023-11-17 11:41:23 -05:00
eric 6966b4ce31 Revert "collate"
This reverts commit 1b941dd887.
2023-11-17 11:40:40 -05:00
eric 07e84d3c67 Revert "Update books/free-programming-books-ja.md"
This reverts commit 8705ce5b40.
2023-11-17 11:40:37 -05:00
eric 7b7e53b376 Revert "trouble parsing id:"
This reverts commit 7676939f6c.
2023-11-17 11:40:23 -05:00
eric 7c5067934e Revert "look for pdf error"
This reverts commit a349130a67.
2023-11-17 11:40:17 -05:00
Eric Hellman a349130a67 look for pdf error 2023-11-17 11:02:42 -05:00
Eric Hellman 7676939f6c trouble parsing id: 2023-11-17 10:56:07 -05:00
Eric Hellman 8705ce5b40 Update books/free-programming-books-ja.md 2023-11-17 10:51:46 -05:00
Eric Hellman 1b941dd887 collate 2023-11-17 10:48:11 -05:00
Shunuk 9d8f9926e9 Update free-programming-books-ja.md 2023-10-23 21:30:37 -07:00
Shunuk 6919bfa151 Update free-programming-books-ja.md 2023-10-23 21:28:12 -07:00
Shunuk ca9f63699e Update free-programming-books-ja.md 2023-10-23 11:54:34 -07:00
137 changed files with 2022 additions and 6213 deletions
+1 -4
View File
@@ -1,10 +1,6 @@
## What does this PR do?
Add resource(s) | Remove resource(s) | Add info | Improve repo
## IMPORTANT
- [ ] Read our [contributing guidelines](https://github.com/EbookFoundation/free-programming-books/blob/main/docs/CONTRIBUTING.md).
- [ ] Is this a revision of a previously submitted PR? If so, STOP! Go back, reopen the PR, and add commit(s) the branch you previously submitted. Please don't make the job of reviewing more difficult by hiding previous work.
## For resources
### Description
@@ -15,6 +11,7 @@ Add resource(s) | Remove resource(s) | Add info | Improve repo
### For book lists, is it a book? For course lists, is it a course? etc.
## Checklist:
- [ ] Read our [contributing guidelines](https://github.com/EbookFoundation/free-programming-books/blob/main/docs/CONTRIBUTING.md).
- [ ] [Search](https://ebookfoundation.github.io/free-programming-books-search/) for duplicates.
- [ ] Include author(s) and platform where appropriate.
- [ ] Put lists in alphabetical order, correct spacing.
+1 -1
View File
@@ -33,5 +33,5 @@ updates:
# Add the arrays of assignees and reviewers
assignees:
- "EbookFoundation/maintainers"
reviewers:
- "EbookFoundation/reviewers"
- "@Thenlie"
+9 -28
View File
@@ -37,12 +37,12 @@ jobs:
echo "fetch_depth=0" >> $GITHUB_OUTPUT
fi
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v4
with:
fetch-depth: ${{ steps.set-params.outputs.fetch-depth }}
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v40.1.1
with:
separator: " "
json: true
@@ -74,42 +74,22 @@ jobs:
fail-fast: false
steps:
- name: Checkout
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
uses: actions/checkout@v5
uses: actions/checkout@v4
with:
fetch-depth: ${{ needs.get-changed-files.outputs.fetch-depth }}
- name: Setup Ruby v2.6
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- name: Install awesome_bot
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
run: |
gem install awesome_bot
- name: Set output
id: set-output
# FILENAME takes the complete file path and strips everything before the final '/'
# FILEPATH replaces all '/' with '-' in the file path since '/' is not allowed in upload artifact name
# Due to a bug in actions/download-artifact, we need to rename README.md to BASE_README.md
run: |
echo "FILENAME=$(echo ${{ matrix.file }} | grep -oE '[a-zA-Z0-9_-]+(\.yml|\.md)')" >> "$GITHUB_OUTPUT"
file_path="${{ matrix.file }}"
file_path="${file_path//\//-}"
if [[ "$file_path" == "README.md" ]]; then
file_path="BASE_README.md"
fi
echo "FILEPATH=${file_path}" >> "$GITHUB_OUTPUT"
- name: "Check URLs of file: ${{ matrix.file }}"
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
run: |
awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true;
- uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@v3
with:
name: ${{ steps.set-output.outputs.FILEPATH }}
name: awesomebot-results
path: ${{ github.workspace }}/ab-results-*.json
@@ -119,10 +99,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout # for having the sources of the local action
uses: actions/checkout@v5
uses: actions/checkout@v4
# download and unzip the ab-results-*.json generated by job-matrix: check-urls
- name: Download artifacts
uses: actions/download-artifact@v8
- uses: actions/download-artifact@v3
with:
name: awesomebot-results
- name: Generate Summary Report
uses: ./.github/actions/awesomebot-gh-summary-action
with:
+3 -2
View File
@@ -12,10 +12,11 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
if: >
${{ github.event.workflow_run.event == 'pull_request' }}
${{ github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.conclusion == 'success' }}
steps:
- name: 'Download artifact'
uses: actions/github-script@v9
uses: actions/github-script@v6
with:
script: |
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
- name: Label conflicting PRs that are open
id: pr-labeler
uses: eps1lon/actions-label-merge-conflict@v3.1.0
uses: eps1lon/actions-label-merge-conflict@v2.1.0
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
retryAfter: 30 # seconds
+6 -5
View File
@@ -11,12 +11,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v4
with:
node-version: '16.x'
- run: npm install -g free-programming-books-lint
- name: Run linter
- name: Pull Request
run: |
fpb-lint books casts courses more &> output.log
@@ -27,8 +29,7 @@ jobs:
echo ${{ github.event.pull_request.html_url }} > ./pr/PRurl
cat output.log | sed -E 's:/home/runner/work/free-programming-books/|тЪа.+::' | uniq > ./pr/error.log
- name: Upload artifact
uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@v3
if: always()
with:
name: pr
-101
View File
@@ -1,101 +0,0 @@
name: RTL/LTR Markdown Linter
on: [pull_request]
permissions:
contents: read # Required to checkout the repository content
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Checkout the repository code
- name: Checkout code
uses: actions/checkout@v5
# Fetch the full history of 'main' for accurate git diff in PRs
- name: Fetch all history for main
run: git fetch --no-tags --prune --depth=50 origin main
# Set up the required Python version for the linter
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11' # Use a recent Python version for compatibility
# Install only the Python dependencies needed for the linter script
- name: Install Python dependencies
run: |
pip install python-bidi PyYAML
# (Optional) List files for debugging purposes
- name: List files in scripts directory and current path
run: |
echo "Current working directory:"
pwd
echo "Listing contents of scripts directory (if it exists at root):"
ls -la scripts/ || echo "scripts/ directory not found at root or ls failed"
# Identify all changed Markdown files in the PR using tj-actions/changed-files
- name: Get changed Markdown files
id: changed_md_files
uses: tj-actions/changed-files@v46
with:
files: |
**/*.md
# Check if the PR has the "RTL" label
- name: Check for RTL label
id: rtl_label
run: |
gh pr view ${{ github.event.pull_request.number }} --json labels --jq '.labels[].name' | grep -q '^RTL$' && echo "has_labels=true" >> $GITHUB_OUTPUT || echo "has_labels=false" >> $GITHUB_OUTPUT
env:
GH_TOKEN: ${{ github.token }}
# Check if any changed file is in ar, he, fa, ur
- name: Check for RTL language file changes
id: rtl_lang_files
run: |
RTL_CHANGED=false
for f in ${{ steps.changed_md_files.outputs.all_changed_files }}; do
if [[ "$f" =~ (ar|he|fa|ur) ]]; then
RTL_CHANGED=true
break
fi
done
echo "rtl_changed=$RTL_CHANGED" >> $GITHUB_OUTPUT
# Run the RTL/LTR Markdown linter:
# - Scans all Markdown files for issues and writes a full log
# - Prints GitHub Actions annotations only for issues on changed lines in changed files
# - Fails the job if any error or warning is found on changed lines
- name: Run RTL/LTR Markdown linter
id: run_linter
if: steps.rtl_label.outputs.has_labels == 'true' || steps.rtl_lang_files.outputs.rtl_changed == 'true'
continue-on-error: true
run: |
echo "Scanning all specified paths for full log..."
echo "Changed Markdown files for PR annotations: ${{ steps.changed_md_files.outputs.all_changed_files }}"
CHANGED_FILES_ARGS=""
if [ "${{ steps.changed_md_files.outputs.all_changed_files_count }}" -gt 0 ]; then
# Pass changed files to the script for PR annotation generation
CHANGED_FILES_ARGS="--changed-files ${{ steps.changed_md_files.outputs.all_changed_files }}"
fi
# Execute the linter.
# Annotations for changed files will be printed to stdout by the script.
# The script will also write a full log to 'rtl-linter-output.log'.
# If the script exits with a non-zero code (error found), this step will fail.
python3 scripts/rtl_ltr_linter.py books casts courses more ${CHANGED_FILES_ARGS} --log-file rtl-linter-output.log
# Upload the linter output log as a workflow artifact
# Only if the linter step was executed (success or failure)
- name: Upload linter output artifact
if: steps.run_linter.conclusion == 'success' || steps.run_linter.conclusion == 'failure'
uses: actions/upload-artifact@v7
with:
name: rtl-linter-output # Name of the artifact
path: rtl-linter-output.log # Path to the output file
if-no-files-found: ignore # Ignore if no files are found
+182 -20
View File
@@ -1,47 +1,209 @@
name: 'Stale handler'
name: Stale handler
on:
schedule:
- cron: '0 0 * * *' # Run every day at midnight
workflow_dispatch:
push: # when push this files to branches....
branches:
- 'main'
- 'gh-actions/test'
paths:
- '.github/workflows/stale.yml' # - this workflow
workflow_dispatch: # manually
inputs:
debug-only:
type: boolean
description: "Does a dry-run when enabled. No PR's will be altered"
description: 'If enabled, debug mode is on and then API calls that can alter your issues will not happen'
required: true
default: true
schedule: # or
- cron: "0 0 * * *" # once a day at 00:00 o'clock
permissions:
pull-requests: write
actions: write
issues: write
# no checkout/branching needed
contents: none
# This allows a subsequently queued workflow run to interrupt/wait for previous runs
concurrency:
group: '${{ github.workflow }}'
cancel-in-progress: false # true: interrupt, false = wait for
jobs:
stale:
name: Staler job
runs-on: ubuntu-latest
outputs:
# "XXX-len": the length of the "XXX" output object
staled-issues: ${{ steps.set-staled.outputs.issues }}
staled-issues-len: ${{ steps.set-staled.outputs.issues-len }}
staled-prs: ${{ steps.set-staled.outputs.prs }}
staled-prs-len: ${{ steps.set-staled.outputs.prs-len }}
closed-issues: ${{ steps.set-closed.outputs.issues }}
closed-issues-len: ${{ steps.set-closed.outputs.issues-len }}
closed-prs: ${{ steps.set-closed.outputs.prs }}
closed-prs-len: ${{ steps.set-closed.outputs.prs-len }}
# enable write access rights to allow bot comments and labeling
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10
- name: Stale issues
uses: actions/stale@v8
id: stale-issues
with:
days-before-issue-stale: -1 # Don't mark issues as stale
days-before-issue-close: -1 # Don't close issues
debug-only: ${{ github.event.inputs.debug-only == 'true' }}
operations-per-run: 30
days-before-stale: 60
days-before-close: 30
ignore-updates: false
remove-stale-when-updated: true
stale-issue-label: "stale"
close-issue-label: "stale: closed"
stale-issue-message: |
This issue has been automatically marked as stale because it has not had recent activity during last 60 days :sleeping:
It will be closed in 30 days if no further activity occurs. To unstale this issue, remove stale label or add a comment with a detailed explanation.
There can be many reasons why some specific issue has no activity. The most probable cause is lack of time, not lack of interest.
Thank you for your patience :heart:
close-issue-message: |
This issue has been automatically closed because it has been inactive during the last 30 days since being marked as stale.
As author or maintainer, it can always be reopened if you see that carry on been useful.
Anyway, thank you for your interest in contribute :heart:
close-issue-reason: not_planned
exempt-issue-labels: "blocked,must,should,keep,:busts_in_silhouette: discussion,:eyes: Needs Review,:pushpin: pinned"
# disable PR processing at all (this step is for treat issues)
days-before-pr-stale: -1
days-before-pr-close: -1
ignore-pr-updates: true
remove-pr-stale-when-updated: false
stale-pr-label: " "
- name: Print outputs for issues
run: echo ${{ format('{0},{1}', toJSON(steps.stale-issues.outputs.staled-issues-prs), toJSON(steps.stale-issues.outputs.closed-issues-prs)) }}
- name: Stale Pull Requests
uses: actions/stale@v8
id: stale-prs
with:
debug-only: ${{ github.event.inputs.debug-only == 'true' }}
operations-per-run: 30
days-before-stale: 60
days-before-close: 30
ignore-updates: false
remove-stale-when-updated: true
stale-pr-label: "stale"
close-pr-label: "stale: closed"
stale-pr-message: |
'This Pull Request has been automatically marked as stale because it has not had recent activity during last 60 days :sleeping:
This Pull Request has been automatically marked as stale because it has not had recent activity during last 60 days :sleeping:
It will be closed in 30 days if no further activity occurs. To unstale this PR, draft it, remove stale label, comment with a detailed explanation or push more commits.
There can be many reasons why some specific PR has no activity. The most probable cause is lack of time, not lack of interest.
Thank you for your patience :heart:'
Thank you for your patience :heart:
close-pr-message: |
This Pull Request has been automatically closed because it has been inactive during the last 30 days since being marked as stale.
As author or maintainer, it can always be reopened if you see that carry on been useful.
Anyway, thank you for your interest in contribute :heart:
days-before-pr-stale: 60
days-before-pr-close: 30
stale-pr-label: 'stale'
exempt-pr-labels: 'keep' # Don't mark PR's with this label as stale
labels-to-remove-when-unstale: 'stale'
exempt-draft-pr: true
debug-only: ${{ github.event.inputs.debug-only == 'true' }}
enable-statistics: true
exempt-pr-labels: "blocked,must,should,keep,:busts_in_silhouette: discussion,:eyes: Needs Review"
delete-branch: false # if true, job needs permissions "contents: write"
# disable issues processing at all (this step is for treat PRs)
days-before-issue-stale: -1
days-before-issue-close: -1
ignore-issue-updates: true
remove-issue-stale-when-updated: false
stale-issue-label: " "
- name: Print outputs for PRs
run: echo ${{ format('{0},{1}', toJSON(steps.stale-prs.outputs.staled-issues-prs), toJSON(steps.stale-prs.outputs.closed-issues-prs)) }}
## Removing private properties from each JSON object and compute array length
## TODO: Delete these set-* workarounds when resolve actions/stale#806 ?
- name: Set staled
id: set-staled
run: |
echo $INPUT_ISSUES \
| jq --compact-output --raw-output 'del(.[] | .[to_entries[] | .key | select(startswith("_"))])' \
| sed -e 's/^/issues=/' \
>> $GITHUB_OUTPUT
echo $INPUT_ISSUES \
| jq --raw-output '. | length' \
| sed -e 's/^/issues-len=/' \
>> $GITHUB_OUTPUT
echo $INPUT_PRS \
| jq --compact-output --raw-output 'del(.[] | .[to_entries[] | .key | select(startswith("_"))])' \
| sed -e 's/^/prs=/' \
>> $GITHUB_OUTPUT
echo $INPUT_PRS \
| jq --raw-output '. | length' \
| sed -e 's/^/prs-len=/' \
>> $GITHUB_OUTPUT
env:
INPUT_ISSUES: ${{ steps.stale-issues.outputs.staled-issues-prs }}
INPUT_PRS: ${{ steps.stale-prs.outputs.staled-issues-prs }}
- name: Set closed
id: set-closed
run: |
echo $INPUT_ISSUES \
| jq --compact-output --raw-output 'del(.[] | .[to_entries[] | .key | select(startswith("_"))])' \
| sed -e 's/^/issues=/' \
>> $GITHUB_OUTPUT
echo $INPUT_ISSUES \
| jq --raw-output '. | length' \
| sed -e 's/^/issues-len=/' \
>> $GITHUB_OUTPUT
echo $INPUT_PRS \
| jq --compact-output --raw-output 'del(.[] | .[to_entries[] | .key | select(startswith("_"))])' \
| sed -e 's/^/prs=/' \
>> $GITHUB_OUTPUT
echo $INPUT_PRS \
| jq --raw-output '. | length' \
| sed -e 's/^/prs-len=/' \
>> $GITHUB_OUTPUT
env:
INPUT_ISSUES: ${{ steps.stale-issues.outputs.closed-issues-prs }}
INPUT_PRS: ${{ steps.stale-prs.outputs.closed-issues-prs }}
- name: Write job summary
run: |
echo "### Staled issues" \
>> $GITHUB_STEP_SUMMARY
# render json array to a Markdown table with an optional "No records" message if empty
echo "$STALED_ISSUES" \
| jq --raw-output 'map("| [#\(.number)](\(env.GITHUB_ISSUES_URL)/\(.number)) | \(.title) |") | join("\n") | if (. == "") then "\nNo records.\n" else "\n| | Title |\n|---:|:------|\n\(.)\n" end' \
>> $GITHUB_STEP_SUMMARY
echo "### Staled pull requests" \
>> $GITHUB_STEP_SUMMARY
# render json array to a Markdown table with an optional "No records" message if empty
echo "$STALED_PRS" \
| jq --raw-output 'map("| [#\(.number)](\(env.GITHUB_PULL_URL)/\(.number)) | \(.title) |") | join("\n") | if (. == "") then "\nNo records.\n" else "\n| | Title |\n|---:|:------|\n\(.)\n" end' \
>> $GITHUB_STEP_SUMMARY
echo "### Closed issues" \
>> $GITHUB_STEP_SUMMARY
# render json array to a Markdown table with an optional "No records" message if empty
echo "$CLOSED_ISSUES" \
| jq --raw-output 'map("| [#\(.number)](\(env.GITHUB_ISSUES_URL)/\(.number)) | \(.title) |") | join("\n") | if (. == "") then "\nNo records.\n" else "\n| | Title |\n|---:|:------|\n\(.)\n" end' \
>> $GITHUB_STEP_SUMMARY
echo "### Closed pull requests" \
>> $GITHUB_STEP_SUMMARY
# render json array to a Markdown table with an optional "No records" message if empty
echo "$CLOSED_PRS" \
| jq --raw-output 'map("| [#\(.number)](\(env.GITHUB_PULL_URL)/\(.number)) | \(.title) |") | join("\n") | if (. == "") then "\nNo records.\n" else "\n| | Title |\n|---:|:------|\n\(.)\n" end' \
>> $GITHUB_STEP_SUMMARY
env:
GITHUB_ISSUES_URL: ${{ format('{0}/{1}/issues', github.server_url, github.repository) }}
GITHUB_PULL_URL: ${{ format('{0}/{1}/pull', github.server_url, github.repository) }}
STALED_ISSUES: ${{ steps.set-staled.outputs.issues }}
CLOSED_ISSUES: ${{ steps.set-closed.outputs.issues }}
STALED_PRS: ${{ steps.set-staled.outputs.prs }}
CLOSED_PRS: ${{ steps.set-closed.outputs.prs }}
+1 -1
View File
@@ -8,7 +8,7 @@
*.orig
*.tmp
*.idea
# #########################################################
# Global/Diff.gitignore
# #####################################
+11 -16
View File
@@ -3,8 +3,8 @@
<div align="center" markdown="1">
[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)&#160;
[![License: CC BY 4.0](https://img.shields.io/github/license/EbookFoundation/free-programming-books)](https://creativecommons.org/licenses/by/4.0/)&#160;
[![Hacktoberfest 2025 stats](https://img.shields.io/github/hacktoberfest/2025/EbookFoundation/free-programming-books?label=Hacktoberfest+2025)](https://github.com/EbookFoundation/free-programming-books/pulls?q=is%3Apr+is%3Amerged+created%3A2025-10-01..2025-10-31)
[![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/)&#160;
[![Hacktoberfest 2023 stats](https://img.shields.io/github/hacktoberfest/2023/EbookFoundation/free-programming-books?label=Hacktoberfest+2023)](https://github.com/EbookFoundation/free-programming-books/pulls?q=is%3Apr+is%3Amerged+created%3A2023-10-01..2023-10-31)
</div>
@@ -24,7 +24,7 @@ This page is available as an easy-to-read website. Access it by clicking on [![h
This list was originally a clone of [StackOverflow - List of Freely Available Programming Books](https://web.archive.org/web/20140606191453/http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books/392926) with contributions from Karan Bhangui and George Stocker.
The list was moved to GitHub by Victor Felder for collaborative updating and maintenance. It has grown to become one of [GitHub's most popular repositories](https://octoverse.github.com/).
The list was moved to GitHub by Victor Felder for collaborative updating and maintenance. It has grown to become one of [GitHub's most popular repository](https://octoverse.github.com/).
<div align="center" markdown="1">
@@ -57,12 +57,12 @@ Click on these badges to see how you might be able to help:
</div>
## How To Share
## How to Share
<div align="left" markdown="1">
<a href="https://www.facebook.com/share.php?u=https%3A%2F%2Fgithub.com%2FEbookFoundation%2Ffree-programming-books&p[images][0]=&p[title]=Free%20Programming%20Books&p[summary]=">Share on Facebook</a><br>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=https://github.com/EbookFoundation/free-programming-books&title=Free%20Programming%20Books&summary=&source=">Share on LinkedIn</a><br>
<a href="https://toot.kytta.dev/?text=https://github.com/EbookFoundation/free-programming-books">Share on Mastodon/Fediverse</a><br>
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://github.com/EbookFoundation/free-programming-books&title=Free%20Programming%20Books&summary=&source=">Share on LinkedIn</a><br>
<a href="https://toot.kytta.dev/?mini=true&url=https://github.com/EbookFoundation/free-programming-books&title=Free%20Programming%20Books&summary=&source=">Share on Mastodon/Fediverse</a><br>
<a href="https://t.me/share/url?url=https://github.com/EbookFoundation/free-programming-books">Share on Telegram</a><br>
<a href="https://twitter.com/intent/tweet?text=https://github.com/EbookFoundation/free-programming-books%0AFree%20Programming%20Books">Share on ЁЭХП (Twitter)</a><br>
</div>
@@ -87,7 +87,7 @@ This project lists books and other resources grouped by genres:
+ [Burmese / сАЩсА╝сАФсА║сАЩсАмсАШсАмсАЮсАм](books/free-programming-books-my.md)
+ [Chinese / ф╕нцЦЗ](books/free-programming-books-zh.md)
+ [Czech / ─Нe┼бtina / ─Нesk├╜ jazyk](books/free-programming-books-cs.md)
+ [Catalan / catalan / catal├а](books/free-programming-books-ca.md)
+ [Catalan / catalan/ catal├а](books/free-programming-books-ca.md)
+ [Danish / dansk](books/free-programming-books-da.md)
+ [Dutch / Nederlands](books/free-programming-books-nl.md)
+ [Estonian / eesti keel](books/free-programming-books-et.md)
@@ -113,7 +113,6 @@ This project lists books and other resources grouped by genres:
+ [Russian / ╨а╤Г╤Б╤Б╨║╨╕╨╣ ╤П╨╖╤Л╨║](books/free-programming-books-ru.md)
+ [Serbian / ╤Б╤А╨┐╤Б╨║╨╕ ╤Ш╨╡╨╖╨╕╨║ / srpski jezik](books/free-programming-books-sr.md)
+ [Slovak / sloven─Нina](books/free-programming-books-sk.md)
+ [Slovenian / Sloven┼б─Нina](books/free-programming-books-sl.md)
+ [Spanish / espa├▒ol / castellano](books/free-programming-books-es.md)
+ [Swedish / Svenska](books/free-programming-books-sv.md)
+ [Tamil / родрооро┐ро┤рпН](books/free-programming-books-ta.md)
@@ -121,7 +120,6 @@ This project lists books and other resources grouped by genres:
+ [Thai / р╣Др╕Чр╕в](books/free-programming-books-th.md)
+ [Turkish / T├╝rk├зe](books/free-programming-books-tr.md)
+ [Ukrainian / ╨г╨║╤А╨░╤Ч╨╜╤Б╤М╨║╨░](books/free-programming-books-uk.md)
+ [Urdu / ╪з╪▒╪п┘И](books/free-programming-books-ur.md)
+ [Vietnamese / Tiс║┐ng Viс╗Зt](books/free-programming-books-vi.md)
### Cheat Sheets
@@ -145,7 +143,7 @@ This project lists books and other resources grouped by genres:
+ [Indonesian / Bahasa Indonesia](courses/free-courses-id.md)
+ [Italian / italiano](courses/free-courses-it.md)
+ [Japanese / цЧецЬмшкЮ](courses/free-courses-ja.md)
+ [Kannada / р▓Хр▓ир│Нр▓ир▓б](courses/free-courses-kn.md)
+ [Kannada/р▓Хр▓ир│Нр▓ир▓б](courses/free-courses-kn.md)
+ [Kazakh / ╥Ы╨░╨╖╨░╥Ы╤И╨░](courses/free-courses-kk.md)
+ [Khmer / сЮЧсЮ╢сЮЯсЮ╢сЮБсЯТсЮШсЯВсЮЪ](courses/free-courses-km.md)
+ [Korean / эХЬъ╡ньЦ┤](courses/free-courses-ko.md)
@@ -157,8 +155,6 @@ This project lists books and other resources grouped by genres:
+ [Polish / polski / j─Щzyk polski / polszczyzna](courses/free-courses-pl.md)
+ [Portuguese (Brazil)](courses/free-courses-pt_BR.md)
+ [Portuguese (Portugal)](courses/free-courses-pt_PT.md)
+ [Punjabi / рикрй░риЬри╛римрйА / ┘╛┘Ж╪м╪з╪и█М](courses/free-courses-pa.md)
+ [Romanian (Romania) / limba rom├вn─Г / rom├вn](courses/free-courses-ro.md)
+ [Russian / ╨а╤Г╤Б╤Б╨║╨╕╨╣ ╤П╨╖╤Л╨║](courses/free-courses-ru.md)
+ [Sinhala / р╖Гр╖Тр╢Вр╖Др╢╜](courses/free-courses-si.md)
+ [Spanish / espa├▒ol / castellano](courses/free-courses-es.md)
@@ -176,7 +172,7 @@ This project lists books and other resources grouped by genres:
+ [Chinese / ф╕нцЦЗ](more/free-programming-interactive-tutorials-zh.md)
+ [English](more/free-programming-interactive-tutorials-en.md)
+ [German / Deutsch](more/free-programming-interactive-tutorials-de.md)
+ [German](more/free-programming-interactive-tutorials-de.md)
+ [Japanese / цЧецЬмшкЮ](more/free-programming-interactive-tutorials-ja.md)
+ [Russian / ╨а╤Г╤Б╤Б╨║╨╕╨╣ ╤П╨╖╤Л╨║](more/free-programming-interactive-tutorials-ru.md)
@@ -198,7 +194,6 @@ Free Podcasts and Screencasts:
+ [English](casts/free-podcasts-screencasts-en.md)
+ [Finnish / Suomi](casts/free-podcasts-screencasts-fi.md)
+ [French / fran├зais](casts/free-podcasts-screencasts-fr.md)
+ [German / Deutsch](casts/free-podcasts-screencasts-de.md)
+ [Hebrew / ╫в╫С╫и╫Щ╫к](casts/free-podcasts-screencasts-he.md)
+ [Indonesian / Bahasa Indonesia](casts/free-podcasts-screencasts-id.md)
+ [Persian / Farsi (Iran) / ┘Б╪з╪▒╪│┘Й](casts/free-podcasts-screencasts-fa_IR.md)
@@ -215,11 +210,11 @@ Free Podcasts and Screencasts:
### Programming Playgrounds
Write, compile, and run your code within a browser. Try it out!
Write, compile and run your code within a browser. Try it out!
+ [Chinese / ф╕нцЦЗ](more/free-programming-playgrounds-zh.md)
+ [English](more/free-programming-playgrounds.md)
+ [German / Deutsch](more/free-programming-playgrounds-de.md)
+ [German](more/free-programming-playgrounds-de.md)
## Translations
-9
View File
@@ -1,9 +0,0 @@
<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->
<!-- Setup Google Analytics -->
<!-- You can set your favicon here -->
<link rel="shortcut icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
<!-- end custom head snippets -->
+14 -20
View File
@@ -5,7 +5,6 @@
* [Arduino](#arduino)
* [Artificial Intelligence](#artificial-intelligence)
* [DB & DBMS](#db--dbms)
* [Git](#git)
* [HTML and CSS](#html-and-css)
* [Introduction to Programming in Arabic](#introduction-to-programming-in-arabic)
* [JavaScript](#javascript)
@@ -25,7 +24,7 @@
* [╪з╪н╪к╪▒┘Б ╪з┘Д╪г╪▒╪п┘И┘К┘Ж┘И](https://www.ev-center.com/uploads/2/1/2/6/21261678/arduino.pdf) - Working Group&rlm; (PDF)
* [╪з╪▒╪п┘И┘К┘Ж┘И ╪и╪и╪│╪з╪╖╪й](https://simplyarduino.com/%D9%83%D8%AA%D8%A7%D8%A8-%D8%A7%D8%B1%D8%AF%D9%88%D9%8A%D9%86%D9%88-%D8%A8%D8%A8%D8%B3%D8%A7%D8%B7%D8%A9/) - ╪╣╪и╪п╪з┘Д┘Д┘З ╪╣┘Д┘К ╪╣╪и╪п╪з┘Д┘Д┘З, Abdallah Ali Abdallah Elmasry&rlm; (PDF)
* [AVR&rlm; ╪и╪и╪│╪з╪╖╪й: ┘Е┘Ж ╪к╪┤╪║┘К┘Д ╪п╪з┘К┘И╪п ╪╢┘И╪ж┘К ╪е┘Д┘Й ╪г┘Ж╪╕┘Е╪й ╪з┘Д┘И┘В╪к ╪з┘Д╪н┘В┘К┘В┘К](https://github.com/abdallah-ali-abdallah/Simply-AVR-Book) - ╪╣╪и╪п╪з┘Д┘Д┘З ╪╣┘Д┘К ╪╣╪и╪п╪з┘Д┘Д┘З, Abdallah Ali Abdallah Elmasry&rlm; (ODT, PDF&rlm;)
* [AVR ╪и╪и╪│╪з╪╖╪й: ┘Е┘Ж ╪к╪┤╪║┘К┘Д ╪п╪з┘К┘И╪п ╪╢┘И╪ж┘К ╪е┘Д┘Й ╪г┘Ж╪╕┘Е╪й ╪з┘Д┘И┘В╪к ╪з┘Д╪н┘В┘К┘В┘К](https://github.com/abdallah-ali-abdallah/Simply-AVR-Book) - ╪╣╪и╪п╪з┘Д┘Д┘З ╪╣┘Д┘К ╪╣╪и╪п╪з┘Д┘Д┘З, Abdallah Ali Abdallah Elmasry&rlm; (ODT, PDF)
### Artificial Intelligence
@@ -35,12 +34,7 @@
### DB & DBMS
* [╪к╪╡┘Е┘К┘Е ┘В┘И╪з╪╣╪п ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://academy.hsoub.com/files/26-╪к╪╡┘Е┘К┘Е-┘В┘И╪з╪╣╪п-╪з┘Д╪и┘К╪з┘Ж╪з╪к/) - Adrienne Watt, Nelson Eng&rlm;╪М ╪к╪▒╪м┘Е╪й ╪г┘К┘Е┘Ж ╪╖╪з╪▒┘В ┘И╪╣┘Д╪з ╪╣╪и╪з╪│&rlm; (PDF)
### Git
* [Pro Git](https://github.com/progit2-ar/progit2) - Scott Chacon, Ben Straub&rlm; (HTML)
* [╪к╪╡┘Е┘К┘Е ┘В┘И╪з╪╣╪п ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://academy.hsoub.com/files/26-╪к╪╡┘Е┘К┘Е-┘В┘И╪з╪╣╪п-╪з┘Д╪и┘К╪з┘Ж╪з╪к/) - Adrienne Watt, Nelson Eng╪М ╪к╪▒╪м┘Е╪й ╪г┘К┘Е┘Ж ╪╖╪з╪▒┘В ┘И╪╣┘Д╪з ╪╣╪и╪з╪│ (PDF)
### HTML and CSS
@@ -56,31 +50,31 @@
### JavaScript
* [╪к╪╣┘Д┘Е JavaScript&rlm;](https://itwadi.com/node/3002) - Cody Lindley,&rlm; ╪╣╪и╪п╪з┘Д┘Д╪╖┘К┘Б ╪з┘К┘Е╪┤&rlm; (PDF)
* [╪│┘Д╪│┘Д╪й ╪к╪╣┘Д┘Е Next.js&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К╪й](https://blog.abdelhadi.org/learn-nextjs-in-arabic/) - Flavio Copes,&rlm; ╪╣╪и╪п╪з┘Д┘З╪з╪п┘К ╪з┘Д╪г┘Ж╪п┘Д╪│┘К
* [╪к╪╣┘Д┘Е JavaScript&rlm;](https://itwadi.com/node/3002) - Cody Lindley, ╪╣╪и╪п╪з┘Д┘Д╪╖┘К┘Б ╪з┘К┘Е╪┤ (PDF)
* [╪│┘Д╪│┘Д╪й ╪к╪╣┘Д┘Е Next.js ╪и╪з┘Д╪╣╪▒╪и┘К╪й](https://blog.abdelhadi.org/learn-nextjs-in-arabic/) - Flavio Copes, ╪╣╪и╪п╪з┘Д┘З╪з╪п┘К ╪з┘Д╪г┘Ж╪п┘Д╪│┘К
#### Vue.js
* [╪г╪│╪з╪│┘К╪з╪к ╪е╪╖╪з╪▒ ╪з┘Д╪╣┘Е┘Д Vue.js&rlm;](https://academy.hsoub.com/files/22-╪г╪│╪з╪│┘К╪з╪к-╪е╪╖╪з╪▒-╪з┘Д╪╣┘Е┘Д-vuejs/) - ╪н╪│╪з┘Е ╪и╪▒┘З╪з┘Ж&rlm; (PDF)
* [╪г╪│╪з╪│┘К╪з╪к ╪е╪╖╪з╪▒ ╪з┘Д╪╣┘Е┘Д Vue.js](https://academy.hsoub.com/files/22-╪г╪│╪з╪│┘К╪з╪к-╪е╪╖╪з╪▒-╪з┘Д╪╣┘Е┘Д-vuejs/) - ╪н╪│╪з┘Е ╪и╪▒┘З╪з┘Ж (PDF)
### Linux
* [╪г┘И╪и┘Ж╪к┘И ╪и╪и╪│╪з╪╖╪й](https://www.simplyubuntu.com) - Ahmed AbouZaid&rlm; (PDF)
* [╪п┘Б╪к╪▒ ┘Е╪п┘К╪▒ ╪п╪и┘К╪з┘Ж](https://ar.debian-handbook.info) - Rapha├лl Hertzog, Roland Mas, MUHAMMET SA─░T Muhammet Sait&rlm; (PDF, HTML&rlm;)
* [╪п┘Д┘К┘Д ╪е╪п╪з╪▒╪й ╪о┘И╪з╪п┘К┘Е ╪г┘И╪и┘Ж╪к┘И 14.04&rlm;](https://academy.hsoub.com/files/10-╪п┘Д┘К┘Д-╪е╪п╪з╪▒╪й-╪о┘И╪з╪п┘К┘Е-╪г┘И╪и┘Ж╪к┘И/) - Ubuntu documentation team, Abdullatif Eymash&rlm; (PDF)
* [╪│╪╖╪▒ ╪г┘И╪з┘Е╪▒ ┘Д┘К┘Ж┘Г╪│](https://itwadi.com/node/2765) - Willam E. Shotts Jr.&lrm;, ╪к╪▒╪м┘Е╪й ╪╣╪и╪п ╪з┘Д┘Д╪╖┘К┘Б ╪з┘К┘Е╪┤&rlm; (PDF)
* [╪п┘Б╪к╪▒ ┘Е╪п┘К╪▒ ╪п╪и┘К╪з┘Ж](https://ar.debian-handbook.info) - Rapha├лl Hertzog, Roland Mas, MUHAMMET SA─░T Muhammet Sait&rlm; (PDF, HTML)
* [╪п┘Д┘К┘Д ╪е╪п╪з╪▒╪й ╪о┘И╪з╪п┘К┘Е ╪г┘И╪и┘Ж╪к┘И 14.04](https://academy.hsoub.com/files/10-╪п┘Д┘К┘Д-╪е╪п╪з╪▒╪й-╪о┘И╪з╪п┘К┘Е-╪г┘И╪и┘Ж╪к┘И/) - Ubuntu documentation team, Abdullatif Eymash&rlm; (PDF)
* [╪│╪╖╪▒ ╪г┘И╪з┘Е╪▒ ┘Д┘К┘Ж┘Г╪│](https://itwadi.com/node/2765) - Willam E. Shotts Jr., ╪к╪▒╪м┘Е╪й ╪╣╪и╪п ╪з┘Д┘Д╪╖┘К┘Б ╪з┘К┘Е╪┤ (PDF)
### Open Source Software
* [╪п┘Д┘К┘Д ╪з┘Д╪и╪▒┘Е╪м┘К╪з╪к ╪з┘Д╪н╪▒╪й ┘Е┘Б╪к┘И╪н╪й](https://www.freeopensourceguide.com) - ╪г╪н┘Е╪п ┘Е. ╪г╪и┘И╪▓┘К╪п&rlm; (PDF)
* [╪п┘Д┘К┘Д ╪з┘Д╪и╪▒┘Е╪м┘К╪з╪к ╪з┘Д╪н╪▒╪й ┘Е┘Б╪к┘И╪н╪й](https://www.freeopensourceguide.com) - ╪г╪н┘Е╪п ┘Е. ╪г╪и┘И╪▓┘К╪п (PDF)
### Operating Systems
* [╪г┘Ж╪╕┘Е╪й ╪з┘Д╪к╪┤╪║┘К┘Д ┘Д┘Д┘Е╪и╪▒┘Е╪м┘К┘Ж](https://academy.hsoub.com/files/24-╪г┘Ж╪╕┘Е╪й-╪з┘Д╪к╪┤╪║┘К┘Д-┘Д┘Д┘Е╪и╪▒┘Е╪м┘К┘Ж/) - Allen B. Downey,&rlm; ╪к╪▒╪м┘Е╪й ╪╣┘Д╪з ╪╣╪и╪з╪│&rlm; (PDF)
* [╪г┘Ж╪╕┘Е╪й ╪з┘Д╪к╪┤╪║┘К┘Д ┘Д┘Д┘Е╪и╪▒┘Е╪м┘К┘Ж](https://academy.hsoub.com/files/24-╪г┘Ж╪╕┘Е╪й-╪з┘Д╪к╪┤╪║┘К┘Д-┘Д┘Д┘Е╪и╪▒┘Е╪м┘К┘Ж/) - Allen B. Downey ,╪к╪▒╪м┘Е╪й ╪╣┘Д╪з ╪╣╪и╪з╪│ (PDF)
### Python
@@ -101,18 +95,18 @@
### Security
* [╪к╪г┘Е┘К┘Ж ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д┘Д╪з╪│┘Д┘Г┘К╪й ┘Д┘Д┘Е╪│╪к╪о╪п┘Е ╪з┘Д┘Е┘Ж╪▓┘Д┘К](https://mohamedation.com/securing-wifi/ar/) - Mohamed Adel&rlm; (HTML)
* [╪п┘Д┘К┘Д ╪з┘Д╪г┘Е╪з┘Ж ╪з┘Д╪▒┘В┘Е┘К](https://academy.hsoub.com/files/20-%D8%AF%D9%84%D9%8A%D9%84-%D8%A7%D9%84%D8%A3%D9%85%D8%A7%D9%86-%D8%A7%D9%84%D8%B1%D9%82%D9%85%D9%8A/) - ┘Е╪н┘Е╪п ┘З╪з┘Ж┘К ╪╡╪и╪з╪║&rlm; (PDF)
* [╪п┘Д┘К┘Д ╪з┘Д╪г┘Е╪з┘Ж ╪з┘Д╪▒┘В┘Е┘К](https://academy.hsoub.com/files/20-%D8%AF%D9%84%D9%8A%D9%84-%D8%A7%D9%84%D8%A3%D9%85%D8%A7%D9%86-%D8%A7%D9%84%D8%B1%D9%82%D9%85%D9%8A/)
### SQL
* [┘Е┘Д╪з╪н╪╕╪з╪к ┘Д┘Д╪╣╪з┘Е┘Д┘К┘Ж ╪и┘Д╪║╪й SQL&rlm;](https://academy.hsoub.com/files/16-%D9%85%D9%84%D8%A7%D8%AD%D8%B8%D8%A7%D8%AA-%D9%84%D9%84%D8%B9%D8%A7%D9%85%D9%84%D9%8A%D9%86-%D8%A8%D9%84%D8%BA%D8%A9-sql/)
* [┘Е┘Д╪з╪н╪╕╪з╪к ┘Д┘Д╪╣╪з┘Е┘Д┘К┘Ж ╪и┘Д╪║╪й SQL](https://academy.hsoub.com/files/16-%D9%85%D9%84%D8%A7%D8%AD%D8%B8%D8%A7%D8%AA-%D9%84%D9%84%D8%B9%D8%A7%D9%85%D9%84%D9%8A%D9%86-%D8%A8%D9%84%D8%BA%D8%A9-sql/)
#### PostgreSQL
* [╪з┘Д╪п┘Д┘К┘Д ╪з┘Д╪╣┘Е┘Д┘К ╪е┘Д┘Й ┘В┘И╪з╪╣╪п ╪и┘К╪з┘Ж╪з╪к PostgreSQL&rlm;](https://academy.hsoub.com/files/18-%D8%A7%D9%84%D8%AF%D9%84%D9%8A%D9%84-%D8%A7%D9%84%D8%B9%D9%85%D9%84%D9%8A-%D8%A5%D9%84%D9%89-%D9%82%D9%88%D8%A7%D8%B9%D8%AF-%D8%A8%D9%8A%D8%A7%D9%86%D8%A7%D8%AA-postgresql/) - Craig Kerstiens╪М&rlm; ┘Е╪╡╪╖┘Б┘Й ╪╣╪╖╪з ╪з┘Д╪╣╪з┘К╪┤&rlm; (PDF)
* [╪и┘И╪│╪к╪м╪▒┘К╪│┘Г┘Д ┘Г╪к╪з╪и ╪з┘Д┘И╪╡┘Б╪з╪к](https://itwadi.com/PostgreSQL_Cookbook) - Chitij Chaumann&rlm; (PDF)
* [╪з┘Д╪п┘Д┘К┘Д ╪з┘Д╪╣┘Е┘Д┘К ╪е┘Д┘Й ┘В┘И╪з╪╣╪п ╪и┘К╪з┘Ж╪з╪к PostgreSQL&rlm;](https://academy.hsoub.com/files/18-%D8%A7%D9%84%D8%AF%D9%84%D9%8A%D9%84-%D8%A7%D9%84%D8%B9%D9%85%D9%84%D9%8A-%D8%A5%D9%84%D9%89-%D9%82%D9%88%D8%A7%D8%B9%D8%AF-%D8%A8%D9%8A%D8%A7%D9%86%D8%A7%D8%AA-postgresql/) - Craig Kerstiens╪М ┘Е╪╡╪╖┘Б┘Й ╪╣╪╖╪з ╪з┘Д╪╣╪з┘К╪┤ (PDF)
* [╪и┘И╪│╪к╪м╪▒┘К╪│┘Г┘Д ┘Г╪к╪з╪и ╪з┘Д┘И╪╡┘Б╪з╪к](https://itwadi.com/PostgreSQL_Cookbook) - Chitij Chauhan&rlm; (PDF)
</div>
+14 -8
View File
@@ -1,27 +1,33 @@
### Index
* [C](#c)
* [Git](#git)
* [HTML](#html)
* [HTML and CSS](#html-and-css)
* [JavaScript](#javascript)
* [Linux](#linux)
* [PHP](#php)
### C
* [C Proqramla┼Яd─▒rma Dili](https://web.archive.org/web/20241214000729/https://ilkaddimlar.com/ders/c-proqramlasdirma-dili) ( :card_file_box: archived)
* [C Proqramla┼Яd─▒rma Dili](http://ilkaddimlar.com/ders/c-proqramlasdirma-dili)
### Git
### HTML and CSS
* [Pro Git](https://git-scm.com/book/az/v2) - Scott Chacon, Ben Straub (HTML, PDF, EPUB)
* [CSS](http://ilkaddimlar.com/ders/css)
* [HTML](http://ilkaddimlar.com/ders/html)
### HTML
### JavaScript
* [HTML](https://web.archive.org/web/20241214005042/https://ilkaddimlar.com/ders/html) ( :card_file_box: archived)
* [JavaScript](http://ilkaddimlar.com/ders/javascript)
### Linux
* [Linux](https://web.archive.org/web/20241214095624/https://ilkaddimlar.com/ders/linux) ( :card_file_box: archived)
* [Linux](http://ilkaddimlar.com/ders/linux)
### PHP
* [PHP](http://ilkaddimlar.com/ders/php)
-7
View File
@@ -3,7 +3,6 @@
* [C](#c)
* [C#](#csharp)
* [C++](#cpp)
* [Git](#git)
* [Java](#java)
* [JavaScript](#javascript)
* [LaTeX](#latex)
@@ -29,11 +28,6 @@
* [╨Ю╤Б╨╜╨╛╨▓╨╕ ╨╜╨░ ╨┐╤А╨╛╨│╤А╨░╨╝╨╕╤А╨░╨╜╨╡╤В╨╛ ╤Б╤К╤Б C++](https://cpp-book.softuni.bg) - ╨б╨▓╨╡╤В╨╗╨╕╨╜ ╨Э╨░╨║╨╛╨▓ ╨╕ ╨║╨╛╨╗╨╡╨║╤В╨╕╨▓
### Git
* [Pro Git](https://git-scm.com/book/bg/v2) - Scott Chacon, Ben Straub (HTML, PDF, EPUB)
### Java
* [╨Т╤К╨▓╨╡╨┤╨╡╨╜╨╕╨╡ ╨▓ ╨┐╤А╨╛╨│╤А╨░╨╝╨╕╤А╨░╨╜╨╡╤В╨╛ ╤Б Java](https://introprogramming.info/intro-java-book) - ╨б╨▓╨╡╤В╨╗╨╕╨╜ ╨Э╨░╨║╨╛╨▓ ╨╕ ╨║╨╛╨╗╨╡╨║╤В╨╕╨▓
@@ -56,4 +50,3 @@
### Python
* [╨Ю╤Б╨╜╨╛╨▓╨╕ ╨╜╨░ ╨┐╤А╨╛╨│╤А╨░╨╝╨╕╤А╨░╨╜╨╡╤В╨╛ ╤Б Python](https://python-book.softuni.bg) - ╨б╨▓╨╡╤В╨╗╨╕╨╜ ╨Э╨░╨║╨╛╨▓ ╨╕ ╨║╨╛╨╗╨╡╨║╤В╨╕╨▓
+9 -25
View File
@@ -4,7 +4,6 @@
* [C](#c)
* [C++](#cpp)
* [Data Science](#data-science)
* [Git and Github](#git-and-github)
* [Go](#go)
* [Java](#java)
* [JavaScript](#javascript)
@@ -12,19 +11,22 @@
* [Misc](#misc)
* [Python](#python)
* [Sql](#sql)
* [Web Development](#web-development)
### Algorithms
* [Dynamic Programming Book ┬лржбрж╛ржЗржирж╛ржорж┐ржХ ржкрзНрж░рзЛржЧрзНрж░рж╛ржорж┐ржВ ржмржЗ┬╗](https://dp-bn.github.io) - Tasmeem Reza, Mamnoon Siam (PDF, [LaTeX](https://github.com/Bruteforceman/dynamic-programming-book))
* [Dynamic Programming Book ┬лржбрж╛ржЗржирж╛ржорж┐ржХ ржкрзНрж░рзЛржЧрзНрж░рж╛ржорж┐ржВ ржмржЗ┬╗](https://dp-bn.github.io) - Tasmeem Reza, Mamnoon Siam (PDF, [LaTeX](https://github.com/Bruteforceman/dynamic-progamming-book))
### C
* [ржХржорзНржкрж┐ржЙржЯрж╛рж░ ржкрзНрж░рзЛржЧрзНрж░рж╛ржорж┐ржВ](http://cpbook.subeen.com/p/blog-page.html) - Tamim Shahriar Subeen
* [ржмрж╛ржВрж▓рж╛ржпрж╝ C ржкрзНрж░рзЛржЧрзНрж░рж╛ржорж┐ржВ рж▓рзНржпрж╛ржЩрзНржЧрзБржпрж╝рзЗржЬ рж╢рзЗржЦрж╛рж░ ржХрзЛрж░рзНрж╕](https://c.howtocode.dev) - Jakir Hossain, et al.
* [Computer Programming ┬лржХржорзНржкрж┐ржЙржЯрж╛рж░ ржкрзНрж░рзЛржЧрзНрж░рж╛ржорж┐ржВ рззржо ржЦржгрзНржб┬╗](http://cpbook.subeen.com) - Tamim Shahriar Subeen (HTML)
* [Computer Programming Part 3](https://archive.org/details/computer-programming-part-3-tamim-shaharier-subin) - Tamim Shahriar Subeen (PDF)
### <a id="cpp"></a>C++
* [рж╕рж┐ржкрж┐ржкрж┐ ржкрж░рж┐ржЧржгржирж╛ Computer Programming](https://www.academia.edu/16658418/c_programming_bangla_book) - Mahmudul Hasan (PDF, HTML)
### Data Science
@@ -44,16 +46,13 @@
### JavaScript
* [ржЬрж╛ржнрж╛рж╕рзНржХрзНрж░рж┐ржкрзНржЯ ржЯрж┐ржЙржЯрзЛрж░рж┐рзЯрж╛рж▓ - рж╢рж┐ржЦрзБржи ржЧрж▓рзНржкрзЗ ржЧрж▓рзНржкрзЗ рж╕рж╛ржерзЗ 1100+ Exercise](https://web.programming-hero.com/home/ph-book/ржЬрж╛ржнрж╛рж╕рзНржХрзНрж░рж┐ржкрзНржЯ-ржЯрж┐ржЙржЯрзЛрж░рж┐ржпрж╝рж╛рж▓/ржкрзНрж░рзЛржЧрзНрж░рж╛ржорж┐ржВ-рж╢рзБрж░рзБрж░-ржЖржЧрзЗ-ржпржд-ржнржпрж╝/ржЬрж╛ржнрж╛рж╕рзНржХрзНрж░рж┐ржкрзНржЯ-ржкрж░рж┐ржЪрж┐рждрж┐) - Jhankar Mahbub (HTML)
* [ржЬрж╛ржнрж╛рж╕рзНржХрзНрж░рж┐ржкрзНржЯ рж▓рзНржпрж╛ржЩрзНржЧрзБрзЯрзЗржЬрзЗрж░ ржПрж░ ржмрзНржпрж╛рж╕рж┐ржХ, ржЕрзНржпрж╛ржбржнрж╛ржирзНрж╕](https://js.howtocode.dev) - Nuhil Mehdi (howtocode.dev)
* [рж╣рж╛рждрзЗржХрж▓ржорзЗ ржЬрж╛ржнрж╛рж╕рзНржХрзНрж░рж┐ржкрзНржЯ: рж╕ржорзНржкрзВрж░рзНржг ржмрж╛ржВрж▓рж╛рзЯ рж╣рж╛рждрзЗржХрж▓ржорзЗ ржЬрж╛ржнрж╛рж╕рзНржХрзНрж░рж┐ржкрзНржЯ рж╢рж┐ржЦрзБржи](https://with.zonayed.me/js-basic/) - Zonayed Ahmed (HTML)
### Machine Learning
* [ржмрж╛ржВрж▓рж╛рзЯ ржорзЗрж╢рж┐ржи рж▓рж╛рж░рзНржирж┐ржВ](https://ml.howtocode.dev) - Manos Kumar Mondol (howtocode.dev)
* [рж╢рзВржирзНржп ржерзЗржХрзЗ ржкрж╛ржЗржержи ржорзЗрж╢рж┐ржи рж▓рж╛рж░рзНржирж┐ржВ: рж╣рж╛рждрзЗржХрж▓ржорзЗ рж╕рж╛ржЗржХрж┐ржЯ-рж▓рж╛рж░рзНржи](https://raqueeb.gitbook.io/scikit-learn/) - Rakibul Hassan (HTML, [Jupyter Notebook](https://github.com/raqueeb/ml-python)) (gitbook)
* [рж╣рж╛рждрзЗржХрж▓ржорзЗ ржкрж╛ржЗржержи ржбрзАржк рж▓рж╛рж░рзНржирж┐ржВ](https://rakibul-hassan.gitbook.io/deep-learning) - Rakibul Hassan (gitbook)
* [рж╣рж╛рждрзЗржХрж▓ржорзЗ ржорзЗрж╢рж┐ржи рж▓рж╛рж░рзНржирж┐ржВ: ржкрж░рж┐ржЪрж┐рждрж┐, ржкрзНрж░ржЬрзЗржХрзНржЯ ржЯрж╛ржЗржЯрж╛ржирж┐ржХ, ржЖрж░ ржПржмржВ ржкрж╛ржЗржержирж╕рж╣](https://rakibul-hassan.gitbook.io/mlbook-titanic/) - Rakibul Hassan (HTML, [scripts](https://github.com/raqueeb/mltraining)) (gitbook)
@@ -61,17 +60,11 @@
* [ржХрзЗржоржирзЗ ржХрж░рзЗ рж╕рж┐рж╕рзНржЯрзЗржо ржбрж┐ржЬрж╛ржЗржи?](https://imtiaz-hossain-emu.gitbook.io/system-design/) - Imtiaz Hossain Emu
* [ржбрзЗржнрж╕ржВржХрзЗржд: ржмрж╛ржВрж▓рж╛ ржЪрж┐ржЯрж╢рж┐ржЯрзЗрж░ ржнрж╛ржирзНржбрж╛рж░](https://devsonket.com) - Devsonket Team
* [SL3 Framework - Code For Brain](https://web.archive.org/web/20201024204437/https://sl3.app) - Stack Learners *( :card_file_box: archived)*
### Problem Sets
* [рзлрзи ржЯрж┐ ржкрзНрж░рзЛржЧрзНрж░рж╛ржорж┐ржВ рж╕ржорж╕рзНржпрж╛](http://cpbook.subeen.com/p/blog-page_11.html) - Tamim Shahriar Subeen (HTML)
* [SL3 Framework - Code For Brain](https://web.archive.org/web/20201024204437/https://sl3.app) - Stack Learners *(:card_file_box: archived)*
### Python
* [ржкрж╛ржЗржержи ржкрзНрж░рзЗрж╛ржЧрзНрж░рж╛ржорж┐ржВ ржмржЗ](http://pybook.subeen.com) - Tamim Shahriar Subeen
* [ржмрж╛ржВрж▓рж╛рзЯ ржкрж╛ржЗржержи](https://python.howtocode.dev) - Nuhil Mehdy
* [рж╕рж╣ржЬ ржнрж╛рж╖рж╛рзЯ ржкрж╛ржЗржержи рзй](https://python.maateen.me) - Maksudur Rahman Maateen
* [рж╣рзБржХрзБрж╢ ржкрж╛ржХрзБрж╢рзЗрж░ ржкрзНрж░рзЛржЧрзНрж░рж╛ржорж┐ржВ рж╢рж┐ржХрзНрж╖рж╛](https://hukush-pakush.com) - Ikram Mahmud (HTML)
@@ -79,15 +72,6 @@
### Sql
* [ржПрж╕ржХрж┐ржЙржПрж▓ ржкрж░рж┐ржЪрж┐рждрж┐(SQL Introduction in Bangla)](https://www.sattacademy.org/sql/index.php) - Satt Academy
* [ржПрж╕ржХрж┐ржЙржПрж▓ ржкрж░рж┐ржЪрж┐рждрж┐(SQL Introduction in Bangla)](https://www.sattacademy.com/sql/sql-intro.php) - Satt Academy
* [ржмрж╛ржВрж▓рж╛рзЯ SQL ржЯрж┐ржЙржЯрзЛрж░рж┐рзЯрж╛рж▓](https://sql.howtocode.dev) - Saiful, et al.
### Web Development
* [ржПржЗржЪржЯрж┐ржПржоржПрж▓ ржУ рж╕рж┐ржПрж╕ржПрж╕ ржЗржи ржмрж╛ржВрж▓рж╛ржпрж╝ (HTML & CSS in Bangla)](https://github.com/CodeJogot/html-css-course-in-bangla) - Farmer Abdul Alim (GitHub, HTML)
### Git and Github
* [ржПржХ ржкрж▓ржХрзЗ ржЧрж┐ржЯ ржУ ржЧрж┐ржЯрж╣рж╛ржм](https://with.zonayed.me/book/git-n-github-at-glance/) - Zonayed
+1 -1
View File
@@ -135,7 +135,7 @@
#### Django
* [Django Girls Tutori├бl](https://tutorial.djangogirls.org/cs/) (1.11) (HTML) *( :construction: in process)*
* [Django Girls Tutori├бl](https://tutorial.djangogirls.org/cs/) (1.11) (HTML) (:construction: *in process*)
### Perl
+6 -2
View File
@@ -10,14 +10,13 @@
### C
* [Beej's Guide til Netvarksprogrammierung](https://web.archive.org/web/20190701062226/http://artcreationforever.com/bgnet.html) - Brian "Beej Jorgensen" Hall, Art of Science (HTML) *( :card_file_box: archived)*
* [Beej's Guide til Netvarksprogrammierung](https://web.archive.org/web/20190701062226/http://artcreationforever.com/bgnet.html) - Brian "Beej Jorgensen" Hall, Art of Science (HTML) *(:card_file_box: archived)*
* [Programmering i C](http://people.cs.aau.dk/~normark/c-prog-06/pdf/all.pdf) - Kurt N├╕rmark (PDF)
### <a id="csharp"></a>C\#
* [Object-oriented Programming in C#](http://people.cs.aau.dk/~normark/oop-csharp/pdf/all.pdf) - Kurt N├╕rmark (PDF)
* [Bogen om C#](https://mcronberg.github.io/bogenomcsharp/) - Michell Cronberg (HTML)
### <a id="cpp"></a>C++
@@ -25,6 +24,11 @@
* [Notes about C++](http://people.cs.aau.dk/~normark/ap/index.html) - Kurt N├╕rmark (HTML)
### Delphi
* [Programmering Med Delphi 7](http://olewitthansen.dk/Datalogi/ProgrammeringMedDelphi.pdf) - Ole Witt-Hansen (PDF)
### Java
* [Objektorienteret programmering i Java](http://javabog.dk) - Jacob Nordfalk
+7 -9
View File
@@ -66,7 +66,6 @@
### C
* [C-HowTo: Programmieren lernen mit der Programmiersprache C](https://www.c-howto.de) - Elias Fischer (HTML)
* [C-Programmierung](https://de.wikibooks.org/wiki/C-Programmierung) - Wikibooks (HTML)
* [C von A bis Z](http://openbook.rheinwerk-verlag.de/c_von_a_bis_z) - J├╝rgen Wolf (Online)
* [Softwareentwicklung in C](https://web.archive.org/web/20190214185910/http://www.asc.tuwien.ac.at/~eprog/download/schmaranz.pdf) - Klaus Schmaranz (PDF)
@@ -94,7 +93,7 @@
### Delphi
* [Delphi-Starter](https://web.archive.org/web/20170714162427/https://downloads.delphi-treff.de/DelphiStarter.pdf) - Florian H├дmmerle, Martin Strohal, Christian Rehn, Andreas Hausladen (PDF) *( :card_file_box: archived)*
* [Delphi-Starter](https://web.archive.org/web/20170714162427/https://downloads.delphi-treff.de/DelphiStarter.pdf) - Florian H├дmmerle, Martin Strohal, Christian Rehn, Andreas Hausladen (PDF) *(:card_file_box: archived)*
### Git
@@ -120,7 +119,6 @@
### HTML and CSS
* [CSS](http://www.peterkropff.de/site/css/css.htm) - Peter Kropff (Grundlagen, OOP, MySQLi, PDO) (Online, PDF)
* [Das kleine Buch der HTML-/CSS-Frameworks](https://github.com/frontenddogma/html-css-frameworks) тАУ Jens Oliver Meiert
* [HTML](http://www.peterkropff.de/site/html/html.htm) - Peter Kropff (Online, PDF)
* [HTML5-Handbuch](http://webkompetenz.wikidot.com/docs:html-handbuch) (Online)
* [Self HTML](https://wiki.selfhtml.org/wiki/Startseite) (Online)
@@ -140,7 +138,7 @@
* [Java 7 Mehr als eine Insel](http://openbook.rheinwerk-verlag.de/java7) - Christian Ullenboom (Online)
* [Java ist auch eine Insel](http://openbook.rheinwerk-verlag.de/javainsel) - Christian Ullenboom (Online)
* [Java SE 8 Standard-Bibliothek](http://openbook.rheinwerk-verlag.de/java8) - Christian Ullenboom (Online)
* [Java Tutorial - Java lernen leicht gemacht](https://web.archive.org/web/20230805211306/https://java-tutorial.org/index.php) - Bj├╢rn und Britta Petri *( :card_file_box: archived)*
* [Java Tutorial - Java lernen leicht gemacht](https://java-tutorial.org/index.php) - Bj├╢rn und Britta Petri
* [Nebenl├дufige Programmierung mit Java](https://www.assets.dpunkt.de/openbooks/Hettel_Nebenlaeufige%20Programmierung%20mit%20Java_Broschuere.pdf) - J├╢rg Hettel und Manh Tien Tran (PDF)
* [Programmieren Java: Aufbau](http://www.highscore.de/java/aufbau) - Boris Sch├дling (HTML)
* [Programmieren Java: Einf├╝hrung](http://www.highscore.de/java/einfuehrung) - Boris Sch├дling (HTML)
@@ -161,8 +159,8 @@
### LaTeX
* [LaTeX - eine Einf├╝hrung und ein bisschen mehr ...](https://www.fernuni-hagen.de/zdi/docs/a026_latex_einf.pdf) - Manuela J├╝rgens, Thomas Feuerstack (PDF)
* [LaTeX - Forteschrittene Anwendungen (oder: Neues von den Hobbits)](https://www.fernuni-hagen.de/zdi/docs/a027_latex_fort.pdf) - Manuela J├╝rgens (PDF)
* [LaTeX - eine Einf├╝hrung und ein bisschen mehr ...](http://www.fernuni-hagen.de/imperia/md/content/zmi_2010/a026_latex_einf.pdf) - Manuela J├╝rgens, Thomas Feuerstack (PDF)
* [LaTeX - Forteschrittene Anwendungen (oder: Neues von den Hobbits)](http://www.fernuni-hagen.de/imperia/md/content/zmi_2010/a027_latex_fort.pdf) - Manuela J├╝rgens (PDF)
* [LaTeX : Referenz der Umgebungen, Makros, L├дngen und Z├дhler](http://www.lehmanns.de/page/latexreferenz) - Herbert Vo├Я (PDF)
@@ -208,13 +206,13 @@
* [A Byte of Python - Einf├╝hrung in Python](https://sourceforge.net/projects/abop-german.berlios/files) - Swaroop C H, Bernd Hengelein, Lutz Horn, Bernhard Krieger, Christoph Zwerschke (PDF)
* [Programmiereinf├╝hrung mit Python](http://opentechschool.github.io/python-beginners/de) (Online)
* [PyQt und PySide: GUI und Anwendungsentwicklung mit Python und Qt](https://github.com/pbouda/pyqt-und-pyside-buch) - Peter Bouda, Michael Palmer, Dr. Markus Wirz (TeX, [PDF](https://github.com/pbouda/pyqt-und-pyside-buch/releases/latest)) *( :construction: in Bearbeitung)*
* [PyQt und PySide: GUI und Anwendungsentwicklung mit Python und Qt](https://github.com/pbouda/pyqt-und-pyside-buch) - Peter Bouda, Michael Palmer, Markus Wirz (TeX, [PDF](https://github.com/pbouda/pyqt-und-pyside-buch/releases/latest)) *(:construction: in process)*
* [Python 3 - Das umfassende Handbuch](http://openbook.rheinwerk-verlag.de/python) - Johannes Ernesti, Peter Kaiser (Online)
#### Django
* [Django Girls Tutorial](https://tutorial.djangogirls.org/de) (1.11) (HTML) *( :construction: in Bearbeitung)*
* [Django Girls Tutorial](https://tutorial.djangogirls.org/de) (1.11) (HTML) (:construction: *in process*)
### R
@@ -224,7 +222,7 @@
### Ruby on Rails
* [Praxiswissen Ruby](https://web.archive.org/web/20160328183933/https://oreilly.de/german/freebooks/rubybasger/pdf_rubybasger.pdf) - Sascha Kersken (PDF) *( :card_file_box: archived)*
* [Praxiswissen Ruby](https://web.archive.org/web/20160328183933/https://oreilly.de/german/freebooks/rubybasger/pdf_rubybasger.pdf) - Sascha Kersken (PDF) *(:card_file_box: archived)*
* [Praxiswissen Ruby On Rails](http://examples.oreilly.de/openbooks/pdf_rubyonrailsbasger.pdf) - Denny Carl (PDF)
* [Rails Kochbuch](http://examples.oreilly.de/openbooks/pdf_railsckbkger.pdf) - Rob Orsini (PDF)
* [Ruby on Rails 2](http://openbook.rheinwerk-verlag.de/ruby_on_rails/) - Hussein Morsy, Tanja Otto (Online)
+1 -35
View File
@@ -1,39 +1,22 @@
### ╬а╬╡╧Б╬╣╬╡╧З╧М╬╝╬╡╬╜╬▒
* [C](#c)
* [C#](#csharp)
* [C++](#cpp)
* [Git](#git)
* [Java](#java)
* [JavaScript](#javascript)
* [Matlab](#matlab)
* [Prolog](#prolog)
* [Python](#python)
* [R](#r)
* [Scala](#scala)
* [SQL](#sql)
### C
* [╬Ф╬╣╬▒╬┤╬╣╬║╬▒╧Г╧Д╬╣╬║╧М╧В ╧А╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М╧В](https://repository.kallipos.gr/bitstream/11419/1346/3/00_master%20document_KOY.pdf) - ╬Ь╬▒╧Г╧Д╬┐╧Б╬┐╬║╧О╧Г╧Д╬▒╧В ╬а╬м╧Б╬╣╧В (PDF)
* [╬Ь╬╣╬▒ ╧Г╧Н╬│╧З╧Б╬┐╬╜╬╖ ╧А╧Б╬┐╧Г╬н╬│╬│╬╣╧Г╬╖ ╧Г╧Д╬╖ ╬│╬╗╧О╧Г╧Г╬▒ C](https://repository.kallipos.gr/handle/11419/11683) - ╬С╬╗╬н╬╛╬▒╬╜╬┤╧Б╬┐╧В ╬д╬╢╬м╬╗╬╗╬▒╧В, ╬з╧Б╬о╧Г╧Д╬┐╧В ╬У╬║╧М╬│╬║╬┐╧В, ╬Щ╧Й╬м╬╜╬╜╬╖╧В ╬д╧Г╬┐╧Н╬╗╬┐╧В (PDF) (CC BY-NC-SA)
### <a id="csharp"></a>C\#
* [╬Х╧А╬п╬╗╧Е╧Г╬╖ ╧А╧Б╬┐╬▓╬╗╬╖╬╝╬м╧Д╧Й╬╜ ╬╝╬╡ ╧Д╬╖ ╬│╬╗╧О╧Г╧Г╬▒ C#](https://repository.kallipos.gr/handle/11419/9349) - ╬Э╬╣╬║╧М╬╗╬▒╬┐╧В ╬Ц╬м╧З╬▒╧Б╬╖╧В (PDF) (CC BY-NC-SA)
* [╬Ф╬╣╬▒╬┤╬╣╬║╬▒╧Г╧Д╬╣╬║╧М╧В ╧А╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М╧В](https://repository.kallipos.gr/bitstream/11419/1346/1/00_master%20document_KOY.pdf) - ╬Ь╬▒╧Г╧Д╬┐╧Б╬┐╬║╧О╧Г╧Д╬▒╧В ╬а╬м╧Б╬╣╧В (PDF)
### <a id="cpp"></a>C++
* [╬Х╬╣╧Г╬▒╬│╧Й╬│╬о ╧Г╧Д╬╖ C++](http://www.ebooks4greeks.gr/2011.Download_free-ebooks/Pliroforikis/glossa_programmatismoy_C++__eBooks4Greeks.gr.pdf) (PDF)
* [╬а╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М╧В ╬╝╬╡ ╧Д╬╖ ╬│╬╗╧О╧Г╧Г╬▒ C++](https://repository.kallipos.gr/bitstream/11419/6443/3/00_master_document-KOY.pdf) - ╬Ш╬╡╧М╬┤╧Й╧Б╬┐╧В ╬С╬╗╬╡╬▓╬п╬╢╬┐╧В (PDF) (CC BY-NC-SA)
### Git
* [Pro Git](https://git-scm.com/book/gr/v2) - Scott Chacon, Ben Straub (HTML, PDF, EPUB, MOBI)
### Java
@@ -53,16 +36,6 @@
* [HTML5-JavaScript (╬Ф╬╖╬╝╬╣╬┐╧Е╧Б╬│╧О╬╜╧Д╬▒╧В ╧А╬▒╬╣╧З╬╜╬п╬┤╬╣╬▒ тАУ ╬Я ╬╡╧Н╬║╬┐╬╗╬┐╧В ╧Д╧Б╧М╧А╬┐╧В)](https://www.ebooks4greeks.gr/html5-javascript)
### Matlab
* [╬Х╬╣╧Г╬▒╬│╧Й╬│╬о ╧Г╧Д╬┐╬╜ ╧А╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М](https://repository.kallipos.gr/handle/11419/8671) ╬а╬┐╬╗╧Е╧З╧Б╧М╬╜╬╖╧В ╬Я╬╣╬║╬┐╬╜╧М╬╝╬┐╧Е, ╬а╬┐╬╗╧Н╬║╬▒╧Б╧А╬┐╧В ╬а╬▒╧А╬▒╬┤╧М╧А╬┐╧Е╬╗╬┐╧В (PDF) (CC BY-NC-SA)
### Prolog
* [╬д╬╡╧З╬╜╬╣╬║╬н╧В ╬Ы╬┐╬│╬╣╬║╬┐╧Н ╬а╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╬┐╧Н](https://repository.kallipos.gr/handle/11419/777) ╬Ч╬╗╬п╬▒╧В ╬г╬▒╬║╬╡╬╗╬╗╬▒╧Б╬п╬┐╧Е, ╬Э╬╣╬║╧М╬╗╬▒╬┐╧В ╬Т╬▒╧Г╬╣╬╗╬╡╬╣╬м╬┤╬╖╧В, ╬а╬н╧Д╧Б╬┐╧В ╬Ъ╬╡╧Ж╬▒╬╗╬м╧В, ╬Ф╬╖╬╝╬┐╧Г╬╕╬н╬╜╬╖╧В ╬г╧Д╬▒╬╝╬м╧Д╬╖╧В (EPUB, PDF) (CC BY-NC-SA)
### Python
* [╬Х╬╣╧Г╬▒╬│╧Й╬│╬о ╧Г╧Д╬┐╬╜ ╬а╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М ╬╝╬╡ ╬С╧Б╧Й╬│╧М ╧Д╬╖ ╬У╬╗╧О╧Г╧Г╬▒ Python](https://www.ebooks4greeks.gr/eisagwgh-ston-programmatismo-me-arwgo-th-glwssa-python)
@@ -70,13 +43,6 @@
* [╬Х╬╣╧Г╬▒╬│╧Й╬│╬о ╧Г╧Д╬┐╬╜ ╬▒╬╜╧Д╬╣╬║╬╡╬╣╬╝╬╡╬╜╬┐╧Г╧Д╧Б╬▒╧Ж╬о ╧А╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М ╬╝╬╡ Python](https://repository.kallipos.gr/bitstream/11419/1708/3/85_Magoutis.pdf) (PDF)
### R
* [╬Х╬╣╧Г╬▒╬│╧Й╬│╬о ╧Г╧Д╬╖╬╜ ╬Х╧А╬╣╧З╬╡╬╣╧Б╬╖╧Г╬╣╬▒╬║╬о ╬И╧Б╬╡╧Е╬╜╬▒ ╬║╬▒╬╣ ╧Г╧Д╬┐╬╜ ╬У╧Б╬▒╬╝╬╝╬╣╬║╧М ╬а╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М](https://repository.kallipos.gr/handle/11419/5699) ╬Ъ╧Й╬╜╧Г╧Д╬▒╬╜╧Д╬п╬╜╬┐╧В ╬Ъ╬┐╧Е╬╜╬╡╧Д╬м╧В, ╬Э╬╣╬║╧М╬╗╬▒╬┐╧В ╬з╬▒╧Д╬╢╬╖╧Г╧Д╬▒╬╝╬┐╧Н╬╗╬┐╧Е (EPUB, PDF) (CC BY-NC-SA)
* [╬Х╬╣╧Г╬▒╬│╧Й╬│╬о ╧Г╧Д╬┐╬╜ ╧А╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М ╬║╬▒╬╣ ╧Г╧Д╬╖ ╧Г╧Д╬▒╧Д╬╣╧Г╧Д╬╣╬║╬о ╬▒╬╜╬м╬╗╧Е╧Г╬╖ ╬╝╬╡ R](https://repository.kallipos.gr/handle/11419/2601) ╬Щ╧Й╬м╬╜╬╜╬╖╧В ╬Э╧Д╬╢╬┐╧Н╧Ж╧Б╬▒╧В, ╬Ф╬╖╬╝╬о╧Д╧Б╬╣╬┐╧В ╬Ъ╬▒╧Б╬╗╬о╧В (EPUB, PDF) (CC BY-NC-SA)
* [╬а╧Б╬┐╬│╧Б╬▒╬╝╬╝╬▒╧Д╬╣╧Г╬╝╧М╧В ╧Г╬╡ R](https://repository.kallipos.gr/handle/11419/8588) ╬Т╬▒╧Г╬п╬╗╬╖╧В ╬Э╬╣╬║╬┐╬╗╬▒╬Р╬┤╬╖╧В (PDF) (CC BY-NC-SA)
### Scala
* [Creative Scala](https://github.com/mrdimosthenis/creative-scala) (EPUB, HTML, PDF)
+4 -22
View File
@@ -38,14 +38,12 @@
* [Perl 6 / Raku](#perl-6--raku)
* [PHP](#php)
* [Symfony](#symfony)
* [Yii](#yii)
* [Python](#python)
* [Django](#django)
* [Web2py](#web2py)
* [R](#r)
* [Ruby](#ruby)
* [Ruby on Rails](#ruby-on-rails)
* [Rust](#rust)
* [Scala](#scala)
* [Scratch](#scratch)
* [SQL](#sql)
@@ -139,7 +137,6 @@
* [Aprenda C++ avanzado como si estuviera en primero](https://web.archive.org/web/20100701020037/http://www.tecnun.es/asignaturas/Informat1/AyudaInf/aprendainf/cpp/avanzado/cppavan.pdf) - Paul Bustamante, Iker Aguinaga, Miguel Aybar, Luis Olaizola, I├▒igo Lazcano (PDF)
* [Aprenda C++ b├бsico como si estuviera en primero](https://web.archive.org/web/20100701020025/http://www.tecnun.es/asignaturas/Informat1/AyudaInf/aprendainf/cpp/basico/cppbasico.pdf) - Paul Bustamante, Iker Aguinaga, Miguel Aybar, Luis Olaizola, I├▒igo Lazcano (PDF)
* [Curso de C++](https://conclase.net/c/curso) - Salvador Pozo (HTML)
* [Ejercicios de programaci├│n creativos y recreativos en C++](http://antares.sip.ucm.es/cpareja/libroCPP/) - Luis Llana, Carlos Gregorio, Raquel Mart├нnez, Pedro Palao, Crist├│bal Pareja (HTML)
@@ -207,15 +204,12 @@
### JavaScript
* [El Tutorial de JavaScript Moderno](https://es.javascript.info) - Ilya Kantor, Elizabeth Portilla, joaquinelio, Ezequiel Castellanos, et al. (HTML)
* [Eloquent JavaScript (3ra Edici├│n)](https://eloquentjs-es.thedojo.mx) - Marijn Haverbeke, `trl.:` Various (HTML, PDF, EPUB, MOBI)
* [Eloquent JavaScript (4ta Edici├│n)](https://www.eloquentjavascript.es) - Marijn Haverbeke (HTML, PDF, EPUB, MOBI)
* [Eloquent JavaScript](https://eloquentjs-es.thedojo.mx) - Marijn Haverbeke, `trl.:` Various (HTML, PDF, EPUB, MOBI)
* [Gu├нa de JavaScript 'Mozilla'](https://developer.mozilla.org/es/docs/Web/JavaScript/Guide) (HTML)
* [Introducci├│n a AJAX](http://librosweb.es/libro/ajax) - Javier Egu├нluz P├йrez (HTML) [(PDF)](https://openlibra.com/es/book/download/introduccion-ajax)
* [Introducci├│n a JavaScript](http://librosweb.es/libro/javascript) - Javier Egu├нluz P├йrez (HTML) [(PDF)](https://openlibra.com/es/book/download/introduccion-a-javascript)
* [JavaScript, ┬бInsp├нrate!](https://leanpub.com/javascript-inspirate) - Ulises Gasc├│n Gonz├бlez (Leanpub cuenta requerida)
* [JavaScript Definitivo Vol. I](https://github.com/afuggini/javascript-definitivo-vol1) - Ariel Fuggini (HTML)
* [JavaScript Para Gatos](https://jsparagatos.com) - Maxwell Ogden, `trl.:` Dan Zajdband (HTML)
* [Learn JavaScript](https://javascript.sumankunwar.com.np/es) - Suman Kumar, Github Contributors (HTML, PDF)
* [Manual de JavaScript](https://desarrolloweb.com/manuales/manual-javascript.html#capitulos20) (HTML)
@@ -258,7 +252,6 @@
### LaTeX
* [Edici├│n de textos cient├нficos con LaTeX. Composici├│n, gr├бficos, dise├▒o editorial y presentaciones beamer](https://tecdigital.tec.ac.cr/servicios/revistamatematica/Libros/LaTeX/MoraW_BorbonA_LibroLaTeX.pdf) - Walter Mora F., Alexander Borb├│n A. (PDF)
* [La introducci├│n no-tan-corta a LaTeX 2╬╡](http://osl.ugr.es/CTAN/info/lshort/spanish/lshort-a4.pdf) - Tobias Oetiker, Hubert Partl, Irene Hyna, Elisabeth Schlegl, `trl.:` Enrique Carleos Artime, `trl.:` Daniel Cuevas, `trl.:` J. Luis Rivera (PDF)
@@ -295,7 +288,7 @@
#### MongoDB
* [El peque├▒o libro MongoDB](https://github.com/uokesita/the-little-mongodb-book) - Karl Seguin, `trl.:` Osledy Bazo
* [MongoDB en espa├▒ol: T1, El principio](https://dpdc.gitbooks.io/mongodb-en-espanol-tomo-1/content) - Yohan D. Graterol (HTML) *( :construction: en proceso)*
* [MongoDB en espa├▒ol: T1, El principio](https://dpdc.gitbooks.io/mongodb-en-espanol-tomo-1/content) - Yohan D. Graterol (HTML) *(:construction: en proceso)*
#### Redis
@@ -321,11 +314,6 @@
* [Symfony 5: La V├нa R├бpida](https://web.archive.org/web/20210805141343/https://symfony.com/doc/current/the-fast-track/es/index.html) - Fabien Potencier (HTML)
#### Yii
* [Gu┬┤─▒a Definitiva de Yii 2.0](https://www.yiiframework.com/doc/download/yii-guide-2.0-es.pdf) - Yii Software (PDF)
### Perl
* [Tutorial Perl](http://es.tldp.org/Tutoriales/PERL/tutoperl-print.pdf) - Juan Juli├бn Merelo Guerv├│s (PDF)
@@ -341,10 +329,9 @@
### Python
* [Aprenda a pensar como un programador (con Python)](https://argentinaenpython.com/quiero-aprender-python/aprenda-a-pensar-como-un-programador-con-python.pdf) - Allen Downey, Jeffrey Elkner, Chris Meyers, `trl.:` Miguel ├Бngel Vilella, `trl.:` ├Бngel Arnal, `trl.:` Iv├бn Juanes, `trl.:` Litza Amurrio, `trl.:` Efrain Andia, `trl.:` C├йsar Ballardini (PDF)
* [Aprende Python](https://aprendepython.es) - Sergio Delgado Quintero (HTML, PDF) (CC BY)
* [Aprende Python](https://aprendepython.es) - Sergio Delgado Quintero (HTML, PDF)
* [Aprendiendo a Programar en Python con mi Computador](https://openlibra.com/en/book/download/aprendiendo-a-programar-en-python-con-mi-computador) (PDF)
* [Doma de Serpientes para Ni├▒os: Aprendiendo a Programar con Python](http://code.google.com/p/swfk-es/) (HTML)
* [El tutorial de Python](https://docs.python.org/es/3/tutorial/) - Python Software Foundation (HTML)
* [Inmersi├│n en Python](https://code.google.com/archive/p/inmersionenpython3/) (HTML)
* [Inmersi├│n en Python 3](https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/inmersionenpython3/inmersionEnPython3.0.11.pdf) - Mark Pilgrim, `trl.:` Jos├й Miguel Gonz├бlez Aguilera (PDF) (descarga directa)
* [Introducci├│n a la programaci├│n con Python](http://repositori.uji.es/xmlui/bitstream/handle/10234/24305/s23.pdf) - Andr├йs Marzal, Isabel Gracia (PDF)
@@ -378,11 +365,6 @@
* [Introducci├│n a Rails](http://rubysur.org/introduccion.a.rails/) - RubySur (HTML)
### Rust
* [El Lenguaje de Programaci├│n Rust](https://book.rustlang-es.org) - Steve Klabnik y Carol Nichols, `trl.:` Comunidad Rust en Espa├▒ol (HTML)
### R
* [Cartas sobre Estad├нstica de la Revista Argentina de Bioingenier├нa](http://cran.r-project.org/doc/contrib/Risk-Cartas-sobre-Estadistica.pdf) - Marcelo R. Risk (PDF)
@@ -398,7 +380,7 @@
### Scala
* [Manual de Scala para programadores Java](http://www.scala-lang.org/docu/files/ScalaTutorial-es_ES.pdf) - Emmanuel Paradis, `trl.:` Jorge A. Ahumada (PDF)
* [Scala con Ejemplos](https://github.com/ErunamoJAZZ/ScalaByExample-es) - Martin Odersky, `trl.:` Daniel Erunamo *( :construction: en proceso)*
* [Scala con Ejemplos](https://github.com/ErunamoJAZZ/ScalaByExample-es) - Martin Odersky, `trl.:` Daniel Erunamo *(:construction: en proceso)*
### Scratch
+1 -7
View File
@@ -7,7 +7,6 @@
* [JavaScript](#javascript)
* [AngularJS](#angularjs)
* [Vue.js](#vuejs)
* [LaTeX](#latex)
* [PHP](#php)
* [Python](#python)
* [R](#r)
@@ -38,7 +37,7 @@
### JavaScript
* [JavaScript](https://web.archive.org/web/20200922201525/http://puhang.tpt.edu.ee/raamatud/JavaScript_konspekt.pdf) - J├╝ri Puhang (PDF) *( :card_file_box: archived)*
* [JavaScript](https://web.archive.org/web/20200922201525/http://puhang.tpt.edu.ee/raamatud/JavaScript_konspekt.pdf) - J├╝ri Puhang (PDF) *(:card_file_box: archived)*
#### AngularJS
@@ -51,11 +50,6 @@
* [Vue.js raamistiku ├╡ppematerjal](https://www.cs.tlu.ee/teemaderegister/get_file.php?id=715) - Fred Korts (PDF)
### LaTex
* [Mitte v├дga l├╝hike LATEX 2╬╡ sissejuhatus](https://ctan.org/tex-archive/info/lshort/estonian) - Tobias Oetiker, Hubert Partl, Irene Hyna, Elisabeth Schlegl, `trl.:` T├╡lkinud Reimo Palm (PDF)
### PHP
* [PHP p├╡hit├╡ed ning funktsioonid](https://et.wikibooks.org/wiki/PHP) - Wiki├╡pikud
+15 -25
View File
@@ -1,5 +1,3 @@
<div dir="rtl" markdown="1">
### ┘Б┘З╪▒╪│╪к
* [╪▒╪з█М╪з┘Ж╪┤ ╪з╪и╪▒█М](#%D8%B1%D8%A7%DB%8C%D8%A7%D9%86%D8%B4-%D8%A7%D8%A8%D8%B1%DB%8C)
@@ -10,13 +8,9 @@
* [LaTeX](#latex)
* [Linux](#linux)
* [PHP](#php)
<ul dir="rtl">
<li><a href="#symfony">Symfony</a></li>
</ul>
* [Symfony](#symfony)
* [Python](#python)
<ul dir="rtl">
<li><a href="#django">Django</a></li>
</ul>
* [Django](#django)
* [R](#r)
@@ -32,14 +26,14 @@
### ┘Е┘З┘Ж╪п╪│█М ┘Ж╪▒┘ЕтАМ╪з┘Б╪▓╪з╪▒
* [╪з┘Д┌п┘И┘З╪з█М ╪╖╪▒╪з╪н█М](https://holosen.net/what-is-design-pattern/) - Hossein Badrnezhad&rlm; *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪з┘Д┌п┘И┘З╪з█М ╪╖╪▒╪з╪н█М](https://holosen.net/what-is-design-pattern/) - Hossein Badrnezhad *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪з┘Д┌п┘И┘З╪з█М ╪╖╪▒╪з╪н█М ╪п╪▒ ╪и╪▒┘Ж╪з┘Е┘ЗтАМ┘Ж┘И█М╪│█М ╪┤█М╪бтАМ┌п╪▒╪з](https://github.com/khajavi/Practical-Design-Patterns)
* [╪к╪▒╪м┘Е┘З ╪в╪▓╪з╪п ┌й╪к╪з╪и ┌й╪п ╪к┘Е█М╪▓](https://codetamiz.vercel.app) - Robert C. Martin, et al.&lrm;
* [╪к╪▒╪м┘Е┘З ╪в╪▓╪з╪п ┌й╪к╪з╪и ┌й╪п ╪к┘Е█М╪▓](https://codetamiz.vercel.app) - Robert C. Martin, et al.
### HTML and CSS
* [█М╪з╪п┌п█М╪▒█М ┘╛█М┌й╪▒╪и┘Ж╪п█М ╪и╪з CSS&rlm;](http://fa.learnlayout.com)
* [█М╪з╪п┌п█М╪▒█М ┘╛█М┌й╪▒╪и┘Ж╪п█М ╪и╪з CSS](http://fa.learnlayout.com)
### Java
@@ -51,14 +45,14 @@
### JavaScript
* [╪м╪з┘И╪з╪з╪│┌й╪▒█М┘╛╪к ╪┤█М┘И╪з](http://eloquentjs.ir) - ┘Е╪з╪▒█М┘Ж ┘З╪з┘И╪▒╪и┌й, ┘Е┘З╪▒╪з┘Ж ╪╣┘Б╪к█М&rlm; (HTML)
* [╪м╪з┘И╪з╪з╪│┌й╪▒█М┘╛╪к ╪┤█М┘И╪з](http://eloquentjs.ir) - ┘Е╪з╪▒█М┘Ж ┘З╪з┘И╪▒╪и┌й, ┘Е┘З╪▒╪з┘Ж ╪╣┘Б╪к█М (HTML)
* [╪▒█М┌й╪к ╪м█М ╪з╪│](https://github.com/reactjs/fa.reactjs.org)
* [█М╪з╪п┌п█М╪▒█М ╪з╪╡┘И┘Д█М ╪м╪з┘И╪з╪з╪│┌й╪▒█М┘╛╪к](https://github.com/Mariotek/BetterUnderstandingOfJavascript)
### LaTeX
* [┘Е┘В╪п┘Е┘ЗтАМ╪з█М ┘Ж┘З ┌Ж┘Ж╪п╪з┘Ж ┌й┘И╪к╪з┘З ╪и╪▒ LaTeX&rlm;](http://www.ctan.org/tex-archive/info/lshort/persian)
* [┘Е┘В╪п┘Е┘ЗтАМ╪з█М ┘Ж┘З ┌Ж┘Ж╪п╪з┘Ж ┌й┘И╪к╪з┘З ╪и╪▒ LaTeX](http://www.ctan.org/tex-archive/info/lshort/persian)
### Linux
@@ -72,28 +66,24 @@
#### Symfony
* [╪│█М┘Е┘Б┘И┘Ж█М █╡: ╪│╪▒█М╪╣тАМ╪к╪▒█М┘Ж ┘Е╪│█М╪▒&rlm;](https://web.archive.org/web/20210122133755/https://symfony.com/doc/current/the-fast-track/fa/index.html) - *( :card_file_box: archived)*
* [╪│█М┘Е┘Б┘И┘Ж█М █╡: ╪│╪▒█М╪╣тАМ╪к╪▒█М┘Ж ┘Е╪│█М╪▒](https://web.archive.org/web/20210122133755/https://symfony.com/doc/current/the-fast-track/fa/index.html) *(:card_file_box: archived)*
### Python
* [┘╛╪з█М╪к┘И┘Ж ╪и┘З ┘╛╪з╪▒╪│█М](https://python.coderz.ir) - ╪│╪╣█М╪п ╪п╪▒┘И█М╪┤&rlm; (HTML)
* [╪к╪▒╪м┘Е┘З ╪в╪▓╪з╪п ┌й╪к╪з╪и Asyncio in Python&rlm;](https://github.com/ftg-iran/aip-persian)
* [╪к╪▒╪м┘Е┘З ╪в╪▓╪з╪п ┌й╪к╪з╪и ThinkPython&rlm;](https://github.com/ThinkPythonPersian/thinkbook) - ╪м┘Е╪╣█М ╪з╪▓ ┘Е╪к╪▒╪м┘Е╪з┘Ж
* [┘╛╪з█М╪к┘И┘Ж ╪и┘З ┘╛╪з╪▒╪│█М](https://python.coderz.ir) - ╪│╪╣█М╪п ╪п╪▒┘И█М╪┤ (HTML)
* [╪к╪▒╪м┘Е┘З ╪в╪▓╪з╪п ┌й╪к╪з╪и Asyncio in Python](https://github.com/ftg-iran/aip-persian)
#### Django
* [╪к╪▒╪м┘Е┘З ╪в╪▓╪з╪п ┌й╪к╪з╪и Django Design Patterns and Best Practices&rlm;](https://github.com/ftg-iran/ddpabp-persian)
* [╪к╪▒╪м┘Е┘З ╪в╪▓╪з╪п ┌й╪к╪з╪и Django Design Patterns and Best Practices](https://github.com/ftg-iran/ddpabp-persian)
* [┌й╪к╪з╪и ╪м┘Ж┌п┘И ╪и╪▒╪з█М ╪н╪▒┘Б┘ЗтАМ╪з█МтАМ┘З╪з](https://github.com/mthri/dfp-persian)
* [┌й╪к╪з╪и ╪м┘Ж┌п┘И ╪и╪▒╪з█М API&rlm;](https://github.com/ftg-iran/dfa-persian)
* [┌й╪к╪з╪и ╪м┘Ж┌п┘И ╪и╪▒╪з█М API](https://github.com/ftg-iran/dfa-persian)
### R
* [╪к╪н┘Д█М┘Д ╪┤╪и┌й┘ЗтАМ┘З╪з█М ╪з╪м╪к┘Е╪з╪╣█М ╪п╪▒ R&rlm;](http://cran.r-project.org/doc/contrib/Raeesi-SNA_in_R_in_Farsi.pdf) (PDF)
* [╪▒╪з┘З┘Ж┘Е╪з█М ╪▓╪и╪з┘Ж R&rlm;](http://cran.r-project.org/doc/contrib/Mousavi-R-lang_in_Farsi.pdf) (PDF)
* [┘Е╪и╪з╪н╪л ┘И█М┌Ш┘З ╪п╪▒ R&rlm;](http://cran.r-project.org/doc/contrib/Mousavi-R_topics_in_Farsi.pdf) (PDF)
</div>
* [╪к╪н┘Д█М┘Д ╪┤╪и┌й┘ЗтАМ┘З╪з█М ╪з╪м╪к┘Е╪з╪╣█М ╪п╪▒ R](http://cran.r-project.org/doc/contrib/Raeesi-SNA_in_R_in_Farsi.pdf) (PDF)
* [╪▒╪з┘З┘Ж┘Е╪з█М ╪▓╪и╪з┘Ж R](http://cran.r-project.org/doc/contrib/Mousavi-R-lang_in_Farsi.pdf) (PDF)
* [┘Е┘И╪╢╪╣╪з╪к ┘И█М┌Ш┘З ╪п╪▒ R](http://cran.r-project.org/doc/contrib/Mousavi-R_topics_in_Farsi.pdf) (PDF)
+2 -2
View File
@@ -39,7 +39,7 @@
* [C++](https://fi.wikibooks.org/wiki/C%2B%2B) - Wikikirjasto
* [C++-ohjelmointi](https://www.ohjelmointiputka.net/oppaat/opas.php?tunnus=cpp_ohj_01)
* [C++-opas](http://www.nic.funet.fi/c++opas/) - Aleksi Kallio
* [Olioiden ohjelmointi C++:lla](https://web.archive.org/web/20170918213135/http://www.cs.tut.fi/~oliot/kirja/olioiden-ohjelmointi-uusin.pdf) - Matti Rintala, Jyke Jokinen (PDF) *( :card_file_box: archived)*
* [Olioiden ohjelmointi C++:lla](https://web.archive.org/web/20170918213135/http://www.cs.tut.fi/~oliot/kirja/olioiden-ohjelmointi-uusin.pdf) - Matti Rintala, Jyke Jokinen (PDF) *(:card_file_box: archived)*
### Java
@@ -60,7 +60,7 @@
### OpenGL
* [OpenGL](https://fi.wikibooks.org/wiki/OpenGL) - Wikikirjasto *( :construction: keskener├дinen)*
* [OpenGL](https://fi.wikibooks.org/wiki/OpenGL) - Wikikirjasto (:construction: *keskener├дinen*)
### PHP
+24 -29
View File
@@ -15,6 +15,7 @@
* [C / C++](#c--c)
* [Caml / OCaml](#caml--ocaml)
* [Cha├оne de blocs / Blockchain](#cha├оne-de-blocs--blockchain)
* [Coq](#coq)
* [Fortran](#fortran)
* [Git](#git)
* [Go](#go)
@@ -35,12 +36,10 @@
* [Perl](#perl)
* [PHP](#php)
* [Symfony](#symfony)
* [Yii](#yii)
* [Processing](#processing)
* [Python](#python)
* [Django](#django)
* [R](#r)
* [Rocq Prover](#rocq-prover)
* [Ruby](#ruby)
* [Rust](#rust)
* [Sage](#sage)
@@ -77,10 +76,10 @@
#### Logiciels libres
* [Histoires et cultures du Libre](https://archives.framabook.org/histoiresetculturesdulibre/) - Camille Paloque-Berges, Christophe Masutti, `edt.:` Framasoft (coll. Framabook) (HTML, EPUB, PDF) (CC BY)
* [Option libre. Du bon usage des licences libres](https://archives.framabook.org/optionlibre-dubonusagedeslicenceslibres/) - Jean Benjamin (EPUB, PDF) (CC BY-SA, GFDL)
* [Produire du logiciel libre](https://archives.framabook.org/produire-du-logiciel-libre-2/) - Karl Fogel (EPUB, PDF) (CC BY-SA)
* [Richard Stallman et la r├йvolution du logiciel libre](https://archives.framabook.org/richard-stallman-et-la-revolution-du-logiciel-libre-2/) - R.M. Stallman, S. Williams, C. Masutti (EPUB, HTML, PDF) (GFDL)
* [Histoires et cultures du Libre](https://archives.framabook.org/histoiresetculturesdulibre/) - Camille Paloque-Berges, Christophe Masutti, `edt.:` Framasoft (coll. Framabook)
* [Option libre. Du bon usage des licences libres](http://framabook.org/optionlibre-dubonusagedeslicenceslibres/) - Jean Benjamin
* [Produire du logiciel libre](http://framabook.org/produire-du-logiciel-libre-2/) - Karl Fogel
* [Richard Stallman et la r├йvolution du logiciel libre](http://framabook.org/richard-stallman-et-la-revolution-du-logiciel-libre-2/) - R.M. Stallman, S. Williams, C. Masutti
#### Makefile
@@ -91,7 +90,7 @@
#### Math├йmatiques
* [Approfondissements de lyc├йe](https://fr.wikibooks.org/wiki/Approfondissements_de_lyc├йe) - Wikibooks contributors, Zhuo Jia Dai, `ctb.:` R3m0t, `ctb.:` Martin Warmer (HTML) ( :construction: *in process*)
* [Approfondissements de lyc├йe](https://fr.wikibooks.org/wiki/Approfondissements_de_lyc├йe) - Wikibooks contributors, Zhuo Jia Dai, `ctb.:` R3m0t, `ctb.:` Martin Warmer (HTML) (:construction: *in process*)
#### P├йdagogie pour les enfants et adolescents
@@ -139,6 +138,11 @@
* [Ma├оtriser Ethereum: D├йvelopper des contrats intelligents et des DApps](https://ethereum.maitriser.ca) - Andreas M. Antonopoulos, Gavin Wood, Serafim Dos Santos (asciidoc, HTML)
### Coq
* [Le Coq'Art (V8)](http://www.labri.fr/perso/casteran/CoqArt/) - Yves Bertot, Pierre Cast├йran
### Fortran
* [IDRIS adaptation of the Fortran 77 manual](http://www.idris.fr/formations/fortran/fortran-77.html) - IDRIS, Herv├й Delouis, Patrick Corde (HTML)
@@ -169,7 +173,6 @@
### JavaScript
* [JavaScript ├Йloquent : Une introduction moderne ├а la programmation](http://fr.eloquentjavascript.net) - Marijn Haverbeke
* [Learn JavaScript](https://javascript.sumankunwar.com.np/fr) - Suman Kumar, Github Contributors (HTML, PDF)
* [Node.Js: Apprendre par la pratique](https://oncletom.io/node.js/#chapitres) - Thomas Parisot
@@ -193,10 +196,10 @@
#### LaTeX
* [Apprends LaTeX](http://www.babafou.eu.org/Apprends_LaTeX/Apprends_LaTeX.pdf) - Marc Baudoin (PDF)
* [Apprends LaTeX](https://tex.loria.fr/general/apprends-latex.pdf) - Marc Baudoin (PDF)
* [LaTeX... pour le prof de maths !](http://math.univ-lyon1.fr/irem/IMG/pdf/LatexPourLeProfDeMaths.pdf) - Arnaud Gazagnes (PDF)
* [Tout ce que vous avez toujours voulu savoir sur LaTeX sans jamais oser le demander](http://framabook.org/tout-sur-latex/) - Vincent Lozano
* [(Xe)LaTeX appliqu├й aux sciences humaines](https://web.archive.org/web/20220121031527/geekographie.maieul.net/95) - Ma├пeul Rouquette *( :card_file_box: archived)*
* [(Xe)LaTeX appliqu├й aux sciences humaines](https://web.archive.org/web/20220121031527/geekographie.maieul.net/95) - Ma├пeul Rouquette *(:card_file_box: archived)*
##### KOMA-Script
@@ -234,13 +237,13 @@
### Lua
* [Introduction ├а la programmation Lua](https://web.archive.org/web/20240109085639/https://www.luteus.biz/Download/LoriotPro_Doc/LUA/LUA_Training_FR/Introduction_Programmation.html) (HTML) *( :card_file_box: archived)*
* [Lua : le tutoriel](https://wxlua.developpez.com/tutoriels/lua/general/cours-complet/) - Claude Urban, `edt.:` Alexandre Laurent, ALT, Max (HTML, PDF)
* [Introduction ├а la programmation Lua](http://www.luteus.biz/Download/LoriotPro_Doc/LUA/LUA_Training_FR/Introduction_Programmation.html)
* [Lua : le tutoriel](http://wxlua.developpez.com/tutoriels/lua/general/cours-complet/) - Claude Urban
### Meteor
* [Apprendre Meteor](https://mquandalle.gitbooks.io/apprendre-meteor/content/) - Maxime Quandalle (HTML) (CC BY-NC-SA) *( :construction: in process)*
* [Apprendre Meteor](https://mquandalle.gitbooks.io/apprendre-meteor/content/) - Maxime Quandalle
### Perl
@@ -252,7 +255,7 @@
### PHP
* [Cours de PHP 5](http://g-rossolini.developpez.com/tutoriels/php/cours/?page=introduction) - Guillaume Rossolini
* [Programmer en PHP](https://web.archive.org/web/20220327155108/lincoste.com/ebooks/pdf/informatique/programmer_php.pdf) - Julien Gaulmin (PDF) *( :card_file_box: archived)*
* [Programmer en PHP](https://web.archive.org/web/20220327155108/lincoste.com/ebooks/pdf/informatique/programmer_php.pdf) - Julien Gaulmin (PDF) *(:card_file_box: archived)*
#### Symfony
@@ -261,11 +264,6 @@
* [En route pour Symfony 6.2](https://symfony.com/doc/current/the-fast-track/fr/index.html) - Fabien Potencier
#### Yii
* [Guide d├йfinitif pour Yii 2.0](https://www.yiiframework.com/doc/download/yii-guide-2.0-fr.pdf) - Yii Software (PDF)
### Processing
* [Processing](https://fr.flossmanuals.net/processing/) - ┼Тuvre collective (HTML)
@@ -273,9 +271,11 @@
### Python
* [Apprendre ├а programmer avec Python](https://inforef.be/swi/python.htm) - Gerard Swinnen, `trl.:` P├йter Dar├│czy, Hichem Razgallah, Mohamed Amine et al. (HTML, PDF, EPUB, ODT) (CC BY-NC-SA)
* [Le guide de lтАЩauto-stoppeur pour Python!](https://python-guide-fr.readthedocs.io/fr/latest/) - Kenneth Reitz (HTML, PDF) (CC BY-NC-SA)
* [Une introduction ├а Python 3](https://web.archive.org/web/20250204070442if_/https://perso.limsi.fr/pointal/python:courspython3) - Bob Cordeau, Laurent Pointali (CC BY-NC-SA) *( :card_file_box: archived)*
* [Apprendre ├а programmer avec Python](http://inforef.be/swi/python.htm) - Gerard Swinnen
* [Introduction ├а la programmation](https://self-learning.info.ucl.ac.be/index/info1-exercises) (Inscription gratuite sur le site. Pour r├йaliser les exercices sur INGInious.org, cr├йez-vous un compte gratuitement et liez ensuite votre compte self-learning ├а votre compte INGInious. )
* [Le guide de lтАЩauto-stoppeur pour Python!](https://python-guide-fr.readthedocs.io/fr/latest/) - Kenneth Reitz
* [Python Programming in French](https://www.youtube.com/playlist?list=PL0mGkrTWmp4ugGM9fiZjEuzMFeKD6Rh5G) - Data Scientist Nigeria
* [Une introduction ├а Python 3](https://perso.limsi.fr/pointal/python:courspython3) - Bob Cordeau, Laurent Pointal
#### Django
@@ -285,15 +285,10 @@
### R
* [Introduction ├а l'analyse d'enqu├кte avec R et RStudio](https://larmarange.github.io/analyse-R/) - Joseph Larmarange, et al. (PDF version also available)
* [Introduction ├а l'analyse d'enqu├кte avec R et RStudio](https://larmarange.github.io/analyse-R/) - Jospeh Lamarange, et al. (PDF version also available)
* [Introduction ├а la programmation en R](http://cran.r-project.org/doc/contrib/Goulet_introduction_programmation_R.pdf) - Vincent Goulet (PDF)
### Rocq Prover
* [Le Coq'Art (V8)](http://www.labri.fr/perso/casteran/CoqArt/) - Yves Bertot, Pierre Cast├йran
### Ruby
* [Ruby en vingt minutes](https://www.ruby-lang.org/fr/documentation/quickstart/)
@@ -302,7 +297,7 @@
#### Ruby on Rails
* [Tutoriel Ruby on Rails : Apprendre Rails par l'exemple](https://web.archive.org/web/20210801160026/french.railstutorial.org/chapters/beginning) - Michael Hartl *( :card_file_box: archived)*
* [Tutoriel Ruby on Rails : Apprendre Rails par l'exemple](https://web.archive.org/web/20210801160026/french.railstutorial.org/chapters/beginning) - Michael Hartl *(:card_file_box: archived)*
### Rust
+10 -15
View File
@@ -1,5 +1,3 @@
<div dir="rtl" markdown="1">
### Index
* [╫Ь╫Ь╫Р ╫к╫Ь╫Х╫к ╫С╫й╫д╫Ф](#╫Ь╫Ь╫Р-╫к╫Ь╫Х╫к-╫С╫й╫д╫Ф)
@@ -7,7 +5,7 @@
* [╫и╫й╫к╫Х╫к](#╫и╫й╫к╫Х╫к)
* [Assembly](#assembly)
* [C](#c)
* [C#&lrm;](#csharp)
* [C#](#csharp)
* [Python](#python)
@@ -15,37 +13,34 @@
#### ╫Ю╫в╫и╫Ы╫Х╫к ╫Ф╫д╫в╫Ь╫Ф
* [╫Ю╫в╫и╫Ы╫Х╫к ╫Ф╫д╫в╫Ь╫Ф](https://data.cyber.org.il/os/os_book.pdf) тАУ ╫С╫и╫з ╫Т╫Х╫а╫Я&rlm;, ╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и&rlm; (PDF)
* [╫Ю╫в╫и╫Ы╫Х╫к ╫Ф╫д╫в╫Ь╫Ф](https://data.cyber.org.il/os/os_book.pdf) тАУ ╫С╫и╫з ╫Т╫Х╫а╫Я, ╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и (PDF)
#### ╫и╫й╫к╫Х╫к
* [╫и╫й╫к╫Х╫к ╫Ю╫Ч╫й╫С╫Щ╫Э](https://data.cyber.org.il/networks/networks.pdf) тАУ ╫в╫Х╫Ю╫и ╫и╫Х╫Ц╫а╫С╫Х╫Щ╫Э&rlm;, ╫С╫и╫з ╫Т╫Х╫а╫Я&rlm;, ╫й╫Ь╫Х╫Ю╫Щ ╫Ф╫Х╫У&rlm;, ╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и&rlm; (PDF)
* [╫и╫й╫к╫Х╫к ╫Ю╫Ч╫й╫С╫Щ╫Э](https://data.cyber.org.il/networks/networks.pdf) тАУ ╫в╫Х╫Ю╫и ╫и╫Х╫Ц╫а╫С╫Х╫Щ╫Э, ╫С╫и╫з ╫Т╫Х╫а╫Я, ╫й╫Ь╫Х╫Ю╫Щ ╫Ф╫Х╫У, ╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и (PDF)
### Assembly
* [╫Р╫и╫Т╫Х╫Я ╫Ф╫Ю╫Ч╫й╫С ╫Х╫й╫д╫к ╫б╫г](https://data.cyber.org.il/assembly/assembly_book.pdf) тАУ ╫С╫и╫з ╫Т╫Х╫а╫Я&rlm;, ╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и&rlm; (PDF)
* [╫Р╫и╫Т╫Х╫Я ╫Ф╫Ю╫Ч╫й╫С ╫Х╫й╫д╫к ╫б╫г](https://data.cyber.org.il/assembly/assembly_book.pdf) тАУ ╫С╫и╫з ╫Т╫Х╫а╫Я, ╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и (PDF)
### C
### C
* [╫б╫д╫и ╫Ь╫Щ╫Ю╫Х╫У ╫й╫д╫Ф ╫в╫Щ╫Ь╫Щ╫к (╫й╫д╫к C&lrm;)](https://moked.education.gov.il/MafmarFiles/C_LangIG_3Version.pdf) тАУ ╫Ю╫и╫з ╫Ш╫б╫Ь╫Щ╫ж╫з╫Щ&rlm; (PDF)
* [╫б╫д╫и ╫Ь╫Щ╫Ю╫Х╫У ╫й╫д╫Ф ╫в╫Щ╫Ь╫Щ╫к (╫й╫д╫к C)](https://moked.education.gov.il/MafmarFiles/C_LangIG_3Version.pdf) - ╫Ю╫и╫з ╫Ш╫б╫Ь╫Щ╫ж╫з╫Щ (PDF)
### <a id="csharp"></a>C#&lrm;
### <a id="csharp"></a>C\#
* [╫Ю╫С╫Х╫Р ╫Ь╫к╫Ы╫а╫Х╫к ╫С╫б╫С╫Щ╫С╫к ╫Ф╫Р╫Щ╫а╫Ш╫и╫а╫Ш ╫С╫й╫д╫к C#&lrm;](https://meyda.education.gov.il/files/free%20books/%D7%9E%D7%91%D7%95%D7%90%20%D7%9C%D7%AA%D7%9B%D7%A0%D7%95%D7%AA%20%D7%91%D7%A1%D7%91%D7%99%D7%91%D7%AA%20%D7%94%D7%90%D7%99%D7%A0%D7%98%D7%A8%D7%A0%D7%98%20090216.pdf) тАУ ╫Ю╫Ш╫┤╫Ч&rlm; (PDF)
* [╫Ю╫С╫Х╫Р ╫Ь╫к╫Ы╫а╫Х╫к ╫С╫б╫С╫Щ╫С╫к ╫Ф╫Р╫Щ╫а╫Ш╫и╫а╫Ш ╫С╫й╫д╫к C#](https://meyda.education.gov.il/files/free%20books/%D7%9E%D7%91%D7%95%D7%90%20%D7%9C%D7%AA%D7%9B%D7%A0%D7%95%D7%AA%20%D7%91%D7%A1%D7%91%D7%99%D7%91%D7%AA%20%D7%94%D7%90%D7%99%D7%A0%D7%98%D7%A8%D7%A0%D7%98%20090216.pdf) тАУ ╫Ю╫Ш╫┤╫Ч (PDF)
### Deep-Learning
* [╫б╫д╫и ╫в╫Ь ╫Ь╫Ю╫Щ╫У╫к ╫Ю╫Ы╫Х╫а╫Ф ╫Х╫Ь╫Ю╫Щ╫У╫Ф ╫в╫Ю╫Х╫з╫Ф](https://github.com/AvrahamRaviv/Deep-Learning-in-Hebrew) тАУ ╫Р╫С╫и╫Ф╫Э ╫и╫С╫Щ╫С&rlm; ╫Х╫Ю╫Щ╫Щ╫з ╫Р╫и╫Ь╫Щ╫б╫Х╫Я&rlm;
* [╫б╫д╫и ╫в╫Ь ╫Ь╫Ю╫Щ╫У╫к ╫Ю╫Ы╫Х╫а╫Ф ╫Х╫Ь╫Ю╫Щ╫У╫Ф ╫в╫Ю╫Х╫з╫Ф](https://github.com/AvrahamRaviv/Deep-Learning-in-Hebrew) тАУ ╫Р╫С╫и╫Ф╫Э ╫и╫С╫Щ╫С ╫Х╫Ю╫Щ╫Щ╫з ╫Р╫и╫Ь╫Щ╫б╫Х╫Я
### Python
* [╫к╫Ы╫а╫Х╫к ╫С╫й╫д╫к ╫д╫Щ╫Щ╫к╫Х╫Я](https://data.cyber.org.il/python/python_book.pdf) тАУ ╫С╫и╫з ╫Т╫Х╫а╫Я&rlm;, ╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и&rlm; (PDF)
</div>
* [╫к╫Ы╫а╫Х╫к ╫С╫й╫д╫к ╫д╫Щ╫Щ╫к╫Х╫Я](https://data.cyber.org.il/python/python_book.pdf) тАУ ╫С╫и╫з ╫Т╫Х╫а╫Я, ╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и (PDF)
+3 -16
View File
@@ -5,11 +5,9 @@
* [Computer architecture](#computer-architecture)
* [Data Structure and Algorithms](#data-structure-and-algorithms)
* [Java](#java)
* [JavaScript](#javascript)
* [Linux](#linux)
* [Networking](#networking)
* [Php](#php)
* [Python](#python)
### C
@@ -42,12 +40,6 @@
* [Java \| Hindi](https://www.learnhindituts.com/java) - LearnHindiTuts.com
### JavaScript
* [JavaScript \| Hindi](https://www.tutorialinhindi.com/javascript-tutorial-hindi/) - TutorialinHindi.com
* [Learn JavaScript \| Hindi](https://javascript.sumankunwar.com.np/np) - Suman Kumar, Github Contributors (HTML, PDF)
### Linux
* [Linux Commands \| Hindi](https://ehindistudy.com/2022/06/24/linux-commands-hindi/) - Vinay Bhatt
@@ -63,12 +55,7 @@
* [ рдбрд╛рдЯрд╛ рдХрдпрдирдХреЗрд╢рди рдПрдВрдб рдХрдВрдпрдЯрд░ рдиреЗрдЯрд╡рдХ ](https://www.aicte-india.org/sites/default/files/HINDI_BOOKS/BOOK%203.pdf) - рдИ.рд╣рд░рд╢ рджрд╛рдзреАрдЪ, рдИ.рд╡рдХрд╛рд╕ рдорд╛рдерд░ (PDF)
### PHP
### Php
* [PHP Tutorials In Hindi](https://www.learnhindituts.com/php) - LearnHindiTuts.com
### Python
* [Python Notes \| Hindi](https://ehindistudy.com/2022/10/12/python-pdf-notes-hindi/) - Yugal Joshi (HTML) *( :construction: in process)*
* [Python Tutorial in Hindi (Full Python Course) \| Hindi](https://www.tutorialinhindi.com/wp-content/uploads/2022/01/Python-Tutorial-in-Hindi-Full-Python-Course-FREE-PDF.pdf) - TutorialInHindi.com (PDF)
* [Php \| Hindi](https://www.learnhindituts.com/php) - LearnHindiTuts.com
* [Php Hindi Tutorial \| Hindi](http://tutorialsroot.com/php/index.html) - TutorialsRoot.com
+3 -3
View File
@@ -40,7 +40,7 @@
### C
* [Beej ├║tmutat├│ja a h├бl├│zati programoz├бshoz - Internet Socketek haszn├бlat├бval](https://web.archive.org/web/20180630204236/http://weknowyourdreams.com/bgnet-sw.html) - Brian "Beej Jorgensen" Hall, Hajdu G├бbor (HTML) *( :card_file_box: archived)*
* [Beej ├║tmutat├│ja a h├бl├│zati programoz├бshoz - Internet Socketek haszn├бlat├бval](https://web.archive.org/web/20180630204236/http://weknowyourdreams.com/bgnet-sw.html) - Brian "Beej Jorgensen" Hall, Hajdu G├бbor (HTML) *(:card_file_box: archived)*
### <a id="cpp"></a>C++
@@ -70,7 +70,7 @@
### Lego Mindstorms
* [A MINDSTORMS EV3 robotok programoz├бs├бnak alapjai](https://hdidakt.hu/wp-content/uploads/2016/01/dw_74.pdf) - Kiss R├│bert (PDF)
* [Egyszer┼▒ robotika, A Mindstorms NXT robotok programoz├бs├бnak alapjai](https://web.archive.org/web/20160607074029/http://www.banyai-kkt.sulinet.hu/robotika/Segedanyag/Egyszeru_robotika.pdf) - Kiss R├│bert, Bad├│ Zsolt (PDF) *( :card_file_box: archived)*
* [Egyszer┼▒ robotika, A Mindstorms NXT robotok programoz├бs├бnak alapjai](https://web.archive.org/web/20160607074029/http://www.banyai-kkt.sulinet.hu/robotika/Segedanyag/Egyszeru_robotika.pdf) - Kiss R├│bert, Bad├│ Zsolt (PDF) *(:card_file_box: archived)*
### Lisp
@@ -115,7 +115,7 @@
#### Django
* [Django Girls Tutorial](https://tutorial.djangogirls.org/hu/) (1.11) (HTML) *( :construction: in process)*
* [Django Girls Tutorial](https://tutorial.djangogirls.org/hu/) (1.11) (HTML) (:construction: *in process*)
### Windows Phone
+17 -53
View File
@@ -4,6 +4,7 @@
* [C](#c)
* [C#](#csharp)
* [C++](#cpp)
* [CodeIgniter](#codeigniter)
* [Git](#git)
* [Go](#go)
* [HTML and CSS](#html-and-css)
@@ -19,17 +20,12 @@
* [Vue.js](#vuejs)
* [Node.js](#nodejs)
* [NoSQL](#nosql)
* [Pascal](#pascal)
* [Pemrograman Fungsional](#pemrograman-fungsional)
* [Pemrograman Kompetitif](#pemrograman-kompetitif)
* [PHP](#php)
* [CodeIgniter](#codeigniter)
* [Laravel](#laravel)
* [Yii](#yii)
* [Python](#python)
* [Rust](#rust)
* [Solidity](#solidity)
* [Swift](#swift)
### Android
@@ -40,7 +36,7 @@
### C
* [Belajar Pemrograman C untuk Pemula](https://www.petanikode.com/tutorial/c/) - Ahmad Muhardian *( :construction: in process)*
* [Belajar Pemrograman C untuk Pemula](https://www.petanikode.com/tutorial/c/) - Ahmad Muhardian (:construction: *in process*)
* [Tutorial Belajar Bahasa Pemrograman C Untuk Pemula](https://www.duniailkom.com/tutorial-belajar-bahasa-pemrograman-c-bagi-pemula/) - Duniailkom
@@ -52,7 +48,16 @@
### <a id="cpp"></a>C++
* [Belajar C++ Dasar Bahasa Indonesia](https://github.com/kelasterbuka/CPP_dasar-dasar-programming) - Kelas Terbuka
* [Buku Pintar C++ untuk Pemula](https://www.researchgate.net/publication/236687537_Buku_Pintar_C_untuk_Pemula) - Abdul Kadir
### CodeIgniter
* [Codeigniter - Pendekatan Praktis](https://leanpub.com/codeigniter-pendekatanpraktis) - Ibnu Daqiqil Id (HTML, PDF, EPUB, Kindle) *(Membutuhkan akun Leanpub atau email yang valid)*
* [Codeigniter Untuk Pemula](https://repository.bsi.ac.id/index.php/unduh/item/176695/Tutorial-Codeigniter-Untuk-Pemula.pdf) - M Fikri Setiadi (PDF)
* [Framework Codeigniter - Sebuah Panduan dan Best Practice](https://gilacoding.com/upload/file/Tutorial%20framework%20codeigniter.pdf) - Gila Coding (PDF)
* [Panduan Pengguna CodeIgniter Indonesia](https://codeigniter-id.github.io/user-guide/) - CodeIgniter Indonesia
* [Tutorial CodeIgniter 3 & 4](https://www.petanikode.com/tutorial/codeigniter/) *(Dalam Proses)*
* [Tutorial CodeIgniter 4](http://mfikri.com/artikel/tutorial-codeigniter4)
### Git
@@ -71,11 +76,8 @@
### HTML and CSS
* [Cara Cepat dan Mudah Menguasai CSS Rule](https://gilacoding.com/upload/file/Mahir-menguasai-CSS-Part%201.pdf) - Rudy Devianto (PDF)
* [Ebook Belajar HTML Dan CSS Dasar](https://www.malasngoding.com/download-ebook-belajar-html-dan-css-dasar-gratis/)
* [Ebook HTML CSS Manual Dasar](https://github.com/LIGMATV/LIGMATV/wiki/Ebook-HTML-CSS-Manual-Dasar) - Muhammad Danish Naufal (PDF, DOCX)
* [Mahir Menguasai CSS - Tutorial & Praktek](https://gilacoding.com/upload/file/Mahir-menguasai-CSS-Part%202.pdf) - Rudy Devianto (PDF)
* [Tutorial Dasar CSS untuk Pemula](https://www.petanikode.com/tutorial/css/) - Ahmad Muhardian (Petani Kode) *( :construction: dalam proses)*
* [Tutorial Dasar CSS untuk Pemula](https://www.petanikode.com/tutorial/css/) - Ahmad Muhardian (Petani Kode) *(:construction: Dalam Proses)*
* [Tutorial HTML untuk Pemula](https://www.petanikode.com/tutorial/html/) - Ahmad Muhardian (Petani Kode)
@@ -84,7 +86,6 @@
* [Bootstrap](https://www.malasngoding.com/category/bootstrap/) - Diki Alfarabi Hadi
* [Bootstrap 5 : Pengertian, Fitur, Keunggulan dan Cara Menggunakannya](https://www.niagahoster.co.id/blog/tutorial-bootstrap-5/) - Niagahoster (HTML)
* [Daftar Tutorial Bootstrap 4 Bahasa Indonesia](https://www.bewoksatukosong.com/2019/02/tutorial-bootstrap-4-bahasa-indonesia.html) - Gerald Cahya Prambudi
* [Tutorial Belajar Framework Bootstrap 5](https://www.duniailkom.com/tutorial-belajar-framework-bootstrap/) - Duniailkom
### IDE and editors
@@ -96,20 +97,17 @@
### Java
* [Algoritma dan Struktur Data dengan Java oleh Polinema SIB](https://polinema.gitbook.io/jti-modul-praktikum-algoritma-dan-struktur-data/) - Politeknik Negeri Malang
* [Buku Pertama Belajar Pemrograman Java untuk Pemula](https://www.researchgate.net/publication/264422101_Buku_Pertama_Belajar_Pemrograman_Java_untuk_Pemula) - Abdul Kadir
* [Java Desktop](https://github.com/ifnu/buku-java-desktop/raw/master/java-desktop-ifnu-bima.pdf) - Ifnu Bima (PDF)
* [Memulai Java Enterprise dengan Spring Boot](https://raw.githubusercontent.com/teten-nugraha/free-ebook-springboot-basic/master/Memulai%20Java%20Enterprise%20dengan%20Spring%20Boot.pdf) - Teten Nugraha (PDF)
* [Pemrograman Java](https://blog.rosihanari.net/download-tutorial-java-se-gratis/) - Rosihan Ari Yuana
* [Tutorial Belajar Bahasa Pemrograman Java untuk Pemula](https://www.duniailkom.com/tutorial-belajar-bahasa-pemrograman-java-untuk-pemula/) - Duniailkom
### JavaScript
* [Javascript Guide](https://gilacoding.com/upload/file/Javascript%20Guide.pdf) - Desrizal (PDF)
* [Learn JavaScript](https://javascript.sumankunwar.com.np/id) - Suman Kumar, Github Contributors (HTML, PDF)
* [Mengenal JavaScript](http://masputih.com/2013/01/ebook-gratis-mengenal-javascript)
* [Otomatisasi dengan gulp.js](https://kristories.gitbooks.io/otomatisasi-dengan-gulp-js/content/)
* [Tutorial Dasar Javascript untuk Pemula](https://www.petanikode.com/tutorial/javascript/) *( :construction: dalam proses)*
* [Tutorial Dasar Javascript untuk Pemula](https://www.petanikode.com/tutorial/javascript/) *(Dalam Proses)*
* [Tutorial JavaScript Modern](https://id.javascript.info) - Ilya Kantor
@@ -134,7 +132,6 @@
* [Dokumentasi React Bahasa Indonesia](https://id.reactjs.org)
* [React JS Untuk Pemula](https://masputih.com/2021/05/ebook-gratis-reactjs-untuk-pemula) *(Membutuhkan akun Leanpub atau email yang valid)*
* [React Redux Tutorial Untuk Pemula](https://medium.com/codeacademia/tutorial-redux-bagian-i-membuat-todo-list-c26a979d0a1f) - Yudi Krisnandi
* [Tutorial Belajar Library React JS](https://www.duniailkom.com/tutorial-belajar-library-react-js/) - Duniailkom
* [Tutorial React JS Untuk Pemula (React Hooks)](https://mfikri.com/artikel/reactjs-pemula) - Mfikri
@@ -168,11 +165,6 @@
* [MongoDB Untuk Indonesia: Memahami Konsep dan Implementasi MongoDB](https://kristories.gumroad.com/l/mongodb-untuk-indonesia) - Wahyu Kristianto (PDF, email address *requested*, not required)
### Pascal
* [Tutorial Belajar Bahasa Pemrograman Python Untuk Pemula](https://www.duniailkom.com/tutorial-belajar-bahasa-pemrograman-pascal-bagi-pemula/) - Duniailkom
### Pemrograman Fungsional
* [Pemrograman Fungsional untuk Rakyat Jelata dengan Scalaz](https://leanpub.com/fpmortals-id/read) (HTML)
@@ -186,8 +178,10 @@
### PHP
* [Belajar Laravel Untuk Pemula](https://gilacoding.com/upload/file/Belajar%20Laravel%20Untuk%20Pemula.pdf) - Dadan Hamdani (PDF)
* [Belajar PHP Dasar](https://www.malasngoding.com/belajar-php-dasar-pengenalan-dan-kegunaan-php/) - Malasngoding
* [Membuat Bot Telegram dengan PHP](https://www.slideshare.net/HasanudinHS/ebook-i-membuat-bot-telegram-dengan-php) - Hasanudin H Syafaat (PDF)
* [Menjelajahi Yii Framework](https://gilacoding.com/upload/file/menjelajahyiiframework.pdf) - Sabit Huraira (PDF)
* [Panduan Lengkap PHP AJAX jQuery](https://gilacoding.com/upload/file/Panduan%20Lengkap%20PHP%20Ajax%20jQuery.pdf) - Desrizal (PDF)
* [Pemrograman Berbasis Objek Modern dengan PHP](https://arsiteknologi.com/wp-content/uploads/Pemrograman_Berbasis_Objek_Modern_dengan_PHP_Google_Play_Book.pdf) - Muhamad Surya Iksanudin (PDF)
* [Pemrograman Berorientasi Objek Dengan PHP5](https://endangcahyapermana.files.wordpress.com/2016/03/belajar-singkat-pemrograman-berorientasi-objek-dengan-php5.pdf) - Gerry Sabar (PDF)
@@ -196,43 +190,18 @@
* [PHP: The Right Way Bahasa Indonesia](http://id.phptherightway.com/#site-header/)
* [Tutorial Belajar PHP Dasar Untuk Pemula](https://www.duniailkom.com/tutorial-belajar-php-dasar-untuk-pemula/) - Duniailkom
* [Tutorial Ebook PHP](http://www.ilmuwebsite.com/ebook-php-free-download)
* [Tutorial Pemrograman PHP untuk Pemula](https://www.petanikode.com/tutorial/php) - Ahmad Muhardian (Petani Kode) *( :construction: dalam proses)*
#### CodeIgniter
* [Codeigniter - Pendekatan Praktis](https://leanpub.com/codeigniter-pendekatanpraktis) - Ibnu Daqiqil Id (HTML, PDF, EPUB, Kindle) *(Membutuhkan akun Leanpub atau email yang valid)*
* [Codeigniter Untuk Pemula](https://repository.bsi.ac.id/index.php/unduh/item/176695/Tutorial-Codeigniter-Untuk-Pemula.pdf) - M Fikri Setiadi (PDF)
* [Framework Codeigniter - Sebuah Panduan dan Best Practice](https://gilacoding.com/upload/file/Tutorial%20framework%20codeigniter.pdf) - Gila Coding (PDF)
* [Panduan Pengguna CodeIgniter Indonesia](https://codeigniter-id.github.io/user-guide/) - CodeIgniter Indonesia
* [Tutorial CodeIgniter 3 & 4](https://www.petanikode.com/tutorial/codeigniter/) *( :construction: dalam proses)*
* [Tutorial CodeIgniter 4](http://mfikri.com/artikel/tutorial-codeigniter4)
#### Laravel
* [Belajar Laravel Untuk Pemula](https://gilacoding.com/upload/file/Belajar%20Laravel%20Untuk%20Pemula.pdf) - Dadan Hamdani (PDF)
* [Tutorial Belajar Framework Laravel 10](https://www.duniailkom.com/tutorial-belajar-framework-laravel/) - Duniailkom
#### Yii
* [Menjelajahi Yii Framework](https://gilacoding.com/upload/file/menjelajahyiiframework.pdf) - Sabit Huraira (PDF)
* [Panduan Definitif Untuk Yii 2.0](https://www.yiiframework.com/doc/download/yii-guide-2.0-id.pdf) - Yii Software (PDF)
* [Tutorial Pemrograman PHP untuk Pemula](https://www.petanikode.com/tutorial/php) - Ahmad Muhardian (Petani Kode) *(Dalam Proses)*
### Python
* [Belajar Python](http://www.belajarpython.com)
* [Cepat Mahir Python](https://gilacoding.com/upload/file/Python.pdf) - Hendri, `edt.:` Romi Satria Wahono (PDF)
* [Dasar-Dasar Python: Panduan Cepat untuk Memahami Fondasi Pemrograman Python](https://www.researchgate.net/publication/361459389_Dasar-Dasar_Python_Panduan_Cepat_untuk_Memahami_Fondasi_Pemrograman_Python) - Abdul Kadir
* [Dasar Pemrograman Python](https://dasarpemrogramanpython.novalagung.com) - Noval Agung Prayogo
* [Dasar Pengenalan Pemrograman Python](https://play.google.com/store/books/details/Rolly_Maulana_Awangga_Dasar_dasar_Python?id=YpzDDwAAQBAJ) - Rolly Maulana AwanggaRayhan *(Membutuhkan akun Google Play Books atau email yang valid)*
* [Kursus Singkat Machine Learning dengan TensorFlow API](https://developers.google.com/machine-learning/crash-course?hl=id)
* [Python Untuk Pemula](https://santrikoding.com/ebook/python-untuk-pemula) - Rizqi Maulana
* [Tutorial Dasar Pemrograman Python](https://www.petanikode.com/tutorial/python/) - Petani Kode, Ahmad Muhardian
* [Tutorial Python](https://docs.python.org/id/3.8/tutorial/)
* [Tutorial Python untuk Pemula](https://www.kevintekno.com/p/tutorial-python-untuk-pemula.html) - Kevin Tekno, Kevin Alfito
* [Workshop Python 101](http://sakti.github.io/python101/)
@@ -246,8 +215,3 @@
### Solidity
* [Smart Contract Blockchain pada E-Voting](https://www.researchgate.net/publication/337961765_Smart_Contract_Blockchain_pada_E-Voting) - Ajib Susanto (HTML, PDF)
### Swift
* [Swift Bahasa Indonesia](https://www.youtube.com/playlist?list=PLH1gH0TmFBBhR8A_Xq7drrxC4OlUvNP7b) - Ipung DEV Academy
+4 -6
View File
@@ -47,7 +47,7 @@
#### Metodologie di sviluppo del software
* [Analisi e progettazione del software](https://web.archive.org/web/20210819183048/http://www.diegm.uniud.it/schaerf/APS/Dispensa_APS_2_3.pdf) - S. Ceschia, A. Schaerf (PDF)
* [Analisi e progettazione del software](http://www.diegm.uniud.it/schaerf/APS/Dispensa_APS_2_3.pdf) - S. Ceschia, A. Schaerf (PDF)
* [Programmazione Funzionale](http://minimalprocedure.pragmas.org/writings/programmazione_funzionale/programmazione_funzionale.html) - Massimo Maria Ghisalberti
@@ -72,7 +72,6 @@
* [Breve storia dell'informatica](http://apav.it/informatica_file1.pdf) - F. Eugeni (PDF)
* [Corso di storia dell'informatica](http://nid.dimi.uniud.it/computing_history/computing_history.html) - C. Bonfanti, P. Giangrandi (PDF)
* [Guida pratica all'uso delle Intelligenze Artificiali](https://github.com/matteobaccan/CorsoAIBook) - M. Baccan, D. Ferrero (MD, PDF)
* [La storia dell'informatica in Mondo Digitale](http://www.aicanet.it/storia-informatica/storia-dell-informatica-in-mondo-digitale) (PDF)
* [STI: il corso di storia dell'Informatica](https://www.progettohmr.it/Corso/) - G.A. Cignoni (PDF)
* [Storia dell'informatica](http://www.dsi.unive.it/~pelillo/Didattica/Storia%20dell'informatica/) - M. Pelillo (PDF)
@@ -101,7 +100,7 @@
* [Guida di Beej alla Programmazione di Rete - Usando Socket Internet](http://linguaggioc.altervista.org/dl/GuidaDiBeejAllaProgrammazioneDiRete.pdf) - Brian "Beej Jorgensen" Hall, Fabrizio Pani (PDF)
* [Il linguaggio C - Guida pratica alla programmazione](https://eineki.files.wordpress.com/2010/02/guidac.pdf) - BlackLight (PDF)
* [Linguaggio C - ANSI C](https://web.archive.org/web/20180920221053/http://www.itis.pr.it/~dsacco/itis/Olimpiadi-informatica/Libri-di-testo/LinguaggioC-R&K.pdf) - Brian W. Kernighan, Dennis M. Ritchie (PDF) *( :card_file_box: archived)*
* [Linguaggio C - ANSI C](https://web.archive.org/web/20180920221053/http://www.itis.pr.it/~dsacco/itis/Olimpiadi-informatica/Libri-di-testo/LinguaggioC-R&K.pdf) - Brian W. Kernighan, Dennis M. Ritchie (PDF) *(:card_file_box: archived)*
* [Tricky C](http://www.dmi.unict.it/diraimondo/web/wp-content/uploads/classes/so/mirror-stuff/Tricky_C.pdf) (PDF)
@@ -234,13 +233,12 @@
* [Immersione in Python 3](http://gpiancastelli.altervista.org/dip3-it/) - Mark Pilgrim, `trl.:` Giulio Piancastelli (HTML) [(PDF)](http://gpiancastelli.altervista.org/dip3-it/d/diveintopython3-it-pdf-latest.zip)
* [La libreria di riferimento di Python](http://docs.python.it/html/lib/)
* [Pensare da Informatico, Versione Python](http://www.python.it/doc/Howtothink/Howtothink-html-it/index.htm)
* [Pensare in Python](https://github.com/AllenDowney/ThinkPythonItalian) - Allen B. Downey, `trl.:` Alessandro Pocaterra (HTML, PDF)
* [Python per tutti: Esplorare dati con Python3](http://do1.dr-chuck.com/pythonlearn/IT_it/pythonlearn.pdf) - Charles Russell Severance (PDF) [(EPUB)](http://do1.dr-chuck.com/pythonlearn/IT_it/pythonlearn.epub)
#### Django
* [Il tutorial di Django Girls](https://tutorial.djangogirls.org/it/) (1.11) (HTML) *( :construction: in process)*
* [Il tutorial di Django Girls](https://tutorial.djangogirls.org/it/) (1.11) (HTML) (:construction: *in process*)
### Ruby
@@ -266,7 +264,7 @@
### UML
* [Appunti di UML](https://web.archive.org/web/20110322065222/http://liuct.altervista.org/download/repository/ingsof/Appunti_UML.pdf) (PDF) *( :card_file_box: archived)*
* [Appunti di UML](https://web.archive.org/web/20110322065222/http://liuct.altervista.org/download/repository/ingsof/Appunti_UML.pdf) (PDF) *(:card_file_box: archived)*
### Visual Basic
+68 -90
View File
@@ -7,7 +7,6 @@
* [уВмуГЩуГ╝уВ╕уВ│уГмуВпуВ╖уГзуГ│](#%e3%82%ac%e3%83%99%e3%83%bc%e3%82%b8%e3%82%b3%e3%83%ac%e3%82%af%e3%82%b7%e3%83%a7%e3%83%b3)
* [уВ░уГйуГХуВгуГГуВпуВ╣уГЧуГнуВ░уГйуГЯуГ│уВ░](#%e3%82%b0%e3%83%a9%e3%83%95%e3%82%a3%e3%83%83%e3%82%af%e3%82%b9%e3%83%97%e3%83%ad%e3%82%b0%e3%83%a9%e3%83%9f%e3%83%b3%e3%82%b0)
* [уВ░уГйуГХуВгуГГуВпуГжуГ╝уВ╢уГ╝уВдуГ│уВ┐уГ╝уГХуВзуВдуВ╣](#%e3%82%b0%e3%83%a9%e3%83%95%e3%82%a3%e3%83%83%e3%82%af%e3%83%a6%e3%83%bc%e3%82%b6%e3%83%bc%e3%82%a4%e3%83%b3%e3%82%bf%e3%83%bc%e3%83%95%e3%82%a7%e3%82%a4%e3%82%b9)
* [уВ▓уГ╝уГащЦЛчЩ║](#%e3%82%b2%e3%83%bc%e3%83%A0%e9%96%8b%e7%99%ba)
* [уВ│уГ│уГЖуГК](#%E3%82%B3%E3%83%B3%E3%83%86%E3%83%8A)
* [уВ╗уВнуГеуГкуГЖуВг](#%e3%82%bb%e3%82%ad%e3%83%a5%e3%83%aa%e3%83%86%e3%82%a3)
* [уБЭуБоф╗ЦуБошй▒щбМ](#%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e8%a9%b1%e9%a1%8c)
@@ -29,6 +28,7 @@
* [C++](#cpp)
* [Clojure](#clojure)
* [CoffeeScript](#coffeescript)
* [Coq](#coq)
* [D](#d)
* [Elixir](#elixir)
* [Erlang](#erlang)
@@ -48,7 +48,6 @@
* [Node.js](#nodejs)
* [React](#react)
* [Svelte](#svelte)
* [Vue.js](#vuejs)
* [Julia](#julia)
* [LaTeX](#latex)
* [Linux](#linux)
@@ -62,14 +61,12 @@
* [OCaml](#ocaml)
* [Perl](#perl)
* [PHP](#php)
* [Yii](#yii)
* [PowerShell](#powershell)
* [Processing](#processing)
* [Prolog](#prolog)
* [Python](#python)
* [Flask](#flask)
* [R](#r)
* [Rocq Prover](#rocq-prover)
* [Ruby](#ruby)
* [Rust](#rust)
* [Sather](#sather)
@@ -91,8 +88,8 @@
#### <a id="ide-and-editors"></a>IDE уБиуВиуГЗуВгуВ┐уГ╝
* [Vim уВ╣уВпуГкуГЧуГИуГкуГХуВбуГмуГ│уВ╣](https://nanasi.jp/code.html) - х░ПшжЛцЛУ
* [Vim уВ╣уВпуГкуГЧуГИхЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://thinca.hatenablog.com/entry/20100201/1265009821) - @thinca
* [Vim уВ╣уВпуГкуГЧуГИцЫ╕ц│Х](https://vim-jp.org/vimdoc-ja/usr_41.html) - Bram Moolenaar, `trl:` vimdoc-ja уГЧуГнуВ╕уВзуВпуГИ
* [Vim уВ╣уВпуГкуГЧуГИхЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://thinca.hatenablog.com/entry/20100201/1265009821) - id:thinca
* [Vim уВ╣уВпуГкуГЧуГИцЫ╕ц│Х](https://vim-jp.org/vimdoc-ja/usr_41.html) - Bram Moolenaar, vimdoc-ja уГЧуГнуВ╕уВзуВпуГИ(ч┐╗ши│)
#### уВвуВпуВ╗уВ╖уГУуГкуГЖуВг
@@ -105,7 +102,7 @@
#### уВкуГ╝уГЧуГ│уВ╜уГ╝уВ╣уВиуВ│уВ╖уВ╣уГЖуГа
* [уВкуГ╝уГЧуГ│уВ╜уГ╝уВ╣уВмуВдуГЙуГйуВдуГ│](https://opensource.guide/ja/) - GitHub
* [уВкуГ╝уГЧуГ│уВ╜уГ╝уВ╣уВ╜уГХуГИуВжуВзуВвуБошВ▓уБжцЦ╣](https://producingoss.com/ja/) - Fogel Karl, `trl:` щлШцЬицнгх╝Ш, `trl:` Yoshinari Takaoka
* [уВкуГ╝уГЧуГ│уВ╜уГ╝уВ╣уВ╜уГХуГИуВжуВзуВвуБошВ▓уБжцЦ╣](https://producingoss.com/ja/) - Fogel Karl, щлШцЬицнгх╝Ш(ч┐╗ши│), Yoshinari Takaoka(ч┐╗ши│)
* [уБУуВМуБзуБзуБНуВЛя╝Б уБпуБШуВБуБжуБоOSSуГХуВгуГ╝уГЙуГРуГГуВпуВмуВдуГЙ я╜Ю #щзЖуБСхЗ║уБЧуВиуГ│уВ╕уГЛуВвуБич╣ЛуБМуВКуБЯуБД уБишиАуБгуБжуБЯчзБуБМщЗОчФЯуБоуБдуВИуБДуВиуГ│уВ╕уГЛуВвуБиуБдуБкуБМуВЛуБоуБлх┐ЕшжБуБауБгуБЯуБУуБия╜Ю](https://github.com/oss-gate/first-feedback-guidebook) - OSS Gate, ч╡РхЯОц┤Лх┐Ч / Piro
@@ -129,15 +126,6 @@
* [QtуГЧуГнуВ░уГйуГЯуГ│уВ░хЕещЦА](https://densan-labs.net/tech/qt) - @nishio_dens
#### уВ▓уГ╝уГащЦЛчЩ║
* [C# уВ╣уВ┐уВдуГлуВмуВдуГЙуВТф╜ЬцИРуБЩуВЛя╝ЪцЛбх╝╡цАзуБоуБВуВЛуАБуВИуВКуВпуГкуГ╝уГ│уБкуВ│уГ╝уГЙуВТцЫ╕уБП](https://unity3d.jp/game/game-ebooks/create-code-c-sharp-style-guide-e-book/) - Unity Technologies (HTML & PDF)
* [C# уВ╣уВ┐уВдуГлуВмуВдуГЙуВТф╜┐чФиуБЧуБжуАБуВпуГкуГ╝уГ│уБзуВ╣уВ▒уГ╝уГйуГЦуГлуБкуВ▓уГ╝уГауВ│уГ╝уГЙуВТцЫ╕уБП - Unity 6чЙИ](https://unity3d.jp/game/create-code-c-sharp-style-guide-e-book-unity-6/) - Unity Technologies (HTML & PDF)
* [уВ▓уГ╝уГауГЧуГнуВ░уГйуГЯуГ│уВ░уБоуГСуВ┐уГ╝уГ│уВТц┤╗чФиуБЧуБжуВ│уГ╝уГЙуВТуГмуГЩуГлуВвуГГуГЧ](https://unity3d.jp/game/game-ebooks/level-up-your-code-with-game-programming-patterns/) - Unity Technologies (HTML & PDF)
* [уВ▓уГ╝уГауГмуГЩуГлуГЗуВ╢уВдуГ│хЕещЦА](https://unity3d.jp/game/game-ebooks/game-level-design/) - Unity Technologies (HTML & PDF)
* [уГЗуВ╢уВдуГ│уГСуВ┐уГ╝уГ│уБиSOLIDуБзуВ│уГ╝уГЙуВТуГмуГЩуГлуВвуГГуГЧ](https://unity3d.jp/game/design-patterns-solid-ebook/) - Unity Technologies (HTML & PDF)
#### уВ│уГ│уГЖуГК
* [Docker-docs-ja](https://docs.docker.jp) - Docker Docs Translation Ja-Jp Project
@@ -157,9 +145,9 @@
#### уБЭуБоф╗ЦуБошй▒щбМ
* [уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝шСЧф╜ЬщБ╕щЫЖуААя╝С](https://tatsu-zine.com/books/kk1) - уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝, `trl:` ха║х▒Лф╕Гх╖жшбЫщЦА
* [уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝шСЧф╜ЬщБ╕щЫЖуААя╝Т](https://tatsu-zine.com/books/kk2) - уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝, `trl:` ха║х▒Лф╕Гх╖жшбЫщЦА
* [уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝шСЧф╜ЬщБ╕щЫЖуААя╝У](https://tatsu-zine.com/books/kk3) - уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝, `trl:` ха║х▒Лф╕Гх╖жшбЫщЦА
* [уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝шСЧф╜ЬщБ╕щЫЖуААя╝С](https://tatsu-zine.com/books/kk1) - уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝, ха║х▒Лф╕Гх╖жшбЫщЦА(ч┐╗ши│)
* [уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝шСЧф╜ЬщБ╕щЫЖуААя╝Т](https://tatsu-zine.com/books/kk2) - уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝, ха║х▒Лф╕Гх╖жшбЫщЦА(ч┐╗ши│)
* [уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝шСЧф╜ЬщБ╕щЫЖуААя╝У](https://tatsu-zine.com/books/kk3) - уВ▒уГ┤уВгуГ│уГ╗уВ▒уГкуГ╝, ха║х▒Лф╕Гх╖жшбЫщЦА(ч┐╗ши│)
* [щЭТцЬищЭЦ ч┐╗ши│щЫЖ](http://www.aoky.net) - щЭТцЬищЭЦ
* [х╖ЭхРИхП▓цЬЧ ч┐╗ши│щЫЖ](https://practical-scheme.net/index-j.html) - х╖ЭхРИхП▓цЬЧ
@@ -232,9 +220,9 @@
* [Android Open Text book](https://github.com/TechBooster/AndroidOpenTextbook) - TechBooster
* [Android уВвуГЧуГкуБоуВ╗уВнуГеуВвшиншиИуГ╗уВ╗уВнуГеуВвуВ│уГ╝уГЗуВгуГ│уВ░уВмуВдуГЙ](https://www.jssec.org/report/securecoding.html) - ф╕АшИмчд╛хЫгц│Хф║║цЧецЬмуВ╣уГЮуГ╝уГИуГХуВйуГ│уВ╗уВнуГеуГкуГЖуВгхНФф╝Ъ(JSSEC)
* [Android уВвуГЧуГкщЦЛчЩ║уБоуБЯуВБуБо Java хЕещЦА](https://gist.github.com/nobuoka/6546813) - @nobuoka
* [Android уВвуГЧуГкщЦЛчЩ║уБоуБЯуВБуБо Java хЕещЦА](https://gist.github.com/nobuoka/6546813) - id:nobuoka
* [AndroidTraining](https://mixi-inc.github.io/AndroidTraining/) - mixi Inc.
* [уВ│уГ│уГИуГкуГУуГеуГ╝уВ┐уБоуБЯуВБуБоAndroidуВ│уГ╝уГЙуВ╣уВ┐уВдуГлуВмуВдуГЙуГйуВдуГ│ цЧецЬмшкЮши│](http://www.textdrop.net/android/code-style-ja.html) - Android Open Source Project, `trl:` Takashi Sasai
* [уВ│уГ│уГИуГкуГУуГеуГ╝уВ┐уБоуБЯуВБуБоAndroidуВ│уГ╝уГЙуВ╣уВ┐уВдуГлуВмуВдуГЙуГйуВдуГ│ цЧецЬмшкЮши│](http://www.textdrop.net/android/code-style-ja.html) - Android Open Source Project, Takashi Sasai(ч┐╗ши│)
### AppleScript
@@ -257,10 +245,10 @@
### Bash
* [BASH Programming - Introduction HOW-TO](https://linuxjf.osdn.jp/JFdocs/Bash-Prog-Intro-HOWTO.html) - trl:Mike G, хНГцЧжшгХхП╕
* [Bash хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://d.hatena.ne.jp/nattou_curry_2/20100131/1264910483) - @nattou\_curry
* [BashуБоуВИуБПуБВуВЛщЦУщБХуБД](https://yakst.com/ja/posts/2929) - GreyCat, trl:@yakstcom
* [The Art of Command Line](https://github.com/jlevy/the-art-of-command-line/blob/master/README-ja.md) - Joshua Levy, `trl:` Hayato Matsuura
* [BASH Programming - Introduction HOW-TO](https://linuxjf.osdn.jp/JFdocs/Bash-Prog-Intro-HOWTO.html) - Mike G, хНГцЧжшгХхП╕(ч┐╗ши│)
* [Bash хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://d.hatena.ne.jp/nattou_curry_2/20100131/1264910483) - id:nattou\_curry
* [BashуБоуВИуБПуБВуВЛщЦУщБХуБД](https://yakst.com/ja/posts/2929) - GreyCat, @yakstcom(ч┐╗ши│)
* [The Art of Command Line](https://github.com/jlevy/the-art-of-command-line/blob/master/README-ja.md) - Joshua Levy, Hayato Matsuura(ч┐╗ши│)
* [UNIX & Linux уВ│уГЮуГ│уГЙуГ╗уВ╖уВзуГлуВ╣уВпуГкуГЧуГИ уГкуГХуВбуГмуГ│уВ╣](https://shellscript.sunone.me) - SUNONE
@@ -283,7 +271,7 @@
* [C++хЕещЦА](https://www.asahi-net.or.jp/~yf8k-kbys/newcpp0.html) - х░ПцЮЧхБеф╕АщГО
* [C++хЕещЦА AtCoder Programming Guide for beginners (APG4b)](https://atcoder.jp/contests/APG4b) - щ╜ЛшЧд ф╕╗шгХ, чЯ│щ╗Т ц╖│
* [cpprefjp - C++ Reference Site in Japanese](https://cpprefjp.github.io)
* [Google C++ уВ╣уВ┐уВдуГлуВмуВдуГЙ цЧецЬмшкЮхЕиши│](https://ttsuki.github.io/styleguide/cppguide.ja.html) - Benjy Weinberger, Craig Silverstein, Gregory Eitzmann, Mark Mentovai, Tashana Landray, `trl:` ttsuki
* [Google C++ уВ╣уВ┐уВдуГлуВмуВдуГЙ цЧецЬмшкЮхЕиши│](https://ttsuki.github.io/styleguide/cppguide.ja.html) - Benjy Weinberger, Craig Silverstein, Gregory Eitzmann, Mark Mentovai, Tashana Landray, ttsuki(ч┐╗ши│)
* [Standard Template Library уГЧуГнуВ░уГйуГЯуГ│уВ░](https://web.archive.org/web/20170607163002/http://episteme.wankuma.com/stlprog) - ╬╡╧А╬╣╧Г╧Д╬╖╬╝╬╖
* [уБКц░Чце╜я╝г++уГЧуГнуВ░уГйуГЯуГ│уВ░ш╢ЕхЕещЦА](http://www.nct9.ne.jp/m_hiroi/linux/cpp.html) - х║Гф║Хшка
* [уГнуГЩуГ╝уГлуБоя╝гя╝Ля╝ЛцХЩход](http://www7b.biglobe.ne.jp/~robe/cpphtml) - уГнуГЩуГ╝уГл
@@ -292,19 +280,24 @@
### Clojure
* [ClojureуВ╣уВ┐уВдуГлуВмуВдуГЙ](https://github.com/totakke/clojure-style-guide) - Bozhidar Batsov, `trl:` Toshiki TAKEUCHI
* [Modern cljs(ч┐╗ши│ф╕н)](https://github.com/TranslateBabelJapan/modern-cljs) - Mimmo Cosenza, `trl:` @esehara
* [ClojureуВ╣уВ┐уВдуГлуВмуВдуГЙ](https://github.com/totakke/clojure-style-guide) - Bozhidar Batsov, Toshiki TAKEUCHI(ч┐╗ши│)
* [Modern cljs(ч┐╗ши│ф╕н)](https://github.com/TranslateBabelJapan/modern-cljs) - Mimmo Cosenza, @esehara(ч┐╗ши│)
* [щАЖх╝ХуБНClojure](https://github.com/making/rd-clj) - Toshiaki Maki
### CoffeeScript
* [CoffeeScriptхЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://blog.bokuweb.me/entry/2015/01/06/190240) - @bokuweb
* [The Little Book on CoffeeScript](https://minghai.github.io/library/coffeescript) - Alex MacCaw, `trl:` Narumi Katoh
* [CoffeeScriptхЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://blog.bokuweb.me/entry/2015/01/06/190240) - id:bokuweb
* [The Little Book on CoffeeScript](https://minghai.github.io/library/coffeescript) - Alex MacCaw, Narumi Katoh(ч┐╗ши│)
* [хЯ║цЬмцУНф╜ЬщАЖх╝ХуБНуГкуГХуВбуГмуГ│уВ╣я╝ИCoffeeScriptя╝Й](https://kyu-mu.net/coffeescript/revref) - щгпхбЪчЫ┤
* [цнгшжПшбичП╛уГкуГХуВбуГмуГ│уВ╣я╝ИCoffeeScript)](https://kyu-mu.net/coffeescript/regexp) - щгпхбЪчЫ┤
### Coq
* [уВ╜уГХуГИуВжуВзуВвуБохЯ║чдО](http://proofcafe.org/sf) - Benjamin C. Pierce, Chris Casinghino, Michael Greenberg, Vilhelm Sj├╢berg, Brent Yorgey, цвЕцЭСцЩГх║Г(ч┐╗ши│), чЙЗх▒▒хКЯхгл(ч┐╗ши│), ц░┤щЗОц┤Лци╣(ч┐╗ши│), хдзцйЛхП░хЬ░(ч┐╗ши│), хвЧхнРшРМ(ч┐╗ши│), ф╗Кф║ХхоЬц┤Л(ч┐╗ши│)
### D
* [DшиАшкЮхЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://gist.github.com/repeatedly/2470712) - Masahiro Nakagawa
@@ -338,11 +331,11 @@
* [Go Codereview Comments](https://knsh14.github.io/translations/go-codereview-comments) - Kenshi Kamata
* [Go Web уГЧуГнуВ░уГйуГЯуГ│уВ░](https://astaxie.gitbooks.io/build-web-application-with-golang/content/ja) - AstaXie
* [уБКц░Чце╜ Go шиАшкЮуГЧуГнуВ░уГйуГЯуГ│уВ░хЕещЦА](http://www.nct9.ne.jp/m_hiroi/golang) - х║Гф║Хшка
* [уВ╡уГ│уГЧуГлуБзхнжуБ╢ Go шиАшкЮ](https://www.spinute.org/go-by-example) - Mark McGranaghan, `trl:` spinute
* [уГЖуВ╣уГИщзЖхЛХщЦЛчЩ║уБзGOшиАшкЮуВТхнжуБ│уБ╛уБЧуВЗуБЖ](https://andmorefine.gitbook.io/learn-go-with-tests/) - Christopher James, `trl:` andmorefine
* [уВ╡уГ│уГЧуГлуБзхнжуБ╢ Go шиАшкЮ](https://www.spinute.org/go-by-example) - Mark McGranaghan, spinute(ч┐╗ши│)
* [уГЖуВ╣уГИщзЖхЛХщЦЛчЩ║уБзGOшиАшкЮуВТхнжуБ│уБ╛уБЧуВЗуБЖ](https://andmorefine.gitbook.io/learn-go-with-tests/) - Christopher James, andmorefine(ч┐╗ши│)
* [уБиуБ╗уБ╗уБо Go шиАшкЮхЕещЦА](https://www.tohoho-web.com/ex/golang.html) - цЭЬчФлуАЕ
* [уБпуБШуВБуБжуБоGoтАХуВ╖уГ│уГЧуГлуБкшиАшкЮф╗ХцзШя╝МхЮЛуВ╖уВ╣уГЖуГая╝Мф╕жшбМхЗжчРЖ](https://gihyo.jp/dev/feature/01/go_4beginners) - Jxck
* [уГЧуГнуВ░уГйуГЯуГ│уВ░шиАшкЮ Go уГЙуВнуГеуГбуГ│уГИ](http://go.shibu.jp) - The Go Authors, `trl:` SHIBUKAWA Yoshiki ф╗Ц
* [уГЧуГнуВ░уГйуГЯуГ│уВ░шиАшкЮ Go уГЙуВнуГеуГбуГ│уГИ](http://go.shibu.jp) - The Go Authors, SHIBUKAWA Yoshiki ф╗Ц(ч┐╗ши│)
### Groovy
@@ -369,7 +362,7 @@
### Haskell
* [Haskell уБоуБКхЛЙх╝╖](https://www.shido.info/hs) - ч┤лшЧдш▓┤цЦЗ
* [Haskell хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://ruicc.hatenablog.jp/entry/20100131/1264905896) - @ruicc
* [Haskell хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://ruicc.hatenablog.jp/entry/20100131/1264905896) - id:ruicc
* [HaskellуБзуВПуБЛуВЛф╗гцХ░чЪДцзЛщАа](https://aiya000.gitbooks.io/haskell_de_groupstructure) - aiya000
* [уБКц░Чце╜ Haskell уГЧуГнуВ░уГйуГЯуГ│уВ░хЕещЦА](http://www.nct9.ne.jp/m_hiroi/func/haskell.html) - х║Гф║Хшка
@@ -378,7 +371,7 @@
* [Cocoa Programming Tips 1001](https://web.archive.org/web/20170507034234/http://hmdt.jp/tips/cocoa/index.html) - цЬиф╕Лшка
* [iOSуВвуГЧуГкуВ▒уГ╝уВ╖уГзуГ│ уГЧуГнуВ░уГйуГЯуГ│уВ░уВмуВдуГЙ](https://developer.apple.com/jp/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Introduction/Introduction.html) - Apple Developer (PDF)
* [RubyMotion Tutorial: Ruby уБз iOS уВвуГЧуГкуВТф╜ЬуВНуБЖ](http://tutorial.rubymotion.jp) - Clay Allsopp, `trl:` RubyMotion JP
* [RubyMotion Tutorial: Ruby уБз iOS уВвуГЧуГкуВТф╜ЬуВНуБЖ](http://tutorial.rubymotion.jp) - Clay Allsopp, RubyMotion JP(ч┐╗ши│)
### Java
@@ -386,17 +379,17 @@
* [JavaуГЧуГнуВ░уГйуГЯуГ│уВ░хнжч┐ТцФпцП┤уВ╖уВ╣уГЖуГауБоуВ╜уГХуГИуВжуВзуВвуВвуГ╝уВнуГЖуВпуГБуГгуБи2чиощбЮуБоцЦ░хХПщбМх╜вх╝ПуБоцПРцбИ](https://ousar.lib.okayama-u.ac.jp/files/public/5/55952/20180614114854955908/K0005730_fulltext.pdf) - чЯ│хОЯф┐бф╣Я (PDF)
* [JavaхЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://d.hatena.ne.jp/nattou_curry_2/20100130/1264821094) - id:nattou\_curry
* [уБКц░Чце╜ Java уГЧуГнуВ░уГйуГЯуГ│уВ░хЕещЦА](http://www.nct9.ne.jp/m_hiroi/java) - х║Гф║Хшка
* [щаСхБеуБкJavaуГЧуГнуВ░уГйуГауБоцЫ╕уБНцЦ╣](http://seiza.dip.jp/link/files/writingrobustjavacode.pdf) - Scott W. Ambler, `trl:` щлШцйЛх╛╣ (PDF)
* [щаСхБеуБкJavaуГЧуГнуВ░уГйуГауБоцЫ╕уБНцЦ╣](http://seiza.dip.jp/link/files/writingrobustjavacode.pdf) - Scott W. Ambler, щлШцйЛх╛╣(ч┐╗ши│) (PDF)
### JavaScript
* [Airbnb JavaScript уВ╣уВ┐уВдуГлуВмуВдуГЙ](https://mitsuruog.github.io/javascript-style-guide) - Airbnb, `trl:` х░Пх╖ЭхЕЕ
* [Google JavaScript уВ╣уВ┐уВдуГлуВмуВдуГЙ](https://w.atwiki.jp/aias-jsstyleguide2) - Aaron Whyte, Bob Jervis, Dan Pupius, Erik Arvidsson, Fritz Schneider, Robby Walker, `trl:` aiaswood
* [Airbnb JavaScript уВ╣уВ┐уВдуГлуВмуВдуГЙ](https://mitsuruog.github.io/javascript-style-guide) - Airbnb, х░Пх╖ЭхЕЕ(ч┐╗ши│)
* [Google JavaScript уВ╣уВ┐уВдуГлуВмуВдуГЙ](https://w.atwiki.jp/aias-jsstyleguide2) - Aaron Whyte, Bob Jervis, Dan Pupius, Erik Arvidsson, Fritz Schneider, Robby Walker, aiaswood(ч┐╗ши│)
* [JavaScript Plugin Architecture](https://azu.gitbooks.io/javascript-plugin-architecture/content) - azu
* [JavaScript Primer](https://jsprimer.net) - azu, Suguru Inatomi
* [JavaScript PromiseуБоцЬм](https://azu.github.io/promises-book) - azu
* [JavaScript хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://gifnksm.hatenablog.jp/entry/20100131/1264934942) - @gifnksm
* [JavaScript хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://gifnksm.hatenablog.jp/entry/20100131/1264934942) - id:gifnksm
* [JavaScript шиАшкЮуГкуГХуВбуГмуГ│уВ╣](https://msdn.microsoft.com/ja-jp/library/d1et7k7c.aspx) - MSDN Library
* [Mozilla Developer Network цЧецЬмшкЮуГЙуВнуГеуГбуГ│уГИ](https://developer.mozilla.org/ja/docs/Web/JavaScript) - MDN
* [The little book of Buster.JS](https://the-little-book-of-busterjs.readthedocs.io/en/latest) - azu
@@ -411,7 +404,7 @@
> :information_source: щЦвщАгщаЕчЫо - [Angular](#angular)
* [AngularJS 1.2 цЧецЬмшкЮуГкуГХуВбуГмуГ│уВ╣](https://js.studio-kingdom.com/angularjs) - `trl:` @tomof
* [AngularJS 1.2 цЧецЬмшкЮуГкуГХуВбуГмуГ│уВ╣](https://js.studio-kingdom.com/angularjs) - @tomof(ч┐╗ши│)
* [AngularJSуВ╣уВ┐уВдуГлуВмуВдуГЙ](https://github.com/mgechev/angularjs-style-guide/blob/master/README-ja-jp.md) - Minko Gechev, Morita Naoki, Yohei Sugigami, et al.
* [уБЩуБРуБзуБНуВЛ AngularJS](https://8th713.github.io/LearnAngularJS) - @8th713
@@ -429,15 +422,15 @@
#### Node.js
* [Felix's Node.js Style Guide](https://popkirby.github.io/contents/nodeguide/style.html) - Debuggable Limited, `trl:` @popkirby
* [Felix's Node.js Style Guide](https://popkirby.github.io/contents/nodeguide/style.html) - Debuggable Limited, @popkirby(ч┐╗ши│)
* [node.js цАТц┐дуБо50уВ╡уГ│уГЧуГл!! тАУ socket.ioч╖и](https://github.com/omatoro/NodeSample) - omatoro
* [NodeуГУуВоуГКуГ╝уВ║уГЦуГГуВп](https://www.nodebeginner.org/index-jp.html) - Manuel Kiessling, `trl:` Yuki Kawashima
* [NodeуГУуВоуГКуГ╝уВ║уГЦуГГуВп](https://www.nodebeginner.org/index-jp.html) - Manuel Kiessling, Yuki Kawashima(ч┐╗ши│)
#### React
* [React 0.13 цЧецЬмшкЮуГкуГХуВбуГмуГ│уВ╣](https://js.studio-kingdom.com/react) - `trl:` @tomof
* [уВпуВдуГГуВпуВ╣уВ┐уГ╝уГИ](https://ja.react.dev/learn) - Facebook Inc.
* [React 0.13 цЧецЬмшкЮуГкуГХуВбуГмуГ│уВ╣](https://js.studio-kingdom.com/react) - @tomof(ч┐╗ши│)
* [уГБуГеуГ╝уГИуГкуВвуГля╝ЪReact уБох░ОхЕе](https://ja.reactjs.org/tutorial/tutorial.html) - Facebook Inc.
#### Svelte
@@ -446,11 +439,6 @@
* [Svelte уВТуБпуБШуВБуВЛ](https://developer.mozilla.org/ja/docs/Learn/Tools_and_testing/Client-side_JavaScript_frameworks/Svelte_getting_started) - MDN
#### Vue.js
* [The chibivue Book](https://book.chibivue.land/ja.html) - ubugeeei
### Julia
* [Julia Language Programming](http://www.nct9.ne.jp/m_hiroi/light/julia.html) - х║Гф║Хшка
@@ -468,8 +456,8 @@
### Linux
* [Linux Device Driver](https://www.mech.tohoku-gakuin.ac.jp/rde/contents/linux/drivers/indexframe.html) - чЖКш░╖цнгцЬЧ
* [Linux from Scratch (Version 7.4)](https://lfsbookja.osdn.jp/7.4.ja/) - Gerard Beekmans, `trl:` цЭ╛х▒▒щБУхдл
* [Secure Programming for Linux and Unix HOWTO](https://linuxjf.osdn.jp/JFdocs/Secure-Programs-HOWTO) - David A. Wheeler, `trl:` щлШцйЛшБб
* [Linux from Scratch (Version 7.4)](https://lfsbookja.osdn.jp/7.4.ja/) - Gerard Beekmans, цЭ╛х▒▒щБУхдл(ч┐╗ши│)
* [Secure Programming for Linux and Unix HOWTO](https://linuxjf.osdn.jp/JFdocs/Secure-Programs-HOWTO) - David A. Wheeler, щлШцйЛшБб(ч┐╗ши│)
### Lisp
@@ -479,7 +467,7 @@
* [GNU Emacs LispуГкуГХуВбуГмуГ│уВ╣уГЮуГЛуГеуВвуГл](http://www.fan.gr.jp/~ring/doc/elisp_20/elisp.html)
* [LISP and PROLOG](https://web.archive.org/web/20060526095202/http://home.soka.ac.jp/~unemi/LispProlog) - чХЭшжЛщБФхдл
* [Lisp ф╕АхдЬц╝муБС](https://www.haun.org/kent/lisp1/) - TAMURA Kent
* [On Lisp (шНЙчи┐)](http://www.asahi-net.or.jp/~kc7k-nd) - Paul Graham, `trl:` щЗОчФ░щЦЛ
* [On Lisp (шНЙчи┐)](http://www.asahi-net.or.jp/~kc7k-nd) - Paul Graham, щЗОчФ░щЦЛ(ч┐╗ши│)
* [уГЮуГ│уВмуБзхИЖуБЛуВЛLisp(Manga Guide to Lisp)](http://lambda.bugyo.tk/cdr/mwl) - ╬╗ч╡Д
@@ -498,8 +486,8 @@
### Mercurial
* [Mercurial: The Definitive Guide](http://foozy.bitbucket.org/hgbook-ja/index.ja.html) - Bryan O'Sullivan, `trl:` шЧдхОЯхЕЛхЙЗ
* [Mercurial уГБуГеуГ╝уГИуГкуВвуГл hginit.com уБохТМши│](https://mmitou.hatenadiary.org/entry/20100501/1272680474) - Joel Spolsky, `trl:` mmitou
* [Mercurial: The Definitive Guide](http://foozy.bitbucket.org/hgbook-ja/index.ja.html) - Bryan O'Sullivan, шЧдхОЯхЕЛхЙЗ(ч┐╗ши│)
* [Mercurial уГБуГеуГ╝уГИуГкуВвуГл hginit.com уБохТМши│](https://mmitou.hatenadiary.org/entry/20100501/1272680474) - Joel Spolsky, id:mmitou(ч┐╗ши│)
### ML
@@ -510,16 +498,16 @@
### NoSQL
* [Hibari уВвуГЧуГкуВ▒уГ╝уВ╖уГзуГ│щЦЛчЩ║шАЕуВмуВдуГЙ](https://hibari.github.io/hibari-doc/hibari-app-developer-guide.ja.html)
* [MongoDBуБошЦДуБДцЬм](https://www.cuspy.org/diary/2012-04-17/the-little-mongodb-book-ja.pdf) - Karl Seguin, `trl: ц┐▒щЗОхП╕` (PDF)
* [The Little Redis Book](https://github.com/craftgear/the-little-redis-book) - Karl Seguin, `trl.:` @craftgear
* [MongoDBуБошЦДуБДцЬм](https://www.cuspy.org/diary/2012-04-17/the-little-mongodb-book-ja.pdf) - Karl Seguin, ц┐▒щЗОхП╕(ч┐╗ши│) (PDF)
* [The Little Redis Book](https://github.com/craftgear/the-little-redis-book) - Karl Seguin, `trl.:` @craftgear(ч┐╗ши│)
### Objective-C
* [Google Objective-C уВ╣уВ┐уВдуГлуВмуВдуГЙ цЧецЬмшкЮши│](http://www.textdrop.net/google-styleguide-ja/objcguide.xml) - Mike Pinkerton, Greg Miller, Dave MacLachlan, `trl:` Takashi Sasai
* [Google Objective-C уВ╣уВ┐уВдуГлуВмуВдуГЙ цЧецЬмшкЮши│](http://www.textdrop.net/google-styleguide-ja/objcguide.xml) - Mike Pinkerton, Greg Miller, Dave MacLachlan, Takashi Sasai(ч┐╗ши│)
* [Objective-C 2.0 хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://marycore.jp/prog/objective-c/basic-syntax) - @_marycore
* [Objective-C уГЧуГнуВ░уГйуГЯуГ│уВ░шиАшкЮ](https://developer.apple.com/jp/documentation/ProgrammingWithObjectiveC.pdf) - Apple Developer (PDF)
* [Objective-C цЬАщАЯхЯ║чдОцЦЗц│ХуГЮуВ╣уВ┐уГ╝](https://fn7.hatenadiary.org/entry/20100203/1265207098) - @fn7
* [Objective-C цЬАщАЯхЯ║чдОцЦЗц│ХуГЮуВ╣уВ┐уГ╝](https://fn7.hatenadiary.org/entry/20100203/1265207098) - id:fn7
### OCaml
@@ -530,7 +518,7 @@
### Perl
* [2цЩВщЦУхНКуБзхнжуБ╢Perl](https://qntm.org/files/perl/perl_jp.html) - Sam Hughes, `trl:` Kato Atsusi
* [2цЩВщЦУхНКуБзхнжуБ╢Perl](https://qntm.org/files/perl/perl_jp.html) - Sam Hughes, Kato Atsusi(ч┐╗ши│)
* [Perl](https://ja.wikibooks.org/wiki/Perl) - Wikibooks
* [Perl уБзуБоуГЗуГ╝уВ┐уГЩуГ╝уВ╣цУНф╜Ь](https://github.com/hatena/Hatena-Textbook/blob/master/database-programming-perl.md) - уБпуБжуБкцХЩчзСцЫ╕
* [Perl уБоуВ│уВвуГЙуВнуГеуГбуГ│уГИ](https://perldoc.jp/index/core) - ф╕АшИмчд╛хЫгц│Хф║║ Japan Perl Association (JPA)
@@ -547,11 +535,6 @@
* [PSR-2 тАУ уВ│уГ╝уГЗуВгуГ│уВ░уВ╣уВ┐уВдуГлуВмуВдуГЙ](https://github.com/maosanhioro/fig-standards/blob/master/translation/PSR-2-coding-style-guide.md) - maosanhioro
#### Yii
* [Yii 2.0 ц▒║хоЪчЙИуВмуВдуГЙ](https://www.yiiframework.com/doc/download/yii-guide-2.0-ja.pdf) - Yii Software (PDF)
### PowerShell
* [PowerShell уВ╣уВпуГкуГЧуГИ](https://docs.microsoft.com/ja-jp/powershell/scripting/overview?view=powershell-6) - Microsoft Docs
@@ -574,20 +557,20 @@
### Python
* [Dive Into Python 3 цЧецЬмшкЮчЙИ](http://diveintopython3-ja.rdy.jp) - Mark Pilgrim, `trl:` Fukada, `trl:` Fujimoto
* [Dive Into Python 3 цЧецЬмшкЮчЙИ](http://diveintopython3-ja.rdy.jp) - Mark Pilgrim, Fukada(ч┐╗ши│), Fujimoto(ч┐╗ши│)
* [php уГЧуГнуВ░уГйуГЮуБоуБЯуВБуБо Python уГБуГеуГ╝уГИуГкуВвуГл](https://web.archive.org/web/20160813152046/http://phpy.readthedocs.io/en/latest/) - INADA Naoki
* [Python 3.4](https://stats.biopapyrus.jp/python) - хнлх╗║х╝╖
* [Python Scientific Lecture Notes](http://turbare.net/transl/scipy-lecture-notes) - `trl:` цЙУчФ░цЧнхоП
* [Python уБзщЯ│хг░ф┐бхП╖хЗжчРЖ](https://aidiary.hatenablog.com/entry/20110514/1305377659) - @aidiary
* [Python Scientific Lecture Notes](http://turbare.net/transl/scipy-lecture-notes) - цЙУчФ░цЧнхоП(ч┐╗ши│)
* [Python уБзщЯ│хг░ф┐бхП╖хЗжчРЖ](https://aidiary.hatenablog.com/entry/20110514/1305377659) - id:aidiary
* [python уБзх┐ГчРЖхоЯщиУ](http://www.s12600.net/psy/python) - хНБц▓│хоПшбМ
* [Python уГЙуВнуГеуГбуГ│уГИцЧецЬмшкЮши│](https://docs.python.org/ja) - Python Software Foundation
* [Python уБлуВИуВЛцЧецЬмшкЮшЗкчД╢шиАшкЮхЗжчРЖ](https://www.nltk.org/book-jp/ch12.html) - Steven Bird, Ewan Klein, Edward Loper, `trl:` шРйхОЯцнгф║║, `trl:` ф╕нх▒▒цХмх║Г, `trl:` ц░┤щЗОш▓┤цШО
* [Python уБлуВИуВЛцЧецЬмшкЮшЗкчД╢шиАшкЮхЗжчРЖ](https://www.nltk.org/book-jp/ch12.html) - Steven Bird, Ewan Klein, Edward Loper, шРйхОЯцнгф║║(ч┐╗ши│), ф╕нх▒▒цХмх║Г(ч┐╗ши│), ц░┤щЗОш▓┤цШО(ч┐╗ши│)
* [Python уБохнжч┐Т](https://skitazaki.github.io/python-school-ja) - KITAZAKI Shigeru
* [Python уГТуГГуГБуГПуВдуВпуГ╗уВмуВдуГЙ](https://python-guide-ja.readthedocs.io/en/latest) - Kenneth Reitz, `trl:` Tsuyoshi Tokuda
* [Python уГЧуГнуВ░уГйуГЮуГ╝уБоуБЯуВБуБо gevent уГБуГеуГ╝уГИуГкуВвуГл](https://methane.github.io/gevent-tutorial-ja) - Stephen Diehl, J├йr├йmy Bethmont, sww, Bruno Bigras, David Ripton, Travis Cline, Boris Feld, youngsterxyf, Eddie Hebert, Alexis Metaireau, Daniel Velkov, `trl:` methane
* [Python хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://dplusplus.hatenablog.com/entry/20100126/p1) - @dplusplus
* [The Programming Historian](https://sites.google.com/site/theprogramminghistorianja) - William J. Turkel, Alan MacEachern, `trl:` @moroshigeki, `trl:` @historyanddigi, `trl:` @Say\_no, `trl:` @knagasaki, `trl:` @mak\_goto
* [Think Pythonя╝ЪуВ│уГ│уГФуГеуГ╝уВ┐уВ╡уВдуВиуГ│уГЖуВгуВ╣уГИуБоуВИуБЖуБлшАГуБИуБжуБ┐уВИуБЖ](http://www.cauldron.sakura.ne.jp/thinkpython/thinkpython/ThinkPython.pdf) - Allen Downey, `trl:` чЫ╕х╖Э хИйци╣ (PDF)
* [Python уГТуГГуГБуГПуВдуВпуГ╗уВмуВдуГЙ](https://python-guide-ja.readthedocs.io/en/latest) - Kenneth Reitz, Tsuyoshi Tokuda(ч┐╗ши│)
* [Python уГЧуГнуВ░уГйуГЮуГ╝уБоуБЯуВБуБо gevent уГБуГеуГ╝уГИуГкуВвуГл](https://methane.github.io/gevent-tutorial-ja) - Stephen Diehl, J├йr├йmy Bethmont, sww, Bruno Bigras, David Ripton, Travis Cline, Boris Feld, youngsterxyf, Eddie Hebert, Alexis Metaireau, Daniel Velkov, methane(ч┐╗ши│)
* [Python хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://dplusplus.hatenablog.com/entry/20100126/p1) - id:dplusplus
* [The Programming Historian](https://sites.google.com/site/theprogramminghistorianja) - William J. Turkel, Alan MacEachern, @moroshigeki(ч┐╗ши│), @historyanddigi(ч┐╗ши│), @Say\_no(ч┐╗ши│), @knagasaki(ч┐╗ши│), @mak\_goto(ч┐╗ши│)
* [Think Pythonя╝ЪуВ│уГ│уГФуГеуГ╝уВ┐уВ╡уВдуВиуГ│уГЖуВгуВ╣уГИуБоуВИуБЖуБлшАГуБИуБжуБ┐уВИуБЖ](http://www.cauldron.sakura.ne.jp/thinkpython/thinkpython/ThinkPython.pdf) - Allen Downey, чЫ╕х╖Э хИйци╣я╝Ич┐╗ши│я╝Й(PDF)
* [уБКц░Чце╜ Python уГЧуГнуВ░уГйуГЯуГ│уВ░хЕещЦА](http://www.nct9.ne.jp/m_hiroi/light) - х║Гф║Хшка
* [уГЧуГнуВ░уГйуГЯуГ│уВ░ц╝Фч┐Т Python 2019](http://hdl.handle.net/2433/245698) - хЦЬхдЪф╕А (PDF)
* [уБ┐уВУуБкуБоPython WebуВвуГЧуГкч╖и](https://coreblog.org/ats/stuff/minpy_web) - цЯ┤чФ░ц╖│
@@ -596,7 +579,7 @@
#### Flask
* [Flask уГЙуВнуГеуГбуГ│уГИ](https://flask-docs-ja.readthedocs.io/en/latest) - Armin Ronacher, `trl:` Tsuyoshi Tokuda
* [Flask уГЙуВнуГеуГбуГ│уГИ](https://flask-docs-ja.readthedocs.io/en/latest) - Armin Ronacher, Tsuyoshi Tokuda(ч┐╗ши│)
* [Flask уГПуГ│уВ║уВкуГ│](https://methane.github.io/flask-handson) - INADA Naoki
@@ -604,37 +587,32 @@
* [R](https://stats.biopapyrus.jp/r) - хнлх╗║х╝╖
* [R хЯ║цЬмч╡▒шиИщЦвцХ░уГЮуГЛуГеуВвуГл](https://cran.r-project.org/doc/contrib/manuals-jp/Mase-Rstatman.pdf) - щЦУчАмшМВ (PDF)
* [R шиАшкЮхоЪч╛й](https://cran.r-project.org/doc/contrib/manuals-jp/R-lang.jp.v110.pdf) - R Development Core Team, `trl:` щЦУчАмшМВ (PDF)
* [R хЕещЦА](https://cran.r-project.org/doc/contrib/manuals-jp/R-intro-170.jp.pdf) - W. N. Venables, D. M. Smith, R Development Core Team, `trl:` щЦУчАмшМВ (PDF)
* [R шиАшкЮхоЪч╛й](https://cran.r-project.org/doc/contrib/manuals-jp/R-lang.jp.v110.pdf) - R Development Core Team, щЦУчАмшМВ(ч┐╗ши│) (PDF)
* [R хЕещЦА](https://cran.r-project.org/doc/contrib/manuals-jp/R-intro-170.jp.pdf) - W. N. Venables, D. M. Smith, R Development Core Team, щЦУчАмшМВ(ч┐╗ши│) (PDF)
* [RуГБуГеуГ╝уГИуГкуВвуГлуВ╗уГЯуГКуГ╝уГЖуВнуВ╣уГИ](http://psycho.edu.yamaguchi-u.ac.jp/wordpress/wp-content/uploads/2014/01/R_tutorial20131.pdf) - х░ПцЭЙшАГхП╕, цК╝ц▒ЯщЪЖ (PDF)
* [RуБлуВИуВЛч╡▒шиИшзгцЮРуБохЯ║чдО](https://minato.sip21c.org/statlib/stat.pdf) - ф╕нц╛дц╕п (PDF)
* [RуБлуВИуВЛф┐ЭхБехМ╗чЩВуГЗуГ╝уВ┐шзгцЮРц╝Фч┐Т](http://minato.sip21c.org/msb/medstatbook.pdf) - ф╕нц╛дц╕п (PDF)
* [чДбцЦЩч╡▒шиИуВ╜уГХуГИRуБзх┐ГчРЖхнж](http://blue.zero.jp/yokumura/Rhtml/Haebera2002.html) - хеецЭСц│░ф╣Л
### Rocq Prover
* [уВ╜уГХуГИуВжуВзуВвуБохЯ║чдО](http://proofcafe.org/sf) - Benjamin C. Pierce, Chris Casinghino, Michael Greenberg, Vilhelm Sj├╢berg, Brent Yorgey, `trl:` цвЕцЭСцЩГх║Г, `trl:` чЙЗх▒▒хКЯхгл, `trl:` ц░┤щЗОц┤Лци╣, `trl:` хдзцйЛхП░хЬ░, `trl:` хвЧхнРшРМ, `trl:` ф╗Кф║ХхоЬц┤Л
### Ruby
* [Ruby on Rails уВмуВдуГЙ](https://railsguides.jp) - Rails community, `trl:` хЕлчФ░ цШМф╕Й, `trl:` хоЙх╖Э шжБх╣│
* [Ruby on Rails уГБуГеуГ╝уГИуГкуВвуГл](https://railstutorial.jp) - Michael Hartl, `trl:` хЕлчФ░ цШМф╕Й, `trl:` хоЙх╖Э шжБх╣│
* [Ruby on Rails уВмуВдуГЙ](https://railsguides.jp) - Rails community, хЕлчФ░ цШМф╕Й(ч┐╗ши│), хоЙх╖Э шжБх╣│(ч┐╗ши│)
* [Ruby on Rails уГБуГеуГ╝уГИуГкуВвуГл](https://railstutorial.jp) - Michael Hartl, хЕлчФ░ цШМф╕Й(ч┐╗ши│), хоЙх╖Э шжБх╣│(ч┐╗ши│)
* [Ruby уВ╜уГ╝уВ╣уВ│уГ╝уГЙхоМхЕишзгшкм](https://i.loveruby.net/ja/rhg/book) - щЭТцЬих│░щГО
* [Ruby уГкуГХуВбуГмуГ│уВ╣уГЮуГЛуГеуВвуГл](https://www.ruby-lang.org/ja/documentation) - уБ╛уБдуВВуБиуВЖуБНуБ▓уВН
* [Ruby хЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://route477.net/d/?date=20100125) - yhara
* [TremaуБзOpenFlowуГЧуГнуВ░уГйуГЯуГ│уВ░](https://yasuhito.github.io/trema-book) - щлШхоохоЙф╗Б, щИ┤цЬиф╕АхУЙ, цЭ╛ф║ХцЪвф╣Л, цЭСцЬицЪвхУЙ, х▒▒х┤Оц│░хоП
* [уБКц░Чце╜ Ruby уГЧуГнуВ░уГйуГЯуГ│уВ░хЕещЦА](http://www.nct9.ne.jp/m_hiroi/light/ruby.html) - х║Гф║Хшка
* [уБдуБПуБгуБжхнжуБ╢уГЧуГнуВ░уГйуГЯуГ│уВ░шиАшкЮ RubyуБлуВИуВЛSchemeхЗжчРЖч│╗уБохоЯшгЕ](https://tatsu-zine.com/books/scheme-in-ruby) - ц╕бш╛║цШМхпЫ
* [уГЫуГпуВдуБо(цДЯхЛХчЪД)RubyуВмуВдуГЙ](http://www.aoky.net/articles/why_poignant_guide_to_ruby) - why the lucky stiff, `trl:` щЭТцЬищЭЦ
* [уГЫуГпуВдуБо(цДЯхЛХчЪД)RubyуВмуВдуГЙ](http://www.aoky.net/articles/why_poignant_guide_to_ruby) - why the lucky stiff, щЭТцЬищЭЦ(ч┐╗ши│)
* [хоЯчФичЪДRubyуВ╣уВпуГкуГЧуГЖуВгуГ│уВ░](https://www.gentei.org/~yuuji/support/sr/scrp-2020-05.pdf) - х║ГчАмщЫДф║М (PDF)
### Rust
* [Rust by Example цЧецЬмшкЮчЙИ](https://doc.rust-jp.rs/rust-by-example-ja) - `trl:` RustуВ│уГЯуГеуГЛуГЖуВг
* [The Rust Programming Language цЧецЬмшкЮчЙИ](https://doc.rust-jp.rs/book-ja) - Steve Klabnik, Carol Nichols, `trl:` RustуВ│уГЯуГеуГЛуГЖуВг ([PDF](https://doc.rust-jp.rs/book-ja-pdf/book.pdf))
* [Rust by Example цЧецЬмшкЮчЙИ](https://doc.rust-jp.rs/rust-by-example-ja) - RustуВ│уГЯуГеуГЛуГЖуВг(ч┐╗ши│)
* [The Rust Programming Language цЧецЬмшкЮчЙИ](https://doc.rust-jp.rs/book-ja) - Steve Klabnik, Carol Nichols, RustуВ│уГЯуГеуГЛуГЖуВг(ч┐╗ши│) ([PDF](https://doc.rust-jp.rs/book-ja-pdf/book.pdf))
### Sather
@@ -644,7 +622,7 @@
### Scala
* [Effective Scala](https://twitter.github.io/effectivescala/index-ja.html) - Marius Eriksen, `trl:` Yuta Okamoto, `trl:` Satoshi Kobayashi
* [Effective Scala](https://twitter.github.io/effectivescala/index-ja.html) - Marius Eriksen, Yuta Okamoto(ч┐╗ши│), Satoshi Kobayashi(ч┐╗ши│)
* [Scala уБзцЫ╕уБП tetrix](https://eed3si9n.com/tetrix-in-scala/ja) - Eugene Yokota
* [ScalaуБлуВИуВЛWebуВвуГЧуГкуВ▒уГ╝уВ╖уГзуГ│щЦЛчЩ║](https://github.com/hatena/Hatena-Textbook/blob/master/web-application-development-scala.md) - уБпуБжуБкцХЩчзСцЫ╕
* [чЛмч┐Т Scalaz](https://eed3si9n.com/learning-scalaz/ja) - Eugene Yokota
@@ -698,8 +676,8 @@
### TypeScript
* [TypeScript Deep Dive цЧецЬмшкЮчЙИ](https://typescript-jp.gitbook.io/deep-dive/) - basarat, `trl:` yohamta
* [TypeScriptуБочВ║уБоуВпуГкуГ╝уГ│уВ│уГ╝уГЙ](https://msakamaki.github.io/clean-code-typescript) - labs42io, `trl:` щЕТх╖╗ чСЮчйВ
* [TypeScript Deep Dive цЧецЬмшкЮчЙИ](https://typescript-jp.gitbook.io/deep-dive/) - basarat, yohamta(ч┐╗ши│)
* [TypeScriptуБочВ║уБоуВпуГкуГ╝уГ│уВ│уГ╝уГЙ](https://msakamaki.github.io/clean-code-typescript) - labs42io, щЕТх╖╗ чСЮчйВ(ч┐╗ши│)
* [уВ╡уГРуВдуГРуГлTypeScript](https://typescriptbook.jp) - YYTypeScript
* [ф╗Хф║ЛуБзуБЩуБРуБлф╜┐уБИуВЛTypeScript](https://future-architect.github.io/typescript-guide) - уГХуГеуГ╝уГБуГгуГ╝цакх╝Пф╝Ъчд╛я╝ИFuture Corporationя╝Й ([PDF](https://future-architect.github.io/typescript-guide/typescript-guide.pdf))
@@ -715,5 +693,5 @@
### VBA
* [Excel 2013 уБзхнжуБ╢ Visual Basic for Applications (VBA)](https://brain.cc.kogakuin.ac.jp/~kanamaru/lecture/vba2013) - щЗСф╕╕щЪЖх┐Ч
* [VBAхЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://nattou-curry-2.hatenadiary.org/entry/20100129/1264787849) - @nattou\_curry
* [VBAхЯ║чдОцЦЗц│ХцЬАщАЯуГЮуВ╣уВ┐уГ╝](https://nattou-curry-2.hatenadiary.org/entry/20100129/1264787849) - id:nattou\_curry
* [Visual Basic for Applications (VBA) уБошиАшкЮуГкуГХуВбуГмуГ│уВ╣](https://docs.microsoft.com/ja-jp/office/vba/api/overview/language-reference) - Microsoft Docs
+39 -58
View File
@@ -4,7 +4,6 @@
* [Assembly Language](#assembly-language)
* [AWK](#awk)
* [C](#c)
* [C#](#csharp)
* [C++](#cpp)
* [Docker](#docker)
* [Elastic](#elastic)
@@ -18,15 +17,14 @@
* [Webpack](#webpack)
* [LaTeX](#latex)
* [Linux](#linux)
* [Machine Learning](#machine-learning)
* [Mathematics](#mathematics)
* [Operating System](#operating-system)
* [OpenStack](#openstack)
* [Operation System](#operation-system)
* [Perl](#perl)
* [PHP](#php)
* [Laravel](#laravel)
* [Python](#python)
* [Django](#django)
* [FastAPI](#fastapi)
* [Flask](#flask)
* [R](#r)
* [Raspberry Pi](#raspberry-pi)
@@ -36,19 +34,19 @@
* [Sed](#sed)
* [Software Engineering](#software-engineering)
* [Springboot](#springboot)
* [SQL](#sql)
* [TypeScript](#typescript)
* [Unicode](#unicode)
* [Unity3d](#unity3d)
### Amazon Web Service
* [ьХДызИьб┤ ьЫ╣ ьДЬы╣ДьКдые╝ ыЛдыгиыКФ ъ╕░ьИа](https://www.pyrasis.com/private/2014/09/30/publish-the-art-of-amazon-web-services-book)
* [ьХДызИьб┤ ьЫ╣ ьДЬы╣ДьКдые╝ ыЛдыгиыКФ ъ╕░ьИа](http://www.pyrasis.com/private/2014/09/30/publish-the-art-of-amazon-web-services-book)
### Assembly Language
* [PC Assembly Language](https://pacman128.github.io/static/pcasm-book-korean.pdf) - Paul A. Carter, `trl.:` ьЭ┤ьЮмы▓Ф (PDF)
* [PC Assembly Language](http://pacman128.github.io/static/pcasm-book-korean.pdf) - Paul A. Carter (PDF)
### AWK
@@ -58,15 +56,8 @@
### C
* [ыкиыСРьЭШ CьЦ╕ьЦ┤](https://thebook.io/006989/) - ьЭ┤эШХьЪ░
* [ьФ╣ьЦ┤ыи╣ыКФ C](https://github.com/kev0960/ModooCode/raw/master/book/c/main.pdf) - ьЭ┤ьЮмы▓Ф (PDF)
* [ь╜ФыФй ьЮРьЬиэХЩьК╡ ыВШыПДь╜ФыФйьЭШ C ьЦ╕ьЦ┤ ьЮЕым╕](https://thebook.io/007139/) - ыВШыПДь╜ФыФй
* [C эФДыбЬъ╖╕ыЮШы░Н: эШДыМАьаБ ьаСъ╖╝](https://wikidocs.net/book/2494) - K.N.King, `trl.:` ьг╝ып╝эХШ
### <a id="csharp"></a>C#
* [C# ъ╡Ръ│╝ьДЬ](https://thebook.io/006890/) - ы░ХьЪйьдА
* [BeeJ's Guide to Network Programming - ьЭ╕эД░ыД╖ ьЖМь╝У эЩЬьЪй](https://blogofscience.com/Socket_Programming-KLDP.html)
### <a id="cpp"></a>C++
@@ -76,7 +67,7 @@
### Docker
* [ьЭ┤ьЮмэЩНьЭШ ьЦ╕ьаЬыВШ ь╡ЬьЛа Docker](https://www.pyrasis.com/jHLsAlwaysUpToDateDocker)
* [ьЭ┤ьЮмэЩНьЭШ ьЦ╕ьаЬыВШ ь╡ЬьЛа Docker](http://www.pyrasis.com/jHLsAlwaysUpToDateDocker)
### Elastic
@@ -93,16 +84,17 @@
### Go
* [ъ░АьЮе ы╣иыжм ызМыВШыКФ Go ьЦ╕ьЦ┤](https://www.pyrasis.com/private/2015/06/01/publish-go-for-the-really-impatient-book)
* [ъ░АьЮе ы╣иыжм ызМыВШыКФ Go ьЦ╕ьЦ┤](http://www.pyrasis.com/private/2015/06/01/publish-go-for-the-really-impatient-book)
* [эЪиъ│╝ьаБьЭ╕ Go эФДыбЬъ╖╕ыЮШы░Н](https://gosudaweb.gitbooks.io/effective-go-in-korean/content/)
* [Go ым╕ьДЬ эХЬъ╕А ы▓ИьЧн](https://github.com/golang-kr/golang-doc/wiki)
* [Go ьЦ╕ьЦ┤ ьЫ╣ эФДыбЬъ╖╕ыЮШы░Н ь▓аьаА ьЮЕым╕](https://thebook.io/006806/)
* [The Little Go Book. ыжмэЛА ъ│а ь▒ЕьЮЕыЛИыЛд](https://github.com/byounghoonkim/the-little-go-book/) - Karl Seguin, `trl.:` Byounghoon Kim ([HTML](https://github.com/byounghoonkim/the-little-go-book/blob/master/ko/go.md))
* [The Ultimate Go Study Guide эХЬъ╕А ы▓ИьЧн](https://github.com/ultimate-go-korean/translation)
### HTML and CSS
* [HTML5, CSS and JavaScript](https://fromyou.tistory.com/581)
* [HTML5, CSS and JavaScript](http://fromyou.tistory.com/581)
### Java
@@ -112,13 +104,12 @@
### JavaScript
* [ыкиыНШ JavaScript эКЬэЖаыжмьЦ╝](https://ko.javascript.info) - Ilya Kantor
* [JavaScriptыбЬ ызМыВШыКФ ьД╕ьГБ](https://helloworldjavascript.net)
#### Node.js
* [Node.js API эХЬъ╕А ы▓ИьЧн](https://nodejs.sideeffect.kr/docs/) - outsideris
* [Node.js API эХЬъ╕А ы▓ИьЧн](http://nodejs.sideeffect.kr/docs/) - outsideris
#### React
@@ -133,47 +124,46 @@
### LaTeX
* [The Not So short Introduction to LaTeX 2╬╡](https://ctan.org/tex-archive/info/lshort/korean) - Tobias Oetiker, Hubert Partl, Irene Hyna, Elisabeth Schlegl, `trl.:` ъ╣Аъ░ХьИШ, `trl.:` ьб░ьЭ╕ьД▒ (PDF)
* [The Not So short Introduction to LaTeX 2╬╡](https://ctan.org/tex-archive/info/lshort/korean)
### Linux
* [ыжмыИЕьКд ьДЬы▓Дые╝ ыЛдыгиыКФ ъ╕░ьИа](https://web.archive.org/web/20220107111504/https://thebook.io/006718/) *( :card_file_box: archived)*
* [ыжмыИЕьКд ь╗дызиыУЬыЭ╝ьЭ╕ (ьаЬ5эМР ьЭ╕эД░ыД╖ ьЧРыФФьЕШ)](https://wikidocs.net/book/11259) - William Shotts, `trl.:` ы╕МыжмэЛ░ьЙм (HTML) (CC BY-NC-ND)
* [ыжмыИЕьКд ьДЬы▓Дые╝ ыЛдыгиыКФ ъ╕░ьИа](https://web.archive.org/web/20220107111504/https://thebook.io/006718/) *(:card_file_box: archived)*
* [GNOME ы░░ьЪ░ъ╕░](https://sites.google.com/site/gnomekr/home/learning_gnome)
### Machine Learning
* [<ыЮнь▓┤ьЭ╕LangChain ыЕ╕эК╕> - LangChain эХЬъ╡ньЦ┤ эКЬэЖаыжмьЦ╝](https://wikidocs.net/book/14314) - эЕМыФФыЕ╕эК╕
* [ыФе ыЯмыЛЭьЭД ьЭ┤ьЪйэХЬ ьЮРьЧ░ьЦ┤ ь▓Шыжм ьЮЕым╕](https://wikidocs.net/book/2155) - ьЬаьЫРьдА, ьГБьдА
* [PytorchыбЬ ьЛЬьЮСэХШыКФ ыФе ыЯмыЛЭ ьЮЕым╕](https://wikidocs.net/book/2788) - ьЬаьЫРьдА, ьГБьдА
### Mathematics
* [ъ╕░ь┤ИьаХьИШыба: ъ│ДьВ░ъ│╝ ы▓ХьЧ░ьВ░, ъ╖╕ыжмъ│а ы╣Ды░АэЖ╡ьЛаьЭД ъ░Хьб░эХЬ](https://wstein.org/ent/ent_ko.pdf) - William Stein (PDF)
### Operating System
### OpenStack
* [ьЪ┤ьШБь▓┤ьаЬ: ьХДьг╝ ьЙмьЪ┤ ьД╕ ъ░АьзА ьЭ┤ьХ╝ъ╕░](https://github.com/remzi-arpacidusseau/ostep-translations/tree/master/korean) - Remzi H. Arpaci-Dusseau, Andrea C. Arpaci-Dusseau, `trl.:` Youjip Won, `trl.:` Minkyu Park, `trl.:` Sungjin Lee (PDF)
* [ьШдэФИьКдэГЭьЭД ыЛдыгиыКФ ъ╕░ьИа](https://thebook.io/006881) - ьЮеэШДьаХ (HTML)
### Operation System
* [ьЪ┤ьШБь▓┤ьаЬ: ьХДьг╝ ьЙмьЪ┤ ьД╕ ъ░АьзА ьЭ┤ьХ╝ъ╕░](https://github.com/remzi-arpacidusseau/ostep-translations/tree/master/korean) - Remzi Arpacidusseau (PDF)
### Perl
* [2ьЛЬъ░Д ы░ШызМьЧР эОД ьЭ╡эЮИъ╕░](https://qntm.org/files/perl/perl_kr.html)
* [2ьЛЬъ░Д ы░ШызМьЧР эОД ьЭ╡эЮИъ╕░](http://qntm.org/files/perl/perl_kr.html)
* [Perl ъ░Эь▓┤ьзАэЦеэФДыбЬъ╖╕ыЮШы░Н(OOP)](https://github.com/aero/perl_docs/blob/master/hatena_perl_oop.md) : Hatena-TextBookьЭШ oop-for-perl ым╕ьДЬ эХЬьЧн by aero
* [Seoul.pm эОД эБмыжмьКдызИьКд ыЛмыае #2014 \| Seoul.pm Perl Advent Calendar 2014](http://advent.perl.kr/2014/)
### PHP
* [ьИПэЕА PHP](https://wikidocs.net/book/17209) - ыФФьзАэД╕ъ░РьД▒
* [PHP5 ьЭШ ьг╝ьЪФ ъ╕░ыКе](https://www.lesstif.com/pages/viewpage.action?pageId=24445740)
#### Laravel
* [ыЭ╝ыЭ╝ы▓и (Laravel) 5 ьЮЕым╕ ы░П ьЛдьаД ъ░ХьвМ](https://github.com/appkr/l5essential)
* [ьЙ╜ъ▓М ы░░ьЪ░ыКФ ыЭ╝ыЭ╝ы▓и 5 эФДыбЬъ╖╕ыЮШы░Н](https://www.lesstif.com/display/laravelprog)
### Python
@@ -184,29 +174,22 @@
* [ьЛдьЪй эММьЭ┤ьНм эФДыбЬъ╖╕ыЮШы░Н: эФДыбЬъ╖╕ыЮШы░Н ьЬаъ▓╜эЧШьЮРые╝ ьЬДэХЬ ъ░ХьвМ](https://wikidocs.net/book/4673) - ь╡ЬьЪй
* [ьЩХь┤Иы│┤ые╝ ьЬДэХЬ Python 2.7](https://wikidocs.net/book/2)
* [ьаРэФД эИм эММьЭ┤ьНм - Python 3](https://wikidocs.net/book/1)
* [ьвМь╢йьЪ░ыПМ, эММьЭ┤ьНмьЬ╝ыбЬ ьЮРыгМъ╡мьб░ ъ╡мэШДэХШъ╕░](https://wikidocs.net/book/9059) - ьЛмыкЕьИШ
* [ьдСъ╕Й эММьЭ┤ьНм: эММьЭ┤ьНм эМБыУд](https://ddanggle.gitbooks.io/interpy-kr/content/)
* [эММьЭ┤ьНм ыЭ╝ьЭ┤ы╕МыЯмыжм](https://wikidocs.net/book/5445) - ы░ХьЭСьЪй
* [эММьЭ┤ьНм ь╜ФыФй ыПДьЮе](https://pyrasis.com/python.html) - ыВиьЮмьЬд
* [эММьЭ┤ьНм эЧдьЧДь╣Шъ╕░](https://wikidocs.net/book/5148) - эХ┤ыЛм эФДыбЬъ╖╕ыЮШы░Н
* [эММьЭ┤ьНмьЭД ьЧмэЦЙэХШыКФ эЮИь╣ШэХШьЭ┤ь╗дые╝ ьЬДэХЬ ьХИыВ┤ьДЬ!](https://python-guide-kr.readthedocs.io/ko/latest/)
* [эММьЭ┤ьНмьЭД ьЭ┤ьЪйэХЬ ы╣ДэК╕ь╜ФьЭ╕ ьЮРыПЩыздызд](https://wikidocs.net/book/1665) - ьб░ыМАэСЬ
* [A Byte of Python эХЬъ╕А ы▓ИьЧн](https://byteofpython-korean.sourceforge.net/byte_of_python.pdf) - Jeongbin Park (PDF)
* [Let's Get IT эММьЭ┤ьНм эФДыбЬъ╖╕ыЮШы░Н](https://thebook.io/080251) - ьХИьзАэШЬ
* [A Byte of Python эХЬъ╕А ы▓ИьЧн](http://byteofpython-korean.sourceforge.net/byte_of_python.pdf) - Jeongbin Park (PDF)
* [PyQt5 Tutorial - эММьЭ┤ьНмьЬ╝ыбЬ ызМыУЬыКФ ыВШызМьЭШ GUI эФДыбЬъ╖╕ыЮи](https://wikidocs.net/book/2165) - Dardao (HTML)
#### Django
* [ьЮеъ│аъ▒╕ьКд эКЬэЖаыжмьЦ╝ (Django Girls Tutorial)](https://tutorial.djangogirls.org/ko/) (1.11) (HTML) *( :construction: in process)*
* [ьЮеъ│аъ▒╕ьКд эКЬэЖаыжмьЦ╝ (Django Girls Tutorial)](https://tutorial.djangogirls.org/ko/) (1.11) (HTML) (:construction: *in process*)
* [ьаРэФД эИм ьЮеъ│а](https://wikidocs.net/book/4223) - ы░ХьЭСьЪй
#### FastAPI
* [ьаРэФД эИм FastAPI](https://wikidocs.net/book/8531) - ы░ХьЭСьЪй
#### Flask
* [ьаРэФД эИм эФМыЭ╝ьКдэБм](https://wikidocs.net/book/4542) - ы░ХьЭСьЪй
@@ -216,7 +199,8 @@
### R
* [Must Learning with R (ъ░ЬьаХэМР)](https://wikidocs.net/book/4315) - DoublekPark ьЩ╕ 1ыкЕ
* [The R Manuals (translated in Korean)](http://www.openstatistics.net/ko.html)
* [RьЭД ьЭ┤ьЪйэХЬ ыН░ьЭ┤эД░ ь▓Шыжм & ы╢ДьДЭ ьЛдым┤](http://r4pda.co.kr) - ьДЬып╝ъ╡м (HTML, PDF - ьЭ┤ьаД ы▓Дьа╝)
* [The R Manuals (translated in Korean)](http://www.openstatistics.net)
### Raspberry Pi
@@ -231,16 +215,13 @@
### Rust
* [ыЯмьКдэК╕ эФДыбЬъ╖╕ыЮШы░Н ьЦ╕ьЦ┤](https://rinthel.github.io/rust-lang-book-ko/) - ьКдэЛ░ы╕М эБ┤ыЭ╝ы╕МыЛЙ, ь║Рыбд ыЛИь╜ЬьКд
* [ьШИьаЬыбЬ ы░░ьЪ░ыКФ Rust эФДыбЬъ╖╕ыЮШы░Н](http://rust-lang.xyz)
* [эММьЭ┤ьНмъ│╝ ы╣Дъ╡РэХШый░ ы░░ьЪ░ыКФ ыЯмьКдэК╕ эФДыбЬъ╖╕ыЮШы░Н](https://indosaram.github.io/rust-python-book/) - ьЬдьЭ╕ыПД
* [Comprehensive Rust](https://google.github.io/comprehensive-rust/ko/index.html)
* [The Rust Programming Language](https://doc.rust-kr.org/title-page.html)
* [ыЯмьКдэК╕ эФДыбЬъ╖╕ыЮШы░Н ьЦ╕ьЦ┤](https://rinthel.github.io/rust-lang-book-ko/) - ьКдэЛ░ы╕М эБ┤ыЭ╝ы╕МыЛЙ, ь║Рыбд ыЛИь╜ЬьКд (HTML) (:construction: *in process*)
* [Rust by Example](https://hanbum.gitbooks.io/rustbyexample/content/) (:construction: *in process*)
### Scratch
* [ь░╜ьЭШь╗┤эУиэМЕ(Creative Computing) ъ░АьЭ┤ыУЬы╢Б](https://ebook-product.kyobobook.co.kr/dig/epd/ebook/480150000247P)
* [ь░╜ьЭШь╗┤эУиэМЕ(Creative Computing) ъ░АьЭ┤ыУЬы╢Б](http://digital.kyobobook.co.kr/digital/ebook/ebookDetail.ink?barcode=480150000247P)
### Sed
@@ -255,23 +236,23 @@
### Springboot
* [ьаРэФД эИм ьКдэФДызБы╢АэК╕](https://wikidocs.net/book/7601) - ы░ХьЭСьЪй
* [Springboot 2.X ьаХыжм](https://djunnni.gitbook.io/springboot) - ьЭ┤ыПЩьдА
### SQL
* [ь▓ШьЭМ ьЛЬьЮСэХШыКФ MySQL тАФ ьЮЕым╕ьЮРые╝ ьЬДэХЬ ыН░ьЭ┤эД░ы▓аьЭ┤ьКд ъ╕░ь┤И](https://wikidocs.net/book/18461) - ь╡ЬьвЕыкЕ
### TypeScript
* [5ы╢Д ьХИьЧР ы│┤ыКФ эГАьЮЕьКдэБмыж╜эК╕](https://typescript-kr.github.io)
* [эГАьЮЕьКдэБмыж╜эК╕ эХ╕ыУЬы╢Б](https://joshua1988.github.io/ts) - Captain Pangyo
* [эХЬыИИьЧР ы│┤ыКФ эГАьЮЕьКдэБмыж╜эК╕](https://heropy.blog/2020/01/27/typescript) - HEROPY Tech
* [эХЬыИИьЧР ы│┤ыКФ эГАьЮЕьКдэБмыж╜эК╕](https://heropy.blog/2020/01/27/typescript) - HEROPY
Tech
* [TypeScript Deep Dive](https://radlohead.gitbook.io/typescript-deep-dive)
### Unicode
* [ы▓ИьЧн Unicode ьЭ┤ыкиэЛ░ь╜ШьЧР ьЦ╜эЮМ ьЭ┤ъ▓ГьаАъ▓Г (ьЭ┤ыкиэЛ░ь╜Ш эСЬьдАъ│╝ эФДыбЬъ╖╕ыЮШы░Н эХ╕ыУдызБ)](https://pluu.github.io/blog/android/2020/01/11/unicode-emoji/)
* [ы▓ИьЧн Unicode ьЭ┤ыкиэЛ░ь╜ШьЧР ьЦ╜эЮМ ьЭ┤ъ▓ГьаАъ▓Г (ьЭ┤ыкиэЛ░ь╜Ш эСЬьдАъ│╝ эФДыбЬъ╖╕ыЮШы░Н эХ╕ыУдызБ)](http://pluu.github.io/blog/android/2020/01/11/unicode-emoji/)
### Unity3d
* [ы▓ИьЧн Unity Graphics Programming Series](https://github.com/IndieVisualLab/UnityGraphicsProgrammingSeries) - [Indie Visual Lab](https://github.com/IndieVisualLab)
File diff suppressed because it is too large Load Diff
+1 -14
View File
@@ -7,9 +7,7 @@
* [JavaScript](#javascript)
* [Linux](#linux)
* [PHP](#php)
* [Programming](#programming)
* [Python](#python)
* [TypeScript](#typescript)
* [Web Development](#web-development)
@@ -27,7 +25,7 @@
* [Bootstrap - On Point](https://eimaung.com/bootstrap/) - Ei Maung (PDF)
* [HTML](https://books.saturngod.net/HTML5/) - Saturngod
* [HTML & CSS - Beginner To Super Beginner](https://github.com/lwinmoepaing/html-and-css-beginner-to-super-beginner-ebook) - Lwin Moe Paing (PDF)
* [HTML & CSS - Beginner To Super Beginner](https://lwinmoepaing.github.io/books/) - Lwin Moe Paing (PDF)
### Java
@@ -53,24 +51,13 @@
* [PHP - On Point](https://eimaung.com/php/) - Ei Maung (PDF)
### Programming
* [Programming for Kids](https://eimaung.com/kids/) - Ei Maung (PDF, EPUB)
### Python
* [Programming Basic For Beginner](http://books.saturngod.net/programming_basic/) - Saturngod
### TypeScript
* [TypeScript Baby](https://lwin-moe-paing.gitbook.io/typescript-baby-by-lwin-moe-paing) - Lwin Moe Paing (Git Book)
### Web Development
* [Professional Web Developer](http://eimaung.com/professional-web-developer) - Ei Maung (PDF)
* [Professional Web Developer 2023](https://eimaung.com/pwd2023/) - Ei Maung (PDF)
* [Rockstar Developer](http://eimaung.com/rockstar-developer) - Ei Maung (PDF)
* [Rockstar Developer 2025](https://github.com/eimg/rsd25) - Ei Maung (PDF, EPUB)
-7
View File
@@ -3,7 +3,6 @@
* [C](#c)
* [C#](#csharp)
* [COBOL](#cobol)
* [Git](#git)
* [Java](#java)
* [PHP](#php)
* [Symfony](#symfony)
@@ -26,11 +25,6 @@
* [Programmeren in COBOL](https://nl.wikibooks.org/wiki/Programmeren_in_COBOL) - Wikibooks
### Git
* [Pro Git](https://git-scm.com/book/nl/v2) - Scott Chacon, Ben Straub (HTML, PDF, EPUB)
### Java
* [Programmeren in Java](https://nl.wikibooks.org/wiki/Programmeren_in_Java) - Wikibooks
@@ -49,7 +43,6 @@
### Python
* [De Programmeursleerling: Leren coderen met Python 3](http://www.spronck.net/pythonbook/dutchindex.xhtml) - Pieter Spronck (PDF) (3.x)
* [Je eigen games maken met Python 3e editie](http://inventwithpython.com/nl/games_maken_met_Python_1-13.pdf) - Al Sweigart, `trl.:` Marjo Hahn (PDF)
* [Programmeren in Python](https://nl.wikibooks.org/wiki/Programmeren_in_Python) - Wikibooks
-1
View File
@@ -7,4 +7,3 @@
* [LaTeX for nybegynnere](https://www.mn.uio.no/ifi/tjenester/it/hjelp/latex/latex-for-nybegynnere.pdf) - Dag Langmyhr (PDF)
* [LaTeX for viderekomne](https://www.mn.uio.no/ifi/tjenester/it/hjelp/latex/latex-videre.pdf) - Dag Langmyhr (PDF)
* [Lokal guide til farger i LaTeX](https://www.mn.uio.no/ifi/tjenester/it/hjelp/latex/farger.pdf) - Dag Langmyhr (PDF)
+6 -17
View File
@@ -17,7 +17,6 @@
* [MySQL](#mysql)
* [Perl](#perl)
* [PHP](#php)
* [Yii](#yii)
* [Prolog](#prolog)
* [Python](#python)
* [Django](#django)
@@ -29,13 +28,10 @@
### 0 - Niezale┼╝ne od j─Щzyka programowania
* [Git](https://pl.wikibooks.org/wiki/Git) - Wikibooks
* [Internet, Domeny i DNS тАУ Podr─Щcznik edukacyjny od podstaw](https://mzdrowy.github.io/books/Internet,%20Domeny%20i%20DNS%20%E2%80%93%20Podr%C4%99cznik%20edukacyjny%20od%20podstaw.pdf) - mzdrowy (PDF)
* [Pisanie OS](https://pl.wikibooks.org/wiki/Pisanie_OS) - Wikibooks
* [Pod sk├│r─Е systemu](https://mzdrowy.github.io/books/Pod%20sk%C3%B3r%C4%85%20systemu.pdf) - mzdrowy (PDF)
* [Poradnik pocz─Еtkuj─Еcego programisty](http://www.eioba.pl/a/2eu1/poradnik-poczatkujacego-programisty) - Mariusz ┼╗urawek
* [Programowanie webowe E14](https://www.youtube.com/playlist?list=PLOYHgt8dIdoxOp0wtNk9Sle5WUsBZc6kq)
* [Struktury danych i ich zastosowania](https://web.archive.org/web/20190126061036/http://informatykaplus.edu.pl/upload/list/czytelnia/Struktury_danych_i_ich_zastosowania.pdf) - Informatyka+ (PDF) *( :card_file_box: archived)*
* [Sztuczna inteligencja bez tajemnic](https://mzdrowy.github.io/books/Sztuczna%20inteligencja%20bez%20tajemnic.pdf) - mzdrowy (PDF)
* [Struktury danych i ich zastosowania](https://web.archive.org/web/20190126061036/http://informatykaplus.edu.pl/upload/list/czytelnia/Struktury_danych_i_ich_zastosowania.pdf) - Informatyka+ (PDF) *(:card_file_box: archived)*
* [W poszukiwaniu wyzwa┼Д 2](https://www.mimuw.edu.pl/~idziaszek/algonotes/looking-for-a-challenge-2-pl.pdf) - Zadania z AMPPZ 2011тАУ2014 (PDF)
@@ -59,14 +55,14 @@
### Bash
* [Kurs Bash'a](http://web.archive.org/web/20180129013729/http://dief.republika.pl/kursbasha.tar.gz) (tar.gz) *( :card_file_box: archived)*
* [Kurs Bash'a](http://web.archive.org/web/20180129013729/http://dief.republika.pl/kursbasha.tar.gz) (tar.gz) *(:card_file_box: archived)*
* [Programowanie w Bashu czyli jak pisa─З skrypty w Linuksie](https://www.arturpyszczuk.pl/files/bash/bash.pdf) - Artur Pyszczuk (PDF)
### C
* [Beej's Guide to Network Programming - U┼╝ywanie gniazd internetowych](http://www.asawicki.info/Mirror/Beej_s%20Guide%20to%20Network%20Programming%20PL/bgnet.pdf) - Brian "Beej Jorgensen" Hall, Prze┼Вo┼╝y┼В Bartosz Zapa┼Вowski (PDF)
* [Kurs j─Щzyka C](https://web.archive.org/web/20220910113443/https://kurs-c.manifo.com/konfiguracja-srodowiska-298-547) - Mateusz Piaszczak *( :card_file_box: archived)*
* [Kurs j─Щzyka C](https://web.archive.org/web/20220910113443/https://kurs-c.manifo.com/konfiguracja-srodowiska-298-547) - Mateusz Piaszczak *(:card_file_box: archived)*
* [Programowanie w C](https://upload.wikimedia.org/wikibooks/pl/6/6a/C.pdf) - Wikibooks (PDF)
* [Programowanie w j─Щzyku C](http://www.arturpyszczuk.pl/files/c/pwc.pdf) (PDF)
* [Wg┼В─Еb j─Щzyka C](http://helion.pl/online/wglab/wglab.zip) (ZIP)
@@ -87,7 +83,7 @@
* [J─Щzyk C++ тАУ podstawy programowania](http://www.dz5.pl/ti/cpp/zz_dodatki/kurs_cpp_szczegolowy2.pdf) - Pawe┼В Miko┼Вajczak (PDF)
* [Kurs C++](http://cpp0x.pl/kursy/Kurs-C++/1) - Piotr Szawdy┼Дski
* [Kurs podstaw Arduino](https://forbot.pl/blog/kurs-arduino-podstawy-programowania-spis-tresci-kursu-id5290) - forbot.pl
* [Megatutorial "Od zera do gier kodera"](https://web.archive.org/web/20230504051926/http://xion.org.pl/productions/texts/coding/megatutorial) - Karol Kuczmarski *( :card_file_box: archived)*
* [Megatutorial "Od zera do gier kodera"](https://web.archive.org/web/20230504051926/http://xion.org.pl/productions/texts/coding/megatutorial) - Karol Kuczmarski *(:card_file_box: archived)*
* [Programowanie obiektowe i C++](https://mst.mimuw.edu.pl/wyklady/poc/wyklad.pdf) - Janusz Jab┼Вonowski (PDF)
@@ -102,7 +98,6 @@
* [Kaskadowe Arkusze Styl├│w](http://www.kurshtml.edu.pl/css/index.html) - S┼Вawomir Kok┼Вowski
* [Kurs CSS](https://webref.pl/arena/css/css_index.html) - Arkadiusz Michalski
* [KURS HTML](http://www.kurshtml.edu.pl) - S┼Вawomir Kok┼Вowski
* [Mam stron─Щ i co dalej](https://mzdrowy.github.io/books/Mam%20stron%C4%99%20i%20co%20dalej.pdf) - mzdrowy (PDF)
* [Moja pierwsza strona internetowa w HTML5 i CSS3](https://ferrante.pl/books/html/) - Damian Wielgosik
@@ -118,7 +113,7 @@
### JavaScript
* [JavaScript](https://pl.wikibooks.org/wiki/JavaScript) - Wikibooks
* [JavaScript Garden](https://web.archive.org/web/20220910115336/https://bonsaiden.github.io/JavaScript-Garden/pl) *( :card_file_box: archived)*
* [JavaScript Garden](https://web.archive.org/web/20220910115336/https://bonsaiden.github.io/JavaScript-Garden/pl) *(:card_file_box: archived)*
* [JavaScript. I wszystko jasne](http://shebang.pl/kursy/wszystko-jasne/) - Marijn Haverbeke, ┼Бukasz Piwko
* [Wst─Щp - JavaScript](http://www.kurshtml.edu.pl/js/index.html) - S┼Вawomir Kok┼Вowski
@@ -154,14 +149,9 @@
* [PHP: The Right Way](http://pl.phptherightway.com) - Josh Lockhart
#### Yii
* [Przewodnik po Yii 2.0](https://www.yiiframework.com/doc/download/yii-guide-2.0-pl.pdf) - Yii Software (PDF)
### Prolog
* [Programowanie w logice z ograniczeniami: ┼Бagodne wprowadzenie dla platformy ECLiPSe](https://web.archive.org/web/20230329101049/http://pwlzo.pl/) - Antoni Niederli┼Дski *( :card_file_box: archived)*
* [Programowanie w logice z ograniczeniami: ┼Бagodne wprowadzenie dla platformy ECLiPSe](https://web.archive.org/web/20230329101049/http://pwlzo.pl/) - Antoni Niederli┼Дski *(:card_file_box: archived)*
### Python
@@ -192,7 +182,6 @@
### SQL
* [Bazy danych](https://mst.mimuw.edu.pl/wyklady/bad/wyklad.pdf) - Zbigniew Jurkiewicz (PDF)
* [Kurs SQL](https://dbadmin.net.pl/category/sql/) - ┼Бukasz Bartnicki (HTML) *( :construction: in process)*
* [Kurs SQL](https://www.sqlpedia.pl/kurs-sql) - Jakub Kasprzak
* [PL/SQL - podstawy (na stronie)](http://andrzejklusiewicz.blogspot.com/2010/11/kurs-oracle-plsql.html)
* [SQL - podstawy (na stronie)](http://andrzejklusiewicz.blogspot.com/2010/11/kurs-oracle-sql.html)
+13 -28
View File
@@ -51,7 +51,6 @@
* [Lua](#lua)
* [Pascal](#pascal)
* [PHP](#php)
* [Yii](#yii)
* [Python](#python)
* [Django](#django)
* [R](#r)
@@ -80,7 +79,7 @@
#### Programa├з├гo
* [Algoritmos e Estruturas de Dados 1](https://www.inf.ufpr.br/marcos/livro_alg1/livro_alg1.pdf) - Marcos Castilho, Fabiano Silva, Daniel Weingaertner (PDF) (CC BY-NC-ND)
* [Algoritmos e Estruturas de Dados 1](https://www.inf.ufpr.br/marcos/livro_alg1/livro_alg1.pdf) - Marcos Castilho, Fabiano Silva, Daniel Weingaertner (PDF)
* [Algoritmos e Programa├з├гo](https://www.ifmg.edu.br/ceadop3/apostilas/algoritmos-e-programacao) - Adolfo Jos├й G. S. Baudson, Francisco C├йsar R. de Ara├║jo (PDF)
* [Introdu├з├гo a Algoritmos e Programa├з├гo](http://www.ferrari.pro.br/home/documents/FFerrari-CCechinel-Introducao-a-algoritmos.pdf) - Fabricio Ferrari, Cristian Cechinel (PDF)
* [L├│gica de Programa├з├гo para iniciantes](https://dicasdeprogramacao.com.br/download/ebook-logica-de-programacao-para-iniciantes.pdf) - Gustavo Furtado de Oliveira Alves (PDF)
@@ -90,8 +89,7 @@
#### Sistemas Operacionais
* [Guia Foca Linux](https://www.guiafoca.org/#download) - Gleydson Maziolli (PDF)
* [Linux Essentials](https://learning.lpi.org/pt/learning-materials/010-160/) - Linux Professional Institute (HTML, PDF) (CC BY-NC-ND 4.0)
* [Sistemas Operacionais: Conceitos e Mecanismos](http://wiki.inf.ufpr.br/maziero/lib/exe/fetch.php?media=socm:socm-livro.pdf) - Carlos A. Maziero (PDF) (CC BY-NC-SA) *( :construction: em cont├нnuo desenvolvimento)*
* [Sistemas Operacionais: Conceitos e Mecanismos](http://wiki.inf.ufpr.br/maziero/lib/exe/fetch.php?media=socm:socm-livro.pdf) - Carlos A. Maziero (PDF) (:construction: *em cont├нnuo desenvolvimento*)
### Android
@@ -112,7 +110,6 @@
### Banco de Dados
* [Introdu├з├гo a Banco de Dados](https://www.ime.usp.br/~jef/apostila.pdf) - Osvaldo Kotaro Takai, Isabel Cristina Italiano, Jo├гo Eduardo Ferreira (PDF)
* [Introdu├з├гo a Banco de Dados](https://educapes.capes.gov.br/bitstream/capes/564494/2/FASCICULO_Introducao_Banco_Dados_30_08.pdf) - Joyce Aline de Oliveira Marins, Gracyeli Santos Souza Guarienti (PDF)
@@ -126,7 +123,6 @@
* [Algoritmos em Grafos](https://www.ime.usp.br/~yoshi/2005i/mac328/) - Yoshiharu Kohayakawa (HTML)
* [Algoritmos para Grafos (via Sedgewick)](https://www.ime.usp.br/~pf/algoritmos_para_grafos/) - Paulo Feofiloff (HTML)
* [Apostila Linguagem C](http://www.ime.usp.br/~slago/slago-C.pdf) - Silvio Lago (PDF)
* [C Completo e Total - Terceira Edi├з├гo (1996)](https://www.inf.ufpr.br/lesoliveira/download/c-completo-total.pdf) - Herbert Schildt (PDF)
* [Guia Beej's Para Programa├з├гo em Rede - Usando Internet Sockets](http://beej.us/guide/bgnet/translations/bgnet_ptbr.html) - Brian "Beej Jorgensen" Hall, `trl.:` cv8minix3 (HTML)
* [Introdu├з├гo a Programa├з├гo](https://github.com/ufpb-computacao/introducao-a-programacao-livro/releases) - livro adotado na UFPB.
* [Linguagem C - Notas de Aula](https://www.inf.ufpr.br/cursos/ci067/Docs/NotasAula/) - Carmem Hara, Wagner Zola (HTML, [PDF](https://www.inf.ufpr.br/cursos/ci067/Docs/NotasAula.pdf))
@@ -138,7 +134,6 @@
* [C# e Orienta├з├гo a Objetos](https://www.caelum.com.br/apostila-csharp-orientacao-objetos/) - Caelum
* [C# para Iniciantes](https://livrocsharp.com.br/wp-content/uploads/dae-uploads/CSharpIniciantes.pdf) - Andr├й Carlucci, Carlos dos Santos, Claudenir Andrade, Rafael Almeida, Ray Carneiro, Renato Haddad (PDF)
* [Linguagem de Programa├з├гo C# Avan├зado](https://lms.ev.org.br/mpls/Custom/Cds/COURSES/3164-Adapt/curso/pdfs/ebook-completo.pdf) - Funda├з├гo Bradesco (PDF)
### <a id="cpp"></a>C++
@@ -203,7 +198,7 @@
* [An├бlise de Algoritmos](https://www.ime.usp.br/~pf/analise_de_algoritmos/) - Paulo Feofiloff (HTML)
* [Computa├з├гo: Matem├бtica Discreta](https://educapes.capes.gov.br/bitstream/capes/432209/2/Livro_Matematica%20Discreta.pdf) - Raquel Montezuma Pinheiro Cabral (PDF)
* [Exerc├нcios de Teoria dos Grafos](https://www.ime.usp.br/~pf/grafos-exercicios/) - Paulo Feofiloff (PDF)
* [Matem├бtica Fundacional para Computa├з├гo - Em progresso](https://www.tsouanas.org/fmcbook/) - Thanos Tsouanas *( :construction: em cont├нnuo desenvolvimento)*
* [Matem├бtica Fundacional para Computa├з├гo - Em progresso](https://www.tsouanas.org/fmcbook/) - Thanos Tsouanas (:construction: *in process*)
* [Minicurso de An├бlise de Algoritmos](https://www.ime.usp.br/~pf/livrinho-AA/) - Paulo Feofiloff (PDF)
* [Otimiza├з├гo Combinat├│ria](https://www.ime.usp.br/~pf/otimizacao-combinatoria/) - Paulo Feofiloff (PDF)
* [Uma Introdu├з├гo Sucinta ├а Teoria dos Grafos](https://www.ime.usp.br/~pf/teoriadosgrafos/) - Y. Kohayakawa, Y. Wakabayashi, P. Feofiloff (PDF)
@@ -211,7 +206,6 @@
### Git
* [Descomplicando Git](https://github.com/badtuxx/DescomplicandoGit) - Linuxtips
* [Git - guia pr├бtico](https://rogerdudler.github.io/git-guide/index.pt_BR.html) - Roger Dudler (HTML)
* [Git Magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/pt_br/) - Ben Lynn, `trl.:` Leonardo Siqueira Rodrigues (HTML, PDF)
* [Minicurso - Controle de Vers├гo usando o Git](https://github.com/ltiaunesp/Git-Minicurso) - LTIA UNESP, Marcelo Augusto Cordeiro
@@ -221,10 +215,10 @@
### GO
* [Aprenda Go com Testes](https://larien.gitbook.io/aprenda-go-com-testes) - Lauren Ferreira
* [Construindo Aplica├з├╡es Web em Golang](https://astaxie.gitbooks.io/build-web-application-with-golang/content/pt-br/) - astaxie (CC BY-SA)
* [Go - hands on](https://github.com/go-br/estudos) (CC BY-SA)
* [Construindo Aplica├з├╡es Web em Golang](https://astaxie.gitbooks.io/build-web-application-with-golang/content/pt-br/) - astaxie
* [Go - hands on](https://github.com/go-br/estudos)
* [Go Lang - A linguagem do Google](https://www.ime.usp.br/~gold/cursos/2015/MAC5742/reports/GoLang.pdf) - Suelen Goularte Carvalho (PDF)
* [Go por Exemplo](http://goporexemplo.golangbr.org) - Mark McGranaghan, Jeremy Ashkenas, golangbr, Daniela Tamy Iwassa (HTML) (CC BY)
* [Go por Exemplo](http://goporexemplo.golangbr.org) - Mark McGranaghan, Jeremy Ashkenas, golangbr, Daniela Tamy Iwassa (HTML)
### Haskell
@@ -243,15 +237,13 @@
### Intelig├кncia Artificial
* [Aplica├з├╡es de Machine Learning](https://editorapantanal.com.br/ebooks/2021/aplicacoes-de-machine-learning/ebook.pdf) - Ricardo Augusto Manfredini, Geraldo Nunes Corr├кa, Bruno Rodrigues de Oliveira, Suellen Teixeira Zaradzki de Pauli (PDF)
* [Intelig├кncia artificial: avan├зos e tend├кncias](https://www.livrosabertos.sibi.usp.br/portaldelivrosUSP/catalog/view/650/579/2181) - Fabio G. Cozman, Guilherme Ary Plonski, Hugo Neri (PDF) (CC BY-NC-SA)
* [Processamento de Linguagem Natural: Conceitos, T├йcnicas e Aplica├з├╡es em Portugu├кs](https://brasileiraspln.com/livro-pln/) - Helena M. Caseli, Maria G. V. Nunes (PDF) (CC BY-NC-ND)
* [Intelig├кncia artificial: avan├зos e tend├кncias](https://www.livrosabertos.sibi.usp.br/portaldelivrosUSP/catalog/view/650/579/2181) - Fabio G. Cozman, Guilherme Ary Plonski, Hugo Neri (PDF)
* [Processamento de Linguagem Natural: Conceitos, T├йcnicas e Aplica├з├╡es em Portugu├кs](https://brasileiraspln.com/livro-pln/) - Helena M. Caseli, Maria G. V. Nunes (PDF)
### Internet das Coisas
* [A Internet das Coisas](https://bibliotecadigital.fgv.br/dspace/bitstream/handle/10438/23898/A%20internet%20das%20coisas.pdf) - Eduardo Magrani (PDF) (CC BY-SA)
* [Internet Das Coisas Uma Breve Introdu├з├гo E Perspectivas Na ├Бrea Da Sa├║de](https://educapes.capes.gov.br/bitstream/capes/747555/1/Internet%20das%20Coisas.pdf) - Adriana Camargo Ferrasi, et al. (PDF)
* [A Internet das Coisas](https://bibliotecadigital.fgv.br/dspace/bitstream/handle/10438/23898/A%20internet%20das%20coisas.pdf) - Eduardo Magrani (PDF)
### Java
@@ -261,7 +253,6 @@
* [Java B├бsico e Ori├кnta├з├гo a Objeto](https://canal.cecierj.edu.br/012016/d7d8367338445d5a49b4d5a49f6ad2b9.pdf) - Clayton Escouper das Chagas, C├бssia Blondet Baruque, L├║cia Blondet Baruque (PDF)
* [Java e Orienta├з├гo a Objetos](http://www.caelum.com.br/apostila-java-orientacao-objetos/) - Caelum
* [Java para Desenvolvimento Web](http://www.caelum.com.br/apostila-java-web/) - Caelum
* [Programa├з├гo em JAVA](https://www.faeterj-rio.edu.br/downloads/bbv/0031.pdf) - Daniela Barreiro Claro, Jo├гo Bosco Mangueira Sobral (PDF)
* [Programa├з├гo Orientada a Objetos: Uma Abordagem com Java](https://www.dca.fee.unicamp.br/cursos/PooJava/Aulas/poojava.pdf) - Ivan Luiz Marques Ricarte (PDF)
* [Programa├з├гo para iniciantes](https://s3.amazonaws.com/algaworks-assets/ebooks/algaworks-livro-programacao-para-iniciantes-v1.1.pdf) Alexandre Afonso (PDF)
@@ -360,7 +351,6 @@
### Julia
* [Introdu├з├гo ├а programa├з├гo em Julia](https://juliaintro.github.io/JuliaIntroBR.jl/index.html) - Ben Lauwens, Allen Downey, `trl.:` Abel Soares Siqueira, Gustavo Sarturi, Jo├гo Okimoto, Kally Chung (HTML) (CC BY-NC 3.0)
* [Programa├з├гo de Computadores com Linguagem Julia](https://github.com/J-AugustoManzano/LivroLinJulia) - Jos├й Augusto N. G. Manzano (PDF)
@@ -396,6 +386,7 @@
### Pascal
* [Algoritmos e Estruturas de Dados I](https://www.inf.ufpr.br/marcos/livro_alg1/livro_alg1.pdf) - Marcos Alexandre Castilho, Fabiano Silva, Daniel Weingaertner (PDF)
* [Programando com Pascal](https://ic.ufal.br/professor/jaime/livros/Programando%20com%20Pascal.pdf) - Jaime Evaristo (PDF)
@@ -408,20 +399,13 @@
* [PHPUnit](https://phpunit.de/manual/current/pt_br/index.html) (PDF, EPUB, MOBI)
#### Yii
* [Guia Definitivo para Yii 2.0](https://www.yiiframework.com/doc/download/yii-guide-2.0-pt-br.pdf) - Yii Software (PDF)
### Python
* [Apostila de Python](https://www1.univap.br/alberson/apostilas/pooi/apostila_pooi_1bi.pdf) - Alberson Wander S├б dos Santos (PDF)
* [Aprenda computa├з├гo com Python](https://aprendendo-computacao-com-python.readthedocs.org/en/latest/index.html)
* [Curso de Python e Django](https://osantana.me/curso-de-python-e-django)
* [Django 101 - Introdu├з├гo ao Django](http://turing.com.br/material/acpython/mod3/django/index.html)
* [FastAPI do Zero](https://fastapidozero.dunossauro.com) - Eduardo Mendes (HTML) (CC BY-NC-SA)
* [Introdu├з├гo a Vis├гo Computacional com Python e OpenCV](http://professor.luzerna.ifc.edu.br/ricardo-antonello/wp-content/uploads/sites/8/2017/02/Livro-Introdu%C3%A7%C3%A3o-a-Vis%C3%A3o-Computacional-com-Python-e-OpenCV-3.pdf) (PDF)
* [Introdu├з├гo ao Python](https://files.cercomp.ufg.br/weby/up/688/o/M2_IP_24-09-24.pdf) - Rafael Divino Ferreira Feitosa (PDF)
* [O Guia do Mochileiro para Python!](https://python-guide-pt-br.readthedocs.io/pt_BR/latest/)
* [O tutorial de Python](http://turing.com.br/pydoc/2.7/tutorial/)
* [Pensando Tkinter](https://www.dcc.ufrj.br/~fabiom/mab225/PensandoTkinter.pdf) - Steven Ferg (PDF)
@@ -430,7 +414,6 @@
* [Python Fluente, Segunda Edi├з├гo (2023)](https://pythonfluente.com) - Luciano Ramalho (HTML)
* [Python Funcional](https://dunossauro.github.io/python-funcional/) - Eduardo Mendes
* [Python para Desenvolvedores](https://ark4n.files.wordpress.com/2010/01/python_para_desenvolvedores_2ed.pdf) (PDF)
* [Python para Matem├бticos](https://sbm.org.br/wp-content/uploads/2023/09/Minicurso_Python_final2.pdf) - Andr├йa Lins, Lins Souza (PDF)
* [Tutorial Django Girls](http://tutorial.djangogirls.org/pt/)
@@ -444,7 +427,7 @@
### R
* [An├бlise Explorat├│ria de Dados usando o R](http://www.uesc.br/editora/livrosdigitais2/analiseexploratoria_r.pdf) - Enio Jelihovschi (PDF)
* [Fundamentos Estat├нsticos de Ci├кncia dos Dados](https://biblioteca.unisced.edu.mz/pdfjs/web/viewer.html?file=https://biblioteca.unisced.edu.mz/bitstream/123456789/2209/1/Fundamentos%20Estat%c3%adsticos%20de%20Ci%c3%aancia%20dos%20Dados.pdf) - Renato Assun├з├гo (PDF)
* [Fundamentos Estat├нsticos de Ci├кncia dos Dados](https://homepages.dcc.ufmg.br/~assuncao/EstatCC/FECD.pdf) - Renato Assun├з├гo (PDF)
* [Introdu├з├гo ├а Linguagem R: seus fundamentos e sua pr├бtica](https://pedropark99.github.io/Introducao_R/) - Pedro Duarte Faria
* [R para cientistas sociais](http://www.uesc.br/editora/livrosdigitais_20140513/r_cientistas.pdf) - Jakson Alves de Aquino (PDF)
@@ -469,6 +452,8 @@
* [Bash Scripting](https://meleu.gitbooks.io/bashscripting/content/) - Meleu (gitbook)
* [Casamento de Padr├╡es no Shell do GNU/Linux](https://blauaraujo.com/downloads/shell-pattern-matching.pdf) - Blau Ara├║jo (PDF)
* [Curso Intensivo de Programa├з├гo do Bash - Guia de Estudos](https://blauaraujo.com/downloads/cipb-guia.pdf) - Blau Ara├║jo (PDF)
* [Curso Shell GNU](https://blauaraujo.com/downloads/curso-shell-gnu.pdf) - Blau Ara├║jo (PDF) (:construction: *in process*)
* [Introdu├з├гo ao Shell Script](http://aurelio.net/shell/apostila-introducao-shell.pdf) - Aurelio Marinho Jargas (PDF)
* [Pequena introdu├з├гo ao linux e ao Shell Script](https://www.telecom.uff.br/pet/petws/downloads/apostilas/LINUX.pdf) (PDF)
* [Pequeno Manual do Programador GNU/Bash](https://blauaraujo.com/downloads/pmpgb.pdf) - Blau Ara├║jo (PDF)
+1 -1
View File
@@ -16,7 +16,7 @@
### C
* [Ghidul Beej pentru Programarea in Retea - Folosind socket de internet](https://web.archive.org/web/20180710112954/http://weknowyourdreams.com/beej.html) - Brian "Beej Jorgensen" Hall, Dragos Moroianu (HTML) *( :card_file_box: archived)*
* [Ghidul Beej pentru Programarea in Retea - Folosind socket de internet](https://web.archive.org/web/20180710112954/http://weknowyourdreams.com/beej.html) - Brian "Beej Jorgensen" Hall, Dragos Moroianu (HTML) *(:card_file_box: archived)*
### HTML and CSS
+9 -34
View File
@@ -4,12 +4,10 @@
* [╨Р╤А╤Е╨╕╤В╨╡╨║╤В╤Г╤А╨░ ╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╣](#╨░╤А╤Е╨╕╤В╨╡╨║╤В╤Г╤А╨░-╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╣)
* [╨Ю╨▒╨╗╨░╤З╨╜╤Л╨╡ ╨Т╤Л╤З╨╕╤Б╨╗╨╡╨╜╨╕╤П](#╨╛╨▒╨╗╨░╤З╨╜╤Л╨╡-╨▓╤Л╤З╨╕╤Б╨╗╨╡╨╜╨╕╤П)
* [╨Я╨░╤А╨░╨┤╨╕╨│╨╝╤Л ╨Я╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╤П](#╨┐╨░╤А╨░╨┤╨╕╨│╨╝╤Л-╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╤П)
* [╨Я╤А╨╛╨╕╨╖╨▓╨╛╨┤╨╕╤В╨╡╨╗╤М╨╜╨╛╤Б╤В╤М](#╨┐╤А╨╛╨╕╨╖╨▓╨╛╨┤╨╕╤В╨╡╨╗╤М╨╜╨╛╤Б╤В╤М)
* [╨а╨░╨▒╨╛╤В╨░ c c╨╡╤В╤М╤О](#╤А╨░╨▒╨╛╤В╨░-╤Б-╤Б╨╡╤В╤М╤О)
* [╨г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡ ╨║╨╛╨╜╤Д╨╕╨│╤Г╤А╨░╤Ж╨╕╤П╨╝╨╕](#╤Г╨┐╤А╨░╨▓╨╗╨╡╨╜╨╕╨╡-╨║╨╛╨╜╤Д╨╕╨│╤Г╤А╨░╤Ж╨╕╤П╨╝╨╕)
* [╨н╨║╨╛╤Б╨╕╤Б╤В╨╡╨╝╨░ ╨╛╤В╨║╤А╤Л╤В╨╛╨│╨╛ ╨╕╤Б╤Е╨╛╨┤╨╜╨╛╨│╨╛ ╨║╨╛╨┤╨░](#╤Н╨║╨╛╤Б╨╕╤Б╤В╨╡╨╝╨░-╨╛╤В╨║╤А╤Л╤В╨╛╨│╨╛-╨╕╤Б╤Е╨╛╨┤╨╜╨╛╨│╨╛-╨║╨╛╨┤╨░)
* [IDE and editors](#ide-and-editors)
* [Arduino](#arduino)
* [Assembly](#assembly)
* [Bash](#bash)
* [C](#c)
@@ -54,7 +52,6 @@
* [CodeIgniter](#codeigniter)
* [Laravel](#laravel)
* [Symfony](#symfony)
* [Yii](#yii)
* [Python](#python)
* [Django](#django)
* [Jupyter Notebook](#jupyter-notebook)
@@ -73,7 +70,6 @@
* [FirebirdSQL](#firebirdsql)
* [PostgreSQL](#postgresql)
* [Swift](#swift)
* [Symbian](#symbian)
* [TypeScript](#typescript)
* [Angular](#angular)
* [Unix](#unix)
@@ -112,14 +108,9 @@
* [╨а╨╡╤Д╨░╨║╤В╨╛╤А╨╕╨╜╨│ ╨╜╨░ ╨╝╨░╨║╤Б╨╕╨╝╨░╨╗╨║╨░╤Е](https://github.com/bespoyasov/refactor-like-a-superhero-online-book/blob/main/manuscript-ru/README.md) - ╨Р╨╗╨╡╨║╤Б╨░╨╜╨┤╤А ╨С╨╡╤Б╨┐╨╛╤П╤Б╨╛╨▓
#### ╨Я╤А╨╛╨╕╨╖╨▓╨╛╨┤╨╕╤В╨╡╨╗╤М╨╜╨╛╤Б╤В╤М
* [╨Я╤А╨╛╨┤╤Г╨╝╨░╨╜╨╜╨░╤П ╨╛╨┐╤В╨╕╨╝╨╕╨╖╨░╤Ж╨╕╤П](https://optimization.guide) - ╨Ъ╨░╤А╨╗╨╛╤Б ╨С╤Г╤Н╨╜╨╛
#### ╨а╨░╨▒╨╛╤В╨░ ╤Б ╤Б╨╡╤В╤М╤О
* [╨Э╨░╤Г╨║╨░ ╨╛ ╨б╨╡╤В╤П╤Е](http://networksciencebook.com) - ╨Р╨╗╤М╨▒╨╡╤А╤В╨╛ ╨Ы╨░╨╖╨╗╨╛-╨С╨░╤А╨░╨▒╨░╤Б╨╕ *( :construction: ╨▓ ╨┐╤А╨╛╤Ж╨╡╤Б╤Б╨╡ ╨╜╨░╨┐╨╕╤Б╨░╨╜╨╕╤П)*
* [╨Э╨░╤Г╨║╨░ ╨╛ ╨б╨╡╤В╤П╤Е](http://networksciencebook.com) - ╨Р╨╗╤М╨▒╨╡╤А╤В╨╛ ╨Ы╨░╨╖╨╗╨╛-╨С╨░╤А╨░╨▒╨░╤Б╨╕ (:construction: *in process*)
* [╨а╨░╨╖╤К╤П╤Б╨╜╨╡╨╜╨╕╨╡ HTTP2](https://github.com/vlet/http2-explained/blob/master/http2.ru.pdf?raw=true) - ╨Ф╨░╨╜╨╕╤Н╨╗╤М ╨и╤В╨╡╨╜╨▒╨╡╤А╨│ (PDF)
* [IPv6 ╨┤╨╗╤П ╨╖╨╜╨░╤В╨╛╨║╨╛╨▓ IPv4](https://sites.google.com/site/yartikhiy/home/ipv6book) - ╨п╤А╨╛╤Б╨╗╨░╨▓ ╨в╨╕╤Е╨╕╨╣ (PDF, HTML, EPUB)
@@ -140,11 +131,6 @@
* [╨Я╤А╨╛╤Б╤В╨╛ ╨╛ Vim](http://rus-linux.net/MyLDP/BOOKS/Vim/prosto-o-vim.pdf) - Swaroop (PDF)
### Arduino
* [╨Р╨▓╤В╨╛╨╝╨░╤В╨╛-╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨░╤В╨╛-╨║╨╛╨╝╨┐╨░╤А╨░╨┤╨╕╨╛-╨║╤А╤Г╨╢╨╛╨║](https://github.com/artyom-poptsov/SPARC/blob/master/README.ru.org) - Artyom V. Poptsov (PDF) (CC BY-SA)
### Assembly
* [╨Р╤Б╤Б╨╡╨╝╨▒╨╗╨╡╤А ╨▓ Linux ╨┤╨╗╤П ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤Б╤В╨╛╨▓ C](https://ru.wikibooks.org/wiki/╨Р╤Б╤Б╨╡╨╝╨▒╨╗╨╡╤А_╨▓_Linux_╨┤╨╗╤П_╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤Б╤В╨╛╨▓_C) - ╨Т╨╕╨║╨╕╤Г╤З╨╡╨▒╨╜╨╕╨║
@@ -225,9 +211,9 @@
* [╨Т╨▓╨╡╨┤╨╡╨╜╨╕╨╡ ╨▓ ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╨╡ ╨╜╨░ Go](http://golang-book.ru) - ╨Ъ╨░╨╗╨╡╨▒ ╨Ф╨╛╨║╤Б╨╕
* [╨а╤Г╨║╨╛╨▓╨╛╨┤╤Б╤В╨▓╨╛ ╨┐╨╛ ╤П╨╖╤Л╨║╤Г Go](https://metanit.com/go/tutorial) - ╨Х╨▓╨│╨╡╨╜╨╕╨╣ ╨Я╨╛╨┐╨╛╨▓
* [╨н╤Д╤Д╨╡╨║╤В╨╕╨▓╨╜╤Л╨╣ Go](https://github.com/0x0FACED/effective-go-ru)
* [Go ╨▓ ╨┐╤А╨╕╨╝╨╡╤А╨░╤Е](https://web.archive.org/web/20210727024101/https://gobyexample.ru) *( :card_file_box: archived)*
* [Go ╨┤╨╗╤П PHP-╤А╨░╨╖╤А╨░╨▒╨╛╤В╤З╨╕╨║╨╛╨▓](https://github.com/pahanini/go-for-php-developers-book/blob/master/SUMMARY.md) - Pavel Tetyaev
* [╨н╤Д╤Д╨╡╨║╤В╨╕╨▓╨╜╤Л╨╣ Go](https://github.com/Konstantin8105/Effective_Go_RU)
* [Go ╨▓ ╨┐╤А╨╕╨╝╨╡╤А╨░╤Е](https://web.archive.org/web/20210727024101/https://gobyexample.ru) *(:card_file_box: archived)*
* [Go ╨┤╨╗╤П PHP-╤А╨░╨╖╤А╨░╨▒╨╛╤В╤З╨╕╨║╨╛╨▓](https://pahanini.gitbooks.io/golang-for-php-developers/content/) - Pavel Tetyaev (gitbook)
* [The Little Go Book (╨┐╨╡╤А╨╡╨▓╨╛╨┤)](https://sefus.ru/little-go-book) - Karl Seguin, `trl.:` Roman Dolgolopov, Evgeny Popov, Alexander Dunin ([HTML](https://github.com/sefus/the-little-go-book/blob/master/ru/go.md), [EPUB](https://sefus.ru/dl/go.epub))
@@ -389,7 +375,7 @@
### Lisp
* [Lisp In Small Pieces (translation)](https://github.com/ilammy/lisp)
* [Practical Common Lisp (╨┐╨╡╤А╨╡╨▓╨╛╨┤)](https://web.archive.org/web/20220130051228/http://lisper.ru/pcl/) (HTML) *( :card_file_box: archived)*
* [Practical Common Lisp (╨┐╨╡╤А╨╡╨▓╨╛╨┤)](https://web.archive.org/web/20220130051228/http://lisper.ru/pcl/) (HTML) *(:card_file_box: archived)*
### MetaPost
@@ -466,14 +452,9 @@
* [Symfony 6.2: ╨С╤Л╤Б╤В╤А╤Л╨╣ ╤Б╤В╨░╤А╤В](https://symfony.com/doc/6.2/the-fast-track/ru/index.html)
#### Yii
* [╨Я╨╛╨╗╨╜╨╛╨╡ ╤А╤Г╨║╨╛╨▓╨╛╨┤╤Б╤В╨▓╨╛ ╨┐╨╛ Yii 2.0](https://www.yiiframework.com/doc/download/yii-guide-2.0-ru.pdf) - Yii Software (PDF)
### Python
* [╨Т╨│╨╗╤Г╨▒╤М ╤П╨╖╤Л╨║╨░ Python](https://web.archive.org/web/20170630204729/ru.diveintopython.net/toc.html) *( :card_file_box: archived)*
* [╨Т╨│╨╗╤Г╨▒╤М ╤П╨╖╤Л╨║╨░ Python](https://web.archive.org/web/20170630204729/ru.diveintopython.net/toc.html) *(:card_file_box: archived)*
* [╨Ю╤Б╨╜╨╛╨▓╤Л ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╤П ╨╜╨░ Python](http://dfedorov.spb.ru/python3) - ╨Ф╨╝╨╕╤В╤А╨╕╨╣ ╨д╤С╨┤╨╛╤А╨╛╨▓ (PDF)
* [╨Я╨╕╤И╨╡╨╝ Telegram-╨▒╨╛╤В╨╛╨▓ ╨╜╨░ Python (v2)](https://mastergroosha.github.io/telegram-tutorial-2/) - MasterGroosha
* [╨а╤Г╨║╨╛╨▓╨╛╨┤╤Б╤В╨▓╨╛ ╨┐╨╛ ╤П╨╖╤Л╨║╤Г ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╤П Python](https://metanit.com/python/tutorial) - ╨Х╨▓╨│╨╡╨╜╨╕╨╣ ╨Я╨╛╨┐╨╛╨▓
@@ -491,7 +472,7 @@
#### Django
* [╨а╤Г╨║╨╛╨▓╨╛╨┤╤Б╤В╨▓╨╛ ╨┐╨╛ ╨▓╨╡╨▒-╤Д╤А╨╡╨╣╨╝╨▓╨╛╤А╨║╤Г Django](https://metanit.com/python/django) - ╨Х╨▓╨│╨╡╨╜╨╕╨╣ ╨Я╨╛╨┐╨╛╨▓
* [╨а╤Г╨║╨╛╨▓╨╛╨┤╤Б╤В╨▓╨╛ Django Girls](https://tutorial.djangogirls.org/ru) (1.11) (HTML) *( :construction: ╨▓ ╨┐╤А╨╛╤Ж╨╡╤Б╤Б╨╡ ╨╜╨░╨┐╨╕╤Б╨░╨╜╨╕╤П)*
* [╨а╤Г╨║╨╛╨▓╨╛╨┤╤Б╤В╨▓╨╛ Django Girls](https://tutorial.djangogirls.org/ru) (1.11) (HTML) (:construction: *╨▓ ╨┐╤А╨╛╤Ж╨╡╤Б╤Б╨╡ ╨╜╨░╨┐╨╕╤Б╨░╨╜╨╕╤П*)
#### Jupyter Notebook
@@ -512,7 +493,6 @@
### R
* [╨Р╨╜╨░╨╗╨╕╨╖ ╨┤╨░╨╜╨╜╤Л╤Е ╤Б R](http://www.inp.nsk.su/~baldin/DataAnalysis/index.html)
* [╨Э╨░╨│╨╗╤П╨┤╨╜╨░╤П ╤Б╤В╨░╤В╨╕╤Б╤В╨╕╨║╨░. ╨Ш╤Б╨┐╨╛╨╗╤М╨╖╤Г╨╡╨╝ R!](https://cran.r-project.org/doc/contrib/Shipunov-rbook.pdf) (PDF)
* [╨а╨░╨╜╨┤╨╛╨╝╨╕╨╖╨░╤Ж╨╕╤П ╨╕ ╨▒╤Г╤В╤Б╤В╤А╨╡╨┐: ╤Б╤В╨░╤В╨╕╤Б╤В╨╕╤З╨╡╤Б╨║╨╕╨╣ ╨░╨╜╨░╨╗╨╕╨╖ ╨▓ ╨▒╨╕╨╛╨╗╨╛╨│╨╕╨╕ ╨╕ ╤Н╨║╨╛╨╗╨╛╨│╨╕╨╕ ╤Б ╨╕╤Б╨┐╨╛╨╗╤М╨╖╨╛╨▓╨░╨╜╨╕╨╡╨╝ R.](http://www.ievbras.ru/ecostat/Kiril/Article/A32/Starb.pdf) (PDF)
@@ -533,7 +513,7 @@
#### Ruby on Rails
* [Ruby on Rails ╨┐╨╛-╤А╤Г╤Б╤Б╨║╨╕](http://rusrails.ru)
* [Ruby on Rails Tutorial. ╨Ш╨╖╤Г╤З╨╡╨╜╨╕╨╡ Rails ╨╜╨░ ╨Я╤А╨╕╨╝╨╡╤А╨░╤Е](https://web.archive.org/web/20181124010958/railstutorial.ru/chapters/4_0/beginning) - ╨Ь╨░╨╣╨║╨╗ ╨е╨░╤А╤В╨╗ *( :card_file_box: archived)*
* [Ruby on Rails Tutorial. ╨Ш╨╖╤Г╤З╨╡╨╜╨╕╨╡ Rails ╨╜╨░ ╨Я╤А╨╕╨╝╨╡╤А╨░╤Е](https://web.archive.org/web/20181124010958/railstutorial.ru/chapters/4_0/beginning) - ╨Ь╨░╨╣╨║╨╗ ╨е╨░╤А╤В╨╗ *(:card_file_box: archived)*
### Rust
@@ -591,7 +571,6 @@
* [╨Ш╤Б╤В╨╛╤А╨╕╤П ╨╛ PostgreSQL](http://www.inp.nsk.su/~baldin/PostgreSQL/index.html) - Linux Format
* [╨а╨░╨▒╨╛╤В╨░ ╤Б PostgreSQL - ╨╜╨░╤Б╤В╤А╨╛╨╣╨║╨░ ╨╕ ╨╝╨░╤Б╤И╤В╨░╨▒╨╕╤А╨╛╨▓╨░╨╜╨╕╨╡](http://postgresql.leopard.in.ua) - ╨Р. ╨о. ╨Т╨░╤Б╨╕╨╗╤М╨╡╨▓
* [PostgreSQL ╨┤╨╗╤П ╨╜╨░╤З╨╕╨╜╨░╤О╤Й╨╕╤Е](https://postgrespro.ru/education/books/introbook) - Luzanov Pavel Veniaminovich, Rogov Yegor Valerievich, Levshin Igor Viktorovich (PDF)
* [PostgreSQL. ╨Ю╤Б╨╜╨╛╨▓╤Л ╤П╨╖╤Л╨║╨░ SQL](https://postgrespro.ru/education/books/sqlprimer) - ╨Ь╨╛╤А╨│╤Г╨╜╨╛╨▓ ╨Х╨▓╨│╨╡╨╜╨╕╨╣ ╨Я╨░╨▓╨╗╨╛╨▓╨╕╤З (PDF)
### Swift
@@ -600,11 +579,6 @@
* [Swift Tutorial](https://coderlessons.com/tutorials/kompiuternoe-programmirovanie/nauchites-programmirovaniiu-swift/swift-tutorial) - CoderLessons.com
### Symbian
* [Symbian C++](https://github.com/trufanov-nok/SymbianBook_ru) - ╨Р. ╨Э ╨в╤А╤Г╤Д╨░╨╜╨╛╨▓
### TypeScript
* [╨Ъ╨░╤А╨╝╨░╨╜╨╜╨░╤П ╨║╨╜╨╕╨│╨░ ╨┐╨╛ TypeScript](https://typescript-handbook.ru) - Igor Agapov
@@ -633,3 +607,4 @@
* [Beyond Linux From Scratch (version 2011-12-30)](http://rus-linux.net/nlib.php?name=/MyLDP/BOOKS/BLFS-ru/blfs-ru-index.html) - The BLFS Development Team, `trl.:` ╨Э.╨а╨╛╨╝╨╛╨┤╨░╨╜╨╛╨▓, `trl.:` ╨б╨╡╤А╨│╨╡╤П ╨Ъ╨░╨╝╨╕╨╜╤Б╨║╨╛╨│╨╛, `trl.:` ╨Р╨╗╨╡╨║╤Б╨░╨╜╨┤╤А╨░ ╨Р╨╜╨┤╤А╨╡╨╡╨▓╨░
* [Linux From Scratch (version 6.8)](http://rus-linux.net/nlib.php?name=/MyLDP/BOOKS/LFS-BOOK-6.8-ru/lfs-6.8-ru-index.html)
* [The Linux Kernel Module Programming Guide](http://www.opennet.ru/docs/RUS/lkmpg26) - Peter Jay Salzman, Michael Burian, Ori Pomerantz
+1 -1
View File
@@ -30,4 +30,4 @@
#### Django
* [Pr├нru─Нka k Django Girls](https://tutorial.djangogirls.org/sk/) (1.11) (HTML) *( :construction: in process)*
* [Pr├нru─Нka k Django Girls](https://tutorial.djangogirls.org/sk/) (1.11) (HTML) (:construction: *in process*)
-7
View File
@@ -1,7 +0,0 @@
* [Git](#git)
### Git
* [Pro Git](https://git-scm.com/book/sl/v2) - Scott Chacon, Ben Straub (HTML, PDF, EPUB)
+1 -37
View File
@@ -1,44 +1,8 @@
### Index
* [C](#c)
* [C++](#cpp)
* [HTML and CSS](#html-and-css)
* [Java](#java)
* [JavaScript](#javascript)
* [Python](#python)
### C
* [Beej-ov vodi─Н za mre┼╛no programiranje - Kori┼бtenje Internet soket-a](https://web.archive.org/web/20181008134854/http://users.teol.net:80/~mvlado/sockets/) - Brian "Beej Jorgensen" Hall, Maksimovi─З Darko (HTML) *( :card_file_box: archived)*
### <a id="cpp"></a>C++
* [Programski jezik C++ sa re┼бenim zadacima](https://singipedia.singidunum.ac.rs/izdanje/40777-programski-jezik-c-sa-resenim-zadacima) - Ranko Popovi─З, Zona Kosti─З (PDF)
### HTML and CSS
* [Web dizajn: HTML, CSS i JavaScript](https://singipedia.singidunum.ac.rs/izdanje/42767-web-dizajn-html-css-i-javascript) - Nenad Koji─З (PDF)
### Java
* [Internet programiranje pomo─Зu programskog jezika JAVA](https://singipedia.singidunum.ac.rs/izdanje/40880-internet-programiranje-pomocu-programskog-jezika-java) - Bo┼бko Nikoli─З, Univerzitet Singidunum (PDF)
* [Java programiranje](https://singipedia.singidunum.ac.rs/izdanje/43019-java-programiranje) - Dejan ┼╜ivkovi─З, Univerzitet Singidunum (PDF)
* [Java programiranje - Staro izdanje](https://singipedia.singidunum.ac.rs/izdanje/40891-java-programiranje-staro-izdanje) - Dejan ┼╜ivkovi─З, Univerzitet Singidunum (PDF)
* [Java programiranje - Staro izdanje](https://singipedia.singidunum.ac.rs/izdanje/40717-osnove-java-programiranja-staro-izdanje) - Dejan ┼╜ivkovi─З, Univerzitet Singidunum (PDF)
* [Osnove Java programiranja](https://singipedia.singidunum.ac.rs/izdanje/40716-osnove-java-programiranja) - Dejan ┼╜ivkovi─З, Univerzitet Singidunum (PDF)
* [Osnove Java programiranja - Zbirka pitanja i zadataka](https://singipedia.singidunum.ac.rs/izdanje/40721-osnove-java-programiranja-zbirka-pitanja-i-zadataka) - Dejan ┼╜ivkovi─З, Univerzitet Singidunum (PDF)
### JavaScript
* [Web dizajn: HTML, CSS i JavaScript](https://singipedia.singidunum.ac.rs/izdanje/42767-web-dizajn-html-css-i-javascript) - Nenad Koji─З, Univerzitet Singidunum (PDF)
### Python
* [Osnove programiranja - Python](https://singipedia.singidunum.ac.rs/izdanje/42765-osnove-programiranja-python) - Vladislav Mi┼бkovic, Univerzitet Singidunum (PDF)
* [Beej-ov vodi─Н za mre┼╛no programiranje - Kori┼бtenje Internet soket-a](https://web.archive.org/web/20181008134854/http://users.teol.net:80/~mvlado/sockets/) - Brian "Beej Jorgensen" Hall, Maksimovi─З Darko (HTML) *(:card_file_box: archived)*
+133 -239
View File
@@ -20,7 +20,6 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Containers](#containers)
* [Data Science](#data-science)
* [Database](#database)
* [Embedded Systems](#embedded-systems)
* [Game Development](#game-development)
* [Graphical user interfaces](#graphical-user-interfaces)
* [Graphics Programming](#graphics-programming)
@@ -29,9 +28,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Licensing](#licensing)
* [Machine Learning](#machine-learning)
* [Mathematics](#mathematics)
* [Algebra](#algebra)
* [Calculus](#calculus)
* [Mathematics For Computer Science](#mathematics-for-computer-science)
* [Mathematics For Computer Science](#mathematics-for-computer-science)
* [Misc](#misc)
* [Networking](#networking)
* [Object Oriented Programming](#object-oriented-programming)
@@ -62,10 +59,8 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Atariarchives.org](https://www.atariarchives.org) - Atariarchives.org makes books, information, and software for Atari and other classic computers available on the Web.
* [Bento](https://www.bento.io)
* [Bitsavers.org](http://bitsavers.trailing-edge.com)
* [Build your own X](https://github.com/codecrafters-io/build-your-own-x)
* [Code Catalog: A Collection of Code Examples from Prominent Open Source Projects](https://codecatalog.org)
* [conceptf1.blogspot.com](https://conceptf1.blogspot.com/2013/11/list-of-freely-available-programming.html)
* [dBooks - Free download open books](https://www.dbooks.org)
* [Free Tech Books](https://www.freetechbooks.com)
* [Goalkicker](https://goalkicker.com) - Programming Notes for Professionals books
* [IBM Redbooks](https://www.redbooks.ibm.com)
@@ -94,47 +89,43 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
### Algorithms & Data Structures
* [A Common-Sense Guide to Data Structures & Algorithms](https://github.com/GauravWalia19/Free-Algorithms-Books/blob/main/Library/src/JAVASCRIPT/A-Common-Sense-Guide-to-Data-Structures-and-Algorithms-Level-Up-Your-Core-Programming-Skills.pdf) - Jay Wengrow (PDF)
* [A Field Guide To Genetic Programming](https://web.archive.org/web/20191020195105/http://www0.cs.ucl.ac.uk/staff/W.Langdon/ftp/papers/poli08_fieldguide.pdf) - Riccardo Poli, William B. Langdon, Nicholas F. McPhee (PDF) *( :card_file_box: archived)* (CC BY-NC-ND)
* [A Field Guide To Genetic Programming](https://web.archive.org/web/20191020195105/http://www0.cs.ucl.ac.uk/staff/W.Langdon/ftp/papers/poli08_fieldguide.pdf) - Riccardo Poli, William B. Langdon, Nicholas F. McPhee (PDF) *(:card_file_box: archived)*
* [Algorithm Design](https://archive.org/details/AlgorithmDesign1stEditionByJonKleinbergAndEvaTardos2005PDF) - Jon Kleinberg, ├Йva Tardos
* [Algorithmic Graph Theory](https://code.google.com/p/graphbook/) - David Joyner, Minh Van Nguyen, David Phillips (PDF) (GFDL)
* [Algorithmic Graph Theory](https://code.google.com/p/graphbook/) - David Joyner, Minh Van Nguyen, David Phillips (PDF)
* [Algorithmic Thinking](https://labuladong.gitbook.io/algo-en) - Donglai Fu
* [Algorithms](https://en.wikibooks.org/wiki/Algorithms) - Wikibooks
* [Algorithms](https://jeffe.cs.illinois.edu/teaching/algorithms/book/Algorithms-JeffE.pdf) - Jeff Erickson (PDF)
* [Algorithms, 4th Edition](https://algs4.cs.princeton.edu/home/) - Robert Sedgewick, Kevin Wayne
* [Algorithms and Automatic Computing Machines (1963)](https://archive.org/details/Algorithms_And_Automatic_Computing_Machines) - B. A. Trakhtenbrot
* [Algorithms and Complexity](https://www.math.upenn.edu/~wilf/AlgoComp.pdf) - Herbert S. Wilf (PDF)
* [Algorithms and Data Structures](https://textbookequity.org/Textbooks/Nievergelt_Algorithms%20and%20Data%20Structures08.pdf) - J├╝rg Nievergelt, Klaus Hinrichs (PDF)
* [Algorithms and Data Structures - With Applications to Graphics and Geometry](https://textbookequity.org/Textbooks/Nievergelt_Algorithms%20and%20Data%20Structures08.pdf) - Jurg Nievergelt, Klaus Hinrichs (PDF)
* [Algorithms Course Materials](https://jeffe.cs.illinois.edu/teaching/algorithms/) - Jeff Erickson
* [Algorithms for Decision Making](https://algorithmsbook.com/decisionmaking/) - Mykel J. Kochenderfer, Tim A. Wheeler, Kyle H. Wray (HTML, PDF) (CC BY-NC-ND)
* [Algorithms Notes for Professionals](https://goalkicker.com/AlgorithmsBook) - Compiled from StackOverflow Documentation (PDF)
* [An Open Guide to Data Structures and Algorithms](https://open.umn.edu/opentextbooks/textbooks/an-open-guide-to-data-structures-and-algorithms) - Paul W. Bible, Lucas Moser (PDF)
* [Annotated Algorithms in Python: Applications in Physics, Biology, and Finance](https://github.com/mdipierro/nlib) - Massimo Di Pierro
* [Binary Trees](http://cslibrary.stanford.edu/110/BinaryTrees.pdf) - Nick Parlante (PDF)
* [Data Structures](https://adityacse.weebly.com/uploads/2/4/0/7/24078687/data-structures.pdf) - Aditya CSE (PDF)
* [Data Structures](https://en.wikibooks.org/wiki/Data_Structures) - Wikibooks
* [Data Structures (Into Java)](https://inst.eecs.berkeley.edu/~cs61b/fa14/book2/data-structures.pdf) - Paul N. Hilfinger (PDF)
* [Data Structures and Algorithm Analysis in C++](https://people.cs.vt.edu/~shaffer/Book/C++3elatest.pdf) - Clifford A. Shaffer (PDF)
* [Data Structures and Algorithm Analysis in Java](https://people.cs.vt.edu/~shaffer/Book/JAVA3elatest.pdf) - Clifford A. Shaffer (PDF)
* [Data Structures and Algorithms: Annotated Reference with Examples](https://web.archive.org/web/20170715160229/http://dotnetslackers.com/Community/files/folders/data-structures-and-algorithms/entry30283.aspx) - G. Barnett, L. Del Tongo *( :card_file_box: archived)*
* [Data Structures and Algorithms: Annotated Reference with Examples](https://web.archive.org/web/20170715160229/http://dotnetslackers.com/Community/files/folders/data-structures-and-algorithms/entry30283.aspx) - G. Barnett, L. Del Tongo *(:card_file_box: archived)*
* [Data Structures Succinctly Part 1, Syncfusion](https://www.syncfusion.com/resources/techportal/ebooks/datastructurespart1) - Robert Horvick
* [Data Structures Succinctly Part 2, Syncfusion](https://www.syncfusion.com/resources/techportal/ebooks/datastructurespart2) - Robert Horvick
* [Elementary Algorithms](https://github.com/liuxinyu95/AlgoXY) - Larry Liu Xinyu (PDF)
* [Essential Algorithms](https://www.programming-books.io/essential/algorithms/) - Krzysztof Kowalczyk and Stack Overflow Documentation project (HTML)
* [Essential Algorithms](https://www.programming-books.io/essential/algorithms/) - Krzysztof Kowalczyk and Stack Overflow Documentation project (HTML)
* [Foundations of Computer Science](http://infolab.stanford.edu/~ullman/focs.html) - Al Aho, Jeff Ullman
* [Learning Algorithm](https://riptutorial.com/Download/algorithm.pdf) - Compiled from StackOverflow documentation (PDF) (CC BY-SA)
* [Learning Algorithm](https://riptutorial.com/Download/algorithm.pdf) - Compiled from StackOverflow documentation (PDF)
* [Lectures Notes on Algorithm Analysis and Computational Complexity (Fourth Edition)](https://ianparberry.com/books/free/license.html) - Ian Parberry (use form at bottom of license)
* [LEDA: A Platform for Combinatorial and Geometric Computing](https://people.mpi-inf.mpg.de/~mehlhorn/LEDAbook.html) - K. Mehlhorn, St. N├дher
* [Linked List Basics](http://cslibrary.stanford.edu/103/LinkedListBasics.pdf) - Nick Parlante (PDF)
* [Linked List Problems](http://cslibrary.stanford.edu/105/LinkedListProblems.pdf) - Nick Parlante (PDF)
* [Matters Computational: Ideas, Algorithms, Source Code](https://www.jjj.de/fxt/fxtbook.pdf) - J├╢rg Arndt (PDF)
* [Open Data Structures: An Introduction](https://opendatastructures.org) - Pat Morin
* [Planning Algorithms](http://lavalle.pl/planning/) - Steven M. LaValle
* [Planning Algorithms](http://lavalle.pl/planning/) - Steven M. LaValle
* [Problems on Algorithms (Second Edition)](https://ianparberry.com/books/free/license.html) - Ian Parberry (use form at bottom of license)
* [Purely Functional Data Structures](https://www.cs.cmu.edu/~rwh/students/okasaki.pdf) - Chris Okasaki (PDF)
* [Purely Functional Data Structures (1996)](https://web.archive.org/web/20210917054102/http://www.cs.cmu.edu/~rwh/theses/okasaki.pdf) - Chris Okasaki (PDF) *(:card_file_box: archived)*
* [Sequential and parallel sorting algorithms](https://www.inf.hs-flensburg.de/lang/algorithmen/sortieren/algoen.htm) - Hans Werner Lang (HTML)
* [Text Algorithms](http://igm.univ-mlv.fr/~mac/REC/text-algorithms.pdf) - Maxime Crochemore, Wojciech Rytter (PDF)
* [Text Algorithms](https://igm.univ-mlv.fr/~mac/REC/text-algorithms.pdf) - Maxime Crochemore, Wojciech Rytter (PDF)
* [The Algorithm Design Manual](https://www8.cs.umu.se/kurser/TDBAfl/VT06/algorithms/BOOK/BOOK/BOOK.HTM) - Steven S. Skiena (HTML)
* [The Algorithms](https://the-algorithms.com)
* [The Design of Approximation Algorithms](https://www.designofapproxalgs.com/book.pdf) - David P. Williamson, David B. Shmoys (PDF)
* [The Great Tree List Recursion Problem](http://cslibrary.stanford.edu/109/TreeListRecursion.pdf) - Nick Parlante (PDF)
* [The Kademlia Protocol Succinctly](https://www.syncfusion.com/ebooks/kademlia_protocol_succinctly) - Marc Clifton
@@ -143,29 +134,18 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
### Artificial Intelligence
* [AI Safety for Fleshy Humans](https://aisafety.dance) - Nicky Case and Hack Club *( :construction: in process)* (CC BY-NC)
* [Artificial Intelligence, 3rd Edition (1993)](https://courses.csail.mit.edu/6.034f/ai3/rest.pdf) - Patrick Henry Winston (PDF)
* [Artificial Intelligence and the Future for Teaching and Learning](https://www2.ed.gov/documents/ai-report/ai-report.pdf) - Office of Educational Technology (PDF)
* [Artificial Intelligence for a Better Future: An Ecosystem Perspective on the Ethics of AI and Emerging Digital Technologies](https://link.springer.com/book/10.1007/978-3-030-69978-9) - Bernd Carsten Stahl (PDF, EPUB)
* [Artificial Intelligence: Foundations of Computational Agents (2010), 1st Edition](https://artint.info/aifca1e.html) - David L. Poole, Alan K. Mackworth @ Cambridge University Press (HTML)
* [Artificial Intelligence: Foundations of Computational Agents (2017), 2nd Edition](https://artint.info) - David L. Poole, Alan K. Mackworth @ Cambridge University Press (HTML, Slides)
* [Clever Algorithms Nature-Inspired Programming Recipes](https://bjpcjp.github.io/pdfs/ruby/Clever-Algorithms.pdf) - Jason Brownlee (PDF) (CC BY-NC-SA)
* [Generative AI in Higher Education: The ChatGPT Effect](https://www.taylorfrancis.com/books/oa-mono/10.4324/9781003459026/generative-ai-higher-education-cecilia-ka-yuk-chan-tom-colloton) - Cecilia Ka Yuk Chan, Tom Colloton (PDF) (CC BY)
* [Getting Started with Artificial Intelligence , 2nd Edition](https://www.ibm.com/downloads/cas/OJ6WX73V) - Tom Markiewicz, Josh Zheng (PDF)
* [Graph Representational Learning Book](https://www.cs.mcgill.ca/~wlh/grl_book/) - William L. Hamilton (PDF)
* [How to Build Optimal AI Agents That Actually Work](https://www.freecodecamp.org/news/how-to-build-optimal-ai-agents-that-actually-work-a-handbook-for-devs/) - Tiago Monteiro (HTML)
* [How Transformer LLMs Work](https://www.deeplearning.ai/short-courses/how-transformer-llms-work/) - Jay Alammar, Maarten Grootendorst (DeepLearning.AI)
* [Hugging Face LLM Course](https://huggingface.co/learn/llm-course/en/chapter1/1) (HTML)
* [Introduction to Autonomous Robots](https://github.com/correll/Introduction-to-Autonomous-Robots/releases) - Nikolaus Correll (PDF) (CC BY-NC-ND)
* [Large Language Models from Scratch](https://www.youtube.com/watch?v=lnA9DMvHtfI) - freeCodeCamp (YouTube)
* [Graph Representational Learning Book](https://www.cs.mcgill.ca/~wlh/grl_book/) - William L. Hamilton
* [Introduction to Autonomous Robots](https://github.com/correll/Introduction-to-Autonomous-Robots/releases) - Nikolaus Correll (PDF)
* [Machine Learning For Dummies┬о, IBM Limited Edition](https://www.ibm.com/downloads/cas/GB8ZMQZ3) - Daniel Kirsch, Judith Hurwitz (PDF)
* [Mastering Generative AI and Prompt Engineering: A Practical Guide for Data Scientists](https://datasciencehorizons.com/pub/Mastering_Generative_AI_Prompt_Engineering_Data_Science_Horizons_v2.pdf) - Data Science Horizons (PDF)
* [On the Path to AI: LawтАЩs prophecies and the conceptual foundations of the machine learning age](https://link.springer.com/book/10.1007/978-3-030-43582-0) - Thomas D. Grant, Damon J. Wischik (PDF, EPUB)
* [Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp](https://github.com/norvig/paip-lisp) - Peter Norvig (Git repo)
* [Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp](https://github.com/norvig/paip-lisp) - Peter Norvig
* [Probabilistic Programming & Bayesian Methods for Hackers](https://camdavidsonpilon.github.io/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers/) - Cam Davidson-Pilon (HTML, Jupyter Notebook)
* [Stanford CS224N: Natural Language Processing with Deep Learning](https://www.youtube.com/playlist?list=PLoROMvodv4rOSH4v6133s9LFPRHjEmbmJ) - Christopher Manning (Stanford Online)
* [The History of Artificial Intelligence](https://courses.cs.washington.edu/courses/csep590/06au/projects/history-ai.pdf) - Chris Smith, Brian McGuire, Ting Huang, Gary Yang (PDF)
* [The Math Behind Artificial Intelligence: A Guide to AI Foundations](https://www.freecodecamp.org/news/the-math-behind-artificial-intelligence-book) - Tiago Monteiro (HTML)
* [The Quest for Artificial Intelligence: A History of Ideas and Achievements](https://ai.stanford.edu/~nilsson/QAI/qai.pdf) - Nils J. Nilsson (PDF)
@@ -173,13 +153,12 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Bitcoin and Cryptocurrency Technologies](https://bitcoinbook.cs.princeton.edu) - Arvind Narayanan, Joseph Bonneau, Edward Felten, Andrew Miller, Steven Goldfeder, Jeremy Clark (PDF)
* [Blockchain for Dummies, 2nd IBM Limited Edition](https://www.ibm.com/downloads/cas/36KBMBOG) - Manav Gupta (PDF)
* [Build a Blockchain from Scratch in Go with gRPC](https://github.com/volodymyrprokopyuk/go-blockchain) - Volodymyr Prokopyuk
* [chain.courses](https://web.archive.org/web/20220127020549/https://chain.courses/) - James Gan, Rishub Kumar *( :card_file_box: archived)*
* [chain.courses](https://web.archive.org/web/20220127020549/https://chain.courses/) - James Gan, Rishub Kumar *(:card_file_box: archived)*
* [Getting Started with Enterprise Blockchain: A Guide to Design and Development](https://www.ibm.com/downloads/cas/RYWXAR0M) - Michael Bradley, David Gorman, Matt Lucas, Matthew Golby-Kirk (PDF)
* [Grokking Bitcoin](https://rosenbaum.se/book/) - Kalle Rosenbaum (HTML) `(CC┬аBY-NC-SA)`
* [Grokking Bitcoin](https://rosenbaum.se/book/) - Kalle Rosenbaum (HTML)
* [IBM Blockchain: The FounderтАЩs Handbook, Third Edition](https://www.ibm.com/downloads/cas/GZPPMWM5) - Antonio Banda, Matthew Hamilton, Eileen Lowry, John Widdifield, et al. (PDF)
* [Learning Bitcoin from the Command Line](https://github.com/BlockchainCommons/Learning-Bitcoin-from-the-Command-Line) - Christopher Allen, Shannon Appelcline, et al. (HTML)
* [Mastering Bitcoin - Unlocking digital currencies (2017), 2nd Edition](https://github.com/bitcoinbook/bitcoinbook) - Andreas M. Antonopoulos (AsciiDoc) `(CC BY-NC-ND)`
* [Mastering Bitcoin - Unlocking digital currencies (2017), 2nd Edition](https://github.com/bitcoinbook/bitcoinbook) - Andreas M. Antonopoulos (AsciiDoc)
* [Mastering Ethereum (2018), 1st Edition](https://github.com/ethereumbook/ethereumbook) - Andreas M. Antonopoulos, Gavin Wood (AsciiDoc)
* [Mastering the Lightning Network](https://github.com/lnbook/lnbook) - Andreas M. Antonopoulos, Olaoluwa Osuntokun, Rene Pickhardt (AsciiDoc)
* [Playtime with Hyperledger Composer](https://schadokar.dev/ebooks/playtime-with-hyperledger-composer/) - Shubham Chadokar (PDF)
@@ -187,10 +166,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
### Cellular Automata
* [A New Kind of Science](https://www.wolframscience.com/nksonline/toc.html) - Stephen Wolfram (HTML)
* [An Introduction to Cellular Automata](https://ia801004.us.archive.org/26/items/viviencellularautomata/vivien%20cellular%20automata.pdf) - H├йl├иne Vivien (PDF)
* [Cellular Automata Machines](https://people.csail.mit.edu/nhm/cam-book.pdf) - Norman Margolus, Tommaso Toffoli (PDF)
* [Introduction to the Modeling and Analysis of Complex Systems](https://milneopentextbooks.org/introduction-to-the-modeling-and-analysis-of-complex-systems/) - Hiroki Sayama (PDF) (CC BY-NC-SA)
* [A New Kind of Science](https://www.wolframscience.com/nksonline/toc.html) - Stephen Wolfram
### Cloud Computing
@@ -199,10 +175,10 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Azure for Architects, Third Edition](https://azure.microsoft.com/en-us/resources/azure-for-architects/) (PDF) *(email address or account required)*
* [Azure Functions Succinctly, Syncfusion](https://www.syncfusion.com/ebooks/azure-functions-succinctly) (PDF, Kindle) (email address requested, not required)
* [Building Serverless Applications with Google Cloud Run](https://www.cockroachlabs.com/guides/oreilly-building-serverless-applications-with-google-cloud-run/) - Wietse Venema (PDF) (email address requested, not required)
* [Cloud Computing for Science and Engineering](https://cloud4scieng.org/chapters/) - Ian Foster, Dennis B. Gannon *( :construction: in process)*
* [Cloud Computing for Science and Engineering](https://cloud4scieng.org/chapters/) - Ian Foster, Dennis B. Gannon (:construction: *in process*)
* [Cloud Design Patterns](https://docs.microsoft.com/en-us/azure/architecture/patterns/)
* [Designing Distributed Systems](https://azure.microsoft.com/en-us/resources/designing-distributed-systems/) *(account required)*
* [Distributed Systems 4th edition](https://www.distributed-systems.net/index.php/books/ds4/ds4-ebook/) - Maarten van Steen, Andrew S. Tanenbaum *(email address required)*
* [Distributed Systems 3rd edition](https://www.distributed-systems.net/index.php/books/ds3/) - Maarten van Steen, Andrew S. Tanenbaum *(email address required)*
* [How to optimize storage costs using Amazon S3](https://aws.amazon.com/s3/cloud-storage-cost-optimization-ebook/) - AWS (PDF)
* [Kubernetes Hardening Guidance](https://media.defense.gov/2022/Aug/29/2003066362/-1/-1/0/CTR_KUBERNETES_HARDENING_GUIDANCE_1.2_20220829.PDF) - NSA, CISA (PDF)
* [Learn Azure in a Month of Lunches](https://clouddamcdnprodep.azureedge.net/gdc/2014519/original) - Iain Foulds (PDF)
@@ -216,7 +192,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
### Competitive Programming
* [Competitive Programmer's Handbook](https://cses.fi/book/book.pdf) - Antti Laaksonen (PDF) `(CC BY-NC-SA)`
* [Competitive Programmer's Handbook](https://cses.fi/book/book.pdf) - Antti Laaksonen (PDF)
* [Competitive Programming, 1st Edition](https://cpbook.net/#CP1details) - Steven Halim [(PDF)](https://www.comp.nus.edu.sg/~stevenha/myteaching/competitive_programming/cp1.pdf)
* [Competitive Programming, 2nd Edition](https://cpbook.net/#CP2details) - Steven Halim [(PDF)](https://www.comp.nus.edu.sg/~stevenha/myteaching/competitive_programming/cp2.pdf)
* [Principles of Algorithmic Problem Solving](https://www.csc.kth.se/~jsannemo/slask/main.pdf) - Johan Sannemo (PDF)
@@ -224,12 +200,11 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
### Compiler Design
* [An Introduction to GCC](https://web.archive.org/web/20170326232435/http://www.network-theory.co.uk/docs/gccintro/index.html) - Brian Gough *( :card_file_box: archived)*
* [An Introduction to GCC](https://web.archive.org/web/20170326232435/http://www.network-theory.co.uk/docs/gccintro/index.html) - Brian Gough *(:card_file_box: archived)*
* [Basics of Compiler Design (Anniversary Edition)](http://www.diku.dk/~torbenm/Basics/) - Torben Mogensen
* [Compiler Construction using C# (SLANGFOR.NET)](https://github.com/mmj-the-fighter/slang_for_dot_net_revision/blob/main/bookA4Desk.pdf) - Praseed Pai (PDF)
* [Compiler Design in C (1990)](https://holub.com/goodies/compiler/compilerDesignInC.pdf) - Allen Holub, Prentice Hall (PDF)
* [Compiler Design: Theory, Tools, and Examples, C/C++ Edition](https://web.archive.org/web/20230816024714/http://elvis.rowan.edu/~bergmann/books/Compiler_Design/c_cpp/Text/C_CppEd.pdf) - Seth D. Bergmann (PDF) *( :card_file_box: archived)*
* [Compiler Design: Theory, Tools, and Examples, Java Edition](https://web.archive.org/web/20230816024714/http://elvis.rowan.edu/~bergmann/books/Compiler_Design/java/CompilerDesignBook.pdf) - Seth D. Bergmann (PDF) *( :card_file_box: archived)*
* [Compiler Design: Theory, Tools, and Examples, C/C++ Edition](http://elvis.rowan.edu/~bergmann/books/Compiler_Design/c_cpp/Text/C_CppEd.pdf) - Seth D. Bergmann (PDF)
* [Compiler Design: Theory, Tools, and Examples, Java Edition](http://elvis.rowan.edu/~bergmann/books/Compiler_Design/java/CompilerDesignBook.pdf) - Seth D. Bergmann (PDF)
* [Compiling Scala for the Java Virtual Machine](https://lampwww.epfl.ch/~schinz/thesis-final-A4.pdf) - Michel Schinz (PDF)
* [Compiling Techniques (1969)](https://www.chilton-computing.org.uk/acl/literature/books/compilingtechniques/overview.htm) - F.R.A. Hopgood, Macdonald
* [Crafting Interpreters](https://www.craftinginterpreters.com/contents.html) - Bob Nystrom (HTML)
@@ -245,8 +220,6 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Basic Computer Architecture](https://www.cse.iitd.ac.in/~srsarangi/archbooksoft.html) - Smruti R. Sarangi (HTML, PDF, Slides, Videos)
* [Computer Organization and Design Fundamentals](https://faculty.etsu.edu/tarnoff/138292) - David Tarnoff (PDF)
* [Digital Circuit Projects: An Overview of Digital Circuits Through Implementing Integrated Circuits - Second Edition](https://cupola.gettysburg.edu/cgi/viewcontent.cgi?article=1000&context=oer) - Charles W. Kann (PDF) (CC BY)
* [Dive Into Systems: A Gentle Introduction to Computer Systems](https://diveintosystems.org) - Suzanne J. Matthews, Tia Newhall, Kevin C. Webb (HTML)
### Computer Science
@@ -255,17 +228,16 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Computational Thinking](https://www.cs.cmu.edu/~15110-s13/Wing06-ct.pdf) - Jeannette Wing, Carnegie-Mellon University (PDF)
* [Computer Science Class XI](https://cbseacademic.nic.in/web_material/doc/cs/1_Computer-Science-Python-Book-Class-XI.pdf) - CBSE (PDF)
* [Computer Science Class XII](https://cbseacademic.nic.in/web_material/doc/cs/2_Computer_Science_Python_ClassXII.pdf) - CBSE (PDF)
* [Computer Science I](https://cse.unl.edu/~cbourke/ComputerScienceOne.pdf) - Chris Bourke (PDF) (CC BY-SA)
* [Computer Science II](https://cse.unl.edu/~cbourke/ComputerScienceTwo.pdf) - Chris Bourke (PDF) (CC BY-SA)
* [Computer Science I](https://cse.unl.edu/~cbourke/ComputerScienceOne.pdf) - Chris Bourke (PDF)
* [Computer Science II](https://cse.unl.edu/~cbourke/ComputerScienceTwo.pdf) - Chris Bourke (PDF)
* [CS Principles: Big Ideas in Programming](https://www.openbookproject.net/books/StudentCSP/) - Mark Guzdial, Barbara Ericson (HTML)
* [Introduction to Computer Science](https://openstax.org/details/books/introduction-computer-science) - Jean Claude Franchitti et al. (PDF, HTML) (CC BY)
* [Pull Requests and Code Review](https://scs.tl/book-pr) тАУ Sebastien Castiel
* [What to Look for in a Code Review](https://leanpub.com/whattolookforinacodereview) - Trisha Gee (HTML, PDF, EPUB, Kindle) *(Leanpub account or valid email requested)*
### Computer Vision
* [Computer Vision](https://homepages.inf.ed.ac.uk/rbf/BOOKS/BANDB/bandb.htm) - Dana Ballard, Chris Brown (PDF)
* [Computer Vision](https://homepages.inf.ed.ac.uk/rbf/BOOKS/BANDB/bandb.htm) - Dana Ballard, Chris Brown
* [Computer Vision: Algorithms and Applications](https://szeliski.org/Book/) - Richard Szeliski
* [Computer Vision: Foundations and Applications](http://vision.stanford.edu/teaching/cs131_fall1718/files/cs131-class-notes.pdf) - Ranjay Krishna (PDF)
* [Computer Vision: Models, Learning, and Inference](http://www.computervisionmodels.com) - Simon J.D. Prince
@@ -277,7 +249,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [CI/CD for Monorepos: Effectively building, testing, and deploying code with monorepos](https://github.com/semaphoreci/book-monorepo-cicd) - Pablo Tomas Fernandez Zavalia, Marko Anastasov, SemaphoreCI (PDF, EPUB, Kindle)
* [CI/CD with Docker and Kubernetes Book](https://github.com/semaphoreci/book-cicd-docker-kubernetes) - Marko Anastasov, J├йr├┤me Petazzoni, Pablo Tom F. Zavalia, SemaphoreCI (PDF, EPUB, Kindle)
* [Docker Jumpstart](https://odewahn.github.io/docker-jumpstart/) - Andrew Odewahn
* [Docker Tutorial](https://people.irisa.fr/Anthony.Baire/docker-tutorial.pdf) - Anthony Baire (PDF) (CC BY-NC-ND)
* [Docker Tutorial](https://people.irisa.fr/Anthony.Baire/docker-tutorial.pdf) - Anthony Baire (PDF)
* [Docker Tutorial](https://www.tutorialspoint.com/docker/) - Tutorials Point (HTML, PDF)
* [Dotnet Microservices Architecture for Containerized NET Applications](https://aka.ms/microservicesebook) - Cesar de la Torre, Bill Wagner, Mike Rousos (PDF)
* [Kubernetes Deployment & Security Patterns](https://resources.linuxfoundation.org/LF+Projects/CNCF/TheNewStack_Book2_KubernetesDeploymentAndSecurityPatterns.pdf) - Alex Williams (PDF)
@@ -290,9 +262,8 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [A Programmer's Guide to Data Mining](http://guidetodatamining.com) - Ron Zacharski (Draft)
* [Data Jujitsu: The Art of Turning Data into Product](http://www.oreilly.com/data/free/data-jujitsu.csp) (email address *requested*, not required)
* [Data Mining Algorithms In R](https://en.wikibooks.org/wiki/Data_Mining_Algorithms_In_R) - Wikibooks
* [Data Mining Concepts and Techniques](https://ia800702.us.archive.org/7/items/datamining_201811/DS-book%20u5.pdf) - Jiawei Han, Micheline Kamber, Jian Pei (PDF) *( :card_file_box: archived)*
* [Data Mining Concepts and Techniques](https://ia800702.us.archive.org/7/items/datamining_201811/DS-book%20u5.pdf) - Jiawei Han, Micheline Kamber, Jian Pei (PDF) (:card_file_box: archived)
* [Data Science at the Command Line](https://datascienceatthecommandline.com/2e/) - Jeroen Janssens
* [Data Science with Python](https://www.youtube.com/watch?v=LHBE6Q9XlzI) - freeCodeCamp
* [Elements of Data Science](https://allendowney.github.io/ElementsOfDataScience/README.html) - Allen B. Downey
* [Feature Engineering and Selection: A Practical Approach for Predictive Models](https://bookdown.org/max/FES/) - Max Kuhn, Kjell Johnson
* [Foundations of Data Science](https://www.cs.cornell.edu/jeh/book.pdf) - Avrim Blum, John Hopcroft, Ravindran Kannan (PDF)
@@ -300,14 +271,10 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Hands-On Data Visualization](https://handsondataviz.org) - Jack Dougherty, Ilya Ilyankou (HTML)
* [High-Dimensional Data Analysis with Low-Dimensional Models: Principles, Computation, and Applications](https://book-wright-ma.github.io/Book-WM-20210422.pdf) - John Wright, Yi Ma (PDF)
* [Internet Advertising: An Interplay among Advertisers, Online Publishers, Ad Exchanges and Web Users](https://arxiv.org/pdf/1206.1754v2.pdf) (PDF)
* [Introduction to Cultural Analytics & Python](https://melaniewalsh.github.io/Intro-Cultural-Analytics/welcome.html) - Melanie Walsh
* [Introduction to Cultural Analytics & Python](https://melaniewalsh.github.io/Intro-Cultural-Analytics/welcome.html) - Melanie Walsh
* [Introduction to Data Science](https://docs.google.com/file/d/0B6iefdnF22XQeVZDSkxjZ0Z5VUE/edit?pli=1) - Jeffrey Stanton
* [Introduction to Data Science in Python](https://www.coursera.org/learn/python-data-analysis) - Christopher Brooks (University of Michigan) (Coursera)
* [Julia Data Science](https://juliadatascience.io) - Jose Storopoli, Rik Huijzer, Lazaro Alonso (HTML) (CC BY-NC-SA 4.0)
* [Mining of Massive Datasets](http://infolab.stanford.edu/~ullman/mmds/book.pdf) - Jure Leskovec, Anand Rajaraman, Jeffrey D. Ullman (PDF)
* [Principles of Data Science](https://openstax.org/details/books/principles-data-science) - OpenStax (HTML, PDF) Shaun V. Ault (CC BY-NC-SA 4.0)
* [Probability and Statistics with Examples using R](https://www.isibang.ac.in/~athreya/psweur/index.html#usage) - Siva Athreya, Deepayan Sarkar, Steve Tanner (HTML) *( :construction: *in process*)*
* [Python for Data Science тАУ Hands-on Projects](https://www.youtube.com/watch?v=vaMMLLf0wLM) - LunarTech (freeCodeCamp) (YouTube)
* [Probability and Statistics with Examples using R](https://www.isibang.ac.in/~athreya/psweur/index.html#usage) - Siva Athreya, Deepayan Sarkar, Steve Tanner (HTML) (:construction: *in process*)
* [School of Data Handbook](https://schoolofdata.org/handbook/)
* [Statistical inference for data science](https://leanpub.com/LittleInferenceBook/read) - Brian Caffo
* [The Ultimate Guide to 12 Dimensionality Reduction Techniques (with Python codes)](https://www.analyticsvidhya.com/blog/2018/08/dimensionality-reduction-techniques-python/) - Pulkit Sharma
@@ -328,20 +295,11 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [The Theory of Relational Databases](https://web.cecs.pdx.edu/~maier/TheoryBook/TRD.html)
### Embedded Systems
* [Control and Embedded Systems](http://www.learn-c.com) (HTML)
* [Discovering the STM32 Microcontroller](https://web.archive.org/web/20250112021837/https://legacy.cs.indiana.edu/~geobrown/book.pdf) (PDF) (CC BY-NC-SA)
* [First Steps with Embedded Systems](https://www.phaedsys.com/principals/bytecraft/bytecraftdata/bcfirststeps.pdf) - Byte Craft Limited (PDF)
* [Introduction to Embedded Systems, Second Edition](https://ptolemy.berkeley.edu/books/leeseshia/releases/LeeSeshia_DigitalV2_2.pdf) - Edward Ashford Lee, Sanjit Arunkumar Seshia (PDF) (CC BY-NC-ND)
* [Introduction to Microcontrollers](http://www.embeddedrelated.com/showarticle/453.php) (HTML)
* [Mastering the FreeRTOS Real Time Kernel - a Hands On Tutorial Guide](https://freertos.org/Documentation/RTOS_book.html) - freertos.org ([PDF](https://freertos.org/fr-content-src/uploads/2018/07/161204_Mastering_the_FreeRTOS_Real_Time_Kernel-A_Hands-On_Tutorial_Guide.pdf))
### Game Development
* [2D Game Development: From Zero To Hero](https://github.com/Penaz91/2DGD_F0TH) - Daniele Penazzo (HTML, [PDF, EBPUB, Kindle...](https://therealpenaz91.itch.io/2dgd-f0th#download)) *( :construction: in process)*
* [2D Game Development: From Zero To Hero](https://github.com/Penaz91/2DGD_F0TH) - Daniele Penazzo (HTML, [PDF, EBPUB, Kindle...](https://therealpenaz91.itch.io/2dgd-f0th#download)) (:construction: *in process*)
* [3D Math Primer for Graphics and Game Development](https://gamemath.com/book/intro.html) - Fletcher Dunn (HTML)
* [Coding With Minecraft](https://turtleappstore.com/book/) - Al Sweigart
* [Designing Virtual Worlds](https://mud.co.uk/richard/DesigningVirtualWorlds.pdf) - Richard A. Bartle (PDF)
* [Game AI Pro](https://www.gameaipro.com) - Steve Rabin
* [Game Design with AGS](https://ensadi.github.io/AGSBook/) - Dave Ensminger, A. G. Madi
@@ -355,17 +313,17 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [3D Game Shaders For Beginners](https://github.com/lettier/3d-game-shaders-for-beginners) - David Lettier (Git) [(HTML)](https://lettier.github.io/3d-game-shaders-for-beginners)
* [Blender 3D: Noob to Pro](https://en.wikibooks.org/wiki/Blender_3D%3A_Noob_to_Pro) - Wikibooks
* [Blender Manual](https://docs.blender.org/manual/en/latest)
* [Computer Graphics from scratch](http://gabrielgambetta.com/computer-graphics-from-scratch) - Gabriel Gambetta *( :construction: in process)*
* [DirectX manual](http://user.xmission.com/~legalize/book/download/index.html) (draft)
* [Computer Graphics from scratch](https://gabrielgambetta.com/computer-graphics-from-scratch) - Gabriel Gambetta (:construction: *in process*)
* [DirectX manual](https://user.xmission.com/~legalize/book/download/index.html) (draft)
* [GPU Gems](https://developer.nvidia.com/gpugems/GPUGems/gpugems_pref01.html)
* [Graphics Programming Black Book](https://www.gamedev.net/tutorials/_/technical/graphics-programming-and-theory/graphics-programming-black-book-r1698/) - Michael Abrash (PDF)
* [Introduction to Modern OpenGL](https://open.gl) - Alexander Overvoorde (HTML, EPUB, PDF) (C++)
* [Introduction to TouchDesigner 099](https://leanpub.com/introductiontotouchdesigner/) *(Leanpub account or valid email requested)*
* [JPEG - Idea and Practice](https://en.wikibooks.org/wiki/JPEG_-_Idea_and_Practice)
* [Learn Computer Graphics From Scratch!](https://www.scratchapixel.com) - Scratchapixel *( :construction: in process)*
* [Learn Computer Graphics From Scratch!](https://www.scratchapixel.com) - Scratchapixel (:construction: *in process*)
* [Learn OpenGL](https://learnopengl.com) - Joey de Vries
* [Learn OpenGL RS](https://github.com/bwasty/learn-opengl-rs) - Benjamin Wasty, et al. *( :construction: in process)*
* [Learning Modern 3D Graphics Programming](https://web.archive.org/web/20150225192611/http://www.arcsynthesis.org/gltut/index.html) - Jason L. McKesson (draft) *( :card_file_box: archived)*
* [Learn OpenGL RS](https://github.com/bwasty/learn-opengl-rs) - Benjamin Wasty, et al. (:construction: *in process*) (Rust)
* [Learning Modern 3D Graphics Programming](https://web.archive.org/web/20150225192611/http://www.arcsynthesis.org/gltut/index.html) - Jason L. McKesson (draft) *(:card_file_box: archived)*
* [Notes for a Computer Graphics Programming Course](https://dokumen.tips/documents/computer-grafics-notes.html) - Steve Cunningham (PDF)
* [OpenGL](https://www.songho.ca/opengl/index.html) - Concepts and illustrations
* [Physically Based Rendering, Third Edition: from Theory to Implementation](https://www.pbr-book.org) - Matt Pharr, Wenzel Jakob, Greg Humphreys
@@ -393,22 +351,20 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
> :information_source: See also &#8230; [Emacs Lisp](free-programming-books-langs.md#emacs-lisp), [Regular Expressions](#regular-expressions)
* [A Byte of Vim](https://vim.swaroopch.com) - Swaroop Chitlur, Nofrak, Fuzzymonk, Karmadude, Yesyo, Hbvit7, Leochingkwake (PDF) (CC BY-SA)
* [GNU Emacs Manual](https://www.gnu.org/software/emacs/manual/emacs.html) - Free Software Foundation Inc. (HTML, PDF) (GFDL)
* [Learn Neovim](https://ofirgall.github.io/learn-nvim/chapters/00-why-should-i-learn.html) - Ofir Gal (HTML, PDF)
* [Learn Vim (the Smart Way)](https://github.com/iggredible/Learn-Vim) - Igor Irianto (HTML) (CC BY-NC-SA)
* [Learn Vim For the Last Time](https://danielmiessler.com/study/vim/) - Daniel Miessler (HTML)
* [Learn Vim Progressively](https://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/) - Yann Esposito (HTML)
* [Learn Vimscript the Hard Way](https://learnvimscriptthehardway.stevelosh.com) - Steve Losh (HTML)
* [The Craft of Text Editing or Emacs for the Modern World](https://www.finseth.com/craft/) - Craig A. Finseth (HTML, PDF, ePUB, Kindle, PostScript, LaTeX)
* [A Byte of Vim](https://www.swaroopch.com/notes/vim/) - Swaroop (PDF)
* [GNU Emacs Manual](https://www.gnu.org/software/emacs/manual/emacs.html) - Free Software Foundation Inc. (HTML, PDF)
* [Learn Vim (the Smart Way)](https://github.com/iggredible/Learn-Vim) - Igor Irianto (HTML) (:construction: *in process*)
* [Learn Vim For the Last Time](https://danielmiessler.com/study/vim/) - Daniel Miessler
* [Learn Vim Progressively](https://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/) - Yann Esposito
* [Learn Vimscript the Hard Way](https://learnvimscriptthehardway.stevelosh.com) - Steve Losh
* [The Craft of Text Editing or A Cookbook for an Emacs](https://www.finseth.com/craft/) - Craig A. Finseth (HTML, PDF, ePUB, Kindle, PostScript, LaTeX)
* [Vi Improved -- Vim](https://www.truth.sk/vim/vimbook-OPL.pdf) - Steve Oualline (PDF)
* [VIM-GALORE - All things Vim!](https://github.com/mhinz/vim-galore#readme) - Marco Hinz (HTML) (CC BY-SA)
* [Vim Recipes](https://web.archive.org/web/20130302172911/http://vim.runpaint.org/vim-recipes.pdf) - Run Paint Run Run, Run Paint Press (PDF) *( :card_file_box: archived)*
* [Vim Reference Guide](https://learnbyexample.github.io/vim_reference/) - Sundeep Agarwal (HTML) (CC BY-NC-SA)
* [VIM-GALORE - All things Vim!](https://github.com/mhinz/vim-galore#readme) - Marco Hinz (HTML)
* [Vim Recipes](https://web.archive.org/web/20130302172911/http://vim.runpaint.org/vim-recipes.pdf) - Run Paint Run Run, Run Paint Press (PDF) *(:card_file_box: archived)*
* [Vim Reference Guide](https://learnbyexample.github.io/vim_reference/) - Sundeep Agarwal
* [Vim Regular Expressions 101](https://vimregex.com) - Oleg Raisky
* [Visual Studio .NET Tips and Tricks](https://www.infoq.com/minibooks/vsnettt) - Minh T. Nguyen (PDF)
* [Visual Studio 2019 Succinctly](https://www.syncfusion.com/ebooks/visual-studio-2019-succinctly) - Alessandro Del Sole (HTML, PDF)
* [Visual Studio Code - The Essentials](https://microsoft.github.io/vscode-essentials/en/) - Yohan Lasorsa, Christopher Maneu (HTML) (CC BY-SA) *( :construction: in process)*
* [Visual Studio 2019 Succinctly](https://www.syncfusion.com/ebooks/visual-studio-2019-succinctly) - Alessandro Del Sole (online, PDF)
### Information Retrieval
@@ -421,6 +377,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
### Licensing
* [Creative Commons: a user guide](https://archive.org/download/CreativeCommonsUserGuide/CreativeCommonsUserGuide.pdf) - Simone Aliprandi (PDF)
* [Open Source Licensing Software Freedom and Intellectual Property Law](https://rosenlaw.com/oslbook/) - Lawrence Rosen
* [The Public Domain: Enclosing the Commons of the Mind](https://www.thepublicdomain.org/download/) - James Boyle
@@ -430,19 +387,15 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [A Brief Introduction to Neural Networks](https://www.dkriesel.com/en/science/neural_networks)
* [A Comprehensive Guide to Machine Learning](https://www.eecs189.org/static/resources/comprehensive-guide.pdf) - Soroush Nasiriany, Garrett Thomas, William Wang, Alex Yang (PDF)
* [A Course in Machine Learning](http://ciml.info/dl/v0_9/ciml-v0_9-all.pdf) (PDF)
* [A First Encounter with Machine Learning](https://web.archive.org/web/20210420163002/https://www.ics.uci.edu/~welling/teaching/ICS273Afall11/IntroMLBook.pdf) - Max Welling (PDF) *( :card_file_box: archived)*
* [A First Encounter with Machine Learning](https://web.archive.org/web/20210420163002/https://www.ics.uci.edu/~welling/teaching/ICS273Afall11/IntroMLBook.pdf) - Max Welling (PDF) *(:card_file_box: archived)*
* [A Selective Overview of Deep Learning](https://arxiv.org/abs/1904.05526) - Fan, Ma, Zhong (PDF)
* [Algorithms for Reinforcement Learning](https://sites.ualberta.ca/~szepesva/papers/RLAlgsInMDPs.pdf) - Csaba Szepesv├бri (PDF)
* [An Introduction to Statistical Learning](https://www.statlearning.com) - Gareth James, Daniela Witten, Trevor Hastie, Robert Tibshirani
* [Applied Machine Learning for Tabular Data](https://aml4td.org) - Max Kuhn, Kjell Johnson (HTML) *( :construction: in process)*
* [An Introduction to Statistical Learning](https://web.stanford.edu/~hastie/ISLR2/ISLRv2_website.pdf) - Gareth James, Daniela Witten, Trevor Hastie, Robert Tibshirani (PDF)
* [Approaching Almost Any Machine Learning Problem](https://github.com/abhishekkrthakur/approachingalmost) - Abhishek Thakur (PDF)
* [Automated Machine Learning - Methods, Systems, Challenges](https://link.springer.com/book/10.1007/978-3-030-05318-5) - Frank Hutter, Lars Kotthoff, Joaquin Vanschoren (PDF, EPUB)
* [Bayesian Reasoning and Machine Learning](http://web4.cs.ucl.ac.uk/staff/D.Barber/pmwiki/pmwiki.php?n=Brml.HomePage)
* [CS50's Introduction to Artificial Intelligence with Python](https://cs50.harvard.edu/ai/) - David Malan (Harvard)
* [Deep Learning](https://www.deeplearningbook.org) - Ian Goodfellow, Yoshua Bengio, Aaron Courville
* [Deep Learning for Coders with Fastai and PyTorch](https://github.com/fastai/fastbook) - Jeremy Howard, Sylvain Gugger (Jupyter Notebooks)
* [Dive into Deep Learning](https://d2l.ai)
* [Elements of AI](https://www.elementsofai.com) - MinnaLearn, University of Helsinki
* [Explorations in Parallel Distributed Processing: A Handbook of Models, Programs, and Exercises](https://web.stanford.edu/group/pdplab/pdphandbook) - James L. McClelland
* [Foundations of Machine Learning, Second Edition](https://mitpress.ublish.com/ebook/foundations-of-machine-learning--2-preview/7093/Cover) - Mehryar Mohri, Afshin Rostamizadeh, Ameet Talwalkar
* [Free and Open Machine Learning](https://nocomplexity.com/documents/fossml/) - Maikel Mardjan (HTML)
@@ -452,12 +405,10 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Interpretable Machine Learning](https://christophm.github.io/interpretable-ml-book/) - Christoph Molnar
* [Introduction to CNTK Succinctly](https://www.syncfusion.com/ebooks/cntk_succinctly) - James McCaffrey
* [Introduction to Machine Learning](https://arxiv.org/abs/0904.3664v1) - Amnon Shashua
* [Introduction to Machine Learning Systems](https://www.mlsysbook.ai/assets/downloads/Machine-Learning-Systems.pdf) - Vijay Janapa Reddi (PDF)
* [Keras Succinctly](https://www.syncfusion.com/ebooks/keras-succinctly) - James McCaffrey
* [Learn Tensorflow](https://bitbucket.org/hrojas/learn-tensorflow) - Jupyter Notebooks
* [Learning Deep Architectures for AI](https://mila.quebec/wp-content/uploads/2019/08/TR1312.pdf) - Yoshua Bengio (PDF)
* [Machine Learning](https://www.intechopen.com/books/machine_learning)
* [Machine Learning Crash Course](https://developers.google.com/machine-learning/crash-course) - Google (HTML)
* [Machine Learning for Beginners](https://github.com/Microsoft/ML-For-Beginners) - Microsoft
* [Machine Learning for Data Streams](https://moa.cms.waikato.ac.nz/book-html/) - Albert Bifet, Ricard Gavald├а, Geoff Holmes, Bernhard Pfahringer
* [Machine Learning from Scratch](https://dafriedman97.github.io/mlbook/) - Danny Friedman (HTML, PDF, Jupyter Book)
@@ -469,43 +420,64 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Neural Network Design (2nd Edition)](https://hagan.okstate.edu/NNDesign.pdf) - Martin T. Hagan, Howard B. Demuth, Mark H. Beale, Orlando De Jes├║s (PDF)
* [Neural Networks and Deep Learning](http://neuralnetworksanddeeplearning.com)
* [Pattern Recognition and Machine Learning](https://www.microsoft.com/en-us/research/uploads/prod/2006/01/Bishop-Pattern-Recognition-and-Machine-Learning-2006.pdf) - Christopher M. Bishop (PDF)
* [Patterns, Predictions, And Actions: A story about machine learning](https://mlstory.org/pdf/patterns.pdf) - Moritz Hardt, Benjamin Recht (PDF)
* [Practical Deep Learning for Coders](https://course.fast.ai) - fast.ai
* [Practitioners guide to MLOps](https://services.google.com/fh/files/misc/practitioners_guide_to_mlops_whitepaper.pdf) - Khalid Samala, Jarek Kazmierczak, Donna Schut (PDF)
* [Probabilistic Machine Learning - An Introduction](https://github.com/probml/pml-book/releases/latest/download/book1.pdf) - Kevin P. Murphy (PDF)
* [Probabilistic Machine Learning: Advanced Topics](https://probml.github.io/pml-book/book2.html) - Kevin P. Murphy (PDF)
* [Probabilistic Models in the Study of Language](https://idiom.ucsd.edu/~rlevy/pmsl_textbook/text.html) (Draft, with R code)
* [Python Machine Learning Projects](https://www.digitalocean.com/community/books/python-machine-learning-projects-a-digitalocean-ebook) - Lisa Tagliaferri, Brian Boucheron, Michelle Morales, Ellie Birkbeck, Alvin Wan (PDF, EPUB, Kindle)
* [Reinforcement Learning: An Introduction](http://incompleteideas.net/book/RLbook2020.pdf) - Richard S. Sutton, Andrew G. Barto (PDF) (CC BY-NC-ND)
* [Reinforcement Learning: An Introduction](http://incompleteideas.net/book/RLbook2020.pdf) - Richard S. Sutton, Andrew G. Barto (PDF)
* [Speech and Language Processing (3rd Edition Draft)](https://web.stanford.edu/~jurafsky/slp3/ed3book.pdf) - Daniel Jurafsky, James H. Martin (PDF)
* [The Elements of Statistical Learning](https://web.stanford.edu/~hastie/ElemStatLearn/) - Trevor Hastie, Robert Tibshirani, and Jerome Friedman
* [The LION Way: Machine Learning plus Intelligent Optimization](https://intelligent-optimization.org/LIONbook/lionbook_3v0.pdf) - Roberto Battiti, Mauro Brunato (PDF)
* [The Little Book of Deep Learning](https://fleuret.org/public/lbdl.pdf) - Fran├зois Fleuret (PDF) (CC BY-NC-SA)
* [The Mathematical Engineering of Deep Learning](https://deeplearningmath.org) - Benoit Liquet, Sarat Moka, Yoni Nazarathy
* [The Little Book of Deep Learning](https://fleuret.org/public/lbdl.pdf) - Fran├зois Fleuret (PDF)
* [The Mechanics of Machine Learning](https://mlbook.explained.ai) - Terence Parr, Jeremy Howard
* [The Python Game Book](https://web.archive.org/web/20210308080726/https://thepythongamebook.com/en%3Astart) - Horst Jens *(:card_file_box: archived)*
* [Top 10 Machine Learning Algorithms Every Engineer Should Know](https://www.dezyre.com/article/top-10-machine-learning-algorithms/202) - Binny Mathews, Omair Aasim
* [Understanding Machine Learning: From Theory to Algorithms](https://www.cs.huji.ac.il/~shais/UnderstandingMachineLearning) - Shai Shalev-Shwartz, Shai Ben-David
* [User Guide - scikit-learn](https://scikit-learn.org/stable/user_guide.html) - Scikit-learn developers (HTML) (BSD)
### Mathematics
* [A Computational Introduction to Number Theory and Algebra](https://shoup.net/ntb/) - Victor Shoup
* [A Computational Logic (1979)](https://www.cs.utexas.edu/users/boyer/acl.pdf) - Robert S. Boyer, J Strother Moore (PDF)
* [A Cool Brisk Walk Through Discrete Mathematics](http://stephendavies.org/brisk.pdf) - Stephen Davies (PDF)
* [A First Course in Complex Analysis](https://matthbeck.github.io/papers/complexorth.pdf) - Matthias Beck, Gerald Marchesi, Dennis Pixton, Lucas Sabalka (PDF)
* [A First Course in Linear Algebra](http://linear.ups.edu) - Rob Beezer
* [A Friendly Introduction to Mathematical Logic](https://milneopentextbooks.org/a-friendly-introduction-to-mathematical-logic/) - Christopher C. Leary, Lars Kristiansen
* [A Gentle Introduction to the Art of Mathematics](https://osj1961.github.io/giam/) - Joseph E. Fields
* [A Programmer's Introduction to Mathematics](https://pimbook.org) - Jeremy Kun
* [A Quick Steep Climb Up Linear Algebra](http://stephendavies.org/quick.pdf) - Stephen Davies (PDF)
* [Abstract Algebra: Theory and Applications](http://abstract.ups.edu) - Tom Judson
* [Active Calculus](https://scholarworks.gvsu.edu/books/20/) - Matt Boelkins
* [Advanced Algebra](https://www.math.stonybrook.edu/~aknapp/download/a2-alg-inside.pdf) - Anthony W. Knapp (PDF)
* [Algebra: Abstract and Concrete](https://homepage.divms.uiowa.edu/~goodman/algebrabook.dir/algebrabook.html) - Frederick Goodman
* [Algebra: An Elementary Text-Book, Part I (1904)](http://djm.cc/library/Algebra_Elementary_Text-Book_Part_I_Chrystal_edited.pdf) - G. Chrystal (PDF)
* [Algebra: An Elementary Text-Book, Part II (1900)](http://djm.cc/library/Algebra_Elementary_Text-Book_Part_II_Chrystal_edited02.pdf) - G. Chrystal (PDF)
* [Algebraic Topology](https://pi.math.cornell.edu/~hatcher/AT/ATpage.html) - Allen Hatcher (PDF)
* [An Infinite Descent into Pure Mathematics](https://infinitedescent.xyz/dl/infdesc.pdf) - Clive Newstead (PDF)
* [An Introduction to the Theory of Numbers](http://www.trillia.com/moser-number.html) - Leo Moser (PDF)
* [Analytic Geometry (1922)](http://djm.cc/library/Analytic_Geometry_Siceloff_Wentworth_Smith_edited.pdf) - Lewis Parker Siceloff, George Wentworth, David Eugene Smith (PDF)
* [APEX Calculus](https://www.apexcalculus.com) - Gregory Hartman, Brian Heinold, Troy Siemers, and Dimplekumar Chalishajar
* [Applied Combinatorics](https://rellek.net/book/app-comb.html) - Mitchel T. Keller, William T. Trotter
* [Applied Discrete Structures](https://faculty.uml.edu/klevasseur/ads2/) - Alan Doerr, Kenneth Levasseur
* [Applied Quantitative Finance: Theory and Computational Tools](http://inis.jinr.ru/sl/M_Mathematics/MV_Probability/MVspf_Stochastics%20in%20finance/Haerdle%20et%20al.%20Applied%20Quantitative%20Finance%20(Springer)(423s).pdf) - Wolfgang K. Hardle, Nikolaus Hautsch, Ludger Overbeck (PDF)
* [Basic Algebra](https://www.math.stonybrook.edu/~aknapp/download/b2-alg-inside.pdf) - Anthony W. Knapp (PDF)
* [Basic Analysis: Introduction to Real Analysis](https://www.jirka.org/ra/) - Ji┼Щ├н Lebl
* [Basics of Algebra, Topology, and Differential Calculus](https://www.cis.upenn.edu/~jean/math-basics.pdf) (PDF)
* [Bayesian Methods for Hackers](https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers) - Cameron Davidson-Pilon
* [Beginning and Intermediate Algebra](http://www.wallace.ccfaculty.org/book/book.html) - Tyler Wallace
* [Book of Proof](https://www.people.vcu.edu/~rhammack/BookOfProof/) - Richard Hammack [(PDF)](https://www.people.vcu.edu/~rhammack/BookOfProof/Main.pdf)
* [Calculus](https://ocw.mit.edu/resources/res-18-001-calculus-online-textbook-spring-2005/textbook/) - Gilbert Strang
* [Calculus I](https://resolver.caltech.edu/CaltechBOOK:1985.001) - Jerrold E. Marsden, Alan Weinstein
* [Calculus in Context](http://www.math.smith.edu/~callahan/intromine.html) - James Callahan
* [Calculus Made Easy](https://www.gutenberg.org/ebooks/33283) - Silvanus P. Thompson (PDF)
* [Calculus Volume 1](https://openstax.org/details/books/calculus-volume-1) - Edwin Herman, Gilbert Strang (PDF)
* [Calculus Volume 2](https://openstax.org/details/books/calculus-volume-2) - Edwin Herman, Gilbert Strang (PDF)
* [Calculus Volume 3](https://openstax.org/details/books/calculus-volume-3) - Edwin Herman, Gilbert Strang (PDF)
* [Category Theory for the Sciences](https://math.mit.edu/~dspivak/CT4S.pdf) - David I. Spivak (PDF)
* [CK-12 Probability and Statistics - Advanced](https://www.ck12.org/book/Probability-and-Statistics---Advanced-%2528Second-Edition%2529/)
* [CLP-1 Differential Calculus](https://www.math.ubc.ca/~CLP/CLP1/) - Joel Feldman, Andrew Rechnitzer, Elyse Yeager
* [CLP-2 Integral Calculus](https://www.math.ubc.ca/~CLP/CLP2/) - Joel Feldman, Andrew Rechnitzer, Elyse Yeager
* [CLP-3 Multivariable Calculus](https://www.math.ubc.ca/~CLP/CLP3/) - Joel Feldman, Andrew Rechnitzer, Elyse Yeager
* [CLP-4 Vector Calculus](https://www.math.ubc.ca/~CLP/CLP4/) - Joel Feldman, Andrew Rechnitzer, Elyse Yeager
* [Collaborative Statistics](https://cnx.org/contents/5e0744f9-9e79-4348-9237-ed012213a2d6%4040.9)
* [College Trigonometry](https://open.umn.edu/opentextbooks/textbooks/college-trigonometry) - Carl Stitz, Jeff Zeager (PDF)
* [Combinatorics Through Guided Discovery](https://bogart.openmathbooks.org) - Kenneth Bogart
@@ -524,10 +496,12 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Elementary Differential Equations (with Boundary Value Problems)](https://digitalcommons.trinity.edu/mono/9/) - William F. Trench
* [Elementary Number Theory: Primes, Congruences, and Secrets](https://wstein.org/ent/) - William Stein
* [Elementary Real Analysis](https://www.classicalrealanalysis.info/com/Elementary-Real-Analysis.php) - Brian S. Thomson, Judith B. Bruckner, Andrew M. Bruckner
* [Elements of Abstract and Linear Algebra](https://www.math.miami.edu/~ec/book/) - E. H. Connell
* [Elements of Differential and Integral Calculus (1911)](http://djm.cc/library/Elements_Differential_Integral_Calculus_Granville_edited_2.pdf) - William Anthony Granville (PDF)
* [Essentials of Metaheuristics](https://cs.gmu.edu/~sean/book/metaheuristics/) - Sean Luke
* [First Course in Algebra (1910)](http://djm.cc/library/First_Algebra_Hawkes_Luby_Touton_edited.pdf) - Herbert E. Hawkes, William A. Luby, Frank C. Touton (PDF)
* [Foundations of Combinatorics with Applications](https://www.math.ucsd.edu/~ebender/CombText/) - Edward A. Bender, S. Gill Williamson
* [Foundations of Constructive Probability Theory](https://arxiv.org/pdf/1906.01803.pdf) - Yuen-Kwok Chan (PDF)
* [Fundamentals of Quantitative Analysis](https://psyteachr.github.io/quant-fun-v3/) - Danielle Zhu (GitHub) (CC BY-SA)
* [Geometry with an Introduction to Cosmic Topology](https://mphitchman.com) - Michael P. Hitchman
* [Graph Theory](http://compalg.inf.elte.hu/~tony/Oktatas/TDK/FINAL/)
* [Guide to Discrete Mathematics](https://core.ac.uk/download/pdf/326762636.pdf) - David Gries, Fred B. Schneider (PDF)
@@ -541,7 +515,13 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Introductory Statistics for the Life and Biomedical Sciences](https://www.openintro.org/book/isrs/) - Julie Vu, David Harrington
* [Kalman and Bayesian Filters in Python](https://github.com/rlabbe/Kalman-and-Bayesian-Filters-in-Python)
* [Knapsack Problems - Algorithms and Computer Implementations](http://www.or.deis.unibo.it/knapsack.html) - Silvano Martello, Paolo Toth
* [Lecture Notes of Linear Algebra](https://home.iitk.ac.in/~psraj/mth102/lecture_notes.html) - P. Shunmugaraj, IIT Kanpur (PDF)
* [Lecture Notes on Linear Algebra](https://home.iitk.ac.in/~arlal/book/LA_Solution_Dec20.pdf) - Arbind K Lal, Sukant Pati (PDF) (:construction: *in process*)
* [Lies, Damned Lies, or Statistics: How to Tell the Truth with Statistics](https://www.poritz.net/jonathan/share/ldlos.pdf) - Jonathan A. Poritz (PDF)
* [Linear Algebra](https://www.math.ucdavis.edu/~linear/linear-guest.pdf) - David Cherney et al. (PDF)
* [Linear Algebra](http://joshua.smcvt.edu/linearalgebra/) - Jim Hefferon
* [Linear Algebra Done Wrong](https://www.math.brown.edu/streil/papers/LADW/LADW.html) - Sergei Treil
* [Linear Algebra, Infinite Dimensions, and Maple](https://people.math.gatech.edu/~herod/Hspace/Hspace.html) - James Herod
* [Linear Methods of Applied Mathematics](http://www.mathphysics.com/pde) - Evans M. Harrell II, James V. Herod
* [Magic Squares and Cubes (1917)](http://djm.cc/library/Magic_Squares_Cubes_Andrews_edited.pdf) - W. S. Anderson (PDF)
* [Math in Society](https://www.opentextbookstore.com/mathinsociety/) - David Lippman
@@ -550,6 +530,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Mathematical Logic - an Introduction](https://www.ii.uib.no/~michal/und/i227/book/book.pdf) (PDF)
* [Mathematical Reasoning: Writing and Proof](https://www.tedsundstrom.com/mathematical-reasoning-3) - Ted Sundstrom
* [Mathematics, MTH101A](https://home.iitk.ac.in/~psraj/mth101/) - P. Shunmugaraj, IIT Kanpur
* [Multivariable Calculus](https://people.math.gatech.edu/~cain/notes/calculus.html) - George Cain, James Herod
* [Non-Uniform Random Variate Generation](http://luc.devroye.org/rnbookindex.html) - Luc Devroye (PDF)
* [Notes on Diffy Qs](https://www.jirka.org/diffyqs/) - Ji┼Щ├н Lebl
* [Number Theory](https://github.com/holdenlee/number-theory) - Holden Lee MIT
@@ -557,79 +538,31 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Odds and Ends: Introducing Probability & Decision with a Visual Emphasis](https://jonathanweisberg.org/vip/) - Jonathan Weisberg
* [Online Statistics Education](https://onlinestatbook.com) - David Lane
* [OpenIntro Statistics](https://www.openintro.org/stat/textbook.php) - David M. Diez, Christopher D. Barr, Mine ├Зetinkaya-Rundel
* [ORCCA: Open Resources for Community College Algebra](https://spaces.pcc.edu/pages/viewpage.action?pageId=52729944) - Portland Community College
* [Ordinary Differential Equations](https://en.wikibooks.org/wiki/Ordinary_Differential_Equations) - Wikibooks
* [Paul's Online Notes: Algebra, Calculus I-III and Differential Equations](https://tutorial.math.lamar.edu) - Paul Dawkins @ Lamar University
* [Plane Geometry (1913)](http://djm.cc/library/Plane_Geometry_Wentworth_Smith_edited.pdf) - George Wentworth, David Eugene Smith (PDF)
* [Planes and Spherical Trigonometry (1915)](http://djm.cc/library/Plane_Spherical_Trigonometry_Wentworth_Smith_edited_2.pdf) - George Wentworth, David Eugene Smith (PDF)
* [Precalculus](https://stitz-zeager.com) - Carl Stitz, Jeff Zeager [(PDF)](https://stitz-zeager.com/szprecalculus07042013.pdf)
* [Probability and Statistics Cookbook](http://statistics.zone)
* [Probability and Statistics EBook](http://wiki.stat.ucla.edu/socr/index.php/Probability_and_statistics_EBook)
* [Probability: Lectures and Labs](https://www.markhuberdatascience.org/probability-textbook) - Mark Huber
* [Proofs and Types](https://www.paultaylor.eu/stable/Proofs+Types) - Jean-Yves Girard, Yves Lafont, Paul Taylor
* [Recreations in Math](http://djm.cc/library/Recreations_in_Mathematics_Licks_edited.pdf) - H. E. Licks (PDF)
* [Sage for Undergraduates](http://www.gregorybard.com/books.html) - Gregory Bard
* [Second Course in Algebra](http://djm.cc/library/Second_Algebra_Hawkes_Luby_Touton_edited.pdf) - Herbert E. Hawkes, William A. Luby, Frank C. Touton (PDF)
* [Seven Sketches in Compositionality: An Invitation to Applied Category Theory](https://arxiv.org/pdf/1803.05316.pdf) - Brendan Fong, David I. Spivak (PDF)
* [Statistical Thinking for the 21st Century](https://statsthinking21.org) - Russell A. Poldrack
* [Statistics Done Wrong](https://www.statisticsdonewrong.com) - Alex Reinhart
* [SticiGui](https://www.stat.berkeley.edu/~stark/SticiGui/) - Philip Stark
* [Tea Time Numerical Analysis](https://lqbrin.github.io/tea-time-numerical/) - Leon Q. Brin
* [The Open Logic Text](https://builds.openlogicproject.org/open-logic-complete.pdf) - Open Logic Project (PDF)
* [Think Bayes: Bayesian Statistics Made Simple](https://www.greenteapress.com/thinkbayes/) - Allen B. Downey (CC BY-NC-SA)
* [Think Stats: Probability and Statistics for Programmers](https://greenteapress.com/thinkstats/) - Allen B. Downey (using Python) (CC BY-NC-SA)
* [Think Bayes: Bayesian Statistics Made Simple](https://www.greenteapress.com/thinkbayes/) - Allen B. Downey
* [Think Stats: Probability and Statistics for Programmers](https://greenteapress.com/thinkstats/) - Allen B. Downey (using Python)
* [Vector Calculus](https://www.mecmath.net) - Michael Corral
* [Yet Another Introductory Number Theory Textbook](https://www.poritz.net/jonathan/share/yaintt.pdf) - Jonathan A. Poritz (PDF)
#### Algebra
* [A Computational Introduction to Number Theory and Algebra](https://shoup.net/ntb/) - Victor Shoup
* [A First Course in Linear Algebra](http://linear.ups.edu) - Rob Beezer
* [A Quick Steep Climb Up Linear Algebra](http://stephendavies.org/quick.pdf) - Stephen Davies (PDF)
* [Abstract Algebra: Theory and Applications](http://abstract.ups.edu) - Tom Judson
* [Advanced Algebra](https://www.math.stonybrook.edu/~aknapp/download/a2-alg-inside.pdf) - Anthony W. Knapp (PDF)
* [Algebra: Abstract and Concrete](https://homepage.divms.uiowa.edu/~goodman/algebrabook.dir/algebrabook.html) - Frederick Goodman
* [Algebra: An Elementary Text-Book, Part I (1904)](http://djm.cc/library/Algebra_Elementary_Text-Book_Part_I_Chrystal_edited.pdf) - G. Chrystal (PDF)
* [Algebra: An Elementary Text-Book, Part II (1900)](http://djm.cc/library/Algebra_Elementary_Text-Book_Part_II_Chrystal_edited02.pdf) - G. Chrystal (PDF)
* [Algebraic Topology](https://pi.math.cornell.edu/~hatcher/AT/ATpage.html) - Allen Hatcher (PDF)
* [Basic Algebra](https://www.math.stonybrook.edu/~aknapp/download/b2-alg-inside.pdf) - Anthony W. Knapp (PDF)
* [Basics of Algebra, Topology, and Differential Calculus](https://www.cis.upenn.edu/~jean/math-basics.pdf) (PDF)
* [Beginning and Intermediate Algebra](http://www.wallace.ccfaculty.org/book/book.html) - Tyler Wallace
* [Course Of Linear Algebra And Multidimensional Geometry](https://arxiv.org/pdf/math/0405323) - Ruslan Sharipov(PDF)
* [Elements of Abstract and Linear Algebra](https://www.math.miami.edu/~ec/book/) - E. H. Connell
* [First Course in Algebra (1910)](http://djm.cc/library/First_Algebra_Hawkes_Luby_Touton_edited.pdf) - Herbert E. Hawkes, William A. Luby, Frank C. Touton (PDF)
* [Lecture Notes of Linear Algebra](https://home.iitk.ac.in/~psraj/mth102/lecture_notes.html) - P. Shunmugaraj, IIT Kanpur (PDF)
* [Lecture Notes on Linear Algebra](https://home.iitk.ac.in/~arlal/book/LA_Solution_Dec20.pdf) - Dr. Arbind K Lal, Sukant Pati (PDF) *( :construction: in process)*
* [Linear Algebra](https://www.math.ucdavis.edu/~linear/linear-guest.pdf) - David Cherney et al. (PDF)
* [Linear Algebra](http://joshua.smcvt.edu/linearalgebra/) - Jim Hefferon
* [Linear Algebra Done Right](https://linear.axler.net) - Sheldon Axler
* [Linear Algebra Done Wrong](https://www.math.brown.edu/streil/papers/LADW/LADW.html) - Sergei Treil
* [Linear Algebra, Infinite Dimensions, and Maple](https://web.archive.org/web/20240313042212/https://herod.math.gatech.edu/Hspace/Hspace.html) - James Herod (HTML) *( :card_file_box: archived)*
* [ORCCA: Open Resources for Community College Algebra](https://spaces.pcc.edu/pages/viewpage.action?pageId=52729944) - Portland Community College
* [Paul's Online Notes: Algebra, Calculus I-III and Differential Equations](https://tutorial.math.lamar.edu) - Paul Dawkins @ Lamar University
* [Second Course in Algebra](http://djm.cc/library/Second_Algebra_Hawkes_Luby_Touton_edited.pdf) - Herbert E. Hawkes, William A. Luby, Frank C. Touton (PDF)
#### Calculus
* [Active Calculus](https://scholarworks.gvsu.edu/books/20/) - Matt Boelkins
* [APEX Calculus](https://www.apexcalculus.com) - Gregory Hartman, Brian Heinold, Troy Siemers, and Dimplekumar Chalishajar
* [Basics of Algebra, Topology, and Differential Calculus](https://www.cis.upenn.edu/~jean/math-basics.pdf) (PDF)
* [Calculus](https://ocw.mit.edu/courses/res-18-001-calculus-fall-2023/pages/textbook/) - Gilbert Strang (PDF)
* [Calculus I](https://resolver.caltech.edu/CaltechBOOK:1985.001) - Jerrold E. Marsden, Alan Weinstein
* [Calculus in Context](http://www.math.smith.edu/~callahan/intromine.html) - James Callahan
* [Calculus Made Easy](https://www.gutenberg.org/ebooks/33283) - Silvanus P. Thompson (PDF)
* [Calculus Volume 1](https://openstax.org/details/books/calculus-volume-1) - Edwin Herman, Gilbert Strang (PDF)
* [Calculus Volume 2](https://openstax.org/details/books/calculus-volume-2) - Edwin Herman, Gilbert Strang (PDF)
* [Calculus Volume 3](https://openstax.org/details/books/calculus-volume-3) - Edwin Herman, Gilbert Strang (PDF)
* [CLP-1 Differential Calculus](https://www.math.ubc.ca/~CLP/CLP1/) - Joel Feldman, Andrew Rechnitzer, Elyse Yeager
* [CLP-2 Integral Calculus](https://www.math.ubc.ca/~CLP/CLP2/) - Joel Feldman, Andrew Rechnitzer, Elyse Yeager
* [CLP-3 Multivariable Calculus](https://www.math.ubc.ca/~CLP/CLP3/) - Joel Feldman, Andrew Rechnitzer, Elyse Yeager
* [CLP-4 Vector Calculus](https://www.math.ubc.ca/~CLP/CLP4/) - Joel Feldman, Andrew Rechnitzer, Elyse Yeager
* [Elements of Differential and Integral Calculus (1911)](http://djm.cc/library/Elements_Differential_Integral_Calculus_Granville_edited_2.pdf) - William Anthony Granville (PDF)
* [Multivariable Calculus](https://people.math.gatech.edu/~cain/notes/calculus.html) - George Cain, James Herod
* [Paul's Online Notes: Algebra, Calculus I-III and Differential Equations](https://tutorial.math.lamar.edu) - Paul Dawkins @ Lamar University
* [Precalculus](https://stitz-zeager.com) - Carl Stitz, Jeff Zeager [(PDF)](https://stitz-zeager.com/szprecalculus07042013.pdf)
* [Vector Calculus](https://www.mecmath.net) - Michael Corral
#### Mathematics For Computer Science
### Mathematics For Computer Science
* [A Mathematical Theory of Communication](https://archive.org/details/bstj27-4-623) - Claude E.Shannon
* [Combinatorial Problems And Exercises (1979)](https://archive.org/details/in.ernet.dli.2015.141538/) - L. Lovasz
@@ -638,7 +571,6 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Graph Theory Exercises](https://www.ime.usp.br/~pf/graph-exercises/) - Paulo Feofiloff (PDF)
* [Isomorphism -- Mathematics of Programming](https://github.com/liuxinyu95/unplugged) - Larry LIU Xinyu
* [Mathematics for Computer Science](https://courses.csail.mit.edu/6.042/spring18/mcs.pdf) - Eric Lehman, F. Thomson Leighton, Albert R. Meyer (PDF)
* [PROGRAM = PROOF](https://www.lix.polytechnique.fr/Labo/Samuel.Mimram/teaching/INF551/course.pdf) - Samuel Mimram (PDF)
### Misc
@@ -651,7 +583,6 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [AsteriskтДв: The Definitive Guide](https://solmu.org/pub/help/Asterisk/3nd_Edition_for_Asterisk_1.8) - Leif Madsen, Jim Van Meggelen, Russell Bryant (HTML)
* [Atomic Design](https://atomicdesign.bradfrost.com) - Brad Frost
* [Barcode Overview](https://www.tec-it.com/download/PDF/Barcode_Reference_EN.pdf) (PDF)
* [Build Secure & Reliable System - Best Practice for Designing, Implementing and Maintaining Systems](https://google.github.io/building-secure-and-reliable-systems/raw/toc.html) - Heather Adkins, Betsy Beyer, Paul Plankinship, Piotr Lewandowski, Ana Oprea, Adam Stubblefield (HTML)
* [Come, Let's Play: Scenario-Based Programming Using Live Sequence Charts](https://www.wisdom.weizmann.ac.il/~playbook/) - David Harel, Rami Marelly
* [Communicating Sequential Processes](http://www.usingcsp.com/cspbook.pdf) - Tony Hoare (PDF)
* [Confessions of an Unintentional CTO: Lessons in Growing a Web App](https://www.jackkinsella.ie/books/confessions_of_an_unintentional_cto) - Jack Kinsella
@@ -667,7 +598,6 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Encyclopedia of Human Computer Interaction 2nd Edition](https://www.interaction-design.org/literature/book/the-encyclopedia-of-human-computer-interaction-2nd-ed)
* [Essential Image Optimization](https://images.guide) - Addy Osmani
* [Foundations of Programming](https://openmymind.net/FoundationsOfProgramming.pdf) - Karl Seguin (PDF)
* [Front-end Debugging Tools Handbook](https://github.com/lala-hakobyan/front-end-debugging-handbook) - Lala Hakobyan
* [Front-End Developer Handbook 2016](https://frontendmasters.com/guides/front-end-handbook/2016/) - Cody Lindley (HTML)
* [Front-End Developer Handbook 2017](https://frontendmasters.com/guides/front-end-handbook/2017/) - Cody Lindley (HTML)
* [Front-End Developer Handbook 2018](https://frontendmasters.com/guides/front-end-handbook/2018/) - Cody Lindley (HTML)
@@ -684,7 +614,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [How To Manage Remote Servers with Ansible](https://www.digitalocean.com/community/books/how-to-manage-remote-servers-with-ansible-ebook) - Erika Heidi (PDF, EPUB)
* [How to Think Like a Computer Scientist](https://openbookproject.net/thinkcs/) - Peter Wentworth, Jeffrey Elkner, Allen B. Downey, Chris Meyers
* [Image Processing in C: Analyzing and Enhancing Digital Images](https://homepages.inf.ed.ac.uk/rbf/BOOKS/PHILLIPS/) - Dwayne Phillips
* [Information Technology and the Networked Economy](https://web.archive.org/web/20200731035935/https://florida.theorangegrove.org/og/file/49843a6a-9a9d-4bad-b4d4-d053f9cdf73e/1/InfoTechNetworkedEconomy.pdf) - Patrick McKeown (PDF) *( :card_file_box: archived)*
* [Information Technology and the Networked Economy](https://web.archive.org/web/20200731035935/https://florida.theorangegrove.org/og/file/49843a6a-9a9d-4bad-b4d4-d053f9cdf73e/1/InfoTechNetworkedEconomy.pdf) - Patrick McKeown (PDF) *(:card_file_box: archived)*
* [Introduction to Scientific Programming in C++ and Fortran](https://web.corral.tacc.utexas.edu/CompEdu/pdf/isp/EijkhoutIntroSciProgramming-book.pdf) - Victor Eijkhout (PDF)
* [IRPF90 Fortran code generator](https://www.gitbook.com/book/scemama/irpf90/details) - Anthony Scemama
* [Learn Programming](https://progbook.org) - Antti Salonen
@@ -708,17 +638,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Record-Playback Test Automation: Sahi & Selenium IDE: Critical Evaluation of Record-Playback Automation Tools](https://leanpub.com/manualToAutomatedWithSeleniumIDEAndSahi) - Shashikant Jagtap *(Leanpub account or valid email requested)*
* [Scientific Programming and Computer Architecture](https://divakarvi.github.io/bk-spca/spca.html) - Divakar Viswanath
* [Signal Computing: Digital Signals in the Software Domain](http://faculty.washington.edu/stiber/pubs/Signal-Computing/Signal%20Computing.pdf) - Michael Stiber, Bilin Zhang Stiber, Eric C. Larson (PDF)
* [Site Reliability Engineering - How Google run production systems](https://sre.google/sre-book/table-of-contents/) - Betsy Beyer, Chris Jones, Jennifer Petoff, Niall Murphy (HTML)
* [Small Memory Software](https://smallmemory.charlesweir.com/book.html) - Charles Weir, James Noble (HTML)
* [Software-Defined Radio for Engineers](https://www.analog.com/media/en/training-seminars/design-handbooks/Software-Defined-Radio-for-Engineers-2018/SDR4Engineers.pdf) - Travis Collins, et al. (PDF)
* [Software Technical Writing: A Guidebook](https://jamesg.blog/book.pdf) - James Gallagher (PDF)
* [The Art of High Perfomance Computing - Volume 1: The Science of Computing](https://theartofhpc.com/istc/index.html) - Victor Eijkhout (HTML)
* [The Art of High Perfomance Computing - Volume 2: Parallel Programming for Science Engineering](https://theartofhpc.com/pcse/index.html) - Victor Eijkhout (HTML)
* [The Art of High Perfomance Computing - Volume 3: Introduction to Scientific Programming](https://github.com/VictorEijkhout/TheArtofHPC_pdfs/blob/main/vol3/EijkhoutIntroSciProgramming-book.pdf) - Victor Eijkhout (PDF)
* [The Art of High Perfomance Computing - Volume 4: HPC Carpentry](https://github.com/VictorEijkhout/TheArtofHPC_pdfs/blob/main/vol4/EijkhoutHPCtutorials.pdf) - Victor Eijkhout (PDF)
* [The Site Reliability Workbook - Practical Ways to Implement SRE](https://sre.google/workbook/table-of-contents/) - Betsy Beyer, Niall Richard Murphy, David K. Rensin, Kent Kawahara, Stephen Thorne (HTML)
* [The Web Development Glossary](https://github.com/frontenddogma/web-development-glossary) тАУ Jens Oliver Meiert
* [Using Z Specification, Refinement, and Proof](http://www.usingz.com/usingz.pdf) - Jim Woodcock, Jim Davies (PDF)
* [Web Almanac](https://almanac.httparchive.org/static/pdfs/web_almanac_2019_en.pdf) (PDF)
* [Writing Native Mobile Apps in a Functional Language Succinctly](https://www.syncfusion.com/ebooks/writing_native_mobile_apps_in_a_functional_language_succinctly) - Vassili Kaplan
@@ -729,7 +649,8 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Beej's Guide to Network Programming - Using Internet Sockets](https://beej.us/guide/bgnet/) - Brian "Beej Jorgensen" Hall (HTML, PDF)
* [Bits, Signals, and Packets: An Introduction to Digital Communications and Networks](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-02-introduction-to-eecs-ii-digital-communication-systems-fall-2012/readings/)
* [Code Connected vol.1](https://hintjens.wdfiles.com/local--files/main%3Afiles/cc1pe.pdf) (PDF) (book on ZeroMQ)
* [Computer Networking : Principles, Protocols and Practice](https://www.computer-networking.info) (HTML, ePub, PDF, Kindle)
* [Computer Networking : Principles, Protocols and Practice](http://cnp3book.info.ucl.ac.be/1st/html/index.html) (HTML, ePub, PDF, Kindle)
* [Computer Networks](https://kanchiuniv.ac.in/coursematerials/VINODKUMAR_COMPUTER_NETWORKS.pdf) - J.Vinoth kumar (PDF)
* [Computer Networks: A Systems Approach](https://book.systemsapproach.org) - Larry Peterson, Bruce Davie (HTML, epub, mobi, PDF)
* [Distributed systems for fun and profit](https://book.mixu.net/distsys/single-page.html)
* [High-Performance Browser Networking](https://hpbn.co) - Ilya Grigorik
@@ -740,8 +661,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [IPv6 for IPv4 Experts](https://sites.google.com/site/yartikhiy/home/ipv6book) - Yar Tikhiy (PDF)
* [Kafka gentle introduction](https://www.gentlydownthe.stream) - Mitch Seymour
* [Kafka, The definitive Guide](https://assets.confluent.io/m/1b509accf21490f0/original/20170707-EB-Confluent_Kafka_Definitive-Guide_Complete.pdf) - Neha Narkhede (PDF)
* [Linux IP Stacks Commentary](https://www.satchell.net/ipstacks/) - Stephen Satchell, H. B. J. Clifford (HTML) *( :construction: in process)*
* [Linux Networking](https://linux-training.be/linuxnet.pdf) - Paul Cobbaut (PDF)
* [Linux IP Stacks Commentary](https://www.satchell.net/ipstacks/) - Stephen Satchell, H. B. J. Clifford (HTML) *(:construction: in process)*
* [Mininet Walkthrough](https://mininet.org/walkthrough/)
* [Network Science](http://networksciencebook.com) - Albert-Laszl├│ Barab├бsi
* [Networking! ACK!](https://wizardzines.com/zines/networking/) - Julia Evans (PDF)
@@ -754,8 +674,7 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
### Object Oriented Programming
* [Object Oriented Programming](https://www.cl.cam.ac.uk/teaching/0910/OOProg/OOP.pdf) - Robert Harle (PDF)
* [OOP тАУ Learn Object Oriented Thinking and Programming](https://files.bruckner.cz/be2a5b2104bf393da7092a4200903cc0/PecinovskyOOP.pdf) - Rudolf Pecinovsky (PDF)
* [Principles of Object-Oriented Programming](https://www.opentextbooks.org.hk/system/files/export/8/8163/pdf/Principles_of_ObjectOriented_Programming_8163_r.pdf) - Stephen Wong, Dung Nguyen, Mark Husband (PDF) (CC BY-SA)
* [OOP тАУ Learn Object Oriented Thinking and Programming](https://files.bruckner.cz/be2a5b2104bf393da7092a4200903cc0/PecinovskyOOP.pdf) - Rudolf Pecinovsky (PDF)
### Open Source Ecosystem
@@ -773,11 +692,10 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [Innovation Happens Elsewhere](https://dreamsongs.com/IHE/IHE.html) - Ron Goldman, Richard P. Gabriel
* [Introduction to Networking](https://do1.dr-chuck.net/net-intro/EN_us/net-intro.pdf) - Charles Severance (PDF)
* [Open Advice: FOSS: What We Wish We Had Known When We Started](http://open-advice.org)
* [Open Source Essentials](https://learning.lpi.org/en/learning-materials/050-100/) - by Linux Professional Institute (PDF)
* [Open source in Brazil](https://www.oreilly.com/ideas/open-source-in-brazil) - Andy Oram
* [Producing Open Source Software](https://producingoss.com) - Karl Fogel
* [Roads and Bridges: The Unseen Labor Behind Our Digital Infrastructure](https://www.fordfoundation.org/work/learning/research-reports/roads-and-bridges-the-unseen-labor-behind-our-digital-infrastructure/) - Nadia Eghbal
* [The Architecture of Open Source Applications: Vol. 1: Elegance, Evolution, and a Few Fearless Hacks; Vol. 2: Structure, Scale, and a Few More Fearless Hacks](https://www.aosabook.org/en/index.html)
* [The Architecture of Open Source Applications: Vol. 1: Elegance, Evolution, and a Few Fearless Hacks; Vol. 2: Structure, Scale, and a Few More Feerless Hacks](https://www.aosabook.org/en/index.html)
* [The Art of Community](https://artofcommunityonline.org/Art_of_Community_Second_Edition.pdf) - Jono Bacon (PDF)
* [The Cathedral and the Bazaar](http://www.catb.org/esr/writings/cathedral-bazaar/) - Eric S. Raymond
* [The Future of the Internet](https://futureoftheinternet.org) - Jonathan Zittrain
@@ -790,19 +708,19 @@ Books that cover a specific programming language can be found in the [BY PROGRAM
* [A short introduction to operating systems (2001)](https://markburgess.org/os/os.pdf) - Mark Burgess (PDF)
* [Computer Science from the Bottom Up](https://www.bottomupcs.com) - Ian Wienand (PDF)
* [Flexible Operating System Internals: The Design and Implementation of the Anykernel and Rump Kernels](https://aaltodoc.aalto.fi/handle/123456789/6318) - Antti Kantee (PDF)
* [How to Make a Computer Operating System](https://github.com/SamyPesse/How-to-Make-a-Computer-Operating-System) - Samy Pesse *( :construction: in process)*
* [How to Make a Computer Operating System](https://github.com/SamyPesse/How-to-Make-a-Computer-Operating-System) - Samy Pesse (:construction: *in process*)
* [How to write a simple operating system in assembly language](https://mikeos.sourceforge.net/write-your-own-os.html) - Mike Saunders (HTML)
* [Linux Kernel in a Nutshell](http://www.linuxtopia.org/online_books/linux_kernel/kernel_configuration) - Greg Kroah-Hartman (HTML)
* [Making Servers Work: A Practical Guide to Linux System Administration](https://www.digitalocean.com/community/books/sysadmin-ebook-making-servers-work) - Jamon Camisso (PDF, EPUB)
* [Operating Systems: From 0 to 1](https://github.com/tuhdo/os01/releases/tag/0.0.1) - Tu, Ho Doang (PDF) ( :construction: *in process*)
* [Operating Systems: Three Easy Pieces](https://pages.cs.wisc.edu/~remzi/OSTEP/) - Remzi H. Arpaci-Dusseau, Andrea C. Arpaci-Dusseau (PDF)
* [Operating Systems and Middleware](https://gustavus.edu/mcs/max/os-book/) - Max Hailperin (PDF, LaTeX)
* [Operating Systems: From 0 to 1](https://github.com/tuhdo/os01/releases/tag/0.0.1) - Tu, Ho Doang (PDF) (:construction: *in process*)
* [Operating Systems: Three Easy Pieces](https://pages.cs.wisc.edu/~remzi/OSTEP/) - Remzi H. Arpaci-Dusseau and Andrea C. Arpaci-Dusseau (PDF)
* [Practical File System Design: The Be File System](https://www.nobius.org/~dbg/practical-file-system-design.pdf) - Dominic Giampaolo (PDF)
* [Project Oberon: The Design of an Operating System, a Compiler, and a Computer](https://people.inf.ethz.ch/wirth/ProjectOberon/index.html) - Niklaus Wirth, J├╝rg Gutknecht (PDF)
* [The Art of Unix Programming](http://catb.org/esr/writings/taoup/html/) - Eric S. Raymond (HTML)
* [The Little Book About OS Development](https://littleosbook.github.io) - Erik Helin, Adam Renberg - (PDF, HTML)
* [The Little Book of Semaphores](https://greenteapress.com/semaphores/) - Allen B. Downey (PDF) (CC BY-NC-SA)
* [The Little Book of Semaphores](https://greenteapress.com/semaphores/) - Allen B. Downey (PDF)
* [Think OS: A Brief Introduction to Operating Systems](https://www.greenteapress.com/thinkos/index.html) - Allen B. Downey (PDF)
* [UNIX Application and System Programming, lecture notes](http://www.compsci.hunter.cuny.edu/~sweiss/course_materials/unix_lecture_notes.php) - Stewart Weiss (PDF) (CC BY-SA)
* [UNIX Application and System Programming, lecture notes](http://www.compsci.hunter.cuny.edu/~sweiss/course_materials/unix_lecture_notes.php) - Stewart Weiss (PDF)
* [Writing a Simple Operating System from Scratch](https://www.cs.bham.ac.uk/~exr/lectures/opsys/10_11/lectures/os-dev.pdf) - Nick Blundell (PDF)
* [Xv6, a simple Unix-like teaching operating system](https://pdos.csail.mit.edu/6.828/2022/xv6.html) - Russ Cox, Frans Kaashoek and Robert Morris (PDF, HTML)
@@ -827,17 +745,15 @@ Kerridge (PDF) (email address *requested*, not required)
### Professional Development
* [Clean Code Developer: An initiative for more professionalism in software development](https://www.gitbook.com/book/ccd_school/clean-code-developer-com/details) *( :construction: in process)*
* [Confessions of an IT Manager](https://assets.red-gate.com/community/books/confessions-of-an-it-manager-ebook.pdf) - Phil Factor (PDF)
* [Don't Just Roll the Dice](https://assets.red-gate.com/community/books/DJRTD_eBook.pdf) - Neil Davidson (PDF)
* [Clean Code Developer: An initiative for more professionalism in software development](https://www.gitbook.com/book/ccd_school/clean-code-developer-com/details) (:construction: *in process*)
* [Confessions of an IT Manager](https://www.red-gate.com/library/confessions-of-an-it-manager) - Phil Factor (PDF)
* [Don't Just Roll the Dice](https://www.red-gate.com/library/dont-just-roll-the-dice) - Neil Davidson (PDF)
* [How to Do What You Love & Earn What YouтАЩre Worth as a Programmer](https://leanpub.com/dowhatyoulove/read) - Reginald Braithwaite
* [How to Learn to Code & Get a Developer Job in 2023](https://www.freecodecamp.org/news/learn-to-code-book) - Quincy Larson
* [How to Stand Out as a Software Engineer](https://github.com/lvndry/how-to-stand-out-as-a-software-engineer/blob/main/how_to_stand_out_as_a_software_engineer.pdf) - Landry Monga (PDF)
* [Professional Software Development For Students](https://mixmastamyk.bitbucket.io/pro_soft_dev/intro.html) - Mike G. Miller
* [Software Engineering at Google](https://abseil.io/resources/swe-book) - Titus Winters, Tom Manshreck, Hyrum Wright
* [Software Environment Concepts](https://softwareconcepts.vercel.app) - Amr Elmohamady *( :construction: in process)*
* [Succeed In Software: A Comprehensive Guide To Software Career Excellence](https://github.com/succeedinsoftware/book) - Sean Cannon (PDF, ePUB) (CC BY-NC-ND)
* [Teaching Tech Together](http://teachtogether.tech/en/) - Greg Wilson (HTML)
* [Software Environment Concepts](https://softwareconcepts.vercel.app) - Amr Elmohamady (:construction: *in process*)
* [What I've Learned From Failure](https://leanpub.com/shippingsoftware/read) - Reginald Braithwaite
@@ -848,36 +764,30 @@ Kerridge (PDF) (email address *requested*, not required)
* [Introduction to Computer Science](https://www.cse.iitd.ernet.in/~suban/CSL102/) - Subhashis Banerjee, IIT Delhi
* [Introduction to Computing](https://www.computingbook.org) - David Evans
* [Principled Programming / Introduction to Coding in Any Imperative Language](https://www.cs.cornell.edu/info/people/tt/Principled_Programming.html) - Tim Teitelbaum
* [Programming and Programming Languages](https://papl.cs.brown.edu/2019/) - Shriram Krishnamurthi (PDF)
* [Programming Languages: Application and Interpretation (2nd Edition)](https://cs.brown.edu/~sk/Publications/Books/ProgLangs/) - Shriram Krishnamurthi (HTML, PDF)
* [Programming Languages: Application and Interpretation (3rd Edition)](https://www.plai.org/3/5/plai-v325.pdf) - Shiriram Krishnamurthi (PDF) (CC BY-NC-SA)
* [Structure and Interpretation of Computer Programs](https://web.mit.edu/6.001/6.037/sicp.pdf) - Harold Abelson, Gerald Jay Sussman, Julie Sussman (PDF) (CC BY-SA)
* [Structure and Interpretation of Computer Programs](https://sarabander.github.io/sicp/html/index.xhtml) - Harold Abelson, Gerald Jay Sussman, Julie Sussman (HTML) (CC BY-SA)
* [Programming and Programming Languages](https://papl.cs.brown.edu/2019/) - Shriram Krishnamurthi
* [Programming Languages: Application and Interpretation (2nd Edition)](https://cs.brown.edu/~sk/Publications/Books/ProgLangs/) - Shriram Krishnamurthi
* [Structure and Interpretation of Computer Programs](https://web.mit.edu/6.001/6.037/sicp.pdf) - Harold Abelson, Gerald Jay Sussman, Julie Sussman (PDF)
* [Structure and Interpretation of Computer Programs](https://sarabander.github.io/sicp/html/index.xhtml) - Harold Abelson, Gerald Jay Sussman, Julie Sussman (HTML)
* [The Black Art of Programming](http://self.gutenberg.org/wplbn0002828847-the-black-art-of-programming-by-mcilroy-mark.aspx?) - Mark McIlroy
* [The Craft of Programming](https://kilthub.cmu.edu/articles/The_Craft_of_Programming/6610514) - John C. Reynolds
* [The Nature of Code](https://natureofcode.com/book) - Daniel Shiffman (HTML)
* [The Super Programmer](https://github.com/keyvank/tsp) - Keyvan Kambakhsh (PDF, HTML) *( :construction: in process)*
* [Think Complexity](https://greenteapress.com/wp/think-complexity-2e/) - Allen B. Downey (2nd Edition) (PDF, HTML) (CC BY-NC-SA)
* [Think Complexity](https://greenteapress.com/wp/think-complexity-2e/) - - Allen B. Downey (2nd Edition) (PDF, HTML)
### Programming Paradigms
* [Flow based Programming](https://jpaulmorrison.com/fbp/) - J Paul Morrison
* [Introduction to Functional Programming](https://www.cl.cam.ac.uk/teaching/Lectures/funprog-jrh-1996/) - J. Harrison
* [Learn Functional Programming](https://learn-functional-programming.com) - G. Jovic (HTML)
* [Making Sense of Stream Processing](https://assets.confluent.io/m/2a60fabedb2dfbb1/original/20190307-EB-Making_Sense_of_Stream_Processing_Confluent.pdf) - Martin Kleppmann (PDF)
* [Mostly Adequate Guide to Functional Programming](https://mostly-adequate.gitbooks.io/mostly-adequate-guide/content/) - Mostly Adequate Core Team
* [The Pure Function Pipeline Data Flow v3.0 ---- the Grand Unified Programming Theory](https://github.com/linpengcheng/PurefunctionPipelineDataflow) - Lin Pengcheng
* [Type Theory and Functional Programming](https://www.cs.kent.ac.uk/people/staff/sjt/TTFP/) - Simon Thompson
* [Type Theory and Functional Programming](https://www.cs.kent.ac.uk/people/staff/sjt/TTFP/)
### Prompt Engineering
* [DALLE-E 2 prompt book](https://dallery.gallery/wp-content/uploads/2022/07/The-DALL%C2%B7E-2-prompt-book.pdf) - Dallery.Gallery, Guy Parson (PDF)
* [Guide to Prompt Engineering](https://web.archive.org/web/20241107021929/https://codeahoy.com/learn/promptengineering/toc/) - CodeAhoy (HTML) *( :card_file_box: archived)*
* [LLM Prompt Engineering Simplified Book](https://github.com/AkmmusAI/LLM-Prompt-Engineering-Simplified-Book) - Katikapalli Subramanyam Kalyan (GitHub)
* [Prompt Engineering](https://www.innopreneur.io/wp-content/uploads/2025/04/22365_3_Prompt-Engineering_v7-1.pdf) - Lee Boonstra (PDF)
* [Prompt Engineering Guide](https://learnprompting.org/docs/introduction) - LearnPrompting (HTML)
* [Guide to Prompt Engineering](https://codeahoy.com/learn/promptengineering/toc) - CodeAhoy (HTML)
* [Prompt Engineering Guide](https://www.promptingguide.ai) - DAIR.AI (HTML)
@@ -905,9 +815,8 @@ Kerridge (PDF) (email address *requested*, not required)
### Reverse Engineering
* [BIOS Disassembly Ninjutsu Uncovered 1st Edition](https://bioshacking.blogspot.co.uk/2012/02/bios-disassembly-ninjutsu-uncovered-1st.html) - Darmawan Salihun (PDF)
* [Debugging with GDB](https://sourceware.org/gdb/current/onlinedocs/gdb.html) - Free Software Foundation (HTML, PDF)
* [Hacking the Xbox: An Introduction to Reverse Engineering](https://www.nostarch.com/xboxfree/) - Andrew "bunnie" Huang
* [iOS App Reverse Engineering](https://github.com/iosre/iOSAppReverseEngineering) - Zishe Sha (PDF)
* [iOS App Reverse Engineering](https://github.com/iosre/iOSAppReverseEngineering) (PDF)
### Search Engines
@@ -922,37 +831,28 @@ Kerridge (PDF) (email address *requested*, not required)
* [A Graduate Course in Applied Cryptography](https://toc.cryptobook.us)
* [Crypto 101 - Crypto for everyone](https://www.crypto101.io)
* [Cryptography](https://en.wikibooks.org/wiki/Cryptography) - Wikibooks (HTML) *( :construction: in process)*
* [Cryptography](https://en.wikibooks.org/wiki/Cryptography) - Wikibooks (HTML) (:construction: *in process*)
* [CryptoParty Handbook](https://unglue.it/work/141611/)
* [Fuzzing Book](https://www.fuzzingbook.org) - Andreas Zeller, Rahul Gopinath, Marcel B├╢hme, Gordon Fraser, Christian Holler (HTML)
* [Gray Hat Hacking: The Ethical Hacker's Handbook](https://pages.cs.wisc.edu/~ace/media/gray-hat-hacking.pdf) - Allen Harper, Jonathan Ness, Chris Eagle, Shon Harris, Gideon Lenkey, Terron Williams (PDF)
* [Handbook of Applied Cryptography](https://cacr.uwaterloo.ca/hac/index.html)
* [How HTTPS works](https://howhttps.works) - dnsimple
* [How to deal with Passwords](https://github.com/MHM5000/pass)
* [Information Security Management](https://www.infosecuritybook.com) - Marcos S├кmola (PDF)
* [Intrusion Detection Systems with Snort](https://ptgmedia.pearsoncmg.com/images/0131407333/downloads/0131407333.pdf) (PDF)
* [Modern Cryptography Volume 1: A Classical Introduction](https://link.springer.com/book/10.1007/978-981-19-0920-7) - Zhiyong Zheng, Kun Tian, Fengxia Liu
* [Modern Cryptography Volume 2: A Classical Introduction](https://link.springer.com/book/10.1007/978-981-19-7644-5) - Zhiyong Zheng, Kun Tian, Fengxia Liu
* [Network Security](https://www.open.edu/openlearn/digital-computing/network-security/altformat-printable) - OpenLearn (PDF)
* [OpenSSL Cookbook](https://www.feistyduck.com/library/openssl-cookbook/)
* [OWASP Mobile Security Testing Guide](https://mobile-security.gitbook.io/mobile-security-testing-guide/) - Bernhard Mueller et al.
* [OWASP Testing Guide 4.2](https://owasp.org/www-project-web-security-testing-guide/v42/) - The OWASP┬о Foundation (HTML, [PDF](https://github.com/OWASP/wstg/releases/download/v4.2/wstg-v4.2.pdf))
* [OWASP Top 10 for .NET Developers](https://www.troyhunt.com/2011/12/free-ebook-owasp-top-10-for-net.html)
* [Practical Cryptography for Developer](https://cryptobook.nakov.com) - Svetlin Nakov (GitBook) ( :construction: *in process*)
* [Practical Cryptography for Developer](https://cryptobook.nakov.com) - Svetlin Nakov (GitBook) (:construction: *in process*)
* [Programming Differential Privacy](https://programming-dp.com) - Joseph Near, Chik├й Abuah (HTML, PDF)
* [SecOps Bit By Bit: Roadmap for First-Time CTOs and Startup Founders](https://leanpub.com/secops-bit-by-bit) - Alex Yarotsky (PDF) *(Leanpub account or valid email requested)*
* [Security Engineering](https://www.cl.cam.ac.uk/~rja14/book.html)
* [Security Essentials](https://learning.lpi.org/en/learning-materials/020-100/) - by Linux Professional Institute (PDF)
* [The Joy of Cryptography (2021)](https://joyofcryptography.com/pdf/book.pdf) - Mike Rosulek (PDF)
* [The MoonMath Manual to zk-SNARKs](https://leastauthority.com/community-matters/moonmath-manual/) - Least Authority
* [The SELINUX Coloring Book](https://github.com/mairin/selinux-coloring-book) - Daniel J Walsh, M├бir├нn Duffy (PDF) (CC BY-SA)
* [The SELinux Notebook](https://github.com/SELinuxProject/selinux-notebook) - Richard Haines, Paul Moore, SELinux Community (HTML, PDF, EPUB, azw3) (GFDL)
### Software Architecture
* [A Primer on Design Patterns](https://leanpub.com/aprimerondesignpatterns/read) - Rahul Batra (HTML)
* [Agile Planning: From Ideas to Story Cards](https://launchschool.com/books/agile_planning) - Launch School
* [Architectural Metapatterns: The Pattern Language of Software Architecture](https://github.com/denyspoltorak/publications/tree/main/ArchitecturalMetapatterns) - Denys Poltorak, `edt.:` Lars Nood├йn (PDF, EPUB, ODT) (CC BY)
* [Architectural Styles and the Design of Network-based Software Architectures](https://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm) - Roy Thomas Fielding
* [Best Kept Secrets of Peer Code Review](https://smartbear.com/lp/ebook/collaborator/secrets-of-peer-code-review/)
* [Building Secure & Reliable Systems](https://static.googleusercontent.com/media/landing.google.com/en//sre/static/pdf/Building_Secure_and_Reliable_Systems.pdf) - Heather Adkins, Betsy Beyer, Paul Blankinship, Piotr Lewandowski, Ana Oprea, Adam Stubblefield (PDF)
@@ -961,16 +861,14 @@ Kerridge (PDF) (email address *requested*, not required)
* [Designing Event-Driven Systems. Concepts and Patterns for Streaming Services with Apache Kafka](https://assets.confluent.io/m/7a91acf41502a75e/original/20180328-EB-Confluent_Designing_Event_Driven_Systems.pdf) - Ben Stopford (PDF)
* [Developing Reactive Microservices](https://info.lightbend.com/COLL-20XX-Developing-Reactive-Microservices_Landing-Page.html) (email address *requested*, not required)
* [Domain Driven Design Quickly](https://www.infoq.com/minibooks/domain-driven-design-quickly)
* [Domain-Driven Design Reference](https://www.domainlanguage.com/ddd/reference) - Eric Evans (CC BY)
* [Domain-Driven Design Reference](https://www.domainlanguage.com/ddd/reference) - Eric Evans
* [DSL Engineering: Designing, Implementing and Using Domain-Specific Languages](http://dslbook.org) - Markus Voelter
* [Engineering Software as a Service: An Agile Approach Using Cloud Computing](https://e.saasbook.info) - Armando Fox, David Patterson (HTML) (CC BY-NC-ND)
* [Evidence-based Software Engineering](http://knosof.co.uk/ESEUR) - Derek M. Jones (PDF) (CC BY-SA)
* [Exploring CQRS and Event Sourcing](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/jj554200(v=pandp.10)) - Dominic Betts, Juli├бn Dom├нnguez, Grigori Melnik, Mani Subramanian, Fernando Simonazzi ([EPUB, PDF](https://www.microsoft.com/en-us/download/details.aspx?id=34774) - [code samples](https://go.microsoft.com/fwlink/p/?linkid=258571))
* [Guide to the Software Engineering Body of Knowledge](https://www.computer.org/education/bodies-of-knowledge/software-engineering/v3) (email address *requested*)
* [How to Design Programs](https://www.htdp.org)
* [How to Write Unmaintainable Code](https://mindprod.com/jgloss/unmain.html)
* [Kanban and Scrum - making the most of both](https://www.infoq.com/minibooks/kanban-scrum-minibook)
* [Microservices AntiPatterns and Pitfalls](http://web.archive.org/web/20210205164251/https://www.oreilly.com/programming/free/files/microservices-antipatterns-and-pitfalls.pdf) - Mark Richards (PDF) *( :card_file_box: archived)*
* [Microservices AntiPatterns and Pitfalls](http://web.archive.org/web/20210205164251/https://www.oreilly.com/programming/free/files/microservices-antipatterns-and-pitfalls.pdf) - Mark Richards (PDF) *(:card_file_box: archived)*
* [Microservices vs. Service-Oriented Architecture](https://www.oreilly.com/radar/microservices-vs-service-oriented-architecture/) - Mark Richards (HTML)
* [Migrating to Cloud-Native Application Architectures](https://developers.redhat.com/books/migrating-microservice-databases-relational-monolith-distributed-data/) (email address *requested*) (PDF)
* [Naked objects](http://downloads.nakedobjects.net/resources/Pawson%20thesis.pdf) - Richard Pawson (PDF)
@@ -980,7 +878,6 @@ Kerridge (PDF) (email address *requested*, not required)
* [Reactive Microservices Architecture](https://www.lightbend.com/ebooks/reactive-microservices-architecture-design-principles-for-distributed-systems-oreilly) (email address *requested*)
* [Reactive Microsystems: The Evolution of Microservices at Scale](https://www.lightbend.com/ebooks/reactive-microsystems-evolution-of-microservices-scalability-oreilly) (email address *requested*)
* [Refactor Like a Superhero](https://github.com/bespoyasov/refactor-like-a-superhero-online-book/blob/main/manuscript-en/README.md) - Alex Bespoyasov
* [Safe by design](https://github.com/SanQri/safe-by-design) - Mykola Haliullin
* [Scrum and XP from the Trenches](https://www.infoq.com/minibooks/scrum-xp-from-the-trenches-2)
* [Serverless apps: Architecture, patterns, and Azure implementation](https://docs.microsoft.com/en-us/dotnet/standard/serverless-architecture/)
* [Serverless Design Patterns and Best Practices](https://www.packtpub.com/free-ebooks/serverless-design-patterns-and-best-practices) - Brian Zambrano (Packt account *required*)
@@ -990,11 +887,9 @@ Kerridge (PDF) (email address *requested*, not required)
* [Software Engineering for Internet Applications](https://philip.greenspun.com/seia/)
* [Source Making Design Patterns and UML](https://sourcemaking.com/design_patterns)
* [Test Driven Development, Extensive Tutorial](https://github.com/grzesiek-galezowski/tdd-ebook) - Grzegorz Ga┼В─Щzowski
* [The Accidental CTO: How I Scaled from Zero to a Million Stores on Dukaan, Without a CS Degree](https://github.com/subhashchy/The-Accidental-CTO) - Subhash Choudhary
* [The Catalog of Design Patterns](https://refactoring.guru/design-patterns/catalog)
* [The Site Reliability Workbook](https://landing.google.com/sre/workbook/toc/) - Betsy Beyer, Niall Richard Murphy, David K. Rensin, Kent Kawahara, Stephen Thorne
* [Web API Design](https://pages.apigee.com/rs/apigee/images/api-design-ebook-2012-03.pdf) - Brian Mulloy (PDF)
* [Web Browser Engineering](https://browser.engineering/index.html) - Pavel Panchekha, Chris Harrelson
* [Working with Web APIs](https://launchschool.com/books/working_with_apis) - Launch School
* [Your API Is Bad](https://leanpub.com/yourapiisbad/read) - Paddy Foran
@@ -1012,10 +907,9 @@ Kerridge (PDF) (email address *requested*, not required)
* [Category Theory for Programmers](https://github.com/hmemcpy/milewski-ctfp-pdf) - Bartosz Milewski (PDF)
* [Delftse Foundations of Computation](https://textbooks.open.tudelft.nl/textbooks/catalog/book/13) - Stefan Hugtenburgand, Neil Yorke-Smith @ TU Delft Open (PDF)
* [Homotopy Type Theory: Univalent Foundations of Mathematics](https://homotopytypetheory.org/book/) (PDF)
* [Introduction to Theoretical Computer Science](https://files.boazbarak.org/introtcs/lnotes_book.pdf) - Boaz Barak (PDF)
* [Introduction to Theory of Computation](https://cglab.ca/~michiel/TheoryOfComputation/) - Anil Maheshwari, Michiel Smid (PDF)
* [Models of Computation](https://cs.brown.edu/people/jes/book/) - John E. Savage
* [Principles of Programming Languages](https://web.archive.org/web/20150418034451/http://www.cs.jhu.edu/~scott/pl/book/dist/) - Scott F. Smith *( :card_file_box: archived)*
* [Principles of Programming Languages](https://web.archive.org/web/20150418034451/http://www.cs.jhu.edu/~scott/pl/book/dist/) - Scott F. Smith *(:card_file_box: archived)*
* [Programming in Martin-L├╢f's Type Theory](https://www.cse.chalmers.se/research/group/logic/book/) - Bengt Nordstroem
* [Programming Languages: Application and Interpretation (2nd Edition)](https://cs.brown.edu/~sk/Publications/Books/ProgLangs/) - Shriram Krishnamurthi
* [Programming Languages: Theory and Practice](http://people.cs.uchicago.edu/~blume/classes/aut2008/proglang/text/offline.pdf) - Robert Harper (PDF)
@@ -1038,11 +932,11 @@ Kerridge (PDF) (email address *requested*, not required)
* [Git Magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/) - Ben Lynn, et al. (HTML, PDF, EPUB)
* [Git Notes for Professionals](https://goalkicker.com/GitBook) - Compiled from StackOverflow Documentation (PDF)
* [Git Pocket Guide](https://www.oreilly.com/library/view/git-pocket-guide/9781449327507) - Richard E. Silverman
* [Git Reference](https://web.archive.org/web/20170602211147/http://gitref.org/) - The GitHub team *( :card_file_box: archived)*
* [Git Reference](https://web.archive.org/web/20170602211147/http://gitref.org/) - The GitHub team *(:card_file_box: archived)*
* [Git Succinctly, Syncfusion](https://www.syncfusion.com/resources/techportal/ebooks/git) - Ryan Hodson (PDF, Kindle) (email address *requested*, not required)
* [Git Tutorial](https://www.tutorialspoint.com/git/) - Tutorials Point (HTML, PDF)
* [Git-Tutorial For-Beginners](https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners) - HubSpot Product Team
* [Git Workflows](https://web.archive.org/web/20210910133251/http://documentup.com/skwp/git-workflows-book) - Yan Pritzker *( :card_file_box: archived)*
* [Git Workflows](https://web.archive.org/web/20210910133251/http://documentup.com/skwp/git-workflows-book) - Yan Pritzker *(:card_file_box: archived)*
* [Happy Git and GitHub for the useR](https://happygitwithr.com) - Jenny Bryan
* [Hg Init: a Mercurial Tutorial](https://hginit.github.io) - Joel Spolsky
* [How to Collaborate on GitHub: A mini book about collaborating on GitHub](https://github.com/eonist/How-to-collaborate-on-github) - Andr├й J
@@ -1054,7 +948,7 @@ Kerridge (PDF) (email address *requested*, not required)
* [Mercurial: The Definitive Guide 2nd edition](https://book.mercurial-scm.org) - Bryan O'Sullivan
* [Pro Git](https://git-scm.com/book/en/) - Scott Chacon, Ben Straub (HTML, PDF, EPUB, Kindle)
* [Pro Git Reedited](https://leanpub.com/progitreedited/read) - Jon Forrest
* [Ry's Git Tutorial](https://web.archive.org/web/20161121145226/http://rypress.com:80/tutorials/git/index) - Ryan Hodson *( :card_file_box: archived)*
* [Ry's Git Tutorial](https://web.archive.org/web/20161121145226/http://rypress.com:80/tutorials/git/index) - Ryan Hodson *(:card_file_box: archived)*
* [Subversion Version Control](https://ptgmedia.pearsoncmg.com/images/0131855182/downloads/Nagel_book.pdf) - William Nagel (PDF)
* [Think Like (a) Git: A Guide for the Perplexed](https://think-like-a-git.net) - Sam Livingston-Gray
* [Version Control with Subversion](https://svnbook.red-bean.com/index.en.html) - Ben Collins-Sussman, Brian W. Fitzpatrick, C. Michael Pilato
@@ -1064,7 +958,7 @@ Kerridge (PDF) (email address *requested*, not required)
* [Book of Speed](https://www.bookofspeed.com) - Stoyan Stefanov
* [Designing for Performance](https://designingforperformance.com) - Lara Hogan
* [High Performance Accelerated Websites](https://thisisyuu.github.io/ebook) - Anshul (HTML) *( :construction: in process)*
* [High Performance Accelerated Websites](https://thisisyuu.github.io/ebook) - Anshul (HTML) (:construction: *in process*)
* [High Performance Browser Networking](https://hpbn.co) - Ilya Grigorik
* [Mature Optimization](https://carlos.bueno.org/optimization/mature-optimization.pdf) - Carlos Bueno (PDF)
-5
View File
@@ -18,11 +18,6 @@
* [Programmera spel i C++ f├╢r nyb├╢rjare](https://sv.wikibooks.org/wiki/Programmera_spel_i_C%2B%2B_f%C3%B6r_nyb%C3%B6rjare) - Wikibooks
### Git
* [Pro Git](https://git-scm.com/book/sv/v2) - (HTML) *( :construction: in process)*
### Fortran
* [L├дrobok i Fortran 95](http://www.boein.se/f95.pdf) - Link├╢pings Universitet, Bo Einarsson (PDF)
+9 -41
View File
@@ -1,16 +1,12 @@
## Index
* [AR/VR/MR](#ar-vr-mr)
* [C++](#cpp)
* [C Programming Language](#c-programming-language)
* [Computer Vision](#computer-vision)
* [DevOps](#devops)
* [Ezhil](#ezhil)
* [Git/Github](#git-github)
* [Hadoop](#hadoop)
* [HTML and CSS](#html-and-css)
* [IOT](#iot)
* [JavaScript](#javascript)
* [Linux](#linux)
* [Machine Learning](#machine-learning)
* [MySQL](#mysql)
* [Pandas Python](#pandas-python)
@@ -18,7 +14,6 @@
* [Ruby](#ruby)
* [Selenium](#selenium)
* [Software Architecture](#software-architecture)
* [Software Testing](#software-testing)
* [Wordpress](#wordpress)
@@ -27,9 +22,9 @@
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН VR/AR/MR](https://freetamilebooks.com/ebooks/vr_ar_mr/) - роЗро░ро╛.роЕроЪрпЛроХройрпН (PDF)
### <a id="cpp"></a>C++
### C Programming Language
* [роЪро┐++ роорпКро┤ро┐](https://www.nselva.com/book/C-plus-plus-book.pdf) - рои.роЪрпЖро▓рпНро╡роХрпБрооро╛ро░рпН (PDF)
* [C Programming Language Tamil](https://www.tamilpdfbooks.com/download.php?id=19978#pdf) - Sivalingam M (PDF)
### Computer Vision
@@ -37,29 +32,15 @@
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН Computer Vision](https://freetamilebooks.com/ebooks/computer_vision/) - роЗро░ро╛.роЕроЪрпЛроХройрпН (PDF)
### DevOps
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН DevOps тАУ роХрогро┐ройро┐ роЕро▒ро┐ро╡ро┐ропро▓рпН](https://freetamilebooks.com/ebooks/learn_devops_in_tamil/) - родрпБ.роиро┐родрпНропро╛ (PDF)
### Ezhil
* [Write Code in Tamil-Ezhil Programming Language](https://ezhillang.wordpress.com/wp-content/uploads/2022/01/book-write-code-in-tamil-2015.pdf) - роорпБродрпНродрпИропро╛ роЕрогрпНрогро╛рооро▓рпИрпИ, роОройрпН.роЪрпКроХрпНроХройрпН (PDF)
### Git Github
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН роХро┐роЯрпН(Git) тАУ родрпЖро╛ро┤ро┐ро▓рпНроирпБроЯрпНрокроорпН](https://freetamilebooks.com/ebooks/eliya_tamizhil_git/) - роХро┐.роорпБродрпНродрпБро░ро╛рооро▓ро┐роЩрпНроХроорпН (PDF)
### Hadoop
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН Big Data](https://freetamilebooks.com/ebooks/learn-bigdata-in-tamil) - родрпБ.роиро┐родрпНропро╛ (PDF)
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН Big Data](https://freetamilebooks.com/ebooks/learn-bigdata-in-tamil) - родрпБ. роиро┐родрпНропро╛ (PDF)
### HTML and CSS
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН CSS](https://freetamilebooks.com/ebooks/learn-css-in-tamil/) - родрпБ.роиро┐родрпНропро╛ (PDF)
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН CSS](https://freetamilebooks.com/ebooks/learn-css-in-tamil/) - Kaniyam Foundation (PDF)
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН HTML](https://freetamilebooks.com/htmlbooks/html-book/Learn-HTML-in-Tamil.html) = Th . Srinivasan (PDF)
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН HTML](https://noolaham.net/project/51/5090/5090.pdf) - ро╡рпЗ.роиро╡роорпЛроХройрпН (PDF)
@@ -71,19 +52,12 @@
### JavaScript
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН JavaScript](https://freetamilebooks.com/ebooks/learn-javascript-in-tamil/) - родрпБ.роиро┐родрпНропро╛ (PDF)
* [родрпБро╡роХрпНроХ роиро┐ро▓рпИропро╛ро│ро░рпНроХро│рпБроХрпНроХро╛рой JavaScript роЙро░рпИроиро┐ро░ро▓рпН](https://freetamilebooks.com/ebooks/javascript_for_beginner/) - роЪ.роХрпБрокрпНрокройрпН (PDF)
### Linux
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН GNU/Linux - рокро╛роХроорпН - 1](https://freetamilebooks.com/ebooks/learn-gnulinux-in-tamil-part1/) - родрпБ.роиро┐родрпНропро╛ (PDF)
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН GNU/Linux - рокро╛роХроорпН - 2](https://freetamilebooks.com/ebooks/learn-gnulinux-in-tamil-part2/) - родрпБ.роиро┐родрпНропро╛ (PDF)
* [родрпБро╡роХрпНроХ роиро┐ро▓рпИропро╛ро│ро░рпНроХро│рпБроХрпНроХро╛рой JavaScript роЙро░рпИроиро┐ро░ро▓рпН](https://freetamilebooks.com/ebooks/javascript_for_beginner/) - роЪ. роХрпБрокрпНрокройрпН (PDF)
### Machine Learning
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН Deep Learning](https://freetamilebooks.com/ebooks/learn_deep_learning_in_tamil/) - родрпБ.роиро┐родрпНропро╛ (PDF)
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН ML](https://freetamilebooks.com/ebooks/learn_machine_learning_in_tamil/) - родрпБ.роиро┐родрпНропро╛ (PDF)
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН ML](https://freetamilebooks.com/ebooks/learn_machine_learning_in_tamil/) - родрпБ. роиро┐родрпНропро╛ (PDF)
### MySQL
@@ -94,7 +68,7 @@
### Pandas Python
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН Pandas](https://freetamilebooks.com/ebooks/learn_pandas_in_tamil/) - родрпБ.роиро┐родрпНропро╛ (PDF)
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН Pandas](https://freetamilebooks.com/ebooks/learn_pandas_in_tamil/) - родрпБ. роиро┐родрпНропро╛ (PDF)
### PHP
@@ -105,7 +79,6 @@
### Ruby
* [роОро│ро┐роп роЗройро┐роп роХрогро┐ройро┐ роорпКро┤ро┐ Ruby](https://freetamilebooks.com/ebooks/learn-ruby-in-tamil/) - рокро┐ро░ро┐ропро╛ роЪрпБроирпНродро░роорпВро░рпНродрпНродро┐ (PDF)
* [ро░рпВрокро┐ роирогрпНрокройрпН](https://freetamilebooks.com/ebooks/ruby_nanban/) - роЯроХрпН ро░рпИроЯрпН, роЖроЯроорпН ро╕рпНроЯро╛ро░рпН (PDF)
### Selenium
@@ -118,11 +91,6 @@
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН Agile/Scrum](https://freetamilebooks.com/ebooks/learn-agine-scrum-in-tamil) - род.роЪрпАройро┐ро╡ро╛роЪройрпН (PDF)
### Software Testing
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН роЪро╛рокрпНроЯрпНро╡рпЗро░рпН роЯрпЖро╕рпНроЯро┐роЩрпН тАУ родрпЖро╛ро┤ро┐ро▓рпНроирпБроЯрпНрокроорпН](https://freetamilebooks.com/ebooks/eliya_tamilil_software_testing/) - роХро┐.роорпБродрпНродрпБро░ро╛рооро▓ро┐роЩрпНроХроорпН (PDF)
### WordPress
* [роОро│ро┐роп родрооро┐ро┤ро┐ро▓рпН WordPress](https://freetamilebooks.com/ebooks/learn-wordpress-in-tamil/) - род.роЪрпАройро┐ро╡ро╛роЪройрпН (PDF)
-12
View File
@@ -3,8 +3,6 @@
* [0 - Meta-Lists](#0---meta-lists)
* [C](#c)
* [Python](#python)
* [Java](#java)
* [MERN](#mern)
### 0 - Meta-Lists
@@ -17,16 +15,6 @@
* [Introduction to C \| Telugu](https://www.computerintelugu.com/2012/11/cmenu.html) - Sivanaadh Baazi Karampudi
### <a id="java"></a>Java
* [Core Java in Telugu \| Java Programming](https://www.youtube.com/playlist?list=PLz8gl4BEGkEGYXNZrIRHJUSoxS_FPBrDy) - H Y R Tutorials
### <a id="mern"></a>MERN Web development
* [Web Development Full Course in Telugu (MERN)](https://www.youtube.com/playlist?list=PL2Kd-KQLppEFbfdJHywOu6b_GAjn3LxE1) - Dodagatta Nihar
### <a id="python"></a>Python
* [Python Course in Telugu: 30 days challenge](https://www.youtube.com/playlist?list=PLNgoFk5SYUglQOaXSY8lAlPXmK6tQBHaw) - Vamsi Bhavani
+4 -26
View File
@@ -14,17 +14,14 @@
* [HTML and CSS](#html-and-css)
* [iOS](#ios)
* [Java](#java)
* [JavaScript](#javascript)
* [LaTeX](#latex)
* [Linux](#linux)
* [.NET Framework](#net-framework)
* [Python](#python)
* [Django](#django)
* [Flask](#flask)
* [R](#r)
* [Ruby](#ruby)
* [Rust](#rust)
* [Yapay Zeka](#yapay-zeka)
### Algoritma ve Veri Yap─▒lar─▒
@@ -33,7 +30,6 @@
* [Algoritma ve Programlamaya Giri┼Я Ders Notlar─▒](https://ia601404.us.archive.org/12/items/algoritma-ve-programlamaya-giris-ders-notlari/Algoritma%20ve%20Programlamaya%20Giri%C5%9F%20Ders%20Notlar%C4%B1.pdf) - [─░brahim K├╝├з├╝kko├з](http://ikucukkoc.baun.edu.tr) (PDF)
* [Algoritmalar ve Programlama](https://ia601408.us.archive.org/31/items/algoritmalar-ve-programlama/Algoritmalar%20ve%20Programlama.pdf) (PDF)
* [Bilgisayar Teriminde Algoritma](https://ia601504.us.archive.org/20/items/bilgisayar-teriminde-algoritma/Bilgisayar%20Teriminde%20Algoritma.pdf) - Agah Emir (PDF)
* [Veri Yap─▒lar─▒ Ders Notlar─▒](https://avesis.kayseri.edu.tr/resume/lessonmaterieldownload/kayaalti?key=a9b67077-3132-489c-a460-53cb34d3afc3) - Aybars UGUR (PDF)
### Android
@@ -74,7 +70,6 @@
* [git - basit rehber](https://rogerdudler.github.io/git-guide/index.tr.html) - Roger Dudler (HTML)
* [Git 101](https://aliozgur.gitbooks.io/git101/) - Ali ├Цzg├╝r (GitBook)
* [Git ve Github Rehberi](https://github.com/mkdemir/Git_ve_Github_Rehberi) - Mustafa Kaan Demir
* [Pro Git](https://git-scm.com/book/tr/v2) - Scott Chacon, Ben Straub (├Зeviri: Murat Ya┼Яar)
### Go
@@ -114,11 +109,6 @@
* [Java Kitab─▒](https://ia601503.us.archive.org/27/items/java-kitabi/java-kitabi.pdf) (PDF)
### JavaScript
* [Learn JavaScript](https://javascript.sumankunwar.com.np/tr) - Suman Kumar, Github Contributors (HTML, PDF)
### LaTeX
* [─░nce bir LaTeX2╬╡ Elkitab─▒](http://www.ctan.org/tex-archive/info/lshort/turkish)
@@ -130,7 +120,6 @@
* [GNU Linux Komutlari](https://www.fullportal.org/GNULINUX/Komutlar/GNULINUXKOMUTLAR.pdf) (PDF)
* [Linux Belgeleri](http://www.belgeler.org/howto/howtos.html)
* [Linux Sistem Y├╢neticisinin K─▒lavuzu](http://www.belgeler.org/sag/sag.html)
* [Linux Sistem Y├╢netimi](https://web.deu.edu.tr/doc/misc/Linux_Sistem_Yonetimi.pdf) - Linux Kullan─▒c─▒lar─▒ Derne─Яi, Burak DAYIO─ЮLU, Berk DEM─░R (PDF)
### .NET Framework
@@ -140,21 +129,14 @@
### Python
* [Python ile Programlamaya Giri┼Я](https://pitonca.com/haluktanrikulu/kitap/Python%20Programlama%20_%20Haluk%20Tanr%C4%B1kulu.pdf) - Haluk Tanr─▒kulu - Python 3 (PDF)
* [Python Programlama Dili](https://python-istihza.yazbel.com) - YazBel Yaz─▒l─▒m Belgelendirme Projesi - Python 3
#### Django
* [Django](https://web.archive.org/web/20210302105925/https://www.pythondersleri.com/p/django-egitim-serisi.html) - Python Dersleri *( :card_file_box: archived)*
* [Django Egitimi](https://web.archive.org/web/20210802025720/https://gokmengorgen.net/django-notes/) *( :card_file_box: archived)*
* [Django Girls E─Яitimi](https://tutorial.djangogirls.org/tr) (1.11) (HTML) *( :construction: in process)*
* [Django i├зin T├╝rk├зe K─▒lavuz](https://www.djangoturkiye.com/static/django.pdf) - Muslu Y├╝ksektepe (PDF)
#### Flask
* [Temelden ─░leriye T├╝rk├зe Flask Dersleri](https://kerteriz.net/temelden-ileriye-turkce-flask-dersleri) - ─░smet BALAT
* [Django](https://web.archive.org/web/20210302105925/https://www.pythondersleri.com/p/django-egitim-serisi.html) - Python Dersleri *(:card_file_box: archived)*
* [Django Egitimi](https://web.archive.org/web/20210802025720/https://gokmengorgen.net/django-notes/) *(:card_file_box: archived)*
* [Django Girls E─Яitimi](https://tutorial.djangogirls.org/tr) (1.11) (HTML) (:construction: *in process*)
### R
@@ -176,8 +158,4 @@
### Rust
* [Rust ile CHIP-8 Em├╝lat├╢r├╝ Geli┼Яtirme](https://onur.github.io/chip8) - Onur Aslan
### <a id="yapay-zeka"></a>Yapay Zeka
* [Derin ├Ц─Яrenmeye Dal─▒┼Я](https://tr.d2l.ai/d2l-tr-pytorch.pdf) - Aston Zhang, Zachary C. Lipton, Mu Li, Alexander J. Smola (PDF)
* [Rust'a Giri┼Я](https://github.s3.amazonaws.com/downloads/vertexclique/vertexclique.github.io/Rusta-Giris-v1.pdf) - Mahmut Bulut (PDF)
+1 -1
View File
@@ -44,7 +44,7 @@
### PHP
* [Symfony: ╨и╨▓╨╕╨┤╨║╨╕╨╣ ╤Б╤В╨░╤А╤В](https://symfony.com.ua/doc/current/quick_tour/index.html) - Symfony SAS
* [Symfony: ╨и╨▓╨╕╨┤╨║╨╕╨╣ ╤Б╤В╨░╤А╤В](https://symfony.com/doc/current/the-fast-track/uk/index.html) - Symfony SAS
### Python
-14
View File
@@ -1,14 +0,0 @@
### Index
* [C++](#cplusplus)
* [HTML](#html)
### <a id="cplusplus"></a>C++
* [C++ Sikhiyei (Urdu)](https://archive.org/details/CSikhiyeiUrduByAjnabiii) - Ajnabiii (PDF, HTML)&rlm;
### HTML
* [HTML In Urdu Complete Tutorial Learning Book](https://www.eislamicbook.com/html-in-urdu-complete-tutorial-learning-book/) - Abid Bashir (Translated)&rlm;
-6
View File
@@ -2,7 +2,6 @@
* [Go](#golang)
* [Hс╗Нc m├бy](#machine-learning)
* [Python](#python)
### <a id="golang"></a>Go
@@ -14,8 +13,3 @@
* [─Рс║пm ch├мm v├аo Hс╗Нc s├вu](https://d2l.aivivn.com) - `trl.:` Nh├│m dс╗Лch thuс║нt ─Рс║пm ch├мm v├аo Hс╗Нc s├вu (HTML)
### <a id="python"></a>Python
* [T╞░ duy Python: C├бch t╞░ duy nh╞░ mс╗Щt Nh├а khoa hс╗Нc m├бy t├нnh](https://bitbucket.org/tanhuynhng/thinking-python/src/master/) - Allen B.Downey, `trl.:` Tan H. Nguyen (HTML)
+30 -51
View File
@@ -12,7 +12,6 @@
* [хЗ╜цХ░х╝ПцжВх┐╡](#хЗ╜цХ░х╝ПцжВх┐╡)
* [шобчоЧцЬ║хЫ╛х╜вхнж](#шобчоЧцЬ║хЫ╛х╜вхнж)
* [хЕ╢хоГ](#хЕ╢хоГ)
* [ф║║х╖ецЩ║шГ╜](#ф║║х╖ецЩ║шГ╜)
* [ш╜пф╗╢х╝АхПСцЦ╣ц│Х](#ш╜пф╗╢х╝АхПСцЦ╣ц│Х)
* [шо╛шобцибх╝П](#шо╛шобцибх╝П)
* [цХ░цНох║У](#цХ░цНох║У)
@@ -63,7 +62,6 @@
* [PHP](#php)
* [Laravel](#laravel)
* [Symfony](#symfony)
* [Yii](#yii)
* [PostgreSQL](#postgresql)
* [Python](#python)
* [Django](#django)
@@ -87,7 +85,7 @@
### <a id="version-control-systems"></a><a id="git"></a><a id="svn"></a><a id="subversion"></a><a id="mercurial"></a>чЙИцЬмцОзхИ╢
* [ц▓Йц╡╕х╝Пхнж Git](https://web.archive.org/web/20191004044726/http://igit.linuxtoy.org:80/index.html) - Jim Weirich, `trl.:` х╛Рх░Пф╕Ь a.k.a toy *( :card_file_box: archived)*
* [ц▓Йц╡╕х╝Пхнж Git](https://web.archive.org/web/20191004044726/http://igit.linuxtoy.org:80/index.html) - Jim Weirich, `trl.:` х╛Рх░Пф╕Ь a.k.a toy *(:card_file_box: archived)*
* [чМ┤хнРщГ╜шГ╜цЗВчЪДGITхЕещЧи](http://backlogtool.com/git-guide/cn/) - Nulab Inc.
* [Git - чоАцШУцМЗхНЧ](https://rogerdudler.github.io/git-guide/index.zh.html) - Roger Dudler, `trl.:` ч╜ЧцЭ░┬╖цЭЬх╛╖хЛТ (HTML)
* [Git хПВшАГцЙЛхЖМ](http://gitref.justjavac.com) - CHEN Yangjian
@@ -127,9 +125,8 @@
* [щ╕ЯхУечЪД Linux чзБцИ┐шПЬ хЯ║чбАхнжф╣ачпЗ](http://cn.linux.vbird.org/linux_basic/linux_basic.php)
* [х╡МхЕех╝П Linux чЯешпЖх║У (eLinux.org ф╕нцЦЗчЙИ)](https://tinylab.gitbooks.io/elinux/content/zh/)
* [Docker тАФ ф╗ОхЕещЧихИ░хоЮш╖╡](https://github.com/yeasy/docker_practice)
* [Docker хЕещЧихоЮцИШ](http://yuedu.baidu.com/ebook/d817967416fc700abb68fca1)
* [Docker ф╕нцЦЗцМЗхНЧ](https://github.com/widuu/chinese_docker)
* [FreeBSD ф╗ОхЕещЧихИ░ш╖Сш╖п](https://book.bsdcn.org)
* [DockerхЕещЧихоЮцИШ](http://yuedu.baidu.com/ebook/d817967416fc700abb68fca1)
* [Dockerф╕нцЦЗцМЗхНЧ](https://github.com/widuu/chinese_docker)
* [FreeBSD ф╜┐чФицЙЛхЖМ](http://www.freebsd.org/doc/zh_CN.UTF-8/books/handbook/)
* [Linux цЮДх╗║цМЗхНЧ](http://works.jinbuguo.com/lfs/lfs62/index.html)
* [Linux ч│╗ч╗ЯщлШч║зч╝ЦчиЛ](http://sourceforge.net/projects/elpi/)
@@ -141,7 +138,7 @@
* [The Linux Command Line](http://billie66.github.io/TLCL/index.html)
* [Ubuntu хПВшАГцЙЛхЖМ](http://wiki.ubuntu.org.cn/UbuntuManual)
* [uCore Lab: Operating System Course in Tsinghua University](https://www.gitbook.com/book/objectkuan/ucore-docs/details)
* [UNIX TOOLBOX](https://web.archive.org/web/20210812021003/cb.vu/unixtoolbox_zh_CN.xhtml) *( :card_file_box: archived)*
* [UNIX TOOLBOX](https://web.archive.org/web/20210812021003/cb.vu/unixtoolbox_zh_CN.xhtml) *(:card_file_box: archived)*
### чиЛх║ПхСШцЭВш░И
@@ -164,7 +161,7 @@
### чобчРЖхТМчЫСцОз
* [ElasticSearch цЭГхиБцМЗхНЧ](https://www.gitbook.com/book/fuxiaopang/learnelasticsearch/details)
* [Elasticsearch цЭГхиБцМЗхНЧя╝Иф╕нцЦЗчЙИя╝Й](https://web.archive.org/web/20200415002735/https://es.xiaoleilu.com/) *( :card_file_box: archived)*
* [Elasticsearch цЭГхиБцМЗхНЧя╝Иф╕нцЦЗчЙИя╝Й](https://web.archive.org/web/20200415002735/https://es.xiaoleilu.com/) *(:card_file_box: archived)*
* [ELKstack ф╕нцЦЗцМЗхНЧ](http://kibana.logstash.es)
* [Logstash цЬАф╜│хоЮш╖╡](https://github.com/chenryn/logstash-best-practice-cn)
* [Mastering Elasticsearch(ф╕нцЦЗчЙИ)](http://udn.yyuap.com/doc/mastering-elasticsearch/)
@@ -189,17 +186,6 @@
* [Sketch ф╕нцЦЗцЙЛхЖМ](http://sketchcn.com/sketch-chinese-user-manual.html#introduce)
### ф║║х╖ецЩ║шГ╜
* [хдзшзДцибшпншиАцибхЮЛя╝Ъф╗ОчРЖшо║хИ░хоЮш╖╡](https://llmbook-zh.github.io) - х╝ахеЗуАБцбВщЯмуАБщГСщФРуАБщ╗Дц▓Ы чнЙ
* [хКицЙЛхоЮцИШф║║х╖ецЩ║шГ╜](https://aibydoing.com) - huhuhang
* [хКицЙЛхнжх╝║хМЦхнжф╣а](https://hrl.boyuai.com) - х╝аф╝ЯцеауАБц▓ИщФоуАБф┐ЮхЛЗ
* [хКицЙЛхнжц╖▒х║жхнжф╣а](https://zh.d2l.ai) - щШ┐цЦпщб┐┬╖х╝ауАБцЭОц▓РуАБцЙОхНбщЗМ┬╖C┬╖члЛщб┐уАБф║ЪхОЖх▒▒хдз┬╖J┬╖цЦпшОлцЛЙ
* [хНЧчУЬф╣жPumpkinBook](https://datawhalechina.github.io/pumpkin-book) - Datawhale
* [ц╖▒х║жхнжф╣а500щЧо](https://github.com/scutan90/DeepLearning-500-questions) - scutan90
* [чеЮч╗Пч╜Сч╗Ьф╕Оц╖▒х║жхнжф╣а](https://nndl.github.io) - щВ▒щФбщ╣П
### ш╜пф╗╢х╝АхПСцЦ╣ц│Х
* [хВ╗чУЬхЗ╜цХ░ч╝ЦчиЛ](https://github.com/justinyhuang/Functional-Programming-For-The-Rest-of-Us-Cn) (уАКFunctional Programming For The Rest of UsуАЛф╕нцЦЗчЙИ)
@@ -328,9 +314,7 @@
* [цЦ░цжВх┐╡ C шпншиАцХЩчиЛ](https://github.com/limingth/NCCL)
* [Beej's Guide to Network Programming ч░бщлФф╕нцЦЗчЙИ](https://beej-zhtw-gitbook.netdpi.net) - Brian "Beej Jorgensen" Hall, х╗Цф║Ъф╝жшпС
* [C шпншиАх╕╕шзБщЧощвШщЫЖ](http://c-faq-chn.sourceforge.net/ccfaq/ccfaq.html)
* [C шпншиАцХЩчиЛ](https://wangdoc.com/clang/)
* [C шпншиАхЕещЧицХЩчиЛ](https://www.dotcpp.com/course/c/)
* [Linux C ч╝ЦчиЛф╕АчлЩх╝Пхнжф╣а](https://web.archive.org/web/20210514225440/http://docs.linuxtone.org/ebooks/C&CPP/c/) *( :card_file_box: archived)*
* [Linux C ч╝ЦчиЛф╕АчлЩх╝Пхнжф╣а](https://web.archive.org/web/20210514225440/http://docs.linuxtone.org/ebooks/C&CPP/c/) *(:card_file_box: archived)*
### <a id="csharp"></a>C\#
@@ -342,8 +326,8 @@
* [100ф╕кgccх░ПцКАх╖з](https://github.com/hellogcc/100-gcc-tips/blob/master/src/index.md)
* [100ф╕кgdbх░ПцКАх╖з](https://github.com/hellogcc/100-gdb-tips/blob/master/src/index.md)
* [чоАхНХцШУцЗВчЪДCщнФц│Х](https://web.archive.org/web/20210413213859/http://www.nowamagic.net/librarys/books/contents/c) *( :card_file_box: archived)*
* [чП╛ф╗г C++ 101](https://hackmd.io/@lumynou5/CppTutorial-zh-tw) - Lumynous ( :construction: *in process*)
* [чоАхНХцШУцЗВчЪДCщнФц│Х](https://web.archive.org/web/20210413213859/http://www.nowamagic.net/librarys/books/contents/c) *(:card_file_box: archived)*
* [чП╛ф╗г C++ 101](https://hackmd.io/@lumynou5/CppTutorial-zh-tw) - Lumynous (:construction: *in process*)
* [хГПшобчоЧцЬ║чзСхнжхо╢ф╕Аца╖цАЭшАГя╝ИC++чЙИ)](http://www.ituring.com.cn/book/1203) (уАКHow To Think Like a Computer Scientist: C++ VersionуАЛф╕нцЦЗчЙИ)
* [C шпншиАч╝ЦчиЛщАПшзЖ](https://tinylab.gitbooks.io/cbook/content/)
* [C/C++ Primer](https://github.com/andycai/cprimer) - andycai
@@ -367,7 +351,7 @@
### Dart
* [Dart шпншиАхп╝шзИ](https://web.archive.org/web/20200415002731/dart.lidian.info/wiki/Language_Tour) *( :card_file_box: archived)*
* [Dart шпншиАхп╝шзИ](https://web.archive.org/web/20200415002731/dart.lidian.info/wiki/Language_Tour) *(:card_file_box: archived)*
### Elasticsearch
@@ -414,7 +398,7 @@
* [GoшпншиАхНЪховхоЮш╖╡](https://github.com/achun/Go-Blog-In-Action)
* [JavaчиЛх║ПхСШчЪДGolangхЕещЧицМЗхНЧ](http://blog.csdn.net/dc_726/article/details/46565241)
* [Network programming with Go ф╕нцЦЗч┐╗шпСчЙИцЬм](https://github.com/astaxie/NPWG_zh)
* [Revel цбЖцЮ╢цЙЛхЖМ](https://web.archive.org/web/20190610030938/https://gorevel.cn/docs/manual/index.html) *( :card_file_box: archived)*
* [Revel цбЖцЮ╢цЙЛхЖМ](https://web.archive.org/web/20190610030938/https://gorevel.cn/docs/manual/index.html) *(:card_file_box: archived)*
* [The Little Go Book ч╣БщлФф╕нцЦЗч┐╗шнпчЙИ](https://github.com/kevingo/the-little-go-book) - Karl Seguin, `trl.:` KevinGo, Jie Peng ([HTML](https://kevingo.gitbooks.io/the-little-go-book/))
@@ -475,7 +459,7 @@
* [NutzцЦЗцбг](https://nutzam.com/core/nutz_preface.html)
* [REST хоЮцИШ](https://github.com/waylau/rest-in-action)
* [Spring 2.0ца╕х┐ГцКАцЬпф╕ОцЬАф╜│хоЮш╖╡](https://michaelliao.github.io/download/pdf/Spring%202.0%E6%A0%B8%E5%BF%83%E6%8A%80%E6%9C%AF%E4%B8%8E%E6%9C%80%E4%BD%B3%E5%AE%9E%E8%B7%B5.pdf) (PDF)
* [Spring BootхПВшАГцМЗхНЧ](https://github.com/qibaoguang/Spring-Boot-Reference-Guide) ( :construction: *ч┐╗шпСф╕н*)
* [Spring BootхПВшАГцМЗхНЧ](https://github.com/qibaoguang/Spring-Boot-Reference-Guide) (:construction: *ч┐╗шпСф╕н*)
* [Spring Framework 4.xхПВшАГцЦЗцбг](https://github.com/waylau/spring-framework-4-reference)
@@ -487,7 +471,8 @@
* [хнжчФи JavaScript шо╛шобцибх╝П](http://www.oschina.net/translate/learning-javascript-design-patterns) - х╝Ац║Рф╕нхЫ╜
* [Airbnb JavaScript шзДшМГ](https://github.com/adamlu/javascript-style-guide)
* [ECMAScript 6 хЕещЧи](http://es6.ruanyifeng.com) - щШоф╕Ах│░
* [Google JavaScript ф╗гчаБщгОца╝цМЗхНЧ](https://web.archive.org/web/20200415002735/bq69.com/blog/articles/script/868/google-javascript-style-guide.html) *( :card_file_box: archived)*
* [Google JavaScript ф╗гчаБщгОца╝цМЗхНЧ](https://web.archive.org/web/20200415002735/bq69.com/blog/articles/script/868/google-javascript-style-guide.html) *(:card_file_box: archived)*
* [JavaScript цаЗхЗЖхПВшАГцХЩчиЛя╝Иalphaя╝Й](http://javascript.ruanyifeng.com)
* [javascript чЪД 12 ф╕кцАкчЩЦ](https://github.com/justjavac/12-javascript-quirks)
* [JavaScript цХЩчиЛ - х╗ЦщЫкх│░чЪДхоШцЦ╣ч╜СчлЩ](https://www.liaoxuefeng.com/wiki/1022910821149312)
* [уАКJavaScript цибх╝ПуАЛ](https://github.com/jayli/javascript-patterns) (уАКJavaScript patternsуАЛшпСцЬм)
@@ -501,7 +486,7 @@
* [цЮДх╗║шЗкх╖▒чЪДAngularJS](https://github.com/xufei/Make-Your-Own-AngularJS/blob/master/01.md) - Xu Fei (HTML)
* [хЬиWindowsчОпхвГф╕ЛчФиYeomanцЮДх╗║AngularJSщб╣чЫо](http://www.waylau.com/build-angularjs-app-with-yeoman-in-windows/) - Way Lau (HTML)
* [AngularJSхЕещЧицХЩчиЛ](https://github.com/zensh/AngularjsTutorial_cn) - Yan Qing, Hou Zhenyu, щАЯхЖ╗ц▓Щц╝а (HTML) ( :card_file_box: *archived*)
* [AngularJSхЕещЧицХЩчиЛ](https://github.com/zensh/AngularjsTutorial_cn) - Yan Qing, Hou Zhenyu, щАЯхЖ╗ц▓Щц╝а (HTML) (:card_file_box: *archived*)
* [AngularJSцЬАф╜│хоЮш╖╡хТМщгОца╝цМЗхНЧ](https://github.com/mgechev/angularjs-style-guide/blob/master/README-zh-cn.md) - Minko Gechev, Xuefeng Zhu, Shintaro Kaneko, et al. (HTML)
@@ -509,7 +494,7 @@
* [Backbone.jsхЕещЧицХЩчиЛ](http://www.the5fire.com/backbone-js-tutorials-pdf-download.html) (PDF)
* [Backbone.jsхЕещЧицХЩчиЛчммф║МчЙИ](https://github.com/the5fire/backbonejs-learning-note)
* [Backbone.jsф╕нцЦЗцЦЗцбг](https://web.archive.org/web/20200916085144/https://www.html.cn/doc/backbone/) *( :card_file_box: archived)*
* [Backbone.jsф╕нцЦЗцЦЗцбг](https://web.archive.org/web/20200916085144/https://www.html.cn/doc/backbone/) *(:card_file_box: archived)*
#### D3.js
@@ -532,7 +517,7 @@
#### jQuery
* [чоАхНХцШУцЗВчЪДJQueryщнФц│Х](https://web.archive.org/web/20201127045453/http://www.nowamagic.net/librarys/books/contents/jquery) *( :card_file_box: archived)*
* [чоАхНХцШУцЗВчЪДJQueryщнФц│Х](https://web.archive.org/web/20201127045453/http://www.nowamagic.net/librarys/books/contents/jquery) *(:card_file_box: archived)*
* [How to write jQuery plugin](http://i5ting.github.io/How-to-write-jQuery-plugin/build/jquery.plugin.html)
@@ -569,7 +554,7 @@
#### Zepto.js
* [Zepto.js ф╕нцЦЗцЦЗцбг](https://web.archive.org/web/20210303025214/https://www.css88.com/doc/zeptojs_api/) *( :card_file_box: archived)*
* [Zepto.js ф╕нцЦЗцЦЗцбг](https://web.archive.org/web/20210303025214/https://www.css88.com/doc/zeptojs_api/) *(:card_file_box: archived)*
### LaTeX
@@ -621,9 +606,9 @@
### PHP
* [CodeIgniter ф╜┐чФицЙЛхЖК](https://web.archive.org/web/20210624143822/https://codeigniter.org.tw/userguide3/) *( :card_file_box: archived)*
* [CodeIgniter ф╜┐чФицЙЛхЖК](https://web.archive.org/web/20210624143822/https://codeigniter.org.tw/userguide3/) *(:card_file_box: archived)*
* [Composerф╕нцЦЗцЦЗцбг](http://docs.phpcomposer.com)
* [Phalcon7ф╕нцЦЗцЦЗцбг](https://web.archive.org/web/20220330065727/myleftstudio.com/) *( :card_file_box: archived)*
* [Phalcon7ф╕нцЦЗцЦЗцбг](https://web.archive.org/web/20220330065727/myleftstudio.com/) *(:card_file_box: archived)*
* [PHP ф╣ЛщБУ](http://wulijun.github.io/php-the-right-way/)
* [PHPцаЗхЗЖшзДшМГф╕нцЦЗчЙИ](https://psr.phphub.org)
* [PHPф╕нцЦЗцЙЛхЖМ](http://php.net/manual/zh/)
@@ -643,12 +628,7 @@
#### Symfony
* [Symfony 2 хоЮф╛ЛцХЩчиЛ](https://wusuopu.gitbooks.io/symfony2_tutorial/content)
* [Symfony 5 х┐лщАЯх╝АхПС](https://web.archive.org/web/20210812222957/symfony.com/doc/current/the-fast-track/zh_CN/index.html) *( :card_file_box: archived)*
#### Yii
* [Yii 2.0 цЭГхиБцМЗхНЧ](https://www.yiiframework.com/doc/download/yii-guide-2.0-zh-cn.pdf) - Yii Software (PDF)
* [Symfony 5 х┐лщАЯх╝АхПС](https://web.archive.org/web/20210812222957/symfony.com/doc/current/the-fast-track/zh_CN/index.html) *(:card_file_box: archived)*
### PostgreSQL
@@ -662,19 +642,20 @@
### Python
* [чоАцШО Python цХЩчиЛ](https://web.archive.org/web/20200822010330/https://bop.mol.uno/) - Swaroop C HуАБц▓Иц┤БхЕГ(ч┐╗шпС)уАБц╝аф╝ж(ч┐╗шпС) *( :card_file_box: archived)*
* [чоАцШО Python цХЩчиЛ](https://web.archive.org/web/20200822010330/https://bop.mol.uno/) - Swaroop C HуАБц▓Иц┤БхЕГ(ч┐╗шпС)уАБц╝аф╝ж(ч┐╗шпС) *(:card_file_box: archived)*
* [ф║║чФЯшЛжчЯня╝МцИСчФиpython](https://www.cnblogs.com/derek1184405959/p/8579428.html) - zhang_derek *(хЖЕхРлф╕░хпМчЪДчмФшо░ф╗ехПКхРДч▒╗цХЩчиЛ)*
* [ц╖▒хЕе Python 3](https://github.com/jiechic/diveintopython3)
* [Matplotlib 3.0.3 ф╕нцЦЗцЦЗцбг](https://www.osgeo.cn/matplotlib/) (Online)
* [Numpy 1.16 ф╕нцЦЗцЦЗцбг](https://www.osgeo.cn/numpy/) (Online)
* [Python 3 цЦЗцбг(чоАф╜Уф╕нцЦЗ) 3.2.2 documentation](https://docspy3zh.readthedocs.org/en/latest/)
* [Python 3.8.0a3ф╕нцЦЗцЦЗцбг](https://www.osgeo.cn/cpython/) (Online) *(чЫохЙНхЬич║┐цЬАхЕичЪДф╕нцЦЗцЦЗцбгф║Ж)*
* [Matplotlib 3.0.3 ф╕нцЦЗцЦЗцбг](http://www.osgeo.cn/matplotlib/) (Online)
* [Numpy 1.16 ф╕нцЦЗцЦЗцбг](http://www.osgeo.cn/numpy/) (Online)
* [Python 3 цЦЗцбг(чоАф╜Уф╕нцЦЗ) 3.2.2 documentation](http://docspy3zh.readthedocs.org/en/latest/)
* [Python 3.8.0a3ф╕нцЦЗцЦЗцбг](http://www.osgeo.cn/cpython/) (Online) *(чЫохЙНхЬич║┐цЬАхЕичЪДф╕нцЦЗцЦЗцбгф║Ж)*
* [Python ф╕нцЦЗхнжф╣ахдзцЬмшРе](http://www.pythondoc.com)
* [Python цЬАф╜│хоЮш╖╡цМЗхНЧ](https://pythonguidecn.readthedocs.io/zh/latest/)
* [Python Cookbookчммф╕ЙчЙИ](https://python3-cookbook.readthedocs.io/zh_CN/latest/) - David BeazleyуАБBrian K.JonesуАБчЖКшГ╜(ч┐╗шпС)
* [Python Cookbookчммф╕ЙчЙИ](http://python3-cookbook.readthedocs.io/zh_CN/latest/) - David BeazleyуАБBrian K.JonesуАБчЖКшГ╜(ч┐╗шпС)
* [PythonцХЩчиЛ - х╗ЦщЫкх│░чЪДхоШцЦ╣ч╜СчлЩ](https://www.liaoxuefeng.com/wiki/1016959663602400)
* [Pythonш┐ЫщШ╢](https://interpy.eastlakeside.com) - eastlakeside
* [Pythonф╣ЛцЧЕ](https://web.archive.org/web/20191217091745/http://funhacks.net/explore-python/) - Ethan *( :card_file_box: archived)*
* [Tornado 6.1 ф╕нцЦЗцЦЗцбг](https://www.osgeo.cn/tornado/) (Online) *(ч╜Сч╗Ьф╕КхЕ╢ф╗ЦчЪДщГ╜цШпш╛ГцЧзчЙИцЬмчЪД)*
* [Pythonф╣ЛцЧЕ](https://web.archive.org/web/20191217091745/http://funhacks.net/explore-python/) - Ethan *(:card_file_box: archived)*
* [Tornado 6.1 ф╕нцЦЗцЦЗцбг](http://www.osgeo.cn/tornado/) (Online) *(ч╜Сч╗Ьф╕КхЕ╢ф╗ЦчЪДщГ╜цШпш╛ГцЧзчЙИцЬмчЪД)*
#### Django
@@ -690,7 +671,7 @@
* [153хИЖщТЯхнжф╝Ъ R](http://cran.r-project.org/doc/contrib/Liu-FAQ.pdf) (PDF)
* [ч╗Яшобхнжф╕О R шп╗ф╣жчмФшо░](http://cran.r-project.org/doc/contrib/Xu-Statistics_and_R.pdf) (PDF)
* [чФи R цЮДх╗║ Shiny х║ФчФичиЛх║П](https://web.archive.org/web/20200220023703/yanping.me/shiny-tutorial/) (уАКBuilding 'Shiny' Applications with RуАЛф╕нцЦЗчЙИ) *( :card_file_box: archived)*
* [чФи R цЮДх╗║ Shiny х║ФчФичиЛх║П](https://web.archive.org/web/20200220023703/yanping.me/shiny-tutorial/) (уАКBuilding 'Shiny' Applications with RуАЛф╕нцЦЗчЙИ) *(:card_file_box: archived)*
* [R хп╝шо║](http://cran.r-project.org/doc/contrib/Ding-R-intro_cn.pdf) (уАКAn Introduction to RуАЛф╕нцЦЗчЙИ) (PDF)
@@ -713,8 +694,6 @@
* [щАЪш┐Зф╛ЛхнРхнжф╣а Rust](https://github.com/rustcc/rust-by-example/)
* [Rust хоШцЦ╣цХЩчиЛ](https://github.com/KaiserY/rust-book-chinese)
* [Rust хоПх░ПхЖМ](https://zjp-cn.github.io/tlborm/)
* [Rust шпншиАхЬгч╗П](https://course.rs)
* [Rust шпншиАхнжф╣ачмФшо░](https://github.com/photino/rust-notes)
* [RustPrimer](https://github.com/rustcc/RustPrimer)
* [Tour of Rust](https://tourofrust.com/00_zh-cn.html)
+13 -17
View File
@@ -1,5 +1,3 @@
<div dir="rtl" markdown="1">
### Index
* [Miscellaneous](#miscellaneous)
@@ -7,18 +5,16 @@
### Miscellaneous
* [╪г╪о┘И┘Г ╪з┘Д┘Г╪и┘К╪▒ ┘Е╪к┘И┘Д┘К](https://anchor.fm/metwally) - Ahmed Metwally&rlm; (podcast)
* [╪и╪▒┘Е╪м╪й ╪│╪к╪▒┘К┘Е](https://youtube.com/playlist?list=PL0_C_32YKLpx7K88481CY3J21cw85oFCM) - Mohamed Abusrea&rlm; (podcast)
* [╪и┘И╪п┘Г╪з╪│╪к](https://youtube.com/playlist?list=PLvGNfY-tFUN-mGlfovyGACjPVmkzAsQFJ) - Ghareeb Elshaikh&rlm; (podcast)
* [AskDeveloper Podcast&rlm;](http://www.askdeveloper.com) - Mohamed Elsherif&rlm; (podcast)
* [Codezilla Codecast -&rlm; ╪и┘И╪п┘Г╪з╪│╪к ╪з┘Д╪и╪▒┘Е╪м╪й](https://youtube.com/playlist?list=PLsqPSxnrsWLuE-O3IKIUWy6Hmelz3bMWy) - Islam Hesham&rlm; (podcast)
* [Essam Cafe -&rlm; ┘В┘З┘И╪й ╪╣╪╡╪з┘Е](https://essamcafe.com) - Ahmed Essam&rlm; (podcast)
* [Nakerah Podcast&rlm;](https://nakerah.net/podcast) - Nakerah Network&rlm; (podcast)
* [null++:&lrm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://nullplus.plus) - Mohamed Luay, Ahmad Alfy&rlm; (podcast)
* [Tech Podcast&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://anchor.fm/ahmdelemam) - Ahmed Elemam&rlm; (podcast)
* [The Egyptian Guy&rlm;](https://anchor.fm/refaie) - Mohamed Refaie&rlm; (podcast)
* [The Weekly Noob&rlm;](https://theweeklynoob.netlify.app) - Nabil Tharwat&rlm; (podcast)
* [Untyped Podcast&rlm;](https://logaretm.com/untyped/) - Abdelrahman Awad&rlm; (podcast)
</div>
* [╪г╪о┘И┘Г ╪з┘Д┘Г╪и┘К╪▒ ┘Е╪к┘И┘Д┘К](https://anchor.fm/metwally) - Ahmed Metwally (podcast)
* [╪и╪▒┘Е╪м╪й ╪│╪к╪▒┘К┘Е](https://youtube.com/playlist?list=PL0_C_32YKLpx7K88481CY3J21cw85oFCM) - Mohamed Abusrea (podcast)
* [╪и┘И╪п┘Г╪з╪│╪к](https://youtube.com/playlist?list=PLvGNfY-tFUN-mGlfovyGACjPVmkzAsQFJ) - Ghareeb Elshaikh (podcast)
* [AskDeveloper Podcast](http://www.askdeveloper.com) - Mohamed Elsherif (podcast)
* [Codezilla Codecast - ╪и┘И╪п┘Г╪з╪│╪к ╪з┘Д╪и╪▒┘Е╪м╪й](https://youtube.com/playlist?list=PLsqPSxnrsWLuE-O3IKIUWy6Hmelz3bMWy) - Islam Hesham (podcast)
* [Essam Cafe - ┘В┘З┘И╪й ╪╣╪╡╪з┘Е](https://essamcafe.com) - Ahmed Essam (podcast)
* [Nakerah Podcast](https://nakerah.net/podcast) - Nakerah Network (podcast)
* [null++: ╪и╪з┘Д╪╣╪▒╪и┘К](https://nullplus.plus) - Mohamed Luay, Ahmad Alfy (podcast)
* [Tech Podcast ╪и╪з┘Д╪╣╪▒╪и┘К](https://anchor.fm/ahmdelemam) - Ahmed Elemam (podcast)
* [The Egyptian Guy](https://anchor.fm/refaie) - Mohamed Refaie (podcast)
* [The Weekly Noob](https://theweeklynoob.netlify.app) - Nabil Tharwat (podcast)
* [Untyped Podcast](https://logaretm.com/untyped/) - Abdelrahman Awad (podcast)
-1
View File
@@ -4,5 +4,4 @@
* [CZpodcast](https://soundcloud.com/czpodcast-1)
* [DevMinutes](http://devminutes.cz)
* [Kafemlejnek.TV](https://kafemlejnek.tv)
* [SCRIPTease](https://scriptease.lolo.team)
* [Vzh┼пru dol┼п podcast](https://www.vzhurudolu.cz/podcast) - Robin Pokorn├╜, Martin Mich├бlek
-8
View File
@@ -1,8 +0,0 @@
### Index
* [Python](#python)
### Python
* [Python Podcast](https://python-podcast.de/show) - Jochen, Dominik (podcast)
+2 -8
View File
@@ -47,11 +47,9 @@
### <a id="csharp"></a>C\#
* [Beginning C# with Unity](https://www.youtube.com/playlist?list=PLFgjYYTq6xyhtVK6VzLiFe3pmBu-XSNlX) - Brian Douglas Moakley, VegetarianZombie (screencast)
* [Coding After Work](https://poddtoppen.se/podcast/1076724955/coding-after-work-podcast) - Jessica Engstr├╢m, Jimmy Engstr├╢m (podcast)
* [General .NET videos](https://www.youtube.com/playlist?list=PLUOequmGnXxPjam--7GAls6Tb1fSmL9mL) - Nick Chapsas (screencast)
* [General .NET videos](https://www.youtube.com/playlist?list=PLUOequmGnXxPjam--7GAls6Tb1fSmL9mL) - Nick Chapsas(screencast)
* [How to program in C# - Beginner Course \| Brackeys](https://www.youtube.com/playlist?list=PLPV2KyIb3jR6ZkG8gZwJYSjnXxmfPAl51) - Asbj├╕rn Thirslund (screencast)
* [Keep Coding Podcast](https://www.youtube.com/playlist?list=PL3bCPMOBNeGwG1fkIs6FCF7_jpeVgQLS0) - Nick Chapsas (podcast)
* [NET Rocks!](https://dotnetrocks.com) - Carl Franklin, Richard Campbell (podcast)
### <a id="cpp"></a>C++
@@ -60,7 +58,7 @@
* [C++ Programming Video Lectures](https://www.youtube.com/playlist?list=PLTZbNwgO5ebo64D1k0DJQGX30X6iSTmRr) - Saurabh School of Computing (screencast)
* [C++ Standard Library](https://www.youtube.com/playlist?list=PL5jc9xFGsL8G3y3ywuFSvOuNm3GjBwdkb) - Bo Qian (screencast)
* [C++ STL by example](https://www.youtube.com/playlist?list=PLZ9NgFYEMxp5oH3mrr4IlFBn03rjS-gN1) - Douglas Schmidt (screencast)
* [C++ STL: The ONLY Video You Need \| Compulsory for DSA/CP](https://www.youtube.com/watch?v=PZogbfU4X5E) - Utkarsh Gupta (screencast)
* [C++ STL: The ONLY Video You Need | Compulsory for DSA/CP](https://www.youtube.com/watch?v=PZogbfU4X5E) - Utkarsh Gupta (screencast)
* [cpp.chat](https://cpp.chat) - Jon Kalb, Phil Nash (podcast)
* [CppCast](http://cppcast.com) - Conor Hoekstra, Jason Turner, JeanHeyd Meneide, Matt Godbolt, Rob Irving (podcast)
* [No Diagnostic Required](https://nodiagnosticrequired.tv) - Anastasia Kazakova, Phil Nash (podcast)
@@ -189,7 +187,6 @@
### JavaScript
* [20 Min JS](https://20minjs.com) - Agustinus Theodorus, Chris Bongers, Mark Volkmann, et al. (podcast)
* [devMode.fm](https://devmode.fm) - Andrew Welch, Ryan Ire┬нlan, Patrick Harrington, Jonathan Melville, Michael Rog, Earl John┬нston, Mar┬нi┬нon Newlevant, Lau┬нren Dorman, Matt Stein, Jen┬нnifer Blumberg (podcast)
* [FiveJS](https://fivejs.codeschool.com) - CodeSchool (podcast)
* [Front End Happy Hour](https://frontendhappyhour.com) - Ryan Burgess, Jem Young, Stacy London, Augustus Yuan, Mars Jullian, Shirley Wu (podcast)
@@ -209,9 +206,7 @@
* [ShopTalk](https://shoptalkshow.com) - Dave Rupert, Chris Coyier. (podcast)
* [Syntax](https://syntax.fm) - Wes Bos, Scott Tolinski (podcast)
* [The JavaScript Show](http://javascriptshow.com) - Peter Cooper, Jason Seifer (podcast)
* [The Junior Jobs Podcast](https://podcasters.spotify.com/pod/show/junior-jobs/episodes/59--The-Problem-With-Changing-Careers-and-How-To-Overcome-It--Junior-Jobs-e2lnm9f) - Erik Andersen (podcast)
* [The Vanilla JS Podcast](http://javascriptshow.com) - Chris Ferdinandi. (podcast)
* [Virtual Coffee](https://virtualcoffee.io/podcast) - Bekah Hawrot Weigel, Dan Ott, Meghan Gutshall, Kirk Shillingford (podcast)
* [Web Rush](https://webrush.simplecast.com) - John Papa, Ward Bell, Craig Shoemaker, Dan Wahlin (podcast)
@@ -293,7 +288,6 @@
* [Domain Driven Design Europe](https://dddeurope.com/videos/) (screencast)
* [Domain Driven Design Europe - 2017](https://2017.dddeurope.com/#videos) (screencast)
* [FLOSS WEEKLY](https://twit.tv/shows/floss-weekly) - Doc Searls, Aaron Newcomb, Dan Lynch, Simon Phipps, Jonathan Bennett, Shawn Powers, Katherine Druckman (podcast)
* [Frontend Masters](https://www.youtube.com/playlist?list=PLum3CyP95edxwLIHenKw0nMHlfvr76ZSU) - Marc Grabanski, Frontend Masters team (screencast)
* [Frontside the Podcast](https://frontside.io/podcast/) - Charles Lowell, Taras Mankovski (podcast)
* [Full Stack Radio](https://www.fullstackradio.com) - Adam Wathan (podcast)
* [Functional Geekery](https://www.functionalgeekery.com) - Steven Proctor (podcast)
+14 -17
View File
@@ -17,7 +17,7 @@
### Ciencia de Datos
* [BigDateame](https://open.spotify.com/show/0aikWOJmQMglEmbmbHqv4q) - Iker G├│mez Garc├нa (podcast)
* [BigDateame](https://bigdateame.com) - Iker G├│mez Garc├нa (podcast)
* [DataFuturologyEspanol](https://podcasts.apple.com/es/podcast/data-futurology-espa%C3%B1ol/id1523527265) - Felipe Flores (podcast)
* [DataLatam](http://www.datalatam.com) - Diego May, Frans van Dunn├й (podcast)
* [SoyData](https://www.ivoox.com/podcast-soydata-ciencia-datos-a-tu_sq_f1414925_1.html) (podcast)
@@ -30,7 +30,7 @@
* [Hablando.js](https://anchor.fm/carlosazaustre) - Carlos Azaustre (podcast)
* [La Web es la Plataforma](https://anchor.fm/the-web-is-the-platform) - Diego de Granda, Jorge del Casar (podcast)
* [Rep├║blica Web](https://republicaweb.es) - Javier Archeni, Andros Fenollosa, David Vaquero, Antony Goetzschel, N├йstor Angulo de Ugarte (podcast)
* [Web Reactiva](https://www.webreactiva.com/podcast) - Daniel Primo (podcast)
* [Web Reactiva](https://www.danielprimo.io/podcast) - Daniel Primo (podcast)
### Frontend
@@ -41,7 +41,7 @@
### Juegos
* [Aquelarre of Games](https://www.youtube.com/playlist?list=PLeUTAd8xaJJlW8xHQn000F2vg6OSQlH9i) (screencast)
* [Aquelarre of Games](https://aquelarreofgames.com.ar/podcast/) (podcast)
* [Di├│genes Digital](https://diogenesdigital.es/podcasts/) - Sergio Pascual "Micropakito", Carlos del Pozo, Israel Alvarez "Borrachuzo" (podcast) *(├Ъltima Actualizaci├│n: Octubre 2019)*
@@ -54,14 +54,13 @@
* [Domain-Driven Design](https://www.youtube.com/playlist?list=PLZVwXPbHD1KMsiA7ahRSbIwS3QMsQ0SbL) - Codely.TV (screencast)
* [La Buhardilla Geek](https://www.ivoox.com/podcast-buhardilla-geek_sq_f1465450_1.html) - Juan ├Бngel Romero, Luis Miguel L├│pez (podcast)
* [Maestr├нa JS](https://anchor.fm/maestriajs) - Carlos Rojas (podcast) *(├Ъltima Actualizaci├│n: Mayo 2020)*
* [Programador X](https://open.spotify.com/show/6iuwL4j3oyaMZyBThzv7Hq) - Xavier Reyes Ochoa (podcast)
* [Programar es una Mierda](https://www.programaresunamierda.com) - Juan Jos├й Mero├▒o Sanchez, Alexandre Ballest├й Crevill├йn (podcast) *(├Ъltima Actualizaci├│n: Junio 2020)*
* [Programar es una Mierda](https://www.programaresunamierda.com) - Juan Jos├й Mero├▒o Sanchez, Alexandre Ballest├й Crevill├йn (podcast)
### Software Libre
* [Atareao con Linux](https://atareao.es/podcast) - Lorenzo Carbonell (podcast)
* [Compilando Podcast](https://podcasts.apple.com/es/podcast/compilando-podcast/id1215384401) - Paco Estrada (podcast) *(├Ъltima Actualizaci├│n: Septiembre 2023)*
* [Compilando Podcast](https://compilando.audio) - Paco Estrada (podcast)
* [Mangocast](https://www.mangocast.net) - Lucho Benitez, Pablo Santa Cruz, Miguel Balsevich, Luis Corval├бn, Rolando Natalizia (podcast)
* [Podcast Linux](https://podcastlinux.com) - Juan Febles (podcast)
@@ -71,22 +70,20 @@
* [Code on the Rocks](http://codeontherocks.fm) - Jorge Barroso, Jorge Ler├нa, Davide Mendolia (podcast)
* [Codely.TV screencasts](https://codely.com/blog/category/screencasts) - Codely.TV (screencasts)
* [Cosas de Internet](https://cosasdeinternet.fm/episodios) - Santiago Espinosa, Laura Rojas Aponte (podcast)
* [D├нa30](https://www.dia30.mx) - V├нctor Vel├бzquez, Mariana Ruiz (podcast) *(├Ъltima Actualizaci├│n: Noviembre 2021)*
* [D├нa30](https://www.dia30.mx) - V├нctor Vel├бzquez, Mariana Ruiz (podcast)
* [Digital. Innovation. Engineers.](https://anchor.fm/mimacom) - Mimacom (podcast)
* [Doomling & Chill](https://anchor.fm/bel-rey) - Bel Rey (podcast) *(├Ъltima Actualizaci├│n: Marzo 2021)*
* [Educando Geek](https://educandogeek.github.io) - Juanjo Gurillo (podcast) *(├Ъltima Actualizaci├│n: Diciembre 2021)*
* [Entre Dev y Ops](https://www.entredevyops.es) - Ignasi Fosch, Javier Avellano, Eduardo Bellido, David Acacio (podcast)
* [Doomling & Chill](https://anchor.fm/bel-rey) - Bel Rey (podcast)
* [Educando Geek](https://educandogeek.github.io) - Juanjo Gurillo (podcast)
* [Frikismo Puro](https://www.ivoox.com/podcast-frikismo-puro_sq_f1268809_1.html) - Francisco Javier G├бrate Soto, Juan Leiva (podcast)
* [Hijos de la Web](https://www.ivoox.com/podcast-hijos-web_sq_f1588708_1.html) - Hector Trejo, Juan Jos├й Gutierrez, ├Уscar Miranda (podcast) *(├Ъltima Actualizaci├│n: Marzo 2020)*
* [iCharlas](https://www.ivoox.com/podcast-icharlas-podcast_sq_f155400_1.html) - Manuel Terr├│n, Philippe Rochette (podcast) *(├Ъltima Actualizaci├│n: Enero 2020)*
* [Hijos de la Web](https://www.ivoox.com/podcast-hijos-web_sq_f1588708_1.html) - Hector Trejo, Juan Jos├й Gutierrez, ├Уscar Miranda (podcast)
* [iCharlas](https://www.ivoox.com/podcast-icharlas-podcast_sq_f155400_1.html) - Manuel Terr├│n, Philippe Rochette (podcast)
* [La Tecnologer├нa](https://tecnologeria.com) - Pablo Trinidad, Frank Blanco, Clarisa Guerra, Adri├бn Mesa, Jorge Cant├│n, Jos├й Mar├нa Garc├нa, Manuel Fern├бndez, I├▒igo Sendino (podcast)
* [Mangocast](https://www.mangocast.net) - Luis Benitez, Pablo Santa Cruz, Miguel Balsevich, Luis Corval├бn, Rolando Natalizia (podcast)
* [M├бs all├б de la innovaci├│n](https://masalladelainnovacion.com/todos-los-podcasts/) - Philippe Lardy, Rosa Cano, Jose Miguel Parella, Paco Estrada, M├│nica del Valle, Beatriz Ferrolasa (podcast) *(├Ъltima Actualizaci├│n: Julio 2021)*
* [M├бs all├б de la innovaci├│n](https://masalladelainnovacion.com/todos-los-podcasts/) - Philippe Lardy, Rosa Cano, Jose Miguel Parella, Paco Estrada, M├│nica del Valle, Beatriz Ferrolasa (podcast)
* [Mixx.io](https://mixx.io/podcasts) - ├Бlex Barredo, Mat├нas S. Zavia (podcast)
* [Ni cero, ni uno - Habilidades esenciales en un mundo tecnol├│gico](https://savvily.es/podcasts/ni-cero-ni-uno/) - Carlos Bl├й Jurado (podcast)
* [NoSoloTech](https://www.ivoox.com/podcast-nosolotech-podcast_sq_f1851397_1.html) - Diana Aceves, F├йlix L├│pez, Katia Aresti, Jorge Barrachina (podcast) *(├Ъltima Actualizaci├│n: Octubre 2021)*
* [Ni cero, ni uno - Habilidades esenciales en un mundo tecnol├│gico](https://podcast.carlosble.com) - Carlos Bl├й Jurado (podcast)
* [NoSoloTech](https://www.ivoox.com/podcast-nosolotech-podcast_sq_f1851397_1.html) - Diana Aceves, F├йlix L├│pez, Katia Aresti, Jorge Barrachina (podcast)
* [Red de Sospechosos Habituales](https://www.ivoox.com/podcast-red-sospechosos-habituales_sq_f1564393_1.html) - Javier Fern├бndez (podcast)
* [Reescribiendo el C├│digo](https://open.spotify.com/show/6efO7Lp5LENT3jqR0sYIG5) - Catalina Arismendi, Julia Calvo, Jesica Checa, Florencia Risolo (podcast)
* [TechAndLadies](https://anchor.fm/techladies) - Silvia Morillo, Cristina Pamp├нn, Silvia Garc├нa (podcast)
* [UGeek](https://ugeek.github.io) - ├Бngel Jim├йnez de Luis (podcast)
* [Webificando - El podcast de side projects](https://podcasts.apple.com/co/podcast/webificando-el-podcast-de-side-projects/id1547290552) - Abel Fernandez, Robert Menetray (podcast) *(├Ъltima Actualizaci├│n: Junio 2021)*
* [Webificando - El podcast de side projects](https://webificando.com) - Abel Fernandez, Robert Menetray (podcast)
+6 -12
View File
@@ -1,5 +1,3 @@
<div dir="rtl" markdown="1">
### Index
* [Programming News](#programming-news)
@@ -8,19 +6,15 @@
### Programming News
* [┘╛╪з╪п┌й╪│╪к ┌й╪з┘Б┘З ╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│](https://anchor.fm/codemy) - CafeCodemy&rlm; (podcast)
* [╪▒╪з┌й╪к ┌й╪│╪к](https://roocket.ir/podcast/) - (podcast)
* [┘╛╪з╪п┌й╪│╪к ┌й╪з┘Б┘З ╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│](https://anchor.fm/codemy) - CafeCodemy (podcast)
### Technology
* [┘╛╪з╪▒╪│ ┌й┘Д█М┌й](https://anchor.fm/parsclick/) - Amir Azimi&rlm; (podcast)
* [┘╛╪з╪▒╪│ ┌й┘Д█М┌й](https://anchor.fm/parsclick/) - Amir Azimi (podcast)
* [╪▒╪з╪п█М┘И ┌п█М┌й](https://soundcloud.com/jadijadi) (podcast)
* [╪▒╪з╪п█М┘И ┌п█М┌й](https://anchor.fm/radiojadi) - Jadi&rlm; (podcast)
* [╪▒╪з╪п█М┘И ┌п█М┌й](https://anchor.fm/radiojadi) - Jadi (podcast)
* [╪▒╪з╪п█М┘И ┌п█М┌й](https://www.youtube.com/playlist?list=PL-tKrPVkKKE1peHomci9EH7BmafxdXKGn) (videocast)
* [CodeNaline \|&rlm; ┌й╪п┘Ж╪з┘Д█М┘Ж](https://castbox.fm/channel/id5066732) - Torham&rlm; (podcast)
* [Radio Developer -&rlm; ╪▒╪з╪п█М┘И ╪п┘И┘Д┘И┘╛╪▒](https://castbox.fm/channel/id4407294) (podcast)
* [Radio Mi \|&rlm; ╪▒╪з╪п█М┘И ┘Е█М┘А┘А](https://www.youtube.com/playlist?list=PLRmRAhVbjeHqrc6Gf5DKu2eRJGkfo9A-Z) - Milad Nouri&rlm; (videocast)
</div>
* [CodeNaline | ┌й╪п┘Ж╪з┘Д█М┘Ж](https://castbox.fm/channel/id5066732) - Torham (podcast)
* [Radio Developer - ╪▒╪з╪п█М┘И ╪п┘И┘Д┘И┘╛╪▒](https://castbox.fm/channel/id4407294) (podcast)
* [Radio Mi | ╪▒╪з╪п█М┘И ┘Е█М┘А┘А](https://www.youtube.com/playlist?list=PLRmRAhVbjeHqrc6Gf5DKu2eRJGkfo9A-Z) - Milad Nouri (videocast)
+4 -6
View File
@@ -8,11 +8,9 @@
* [Better Software Design](https://bettersoftwaredesign.pl) - Mariusz Gil (podcast)
* [Biznes My┼Ыli](https://www.youtube.com/playlist?list=PLYQwwHlHNdgjSEgrmGv0fbHuxd5p7f5qA) - Vladimir Alekseichenko (podcast)
* [Chwila Dla Admina](https://www.youtube.com/playlist?list=PLdHokABybL4nu6h5C3ig4XSG2Ni6XeED0) - Artur Molendowski (podcast)
* [Dev Env](https://devenv.pl/podcast/) - Adrian Pi─Щtka, Bart┼Вomiej Michalski, Mateusz Konieczny (podcast)
* [DevTalk](https://devstyle.pl/category/podcast) - Maciej Aniserowicz (podcast)
* [Patoarchitekci](https://patoarchitekci.io) - ┼Бukasz Ka┼Вu┼╝ny, Szymon Warda (podcast)
* [Pi─Еtki po deployu](https://www.youtube.com/playlist?list=PLLewE5KdsaqWFXAcVN1F4MUCuJxyt5I5E) - Mateusz Anio┼Вa, Mi┼Вosz Kusiciel (podcast)
* [Dev Env](https://devenv.pl/podcast) - Adrian Pi─Щtka, Bart┼Вomiej Michalski, Mateusz Konieczny (podcast)
* [DevTalk](https://devstyle.pl/category/podcast)
* [Pi─Еtki po deployu](https://piatkipodeployu.pl) - Mateusz Anio┼Вa, Mi┼Вosz Kusiciel (podcast)
* [Porozmawiajmy o IT](https://porozmawiajmyoit.pl) - Krzysztof Kempi┼Дski (podcast)
* [Przeprogramowani](https://przeprogramowani.pl/podcast) - Przemek Smyrdek, Marcin Czarkowski (podcast)
* [Rozchmurzony](https://cloudowski.com/podcast/) - Tomasz Cholewa (podcast)
* [Przeprogramowani](https://anchor.fm/przeprogramowani) - Przemek Smyrdek, Marcin Czarkowski (podcast)
* [Rozmowa Kontrolowana](https://www.youtube.com/playlist?list=PLTKLAGr6FHxOcW4NRX3BCkU7Zml92WU1u) - Zaufana Trzecia Strona (screencast)
-7
View File
@@ -79,20 +79,13 @@
### Language Agnostic
* [Baltacast - Podcast do balta.io](https://www.youtube.com/playlist?list=PLHlHvK2lnJneed8g24W1e0Zz9q1uvD7wg) (podcast)
* [Cast├бlio Podcast](http://castalio.info) (podcast)
* [Cultura DevOps](https://www.youtube.com/playlist?list=PLFaao6abyD0cQp47BzJSQmeTegM2NLl_i) - Objective (podcast)
* [DevNaEstrada](http://devnaestrada.com.br) (podcast)
* [Engineering Sessions S01](https://www.youtube.com/playlist?list=PLJ_lIzJ_Nd1TZ6i4HjMuBycyhwhUqlxtI) - Carlos Nogueira (DevOps) (podcast)
* [Engineering Sessions S02](https://www.youtube.com/playlist?list=PLJ_lIzJ_Nd1RWTc9uSrl-5rprIQp6GIOZ) - Carlos Nogueira (DevOps) (podcast)
* [Experience Podcast - Curso em V├нdeo](https://www.youtube.com/playlist?list=PLHz_AreHm4dlAL49NfFvf7lUP2jrcMlYQ) (podcast)
* [Grok Podcast](http://www.grokpodcast.com) (podcast)
* [Hipsters Ponto Tech](http://hipsters.tech) (podcast)
* [Lambda3](https://blog.lambda3.com.br/category/podcast) (podcast)
* [M1 Podcast](https://www.youtube.com/playlist?list=PLHA9dlpmDGwJJO2Q6eR60R7tjMidaEFY5) - Startup Life (podcast)
* [NerdTech (Jovem Nerd)](https://jovemnerd.com.br/playlist/nerdtech) (podcast)
* [OsProgramadores](https://anchor.fm/osprogramadores) (podcast)
* [Papinho Tech [Epis├│dios Completos]](https://www.youtube.com/playlist?list=PLylCwvNCtoanRxj-mOOyC9PnD5Yb2P1-j) (podcast)
* [PODebug](http://www.podebug.com) (podcast)
* [PodProgramar](https://mundopodcast.com.br/podprogramar) (podcast)
* [podTag](https://podtag.com.br) (podcast)
+3 -4
View File
@@ -7,13 +7,12 @@
* [Agilpodden](https://www.agilpodden.se) - Dick Lyhammar, Erik Hultgren (podcast)
* [AI-Podden](https://ai-podden.se) - Ather Gattami, Bitynamics, Cloudberry (podcast)
* [Asdf](https://asdf.pizza) - Ther├йse Komstadius, Anton Gunnarsson (podcast)
* [Developers тАУ mer ├дn bara kod](https://www.developerspodcast.com) - Madeleine Sch├╢nemann, Sofia Larsson, Gustav Hallberg (podcast)
* [IT-s├дkerhetspodden](https://www.itsakerhetspodden.se) - Mattias Jadesk├╢ld, Erik Zalitis (podcast)
* [Kodsnack](https://kodsnack.se) (podcast)
* [Kompilator](https://kompilator.se) (podcast)
* [Kodsnack](http://kodsnack.se) (podcast)
* [Let's tech-podden](https://letstech.libsyn.com) - Henrik Enstr├╢m (podcast)
* [Modermodemet](https://modermodemet.se) (podcast)
* [Spelskaparna](https://spelskaparna.com) - Olle Landin (podcast)
* [Still in beta](http://stillinbeta.se) (podcast)
* [Under utveckling](https://underutveckling.libsyn.com) (podcast)
* [Utveckla](https://consid.se/podd/utveckla) - Simon Zachrisson, Tobias Dahlgren (podcast)
* [V├дg 74](https://www.agical.se/pod) (podcast)
+296 -365
View File
@@ -4,14 +4,12 @@
* [Algorithms & Data Structures](#algorithms--data-structures)
* [Assembly](#assembly)
* [AWS](#aws)
* [Bootstrap](#bootstrap)
* [C](#c)
* [C#&lrm;](#csharp)
* [C++&lrm;](#cpp)
* [Cloud Computing](#cloud-computing)
* [AWS](#aws)
* [Computer Architecture](#computer-architecture)
* [Computer Science](#computer-science)
* [Dart](#dart)
* [Databases](#databases)
* [NoSQL](#nosql)
@@ -28,7 +26,6 @@
* [JavaScript](#javascript)
* [Gulp.js](#gulpjs)
* [jQuery](#jquery)
* [Nest.js](#nestjs)
* [NodeJS](#nodejs)
* [Nuxt.js](#nuxtjs)
* [PugJs](#pugjs)
@@ -48,7 +45,6 @@
* [R](#r)
* [RabbitMQ](#rabbitmq)
* [Redis](#redis)
* [Rust](#rust)
* [Software Architecture](#software-architecture)
* [TypeScript](#typescript)
* [Angular](#angular)
@@ -56,561 +52,496 @@
### Algorithms & Data Structures
* [╪│┘Д╪│╪й ╪з┘Д╪о┘И╪з╪▒╪▓┘Е┘К╪з╪к ┘И╪н┘Д ╪з┘Д┘Е╪┤╪з┘Г┘Д ╪з┘Д┘Е╪│╪к┘И┘Й ╪з┘Д╪з┘И┘Д](https://www.youtube.com/playlist?list=PL3X--QIIK-OEUIwbQU79V76RHelBUQKiz) - Programming Advices&rlm;
* [Algorithms - Full Coures In Arabic&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY6KH-8c9F-lMWn-r02hyoV_) - Hard-Code&rlm;
* [Algorithms Design & Analysis&rlm;](https://www.youtube.com/playlist?list=PLEBRPBUkZ4maAlTZw3eZFwfwIGXaln0in) - FCI-Career-Build&rlm;
* [C++ Data Structures -&rlm; ╪к╪▒╪з┘Г┘К╪и ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PL1DUmTEdeA6JlommmGP5wicYLxX5PVCQt) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘К
* [Competitive Programming and Problem Solving&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AagpjRJQp0q8D1D3Uuh1hsVH) - Adel Nasim&rlm;
* [CS Master - Level 1- Algorithms & Data Structures&rlm; ╪з┘Д╪о┘И╪з╪▒╪▓┘Е┘К╪з╪к ┘И┘З┘К╪з┘Г┘Д ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PLL2zWZTDFZzjxarUL23ydiOgibhRipGYC) - KMR Script&rlm;
* [Data structure&rlm;](https://www.youtube.com/playlist?list=PLIxq078xdGdZWUXwumK9lbEn3kKwKLTwx) - Nehal Elsamoly&rlm;
* [Data Structure&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY4UQq4vXgGPwGLVX1Y5faaS) - Hard-Code&rlm;
* [Data Structure : JavaScript (leetcode problem solving)&rlm;](https://www.youtube.com/playlist?list=PLS-MrzRLZtmdIHJ-Osvv_sJO1Msc4VM_7) - Shadow Coding&rlm;
* [Data Structure C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLsGJzJ8SQXTcsXRVviurGei0lf_t_I4D8) - Mega Code&rlm;
* [Data Structures and Algorithms&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NVOtPYuz0rNw6kmuLmVZ780) - Tarek Alabd&rlm; ( :construction: *in process*&rlm;)
* [Data Structures Full Course In Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AajqOUW_2SwjWeMwf4vL4RSp) - Adel Nasim&rlm;
* [grokking-algorithms&rlm;](https://www.youtube.com/playlist?list=PLIxq078xdGdZl38Yx2IhYc_YpKjx7MAXW) - Nehal Elsamoly&rlm;
* [Problem solving (Arabic)&rlm;](https://www.youtube.com/playlist?list=PLYknlDiw2kSwdDhTSDoX7ZoVEle8nbZdk) - Muhammed Afifi&rlm;
* [Problems Solving With C++ Level One&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAyX4CCOP--TR36SfD5g7gru) - Elzero Web School&rlm;
* [Problems Solving With C++ Level Two&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwgefuRqj8OB5ioMT1eC_EZ) - Elzero Web School&rlm; ( :construction: *in process*&rlm;)
* [Sorting algorithms \|&rlm; ╪о┘И╪з╪▒╪▓┘Е┘К╪з╪к ╪з┘Д╪к╪▒╪к┘К╪и](https://www.youtube.com/playlist?list=PLINp1xZ5bPrpmnL0cdk80czipnIqPAzWH) - DevLoopers&rlm;
* [Standard Template Library (STL) Full Tutorial Using C++ In Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AainAE4Xq2kdNGDfG0bys2xp) - Adel Nasim&rlm;
* [╪и╪з┘Д╪╣╪▒╪и┘К CS50T ┘Г┘И╪▒╪│ \|\| CS50T in Arabic&rlm;](https://www.youtube.com/playlist?list=PLnrlZUDQofUvLtIMvVxZRYYju7ni0Xsxq) - Coders Camp - Rasha Abdeen
* [╪│┘Д╪│╪й ╪з┘Д╪о┘И╪з╪▒╪▓┘Е┘К╪з╪к ┘И╪н┘Д ╪з┘Д┘Е╪┤╪з┘Г┘Д ╪з┘Д┘Е╪│╪к┘И┘Й ╪з┘Д╪з┘И┘Д](https://www.youtube.com/playlist?list=PL3X--QIIK-OEUIwbQU79V76RHelBUQKiz) - Programming Advices
* [Algorithms - Full Coures In Arabic&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY6KH-8c9F-lMWn-r02hyoV_) - Hard-Code
* [Algorithms Design & Analysis&rlm;](https://www.youtube.com/playlist?list=PLEBRPBUkZ4maAlTZw3eZFwfwIGXaln0in) - FCI-Career-Build
* [C++ Data Structures - ╪к╪▒╪з┘Г┘К╪и ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PL1DUmTEdeA6JlommmGP5wicYLxX5PVCQt) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘К
* [CS Master - Level 1- Algorithms & Data Structures ╪з┘Д╪о┘И╪з╪▒╪▓┘Е┘К╪з╪к ┘И┘З┘К╪з┘Г┘Д ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PLL2zWZTDFZzjxarUL23ydiOgibhRipGYC) - KMR Script
* [CS Master - Level 2- Dive into the Computer ┘Г┘К┘Б ┘К╪╣┘Е┘Д ╪з┘Д┘Г┘Е╪и┘К┘И╪к╪▒](https://www.youtube.com/playlist?list=PLL2zWZTDFZziX_xS2bbGfLAOHVmlzURhF) - KMR Script
* [CS50 in Arabic&rlm;](https://www.youtube.com/playlist?list=PLL2zWZTDFZzibJ49gBM2owqCzda8meSNj) - KMR Script
* [CS50 In Arabic&rlm;](https://www.youtube.com/playlist?list=PLnrlZUDQofUv7JE4QIahAyztrQU9bnJmd) - Coders Camp - Rasha Abdeen
* [Cs50 In Arabic 2022 \| ┘Г┘И╪▒╪│ cs50 ╪и╪з┘Д╪╣╪▒╪и┘К ┘Г╪з┘Е┘Д](https://www.youtube.com/playlist?list=PLknwEmKsW8OvsdJ64v5YljHNtt100kN6w) - Abdelrahman Gamal&rlm; (:construction: *in process*)
* [Data structure&rlm;](https://www.youtube.com/playlist?list=PLIxq078xdGdZWUXwumK9lbEn3kKwKLTwx) - Nehal Elsamoly
* [Data Structure&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY4UQq4vXgGPwGLVX1Y5faaS) - Hard-Code
* [Data Structure : JavaScript (leetcode problem solving)&rlm;](https://www.youtube.com/playlist?list=PLS-MrzRLZtmdIHJ-Osvv_sJO1Msc4VM_7) - Shadow Coding
* [Data Structure C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLsGJzJ8SQXTcsXRVviurGei0lf_t_I4D8) - Mega Code
* [Data Structures and Algorithms&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NVOtPYuz0rNw6kmuLmVZ780) - Tarek Alabd&rlm; (:construction: *in process*)
* [Data Structures Full Course In Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AajqOUW_2SwjWeMwf4vL4RSp) - Adel Nasim
* [grokking-algorithms&rlm;](https://www.youtube.com/playlist?list=PLIxq078xdGdZl38Yx2IhYc_YpKjx7MAXW) - Nehal Elsamoly&rlm; (:construction: *in process*)
* [Problem solving (Arabic)&rlm;](https://www.youtube.com/playlist?list=PLYknlDiw2kSwdDhTSDoX7ZoVEle8nbZdk) - Muhammed Afifi
* [Standard Template Library (STL) Full Tutorial Using C++ In Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AainAE4Xq2kdNGDfG0bys2xp) - Adel Nasim
### Assembly
* [Microprocessor 8086 & Assembly Language Course&rlm;](https://www.youtube.com/playlist?list=PLi0-RQZxQ8Fmwopq43StX61igOvXbFMQv) - Sherif Ezzat&rlm;
* [x86 Assembly Language -&rlm; ┘Д╪║╪й ╪з┘Д╪к╪м┘Е┘К╪╣](https://www.youtube.com/playlist?list=PLMm8EjqH1EFVodghdDWaAuHkHqj-nJ0bN) - Ahmed Sallam&rlm;
* [Microprocessor 8086 & Assembly Language Course&rlm;](https://www.youtube.com/playlist?list=PLi0-RQZxQ8Fmwopq43StX61igOvXbFMQv) - Sherif Ezzat
* [x86 Assembly Language - ┘Д╪║╪й ╪з┘Д╪к╪м┘Е┘К╪╣](https://www.youtube.com/playlist?list=PLMm8EjqH1EFVodghdDWaAuHkHqj-nJ0bN) - Ahmed Sallam
### AWS
* [AWS Certified Solutions Architect - Associate By Eng-Mohammed Oday | Arabic](https://www.youtube.com/playlist?list=PLCIJjtzQPZJ_yv1T4eKYsY1hZxcYSjhGY) - Free4arab | Information Technology
* [AWS SAA-C02 - ┘Г┘И╪▒╪│ ┘Г╪з┘Е┘Д ╪и╪з┘Д╪╣╪▒╪и┘К ┘Е╪╣ ╪з┘Д┘Е┘З┘Ж╪п╪│ ╪╣┘К╪│┘Й ╪г╪и┘И ╪┤╪▒┘К┘Б](youtube.com/playlist?list=PLOoZRfEtk6kWSM_l9xMjDh-_MJXl03-pf) - AWS Riyadh User Group
### Bootstrap
* [┘Г┘И╪▒╪│ ╪и┘И╪к╪│╪к╪▒╪з╪и ┘Г╪з┘Е┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж \| bootstrap 2021 tutorial for beginners&rlm;](https://www.youtube.com/playlist?list=PLknwEmKsW8OscL9GvjxwL7RYbcwwdIitk) - Abdelrahman Gamal&rlm;
* [Bootstrap 3 In Arabic&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAw24EjNUp_88S1VeaNK8Cts) - Elzero Web School&rlm;
* [Bootstrap 4&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy0dU3C3_lNRTSTtqePEsI2) - Elzero Web School&rlm;
* [Bootstrap 5 Design 01 Bondi&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAyvm7f--dc6XqkpfDcen_vQ) - Elzero Web School&rlm;
* [Bootstrap 5 Tutorial&rlm;](https://www.youtube.com/playlist?list=PLnD96kXp-_pMJp3stPetkN76AJ2mmeah7) - Ag Coding&rlm;
* [┘Г┘И╪▒╪│ ╪и┘И╪к╪│╪к╪▒╪з╪и ┘Г╪з┘Е┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж \| bootstrap 2021 tutorial for beginners&rlm;](https://www.youtube.com/playlist?list=PLknwEmKsW8OscL9GvjxwL7RYbcwwdIitk) - Abdelrahman Gamal
* [Bootstrap 3 In Arabic&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAw24EjNUp_88S1VeaNK8Cts) - Elzero Web School
* [Bootstrap 4&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy0dU3C3_lNRTSTtqePEsI2) - Elzero Web School
* [Bootstrap 5 Design 01 Bondi&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAyvm7f--dc6XqkpfDcen_vQ) - Elzero Web School
* [Bootstrap 5 Tutorial&rlm;](https://www.youtube.com/playlist?list=PLnD96kXp-_pMJp3stPetkN76AJ2mmeah7) - Ag Coding
### C
* [Data Structures In Arabic Using C&rlm;](https://www.youtube.com/playlist?list=PLEBRPBUkZ4mb6lVqSLRQ7mvSFRcoR7-XV) - FCI-Career-Build&rlm;
* [Introduction to Programming ( C Language -&rlm; ┘Е┘В╪п┘Е╪й ┘Б┘К ╪з┘Д╪и╪▒┘Е╪м╪й ( ┘Д╪║╪й ╪з┘Д╪│┘К](https://www.youtube.com/playlist?list=PLMm8EjqH1EFXI8wByY0umF_DQON2S9uws) - Ahmed Sallam&rlm;
* [Data Structures In Arabic Using C&rlm;](https://www.youtube.com/playlist?list=PLEBRPBUkZ4mb6lVqSLRQ7mvSFRcoR7-XV) - FCI-Career-Build
* [Introduction to Programming ( C Language - ┘Е┘В╪п┘Е╪й ┘Б┘К ╪з┘Д╪и╪▒┘Е╪м╪й ( ┘Д╪║╪й ╪з┘Д╪│┘К](https://www.youtube.com/playlist?list=PLMm8EjqH1EFXI8wByY0umF_DQON2S9uws) - Ahmed Sallam
### <a id="csharp"></a>C#&lrm;
* [╪з┘Д╪п┘И╪▒╪й ╪з┘Д┘Е╪к┘В╪п┘Е╪й C#-SQLServer Using MVP & Git&rlm;](https://www.youtube.com/playlist?list=PLDQ11FgmbqQMaXEZihgOgfwZCNAr03sph) - Programming Solutions - Academy&rlm;
* [╪з┘Д┘Е┘И╪з╪╢┘К╪╣ ╪з┘Д┘Е╪к┘В╪п┘Е╪й ┘Б┘К ╪з┘Д╪│┘К ╪┤╪з╪▒╪и \| Advanced C# Course in Arabia&rlm;](https://www.youtube.com/playlist?list=PLX1bW_GeBRhBbnebNayUDYlQJRBKwZKlo) - Codographia&rlm;
* [┘Г┘И╪▒╪│ ╪│┘К ╪┤╪з╪▒╪и ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLX1bW_GeBRhCU9l7examhVrARmXHHRrLR) - Codographia&rlm;
* [┘Г┘И╪▒╪│ Design Patterns╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY56xIDF6IX0hmZC6JYoGQkS) - Mobarmg&rlm;
* [C#&lrm;&rlm;](https://www.youtube.com/playlist?list=PLltZRmsFXWnIfLM0BKgJNZYVnvCDZNAh_) - 6wrni&rlm;
* [C# Advanced&rlm;](https://www.youtube.com/playlist?list=PLsV97AQt78NQYhO7NqlBTrJX_Nsk3SmyY) - Passionate Coders \|&rlm; ┘Е╪н┘Е╪п ╪з┘Д┘Е┘З╪п┘К
* [C# Fundamentals&rlm;](https://www.youtube.com/playlist?list=PLsV97AQt78NT0H8J71qe7edwRpAirfqOI) - Passionate Coders \|&rlm; ┘Е╪н┘Е╪п ╪з┘Д┘Е┘З╪п┘К
* [C# Programming Course Level 1 Basics By Arabic&rlm;](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQLsXXXxx_mX3WvUEgGM0iA) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [C# Programming Course Level 2 Object Oriented Programming By Arabic&rlm;](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQfXeFaGHRYQfyQrJjOy43u) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [Object-Oriented Programming (OOP)&rlm;](https://www.youtube.com/playlist?list=PLsV97AQt78NQumtM4rQc77yjbkZcGOTX5) - Passionate Coders \|&rlm; ┘Е╪н┘Е╪п ╪з┘Д┘Е┘З╪п┘К
* [Object-Oriented Programming in C#&lrm; ╪│┘Д╪│┘Д╪й](https://www.youtube.com/playlist?list=PLX1bW_GeBRhAfq0EsDHH4YemBAd6G-H75) - Codographia&rlm;
* [Unit Testing&rlm;](https://www.youtube.com/playlist?list=PLsV97AQt78NS2O4QeWFVHOOALoehl22vU) - Passionate Coders \|&rlm; ┘Е╪н┘Е╪п ╪з┘Д┘Е┘З╪п┘К
* [Unit Testing in C# [Arabic]&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN28xijrXMO255JHsO3csus-) - ╪о╪з┘Д╪п ╪з┘Д╪│╪╣╪п╪з┘Ж┘К
* [╪з┘Д╪п┘И╪▒╪й ╪з┘Д┘Е╪к┘В╪п┘Е╪й C#-SQLServer Using MVP & Git&rlm;](https://www.youtube.com/playlist?list=PLDQ11FgmbqQMaXEZihgOgfwZCNAr03sph) - Programming Solutions - Academy
* [┘Г┘И╪▒╪│ Design Patterns╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY56xIDF6IX0hmZC6JYoGQkS) - Mobarmg
* [C#&lrm;&rlm;](https://www.youtube.com/playlist?list=PLltZRmsFXWnIfLM0BKgJNZYVnvCDZNAh_) - 6wrni
* [C# Programming Course Level 1 Basics By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQLsXXXxx_mX3WvUEgGM0iA) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [C# Programming Course Level 2 Object Oriented Programming By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQfXeFaGHRYQfyQrJjOy43u) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [Unit Testing in C# [Arabic]](https://www.youtube.com/playlist?list=PLwj1YcMhLRN28xijrXMO255JHsO3csus-) - ╪о╪з┘Д╪п ╪з┘Д╪│╪╣╪п╪з┘Ж┘К
### <a id="cpp"></a>C++&lrm;
* [[ ╪г╪╡┘И┘Д ╪з┘Д╪и╪▒┘Е╪м╪й ] - ╪┤╪▒╪н ╪з┘Д┘Е╪д╪┤╪▒╪з╪к ( Pointers )&rlm; ┘Б┘К ┘Д╪║╪й C/C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY6z3264DylWHcHBtmEjUWrA) - Hard-Code&rlm;
* [┘Г┘И╪▒╪│ ╪з┘Д╪и╪▒┘Е╪м╪й ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж ╪и┘Д╪║╪й C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NXXdrLompmAnxOaEfcAVmQi) - Tarek Alabd&rlm;
* [Arabic C++ For kids & beginners&rlm; (╪и╪▒┘Е╪м╪й ┘Д╪╡╪║╪з╪▒ ╪з┘Д╪│┘Ж ┘И╪з┘Д┘Е╪и╪к╪п╪ж┘К┘К┘Ж)](https://www.youtube.com/playlist?list=PLPt2dINI2MIbwnEoeHZnUHeUHjTd8x4F3) - Arabic Competitive Programming&rlm;
* [Basics of OOP with C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NVdm59YZTEEuXqVQZtUAgoD) - Tarek Alabd&rlm;
* [C++ - OOP&rlm; ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLDQ11FgmbqQNq_cdsda-OLBZmS8F8vVVA) - Programming Solutions - Academy&rlm;
* [C++ For Beginners - Eng. Marwa Radwan&rlm;](https://www.youtube.com/playlist?list=PLsECTUuTGe7pfm3TTshn5V3PFQQ_cZyvv) - Techs Experts&rlm;
* [C++ Intensive -&rlm; ╪и╪▒┘Е╪м╪й ╪з┘Д╪н╪з╪│┘И╪и](https://www.youtube.com/playlist?list=PLPt2dINI2MIZPFq6HyUB1Uhxdh1UDnZMS) - Arabic Competitive Programming&rlm;
* [C++ Object-Oriented Design and Programming&rlm;](https://www.youtube.com/playlist?list=PLPt2dINI2MIbMba7tpx3qvmgOsDlpITwG) - Arabic Competitive Programming&rlm;
* [C++ Programming \| Arabic Course&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY74yb5ZrRg1Cmil46KxLUDC) - Hard-Code&rlm;
* [C++ Programming Basics&rlm;](https://www.youtube.com/playlist?list=PLv3VqjyehAoSSzkyHmWk89hPgcVwTNouG) - Ali Shahin&rlm;
* [C++ Programming Course Level 1 Basics By Arabic&rlm;](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQ_nQt-hKGAEIDJjTJBCV02) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [C++ Programming Course Level 2 Object Oriented Programming By Arabic&rlm;](https://www.youtube.com/playlist?list=PLnzqK5HvcpwRUapI9yl1qwkdpS__UtqLd) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [C++ Programming From Scratch In Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AajFAiw4s1U4QbGszcQ-rAb3) - Adel Nasim&rlm;
* [CS Master - Level 0 - Intro to CS&rlm; ┘Е┘В╪п┘Е╪й ┘Д╪╣┘Д┘И┘Е ╪з┘Д╪н╪з╪│╪и](https://www.youtube.com/playlist?list=PLL2zWZTDFZzivM2GAL3HpuFrHlLwp6FoO) - KMR Script&rlm;
* [CS Master - Level 4 - Object Oriented Programming & Design Patterns&rlm;](https://www.youtube.com/playlist?list=PLL2zWZTDFZzhul3X8djkfXzUxl7Cw7-sF) - KMR Script&rlm;
* [Fundamentals Of Programming With C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwy-rS6WKudwVeb_x63EzgS) - Elzero Web School&rlm;
* [Introduction to Programming Using C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PL3X--QIIK-OFIRbOHbOXbcfSAvw198lUy) - Programming Advices&rlm;
* [Modern c++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLkH1REggdbJpykrlVYYRteEstS6F4VNtP) - Moatasem El Sayed&rlm; *( :construction: in process)*
* [Object-Oriented Programming C++ in Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2Aaiq1oLvi9TlWtArJyAuCVow) - Adel Nasim&rlm;
* [Object-Oriented Programming with C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLMm8EjqH1EFXG_-EgmKb1gxW5S4XaQYaE) - Ahmed Sallam&rlm;
* [\[ ╪г╪╡┘И┘Д ╪з┘Д╪и╪▒┘Е╪м╪й \] - ╪┤╪▒╪н ╪з┘Д┘Е╪д╪┤╪▒╪з╪к ( Pointers ) ┘Б┘К ┘Д╪║╪й C/C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY6z3264DylWHcHBtmEjUWrA) - Hard-Code
* [┘Г┘И╪▒╪│ ╪з┘Д╪и╪▒┘Е╪м╪й ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж ╪и┘Д╪║╪й C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NXXdrLompmAnxOaEfcAVmQi) - Tarek Alabd
* [Arabic C++ For kids & beginners (╪и╪▒┘Е╪м╪й ┘Д╪╡╪║╪з╪▒ ╪з┘Д╪│┘Ж ┘И╪з┘Д┘Е╪и╪к╪п╪ж┘К┘К┘Ж)](https://www.youtube.com/playlist?list=PLPt2dINI2MIbwnEoeHZnUHeUHjTd8x4F3) - Arabic Competitive Programming
* [Basics of OOP with C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NVdm59YZTEEuXqVQZtUAgoD) - Tarek Alabd
* [C++ - OOP ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLDQ11FgmbqQNq_cdsda-OLBZmS8F8vVVA) - Programming Solutions - Academy
* [C++ For Beginners - Eng. Marwa Radwan&rlm;](https://www.youtube.com/playlist?list=PLsECTUuTGe7pfm3TTshn5V3PFQQ_cZyvv) - Techs Experts
* [C++ Intensive - ╪и╪▒┘Е╪м╪й ╪з┘Д╪н╪з╪│┘И╪и](https://www.youtube.com/playlist?list=PLPt2dINI2MIZPFq6HyUB1Uhxdh1UDnZMS) - Arabic Competitive Programming
* [C++ Object-Oriented Design and Programming&rlm;](https://www.youtube.com/playlist?list=PLPt2dINI2MIbMba7tpx3qvmgOsDlpITwG) - Arabic Competitive Programming
* [C++ Programming \| Arabic Course&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY74yb5ZrRg1Cmil46KxLUDC) - Hard-Code
* [C++ Programming Basics&rlm;](https://www.youtube.com/playlist?list=PLv3VqjyehAoSSzkyHmWk89hPgcVwTNouG) - Ali Shahin
* [C++ Programming Course Level 1 Basics By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQ_nQt-hKGAEIDJjTJBCV02) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [C++ Programming Course Level 2 Object Oriented Programming By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwRUapI9yl1qwkdpS__UtqLd) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [C++ Programming From Scratch In Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AajFAiw4s1U4QbGszcQ-rAb3) - Adel Nasim
* [CS Master - Level 0 - Intro to CS ┘Е┘В╪п┘Е╪й ┘Д╪╣┘Д┘И┘Е ╪з┘Д╪н╪з╪│╪и](https://www.youtube.com/playlist?list=PLL2zWZTDFZzivM2GAL3HpuFrHlLwp6FoO) - KMR Script
* [CS Master - Level 4 - Object Oriented Programming & Design Patterns&rlm;](https://www.youtube.com/playlist?list=PLL2zWZTDFZzhul3X8djkfXzUxl7Cw7-sF) - KMR Script
* [Fundamentals Of Programming With C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwy-rS6WKudwVeb_x63EzgS) - Elzero Web School
* [Introduction to Programming Using C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PL3X--QIIK-OFIRbOHbOXbcfSAvw198lUy) - Programming Advices
* [Modern c++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLkH1REggdbJpykrlVYYRteEstS6F4VNtP) - Moatasem El Sayed&rlm; (:construction: *in process*)
* [Object-Oriented Programming C++ in Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2Aaiq1oLvi9TlWtArJyAuCVow) - Adel Nasim
* [Object-Oriented Programming with C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PLMm8EjqH1EFXG_-EgmKb1gxW5S4XaQYaE) - Ahmed Sallam
* [Programming 1 - Programming For Beginners - C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PL1DUmTEdeA6IUD9Gt5rZlQfbZyAWXd-oD) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘К
* [Programming 2 - Object Oriented Programming with C++&lrm;&rlm;](https://www.youtube.com/playlist?list=PL1DUmTEdeA6KLEvIO0NyrkT91BVle8BOU) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘К
### Cloud Computing
* [Confluent&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm-qHFib_KPKFBlOL3Ggb9Hi) - Ismail Anjrini&rlm;
* [GCP&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm-JJyJ5kJA02rcOXnyfqIWO) - Ismail Anjrini&rlm;
#### AWS
* [AWS Certified Solutions Architect - Associate By Eng-Mohammed Oday \| Arabic&rlm;](https://www.youtube.com/playlist?list=PLCIJjtzQPZJ_yv1T4eKYsY1hZxcYSjhGY) - Free4arab \| Information Technology&rlm;
* [AWS SAA-C02 - &rlm;┘Г┘И╪▒╪│ ┘Г╪з┘Е┘Д ╪и╪з┘Д╪╣╪▒╪и┘К ┘Е╪╣ ╪з┘Д┘Е┘З┘Ж╪п╪│ ╪╣┘К╪│┘Й ╪г╪и┘И ╪┤╪▒┘К┘Б](youtube.com/playlist?list=PLOoZRfEtk6kWSM_l9xMjDh-_MJXl03-pf) - AWS Riyadh User Group&rlm;
### Computer Architecture
* [Computer Architecture - &rlm;╪к┘Ж╪╕┘К┘Е ┘И╪и┘Ж╪з╪б ╪з┘Д╪н╪з╪│╪и](https://www.youtube.com/playlist?list=PLMm8EjqH1EFVEVWSiBdCoBEJHffjHUScZ) - Ahmed Sallam&rlm;
### Computer Science
* [╪и╪з┘Д╪╣╪▒╪и┘К CS50T&rlm; ┘Г┘И╪▒╪│ \|\| CS50T in Arabic&rlm;](https://www.youtube.com/playlist?list=PLnrlZUDQofUvLtIMvVxZRYYju7ni0Xsxq) - Coders Camp - Rasha Abdeen&rlm;
* [╪к╪╣┘Д┘Е ╪г╪│╪з╪│┘К╪з╪к ╪з┘Д╪и╪▒┘Е╪м╪й ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLoP3S2S1qTfBCtTYJ2dyy3mpn7aWAAjdN) - OctuCode&rlm;
* [┘Г┘И╪▒╪│ ╪г╪│╪з╪│┘К╪з╪к ╪з┘Д┘Г┘Е╪и┘К┘И╪к╪▒](https://www.youtube.com/playlist?list=PLvGNfY-tFUN8D7uAQzkBfMkJ7XAFWSsIv) - ╪║╪▒┘К╪и ╪з┘Д╪┤┘К╪о \|\| Ghareeb Elshaikh&rlm;
* [┘Е╪з ┘В╪и┘Д ╪к╪╣┘Д┘Е ╪з┘Д╪и╪▒┘Е╪м╪й](https://www.youtube.com/playlist?list=PLDoPjvoNmBAx8xKvAXpb6f0Urj98Xo7zg) - Elzero Web School&rlm;
* [┘Е┘Б╪з┘З┘К┘Е ╪з╪│╪з╪│┘К╪й ┘Б┘К ╪з┘Д╪и╪▒┘Е╪м╪й](https://www.youtube.com/playlist?list=PLv3VqjyehAoRcrpuavzqleAA2jJYk6KgU) - Ali Shahin&rlm;
* [┘Е┘В╪п┘Е╪й ┘Б┘К ╪╣┘Д┘И┘Е ╪з┘Д╪н╪з╪│╪и](https://www.youtube.com/playlist?list=PLv3VqjyehAoRUEU3Gr1Fwzhdmz4wH0tNJ) - Ali Shahin&rlm;
* [CS Master - Level 2- Dive into the Computer&rlm; ┘Г┘К┘Б ┘К╪╣┘Е┘Д ╪з┘Д┘Г┘Е╪и┘К┘И╪к╪▒](https://www.youtube.com/playlist?list=PLL2zWZTDFZziX_xS2bbGfLAOHVmlzURhF) - KMR Script&rlm;
* [CS50 in Arabic&rlm;](https://www.youtube.com/playlist?list=PLL2zWZTDFZzibJ49gBM2owqCzda8meSNj) - KMR Script&rlm;
* [CS50 In Arabic&rlm;](https://www.youtube.com/playlist?list=PLnrlZUDQofUv7JE4QIahAyztrQU9bnJmd) - Coders Camp - Rasha Abdeen&rlm;
* [Cs50 In Arabic 2022 \|&rlm; ┘Г┘И╪▒╪│ cs50&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К ┘Г╪з┘Е┘Д](https://www.youtube.com/playlist?list=PLknwEmKsW8OvsdJ64v5YljHNtt100kN6w) - Abdelrahman Gamal&rlm; *( :construction: in process)*
* [Distributed Systems Design Patterns&rlm;](https://www.youtube.com/playlist?list=PLZafHDYyxnk6ssRA-8LzMpep1MrqocFiY) - Mahmoud Youssef -&rlm; ┘Е╪н┘Е┘И╪п ┘К┘И╪│┘Б *( :construction: in process)*
* [Computer Architecture - ╪к┘Ж╪╕┘К┘Е ┘И╪и┘Ж╪з╪б ╪з┘Д╪н╪з╪│╪и](https://www.youtube.com/playlist?list=PLMm8EjqH1EFVEVWSiBdCoBEJHffjHUScZ) - Ahmed Sallam
### Dart
* [Dart &rlm;╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLMDrOnfT8EAj6Yjdki9OCLSwqdBs4xhQz) - Asem Saafan&rlm;
* [Dart ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLMDrOnfT8EAj6Yjdki9OCLSwqdBs4xhQz) - Asem Saafan
### Databases
* [CS Master - Level 3 - Databases&rlm; ┘В┘И╪з╪╣╪п ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PLL2zWZTDFZzhXQ1bcYlO3PtN4MsLiG-gy) - KMR Script&rlm;
* [Database 1 - &rlm;╪з┘Д┘Е┘В╪▒╪▒ ╪з┘Д┘Ж╪╕╪▒┘Й - Fundamentals of Database Systems&rlm;](https://www.youtube.com/playlist?list=PL37D52B7714788190) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
* [CS Master - Level 3 - Databases ┘В┘И╪з╪╣╪п ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PLL2zWZTDFZzhXQ1bcYlO3PtN4MsLiG-gy) - KMR Script
* [Database 1 - ╪з┘Д┘Е┘В╪▒╪▒ ╪з┘Д┘Ж╪╕╪▒┘Й - Fundamentals of Database Systems](https://www.youtube.com/playlist?list=PL37D52B7714788190) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
* [Database Design](https://www.youtube.com/playlist?list=PLkzDzmo9y3VHDFKp7LuXd-FwbefvTL5o0) - ╪к╪о╪з╪▒┘К┘Б ┘Е╪и╪▒┘Е╪м
* [Designing Data Intensive Applications &rlm;╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLTRDUPO2OmIljJwE9XMYE_XEgEIWZDCuQ) - Ahmed Elemam&rlm;
* [Relational Database Internals (Arabic - &rlm;╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PLE8kQVoC67PzGwMMsSk3C8MvfAqcYjusF) - TechVault&rlm;
* [Designing Data Intensive Applications ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLTRDUPO2OmIljJwE9XMYE_XEgEIWZDCuQ) - Ahmed Elemam
#### NoSQL
* [Mongodb - &rlm;╪п┘И╪▒╪й ╪к╪╣┘Д┘Е](https://www.youtube.com/playlist?list=PLfDx4cQoUNObp1ujQRNooNiadKdlflevM) - Algorithm Academy&rlm;
* [Mongodb - &rlm;╪п┘И╪▒╪й ┘В┘И╪з╪╣╪п ╪и┘К╪з┘Ж╪з╪к(┘Д┘Д┘Г┘Б┘К┘Б)┘Е](https://www.youtube.com/playlist?list=PLF8OvnCBlEY1sdUym7Cnb5Xc3d7HXLjqf) - TheNewBaghdad&rlm;
* [Mongodb - &rlm;╪┤╪▒╪н ┘В┘И╪з╪╣╪п ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PLGhZWewM_75IILJm_1QDq0yPLbLQz_TCb) - Emam Academy&rlm;
* [Mongodb - ╪п┘И╪▒╪й ╪к╪╣┘Д┘Е](https://www.youtube.com/playlist?list=PLfDx4cQoUNObp1ujQRNooNiadKdlflevM) - Algorithm Academy
* [Mongodb - ╪п┘И╪▒╪й ┘В┘И╪з╪╣╪п ╪и┘К╪з┘Ж╪з╪к(┘Д┘Д┘Г┘Б┘К┘Б)┘Е](https://www.youtube.com/playlist?list=PLF8OvnCBlEY1sdUym7Cnb5Xc3d7HXLjqf) - TheNewBaghdad
* [Mongodb - ╪┤╪▒╪н ┘В┘И╪з╪╣╪п ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PLGhZWewM_75IILJm_1QDq0yPLbLQz_TCb) - Emam Academy
#### SQL
* [Arabic MySQL Essentials &rlm;┘Е╪и╪з╪п╪ж ┘Е╪з┘К ╪│┘Г┘И╪з┘Д](https://www.youtube.com/playlist?list=PLL2zWZTDFZzhBxhIJkhz-B-HulZUN6YzY) - KMR Script&rlm;
* [Database 1 - &rlm;╪з┘Д┘Е┘В╪▒╪▒ ╪з┘Д╪╣┘Е┘Д┘Й - Learn SQL In Arabic](https://www.youtube.com/playlist?list=PL85D9FC9DFD6B9484) - &rlm;┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
* [Learn MySQL&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz6DT8SzQ1CODJTH-NIA7R9) - Elzero Web School&rlm;
* [MS SQL Server For Beginners](https://www.youtube.com/playlist?list=PL1DUmTEdeA6J6oDLTveTt4Z7E5qEfFluE) - &rlm;┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
* [MySQL tutorials \|\| &rlm;╪и┘Ж╪з╪б ┘В┘И╪з╪╣╪п ╪з┘Д╪и┘К╪з┘Ж╪з╪к ╪и┘Г┘Б╪з╪б╪й ╪╣╪з┘Д┘К╪й](https://www.youtube.com/playlist?list=PLF8OvnCBlEY25O_Ql0CrgQUAc5NVYkWF2) - TheNewBaghdad&rlm;
* [SQL for Data Analysis \| &rlm;╪┤╪з┘З╪п ┘Г┘К┘Б ╪г╪╡╪и╪н ╪з┘Д┘Б┘К┘Д ┘И╪з┘Д╪п╪▒┘Б┘К┘Д ╪г╪╡╪п┘В╪з╪б](https://www.youtube.com/watch?v=kb-_GbpH3sQ) - Big Data&rlm;
* [Arabic MySQL Essentials ┘Е╪и╪з╪п╪ж ┘Е╪з┘К ╪│┘Г┘И╪з┘Д](https://www.youtube.com/playlist?list=PLL2zWZTDFZzhBxhIJkhz-B-HulZUN6YzY) - KMR Script
* [Database 1 - ╪з┘Д┘Е┘В╪▒╪▒ ╪з┘Д╪╣┘Е┘Д┘Й - Learn SQL In Arabic](https://www.youtube.com/playlist?list=PL85D9FC9DFD6B9484) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
* [Learn MySQL&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz6DT8SzQ1CODJTH-NIA7R9) - Elzero Web School
* [MS SQL Server For Beginners](https://www.youtube.com/playlist?list=PL1DUmTEdeA6J6oDLTveTt4Z7E5qEfFluE) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
* [MySQL tutorials \|\| ╪и┘Ж╪з╪б ┘В┘И╪з╪╣╪п ╪з┘Д╪и┘К╪з┘Ж╪з╪к ╪и┘Г┘Б╪з╪б╪й ╪╣╪з┘Д┘К╪й](https://www.youtube.com/playlist?list=PLF8OvnCBlEY25O_Ql0CrgQUAc5NVYkWF2) - TheNewBaghdad
* [SQL for Data Analysis \| ╪┤╪з┘З╪п ┘Г┘К┘Б ╪г╪╡╪и╪н ╪з┘Д┘Б┘К┘Д ┘И╪з┘Д╪п╪▒┘Б┘К┘Д ╪г╪╡╪п┘В╪з╪б](https://www.youtube.com/watch?v=kb-_GbpH3sQ) - Big Data
### Deep Learning
* [14 &rlm;╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪г┘И┘Д : ╪з┘Д╪к╪╣┘Д┘Е ╪з┘Д╪╣┘Е┘К┘В ┘И ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5WyBLsw6yJYWIiFJ1OmmRyK) - Hesham Asem&rlm;
* [15 &rlm;╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪л╪з┘Ж┘К : ╪к╪╖┘И┘К╪▒ ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣┘Е┘К┘В╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VAuf-d71pu2vGZDgGZnZMw) - Hesham Asem&rlm;
* [16 &rlm;╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪л╪з┘Д╪л : ┘З┘К┘Г┘Д┘К╪й ┘Е╪┤╪з╪▒┘К╪╣ ╪к╪╣┘Д┘Е ╪з┘Д╪в┘Д╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XhL1i0vvBi39LA_ChPzyWw) - Hesham Asem&rlm;
* [17 &rlm;╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪▒╪з╪и╪╣ : ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й ╪з┘Д┘Е┘Д╪к┘Б╪й CNN&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XHyhWNs-jxFtfERv4NlZmm) - Hesham Asem&rlm;
* [18 &rlm;╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪о╪з┘Е╪│ : ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й ╪з┘Д┘Е╪к┘Г╪▒╪▒╪й RNN&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5WTcrGAWlZUL9sOGYgSsON_) - Hesham Asem&rlm;
* [14 ╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪г┘И┘Д : ╪з┘Д╪к╪╣┘Д┘Е ╪з┘Д╪╣┘Е┘К┘В ┘И ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5WyBLsw6yJYWIiFJ1OmmRyK) - Hesham Asem
* [15 ╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪л╪з┘Ж┘К : ╪к╪╖┘И┘К╪▒ ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣┘Е┘К┘В╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VAuf-d71pu2vGZDgGZnZMw) - Hesham Asem
* [16 ╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪л╪з┘Д╪л : ┘З┘К┘Г┘Д┘К╪й ┘Е╪┤╪з╪▒┘К╪╣ ╪к╪╣┘Д┘Е ╪з┘Д╪в┘Д╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XhL1i0vvBi39LA_ChPzyWw) - Hesham Asem
* [17 ╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪▒╪з╪и╪╣ : ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й ╪з┘Д┘Е┘Д╪к┘Б╪й CNN&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XHyhWNs-jxFtfERv4NlZmm) - Hesham Asem
* [18 ╪з┘Д┘Г┘И╪▒╪│ ╪з┘Д╪о╪з┘Е╪│ : ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й ╪з┘Д┘Е╪к┘Г╪▒╪▒╪й RNN&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5WTcrGAWlZUL9sOGYgSsON_) - Hesham Asem
### DevOps
* [GitOps and K8s&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLTRDUPO2OmInz2Fo41zwnoR1IArx70Hig) - Ahmed Elemam&rlm;
* [Kubernetes&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLX1bW_GeBRhDCHijCrMO5F-oHg52rRBpl) - Codographia&rlm;
* [Terraform&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К \| DevOps in Arabic&rlm;](https://www.youtube.com/playlist?list=PLX1bW_GeBRhBIT9-Nyt4_osatqokaN8ae) - Codographia&rlm;
* [GitOps and K8s ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLTRDUPO2OmInz2Fo41zwnoR1IArx70Hig) - Ahmed Elemam
* [Kubernetes ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLX1bW_GeBRhDCHijCrMO5F-oHg52rRBpl) - Codographia
### Docker
* [Docker&rlm; ╪│┘Д╪│┘Д╪й ╪к╪╣┘Д┘Е](https://www.youtube.com/playlist?list=PLX1bW_GeBRhDkTf_jbdvBbkHs2LCWVeXZ) - Codographia&rlm;
* [Docker and Kubernetes \|&rlm; ╪з┘Д╪╣┘Д╪и╪й ╪п┘К ┘Б┘К┘З╪з ╪│┘И╪╣╪и╪з┘Ж \| Arabic&rlm;](https://www.youtube.com/watch?v=PrusdhS2lmo) - Ahmed Sami&rlm;
* [Docker Practical Course in Arabic -&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К Docker ╪┤╪▒╪н](https://www.youtube.com/playlist?list=PLzNfs-3kBUJnY7Cy1XovLaAkgfjim05RR) - Tresmerge&rlm;
* [Software Containerization for Beginners&rlm;](https://www.youtube.com/playlist?list=PLsV97AQt78NTJTBGKI0GE3eJc2Q_SC2B-) - Passionate Coders \| &rlm;┘Е╪н┘Е╪п ╪з┘Д┘Е┘З╪п┘К
* [Docker and Kubernetes \| ╪з┘Д╪╣┘Д╪и╪й ╪п┘К ┘Б┘К┘З╪з ╪│┘И╪╣╪и╪з┘Ж \| Arabic](https://www.youtube.com/watch?v=PrusdhS2lmo) - Ahmed Sami
### Elastic
* [Elastic 5&rlm;](https://www.youtube.com/playlist?list=PLZd2bo_SbAm-Z4WBo9-_mWLyjjwDioux-) - Ismail Anjrini&rlm;
* [Elastic&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm87XtU1K1p_uxqJBjaQJAY1) - Ismail Anjrini&rlm;
* [Elastic 5&rlm;](https://www.youtube.com/playlist?list=PLZd2bo_SbAm-Z4WBo9-_mWLyjjwDioux-) - Ismail Anjrini
* [Elastic ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm87XtU1K1p_uxqJBjaQJAY1) - Ismail Anjrini
### Flutter
* [Advanced Flutter Tutorial - build E commerce App&rlm;](https://www.youtube.com/playlist?list=PLGVaNq6mHiniedDoXJd35XFBNvJAoq-xe) - Scholar Tech&rlm;
* [Best Flutter Course For Beginner in Arabic\| &rlm;╪з┘Б╪╢┘Д ╪п┘И╪▒┘З ┘Б┘Д╪з╪к╪▒ ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLGVaNq6mHinjCPki-3xraQdGWKVz7PhgI) - Scholar Tech&rlm;
* [E-commerce App with Flutter & Dart&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NXpW_Hazx7jCYqwVlwe7SYk) - Tarek Alabd&rlm;
* [Flutter & Dart Bootcamp For Beginners&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NXQ9PxbZV8ixhIRirs8WCt_) - Tarek Alabd&rlm;
* [Flutter &rlm;╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLMDrOnfT8EAhsiJwkzspHp_Ob6oRCHxv0) - Asem Saafan&rlm;
* [Flutter Advanced Complete Course - &rlm;╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_ucnfkI-_yNRCOTI-yJa5N-a) - Omar Ahmed&rlm;
* [Flutter BLoC - &rlm;╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_ufA0GYYjlx_R4smekKH_AuB) - Omar Ahmed&rlm;
* [Mastering Firebase And Flutter version 2 (2021) - Course - project &rlm;-┘Б┘Д╪з╪к╪▒- ┘Е╪┤╪▒┘И╪╣ - ╪п┘И╪▒╪й - ┘Б╪з┘К╪▒╪и┘К╪▓ - ╪┤╪▒╪н - ╪з╪н╪к╪▒╪з┘Б - ┘Г┘И╪▒╪│](https://www.youtube.com/playlist?list=PL93xoMrxRJIve-GSKU61X6okh5pncG0sH) - Wael Abu hamza&rlm;
* [State Management in Flutter&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NUxuaEebvtZ6GNGScR9J2QI) - Tarek Alabd&rlm;
* [Advanced Flutter Tutorial - build E commerce App&rlm;](https://www.youtube.com/playlist?list=PLGVaNq6mHiniedDoXJd35XFBNvJAoq-xe) - Scholar Tech
* [Best Flutter Course For Beginner in Arabic\| ╪з┘Б╪╢┘Д ╪п┘И╪▒┘З ┘Б┘Д╪з╪к╪▒ ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLGVaNq6mHinjCPki-3xraQdGWKVz7PhgI) - Scholar Tech
* [E-commerce App with Flutter & Dart&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NXpW_Hazx7jCYqwVlwe7SYk) - Tarek Alabd
* [Flutter & Dart Bootcamp For Beginners&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NXQ9PxbZV8ixhIRirs8WCt_) - Tarek Alabd
* [Flutter ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLMDrOnfT8EAhsiJwkzspHp_Ob6oRCHxv0) - Asem Saafan
* [Flutter BLoC - ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_ufA0GYYjlx_R4smekKH_AuB) - Omar Ahmed
* [Mastering Firebase And Flutter version 2 (2021) - Course - project -┘Б┘Д╪з╪к╪▒- ┘Е╪┤╪▒┘И╪╣ - ╪п┘И╪▒╪й - ┘Б╪з┘К╪▒╪и┘К╪▓ - ╪┤╪▒╪н - ╪з╪н╪к╪▒╪з┘Б - ┘Г┘И╪▒╪│](https://www.youtube.com/playlist?list=PL93xoMrxRJIve-GSKU61X6okh5pncG0sH) - Wael Abu hamza
* [State Management in Flutter&rlm;](https://www.youtube.com/playlist?list=PL0vtyWBHY2NUxuaEebvtZ6GNGScR9J2QI) - Tarek Alabd
### Game Development
* [╪┤╪▒╪н ┘Е╪н╪▒┘Г ╪з┘Д╪г┘Д╪╣╪з╪и Godot&rlm;](https://www.youtube.com/playlist?list=PLqBd9au_wtU3eX7mLVuLLOt9sfbDWlJsq) - Ahmed Mo'nis&rlm;
* [Godot -&rlm; ╪к╪╣┘Д┘Е ╪з┘Д╪г╪│╪з╪│┘К╪з╪к ┘Д╪к╪╡┘Е┘К┘Е ╪з┘Д╪г┘Д╪╣╪з╪и](https://www.youtube.com/playlist?list=PLXUEZFpQn01Hp06m0MxlMzj8x5Y2n9Dek) - SpriteSheet&rlm;
* [Godot Engine&rlm;](https://www.youtube.com/playlist?list=PLU8IixMdsBbm7qblHP6rEENpOPK0SAxes) - Whales State&rlm;
* [Unity 2D Game&rlm;](https://www.youtube.com/playlist?list=PLltZRmsFXWnLp98IIM1CISQYWowq87YSp) - 6wrni&rlm;
* [Unity 3D Game&rlm;](https://www.youtube.com/playlist?list=PLltZRmsFXWnKk5F3_ltKWKq6lZLveotIF) - 6wrni&rlm;
* [╪┤╪▒╪н ┘Е╪н╪▒┘Г ╪з┘Д╪г┘Д╪╣╪з╪и Godot&rlm;](https://www.youtube.com/playlist?list=PLqBd9au_wtU3eX7mLVuLLOt9sfbDWlJsq) - Ahmed Mo'nis
* [Godot - ╪к╪╣┘Д┘Е ╪з┘Д╪г╪│╪з╪│┘К╪з╪к ┘Д╪к╪╡┘Е┘К┘Е ╪з┘Д╪г┘Д╪╣╪з╪и](https://www.youtube.com/playlist?list=PLXUEZFpQn01Hp06m0MxlMzj8x5Y2n9Dek) - SpriteSheet
* [Godot Engine&rlm;](https://www.youtube.com/playlist?list=PLU8IixMdsBbm7qblHP6rEENpOPK0SAxes) - Whales State
* [Unity 2D Game&rlm;](https://www.youtube.com/playlist?list=PLltZRmsFXWnLp98IIM1CISQYWowq87YSp) - 6wrni
* [Unity 3D Game&rlm;](https://www.youtube.com/playlist?list=PLltZRmsFXWnKk5F3_ltKWKq6lZLveotIF) - 6wrni
### Git
* [Basic course for Git](https://www.youtube.com/playlist?list=PLYyqC4bNbCIeCHLTRtwdLpQvle_zIavZ-) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [Git & Github in Arabic \| Git & Github&rlm; ┘Г┘И╪▒╪│ ╪к╪╣┘Д┘Е](https://www.youtube.com/playlist?list=PL_aOZuct6oAogr4UMkWddU7leOXw0QKJS) - Khalid Elshafie&rlm;
* [Git and Github&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAw4eOj58MZPakHjaO3frVMF) - Elzero Web School&rlm;
* [Git and GitHub \|&rlm; ╪┤╪о╪и╪╖ ┘И╪з┘Ж╪к ┘Е╪к╪╖┘Е┘Ж ](https://www.youtube.com/watch?v=Q6G-J54vgKc&t=3162s&pp=ygUMZ2l0IGJpZyBkYXRh) - Ahmed Sami&rlm;
* [Git GitHub & Bitbucket&rlm;](https://www.youtube.com/playlist?list=PL1FWK-sgJ9elQBDq5EtQ8AJFTlfqCJfEX) - Bashir Pro&rlm;
* [GitHub -&rlm; ╪к╪╣┘Д┘Е ╪з┘Д╪╣┘Е┘Д ╪з┘Д┘Е╪┤╪к╪▒┘Г ╪╣┘Д┘Й](https://www.youtube.com/playlist?list=PLF8OvnCBlEY0CRqKiYKwOtrH-75MGIuyM) - TheNewBaghdad&rlm;
* [Learn Git in Arabic&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOYVfQs_NFNyykcqkaJ_plmK) - Algorithm Academy&rlm;
* [Git & Github in Arabic \| Git & Github ┘Г┘И╪▒╪│ ╪к╪╣┘Д┘Е](https://www.youtube.com/playlist?list=PL_aOZuct6oAogr4UMkWddU7leOXw0QKJS) - Khalid Elshafie
* [Git and Github&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAw4eOj58MZPakHjaO3frVMF) - Elzero Web School
* [Git and GitHub | ╪┤╪о╪и╪╖ ┘И╪з┘Ж╪к ┘Е╪к╪╖┘Е┘Ж ](https://www.youtube.com/watch?v=Q6G-J54vgKc&t=3162s&pp=ygUMZ2l0IGJpZyBkYXRh) - Ahmed Sami
* [Git GitHub & Bitbucket&rlm;](https://www.youtube.com/playlist?list=PL1FWK-sgJ9elQBDq5EtQ8AJFTlfqCJfEX) - Bashir Pro
* [GitHub - ╪к╪╣┘Д┘Е ╪з┘Д╪╣┘Е┘Д ╪з┘Д┘Е╪┤╪к╪▒┘Г ╪╣┘Д┘Й](https://www.youtube.com/playlist?list=PLF8OvnCBlEY0CRqKiYKwOtrH-75MGIuyM) - TheNewBaghdad
* [Learn Git in Arabic&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOYVfQs_NFNyykcqkaJ_plmK) - Algorithm Academy
### HTML and CSS
* [╪и╪▒┘Е╪м╪й ╪з┘Д┘Е┘И╪з┘В╪╣ \| ╪к╪╣┘Д┘Е ┘Д╪║╪й ╪з┘Дhtml&rlm; ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒](https://www.youtube.com/playlist?list=PLYyqC4bNbCIfMY5CoGmiWaPi9l86qaz5B) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [╪и╪▒┘Е╪м╪й ╪з┘Д┘Е┘И╪з┘В╪╣ \| ╪│┘Д╪│┘Д╪й ╪п╪▒┘И╪│ ┘Д╪║╪й css&rlm;](https://www.youtube.com/playlist?list=PLYyqC4bNbCIdES52srHE6xTiIgvgMkBWu) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [┘Г┘И╪▒╪│ CSS3&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY7e-LGHKT1LUrQOBZheSQLh) - Mobarmg&rlm;
* [┘Г┘И╪▒╪│ HTML&rlm; ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒](https://www.youtube.com/playlist?list=PLoP3S2S1qTfCVIETOGwaK3lyaL3UKu403) - OctuCode&rlm;
* [┘Г┘И╪▒╪│ HTML5&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY76fLdWZt7T8FfVHpvu0zOm) - Mobarmg&rlm;
* [CSS Art Tutorials&rlm;](https://www.youtube.com/playlist?list=PLuXY3ddo_8nzxCiht69IlCe0_VeIuh4ty) - Codezilla&rlm;
* [HTML And CSS Template 1&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzHSjcR-HnW9tnxyuye8KbF) - Elzero Web School&rlm;
* [HTML And CSS Template 2&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy1l-2A21ng3gxEyocruT0t) - Elzero Web School&rlm;
* [HTML And CSS Template 3&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxuCSp2_-9LurPqRVwketnc) - Elzero Web School&rlm;
* [HTML Crash Course Tutorials for Beginners: HTML&rlm; ┘Г╪з┘Е┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/watch?v=rytA8dLsSV8) - Mohammed Elzanaty&rlm;
* [Learn CSS In Arabic 2021&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzjsz06gkzlSrlev53MGIKe) - Elzero Web School&rlm;
* [Learn HTML In Arabic 2021&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAw_t_XWUFbBX-c9MafPk9ji) - Elzero Web School&rlm;
* [Learn SASS In Arabic 2021&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzlpyFHOaB3b-eubmF0TAV2) - Elzero Web School&rlm;
* [Learn Web Design From Scratch - HTML&rlm;](https://www.youtube.com/playlist?list=PLsECTUuTGe7oVwBXceqGWfpZQtdYz8hEh) - Techs Experts&rlm;
* [Sass&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz6bF7qObm2a1mLN_WHAWQo) - Elzero Web School&rlm;
* [Sass - Create a website&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz9sluuyOWPifXvySgrGma8) - Elzero Web School&rlm;
* [Tailwind CSS&rlm;](https://www.youtube.com/playlist?list=PLnD96kXp-_pMR9cBUmvsz_kIIt9bv2UIP) - Ag Coding&rlm;
* [╪и╪▒┘Е╪м╪й ╪з┘Д┘Е┘И╪з┘В╪╣ \| ╪к╪╣┘Д┘Е ┘Д╪║╪й ╪з┘Дhtml ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒](https://www.youtube.com/playlist?list=PLYyqC4bNbCIfMY5CoGmiWaPi9l86qaz5B) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [╪и╪▒┘Е╪м╪й ╪з┘Д┘Е┘И╪з┘В╪╣ \| ╪│┘Д╪│┘Д╪й ╪п╪▒┘И╪│ ┘Д╪║╪й css](https://www.youtube.com/playlist?list=PLYyqC4bNbCIdES52srHE6xTiIgvgMkBWu) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [┘Г┘И╪▒╪│ CSS3 ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY7e-LGHKT1LUrQOBZheSQLh) - Mobarmg
* [┘Г┘И╪▒╪│ HTML5 ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY76fLdWZt7T8FfVHpvu0zOm) - Mobarmg
* [CSS Art Tutorials&rlm;](https://www.youtube.com/playlist?list=PLuXY3ddo_8nzxCiht69IlCe0_VeIuh4ty) - Codezilla
* [HTML And CSS Template 1&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzHSjcR-HnW9tnxyuye8KbF) - Elzero Web School
* [HTML And CSS Template 2&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy1l-2A21ng3gxEyocruT0t) - Elzero Web School
* [HTML And CSS Template 3&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxuCSp2_-9LurPqRVwketnc) - Elzero Web School
* [HTML Crash Course Tutorials for Beginners: HTML ┘Г╪з┘Е┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/watch?v=rytA8dLsSV8) - Mohammed Elzanaty
* [Learn CSS In Arabic 2021&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzjsz06gkzlSrlev53MGIKe) - Elzero Web School
* [Learn HTML In Arabic 2021&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAw_t_XWUFbBX-c9MafPk9ji) - Elzero Web School
* [Learn SASS In Arabic 2021&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzlpyFHOaB3b-eubmF0TAV2) - Elzero Web School
* [Learn Web Design From Scratch - HTML&rlm;](https://www.youtube.com/playlist?list=PLsECTUuTGe7oVwBXceqGWfpZQtdYz8hEh) - Techs Experts
* [Sass&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz6bF7qObm2a1mLN_WHAWQo) - Elzero Web School
* [Sass - Create a website&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz9sluuyOWPifXvySgrGma8) - Elzero Web School
* [Tailwind CSS&rlm;](https://www.youtube.com/playlist?list=PLnD96kXp-_pMR9cBUmvsz_kIIt9bv2UIP) - Ag Coding
### Java
* [Java - &rlm;╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_ucgIJOLT2KH5aQ9tt-sXyQ9) - Omar Ahmed&rlm;
* [JAVA Course Level 1 Basics By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwTgEDztQ8y4K4-VoeoK1QCG) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [JAVA For Beginners - Course 1 - in Arabic](https://www.youtube.com/playlist?list=PL1DUmTEdeA6K7rdxKiWJq6JIxTvHalY8f) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
* [Java FX&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1ISKdFo23inpSYyzXWrGDm) - Khalid ESSAADANI&rlm;
* [Java Programming - Eng. Marwa Radwan&rlm;](https://www.youtube.com/playlist?list=PLsECTUuTGe7okDiRTQjUOilwYssOyx-t4) - Techs Experts&rlm;
* [JAVA Programming Course Level 2 Object Oriented Programming By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQp6zaFd7o728neR1XhPvid) - &rlm;┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [JAVA Programming Course Level 3 Graphic User Interface By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwRhWDkdkM4jSTPW3CgxKH8G) - &rlm;┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [JAVA Programming Course Level 4 Connect Database and JAVA By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwTmQTPK54W95WyNzT-33MR0) - &rlm;┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [JAVA Programming Full Project by Arabic (uni_staff project) \| &rlm;(╪з┘Д┘Е╪┤╪▒┘И╪╣ ╪з┘Д╪о╪к╪з┘Е┘К ╪и╪з┘Д╪м╪з┘Б╪з ┘Г╪з┘Е┘Д╪з ╪и╪┤╪▒╪н ╪╣╪▒╪и┘К)&lrm;](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQbsAGChtjlNPLVv6kTEXRG) - &rlm;┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [Java SE 8 Core Features&rlm;](https://www.youtube.com/playlist?list=PLEBRPBUkZ4mZ-5ziYzaoK1leOLYHpqPXJ) - FCI-Career-Build&rlm;
* [Java Tutorial for beginners- full course&rlm; -╪к╪╣┘Д┘Е ╪з┘Д╪и╪▒┘Е╪м╪й- ╪м╪з┘Б╪з](https://www.youtube.com/playlist?list=PLwAjM63H9bRuXIojpKDei4dVLRcvqP8V7) - genial code&rlm;
* [Learn JAVA Programming From Scratch In Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AajYlZGzU_LVrHdoouf8W6ZN) - Adel Nasim&rlm;
* [Object-Oriented Programming JAVA in Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AagY7fFlhCrjpLiIFybW3yQv) - Adel Nasim&rlm;
* [OOP -&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_ue7GPvoG_Ko1x43tZw5cz9v) - Omar Ahmed&rlm;
* [Programming 2 - Object Oriented Programming With Java](https://www.youtube.com/playlist?list=PL1DUmTEdeA6Icttz-O9C3RPRF8R8Px5vk) - &rlm;┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
* [Java FX&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1ISKdFo23inpSYyzXWrGDm) - Khalid ESSAADANI
* [Java Programming - Eng. Marwa Radwan&rlm;](https://www.youtube.com/playlist?list=PLsECTUuTGe7okDiRTQjUOilwYssOyx-t4) - Techs Experts
* [JAVA Programming Course Level 2 Object Oriented Programming By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQp6zaFd7o728neR1XhPvid) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [JAVA Programming Course Level 3 Graphic User Interface By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwRhWDkdkM4jSTPW3CgxKH8G) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [JAVA Programming Course Level 4 Connect Database and JAVA By Arabic](https://www.youtube.com/playlist?list=PLnzqK5HvcpwTmQTPK54W95WyNzT-33MR0) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [JAVA Programming Full Project by Arabic (uni_staff project) \|(╪з┘Д┘Е╪┤╪▒┘И╪╣ ╪з┘Д╪о╪к╪з┘Е┘К ╪и╪з┘Д╪м╪з┘Б╪з ┘Г╪з┘Е┘Д╪з ╪и╪┤╪▒╪н ╪╣╪▒╪и┘К )](https://www.youtube.com/playlist?list=PLnzqK5HvcpwQbsAGChtjlNPLVv6kTEXRG) - ┘Е╪н┘Е╪п ╪┤┘И╪┤╪з┘Ж
* [Java SE 8 Core Features&rlm;](https://www.youtube.com/playlist?list=PLEBRPBUkZ4mZ-5ziYzaoK1leOLYHpqPXJ) - FCI-Career-Build
* [Java Tutorial for beginners- full course -╪к╪╣┘Д┘Е ╪з┘Д╪и╪▒┘Е╪м╪й- ╪м╪з┘Б╪з](https://www.youtube.com/playlist?list=PLwAjM63H9bRuXIojpKDei4dVLRcvqP8V7) - genial code
* [Learn JAVA Programming From Scratch In Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AajYlZGzU_LVrHdoouf8W6ZN) - Adel Nasim
* [Object-Oriented Programming JAVA in Arabic&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AagY7fFlhCrjpLiIFybW3yQv) - Adel Nasim
* [Programming 2 - Object Oriented Programming With Java](https://www.youtube.com/playlist?list=PL1DUmTEdeA6Icttz-O9C3RPRF8R8Px5vk) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘Й
### JavaScript
* [╪│┘Д╪│┘Д╪й ╪п╪▒┘И╪│ ╪м╪з┘Б╪з ╪│┘Г╪▒┘К╪и╪к](https://www.youtube.com/playlist?list=PLYyqC4bNbCIeLEjcSPO61bsGPKEvYceb0) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [┘Г┘И╪▒╪│ ╪м╪з┘Б╪з ╪│┘Г╪▒┘К╪и╪к ┘Г╪з┘Е┘Д \| Javascript Tutorial&rlm;](https://www.youtube.com/playlist?list=PLknwEmKsW8OuTqUDaFRBiAViDZ5uI3VcE) - Abdelrahman Gamal&rlm;
* [┘Г┘И╪▒╪│ Ajax&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY7wv9ZZkhH7lZELpz_fP81N) - Mobarmg&rlm;
* [┘Г┘И╪▒╪│ ES6&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY5nQxWH0HaNibR9UXKICWxz) - Mobarmg&rlm;
* [Arabic JavaScript&rlm;](https://www.youtube.com/playlist?list=PLL2zWZTDFZzgU2x6Kk6w0qx5piLgMODsm) - KMR Script&rlm;
* [Arabic JavaScript ES6&rlm; ╪з┘Д╪з╪╡╪п╪з╪▒ ╪з┘Д╪│╪з╪п╪│ ┘Е┘Ж ╪з┘Д╪м╪з┘Б╪з╪│┘Г╪▒╪и╪к](https://www.youtube.com/playlist?list=PLL2zWZTDFZzilx_LJ_mCRDETtDOyBg0UT) - KMR Script&rlm;
* [Complete Intro to Javascript&rlm;](https://www.youtube.com/playlist?list=PLLWuK602vNiU-kIpNuw5Z7HRbV4pBaHlL) - Mohammed Elzanaty&rlm;
* [Design Patterns \| javascript \| [Arabic]&rlm;](https://www.youtube.com/playlist?list=PLS-MrzRLZtmduTfp_bReagQKg7I-GVr-5) - Shadow Coding&rlm;
* [ECMAScript 6 Tutorial In Arabic&rlm;](https://www.youtube.com/playlist?list=PLLWuK602vNiVnYxkrT7qbFSictc9nJeiX) - Mohammed Elzanaty&rlm;
* [Friday js&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa_PU_wiKETaFk6nAVrNBg7l) - codeZone&rlm;
* [HTML \| CSS \| JavaScript \| Project&rlm;](https://www.youtube.com/playlist?list=PLS-MrzRLZtmflgWiToSs6jNwYaFK7FnWM) - Shadow Coding&rlm;
* [Javascript&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAw6p0z0Ek0OjPzeXoqlFlCh) - Elzero Web School&rlm;
* [JavaScript AJAX&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAytfRIdMIkLeoQHP0o5uWBa) - Elzero Web School&rlm;
* [JavaScript Application&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz7_BgzvNcOaE-m_SnE4jiT) - Elzero Web School&rlm;
* [JavaScript Canvas&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxdetco1wwicE7Fbm73UYy0) - Elzero Web School&rlm;
* [JavaScript ECMAScript 6&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy3siU1b04xY24ZlstofO9M) - Elzero Web School&rlm;
* [┘Г┘И╪▒╪│ ╪м╪з┘Б╪з ╪│┘Г╪▒┘К╪и╪к ┘Г╪з┘Е┘Д \| Javascript Tutorial&rlm;](https://www.youtube.com/playlist?list=PLknwEmKsW8OuTqUDaFRBiAViDZ5uI3VcE) - Abdelrahman Gamal
* [┘Г┘И╪▒╪│ Ajax ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY7wv9ZZkhH7lZELpz_fP81N) - Mobarmg
* [┘Г┘И╪▒╪│ ES6 ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY5nQxWH0HaNibR9UXKICWxz) - Mobarmg
* [Arabic JavaScript&rlm;](https://www.youtube.com/playlist?list=PLL2zWZTDFZzgU2x6Kk6w0qx5piLgMODsm) - KMR Script
* [Arabic JavaScript ES6 ╪з┘Д╪з╪╡╪п╪з╪▒ ╪з┘Д╪│╪з╪п╪│ ┘Е┘Ж ╪з┘Д╪м╪з┘Б╪з╪│┘Г╪▒╪и╪к](https://www.youtube.com/playlist?list=PLL2zWZTDFZzilx_LJ_mCRDETtDOyBg0UT) - KMR Script
* [Complete Intro to Javascript&rlm;](https://www.youtube.com/playlist?list=PLLWuK602vNiU-kIpNuw5Z7HRbV4pBaHlL) - Mohammed Elzanaty
* [Design Patterns \| javascript \| \[Arabic\]&rlm;](https://www.youtube.com/playlist?list=PLS-MrzRLZtmduTfp_bReagQKg7I-GVr-5) - Shadow Coding
* [ECMAScript 6 Tutorial In Arabic&rlm;](https://www.youtube.com/playlist?list=PLLWuK602vNiVnYxkrT7qbFSictc9nJeiX) - Mohammed Elzanaty
* [Friday js&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa_PU_wiKETaFk6nAVrNBg7l) - codeZone
* [HTML \| CSS \| JavaScript \| Project&rlm;](https://www.youtube.com/playlist?list=PLS-MrzRLZtmflgWiToSs6jNwYaFK7FnWM) - Shadow Coding
* [Javascript&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAw6p0z0Ek0OjPzeXoqlFlCh) - Elzero Web School
* [JavaScript AJAX&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAytfRIdMIkLeoQHP0o5uWBa) - Elzero Web School
* [JavaScript Application&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz7_BgzvNcOaE-m_SnE4jiT) - Elzero Web School
* [JavaScript Canvas&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxdetco1wwicE7Fbm73UYy0) - Elzero Web School
* [JavaScript ECMAScript 6&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy3siU1b04xY24ZlstofO9M) - Elzero Web School
* [JavaScript Files API](https://www.youtube.com/playlist?list=PLrvHCesHYw38480FPUmm3l2iJd8jSmA5u) - ╪и╪▒┘Е╪м┘К╪з╪к ╪н╪│╪з┘Ж
* [JavaScript JSON API&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwH_PyuEFjk3OvXflJJrDRQ) - Elzero Web School&rlm;
* [JavaScript OOP&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzLyvrWPwMw6bbBlTwPxgLF) - Elzero Web School&rlm;
* [Javascript Tips And Tricks [Arabic]&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa8Y47rtUnKXewgaBsXD-9KT) - codeZone&rlm;
* [Javascript Tutorial \|&rlm; ┘Г┘И╪▒╪│ ╪м╪з┘Б╪з ╪│┘Г╪▒┘К╪и╪к ┘Г╪з┘Е┘Д](https://www.youtube.com/playlist?list=PLknwEmKsW8OuTqUDaFRBiAViDZ5uI3VcE) - Abdelrahman Gamal&rlm;
* [JavaScript Unit Testing With Jest&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwSrfBPERTnCmWAbcMAwG9O) - Elzero Web School&rlm;
* [Learn JavaScript in Arabic 2021&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAx3kiplQR_oeDqLDBUDYwVv) - Elzero Web School&rlm;
* [Software Testing Course in Arabic -&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К software testing&rlm; ╪┤╪▒╪н](https://www.youtube.com/playlist?list=PLzNfs-3kBUJllCa8_6pLYDMnIlg6Lfvu4) - Tresmerge&rlm;
* [SOLID Principles In Arabic&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa9Dwu0xHfC0gALHCdia6L6w) - codeZone&rlm;
* [JavaScript JSON API&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwH_PyuEFjk3OvXflJJrDRQ) - Elzero Web School
* [JavaScript OOP&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzLyvrWPwMw6bbBlTwPxgLF) - Elzero Web School
* [Javascript Tips And Tricks [Arabic]&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa8Y47rtUnKXewgaBsXD-9KT) - codeZone
* [Javascript Tutorial \| ┘Г┘И╪▒╪│ ╪м╪з┘Б╪з ╪│┘Г╪▒┘К╪и╪к ┘Г╪з┘Е┘Д](https://www.youtube.com/playlist?list=PLknwEmKsW8OuTqUDaFRBiAViDZ5uI3VcE) - Abdelrahman Gamal
* [JavaScript Unit Testing With Jest&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwSrfBPERTnCmWAbcMAwG9O) - Elzero Web School
* [Learn JavaScript in Arabic 2021&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAx3kiplQR_oeDqLDBUDYwVv) - Elzero Web School
* [SOLID Principles In Arabic&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa9Dwu0xHfC0gALHCdia6L6w) - codeZone
#### Gulp.js
* [Automatic Your Work With Gulpjs&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxyli7mXgNBhkRB-zgSHvL8) - Elzero Web School&rlm;
* [Basic of Gulp.js&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOaj10GLKu2YAcDQAMRvUgp0) - Algorithm Academy&rlm;
* [Gulp.js - Workshop&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOYXLQlBhKkc2bYIczytBc73) - Algorithm Academy&rlm;
* [Automatic Your Work With Gulpjs&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxyli7mXgNBhkRB-zgSHvL8) - Elzero Web School
* [Basic of Gulp.js&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOaj10GLKu2YAcDQAMRvUgp0) - Algorithm Academy
* [Gulp.js - Workshop&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOYXLQlBhKkc2bYIczytBc73) - Algorithm Academy
#### jQuery
* [┘Г┘И╪▒╪│ JQuery&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY5CmY-9Td8GhlLnq9GuJmpB) - Mobarmg&rlm;
* [Basic of jQuery&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwXDFEEpc8TT6MFbDAC5XNB) - Elzero Web School&rlm;
* [jQuery - Practical Examples and Create Apps&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz0_Ujf9ZB9KceUzzSVYDci) - Elzero Web School&rlm;
* [JQuery In Arabic - Web Development&rlm;](https://www.youtube.com/playlist?list=PLHIfW1KZRIfll3ObMFi02Ry7oRU3MJVRG) - Hassouna Academy&rlm;
#### Nest.js
* [┘Г┘И╪▒╪│ Nest JS&rlm; ┘Б┘К ┘г ╪│╪з╪╣╪з╪к \| Type ORM - MySql DB - Modules - Dependency Injection&rlm;](https://www.youtube.com/watch?v=RwOxUg2rsjY) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [Learn Nestjs Framework&rlm; ( ╪и╪з┘Д╪╣╪▒╪и┘К )](https://www.youtube.com/playlist?list=PLDQ11FgmbqQP1aaCCiU74LzebvZjY_S4G) - Index Academy -&rlm; ╪з╪к╪╣┘Д┘Е ╪и╪▒┘Е╪м╪й ╪и╪з┘Д╪╣╪▒╪и┘К
* [Nestjs&rlm;](https://www.youtube.com/playlist?list=PLOldSEMXUdZsFAEJwxYkE83dhm1ZkWEOL) - Mahmoud Abdullah&rlm;
* [NestJS - Progressive Node.js framework&rlm;](https://www.youtube.com/playlist?list=PLMYF6NkLrdN_5_pwGSQt2OXLDMMXpeotD) - Muhammed Essa&rlm;
* [┘Г┘И╪▒╪│ JQuery ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY5CmY-9Td8GhlLnq9GuJmpB) - Mobarmg
* [Basic of jQuery&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAwXDFEEpc8TT6MFbDAC5XNB) - Elzero Web School
* [jQuery - Practical Examples and Create Apps&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAz0_Ujf9ZB9KceUzzSVYDci) - Elzero Web School
* [JQuery In Arabic - Web Development&rlm;](https://www.youtube.com/playlist?list=PLHIfW1KZRIfll3ObMFi02Ry7oRU3MJVRG) - Hassouna Academy
#### NodeJS
* [┘Г┘И╪▒╪│ MongoDB&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY6ZTH5cneI_S0Bzzj-4j082) - Mobarmg&rlm;
* [┘Г┘И╪▒╪│ NodeJS&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К -ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY5S0IMTxqCb41fF8RDBQZ_w) - Mobarmg&rlm;
* [Arabic Dive into Node JS Development&rlm; ╪з┘Д╪║┘И╪╡ ┘Б┘К ╪з┘Д┘Ж┘И╪п ╪м┘К ╪з╪│](https://www.youtube.com/playlist?list=PLL2zWZTDFZzgxxD66mv95I8hC0pby5bdp) - KMR Script&rlm;
* [JWT Authentication using Node, Express, Typescript, Jasmine & Postgres&rlm;](https://www.youtube.com/playlist?list=PLLWuK602vNiVLQ4rAylfIkqp3rkN0TuPD) - Mohammed Elzanaty&rlm;
* [Learn Basic of NodeJS&rlm;](https://www.youtube.com/playlist?list=PLGhZWewM_75LQf3KvHo6HHSclmDyDazl7) - Emam Academy&rlm;
* [Learn NodeJS from zero to hero&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOa3EiUpjO04DVxEE9Ox12ta) - Algorithm Academy&rlm;
* [NodeJS - Build a Full E-Commerce RESTful APIs&rlm; (╪и╪з┘Д╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PLDQ11FgmbqQNFuGQTKbAIGEyOKWUGBs6i) - Programming Solutions - Academy&rlm;
* [NodeJS - From Zero To Hero&rlm;](https://www.youtube.com/playlist?list=PLkzDzmo9y3VG_pByjuxE7uuLYvmWgfBub) - ╪к╪о╪з╪▒┘К┘Б ┘Е╪и╪▒┘Е╪м
* [NodeJS Advanced Topics&rlm;](https://www.youtube.com/playlist?list=PLkzDzmo9y3VETa2XvIch29djB47v4zJQS) - ╪к╪о╪з╪▒┘К┘Б ┘Е╪и╪▒┘Е╪м
* [NodeJS Course (2017 -&rlm; ╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PLrvHCesHYw38kFL6w-i6Rv85oS3L0sp-o) - ╪и╪▒┘Е╪м┘К╪з╪к ╪н╪│╪з┘Ж
* [NodeJS Create App&rlm;](https://www.youtube.com/playlist?list=PLGhZWewM_75KPLx2otaSE4eBSYqiHmEmh) - Emam Academy&rlm;
* [NodeJS Express&rlm;](https://www.youtube.com/playlist?list=PLGhZWewM_75J0BZL_jSwuYxIm9m9S_NZw) - Emam Academy&rlm;
* [Pre NodeJS Course&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY4KgXU42KUgbCpyluuEc4uk) - Mobarmg&rlm;
* [REST API Node.js&rlm;](https://www.youtube.com/playlist?list=PLGhZWewM_75ILwl15d0Cn-W_XHpnKbNHL) - Emam Academy&rlm;
* [┘Г┘И╪▒╪│ MongoDB ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY6ZTH5cneI_S0Bzzj-4j082) - Mobarmg
* [┘Г┘И╪▒╪│ NodeJS ╪и╪з┘Д╪╣╪▒╪и┘К -ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY5S0IMTxqCb41fF8RDBQZ_w) - Mobarmg
* [Arabic Dive into Node JS Development ╪з┘Д╪║┘И╪╡ ┘Б┘К ╪з┘Д┘Ж┘И╪п ╪м┘К ╪з╪│](https://www.youtube.com/playlist?list=PLL2zWZTDFZzgxxD66mv95I8hC0pby5bdp) - KMR Script
* [JWT Authentication using Node, Express, Typescript, Jasmine & Postgres&rlm;](https://www.youtube.com/playlist?list=PLLWuK602vNiVLQ4rAylfIkqp3rkN0TuPD) - Mohammed Elzanaty
* [Learn Basic of NodeJS&rlm;](https://www.youtube.com/playlist?list=PLGhZWewM_75LQf3KvHo6HHSclmDyDazl7) - Emam Academy
* [Learn NodeJS from zero to hero&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOa3EiUpjO04DVxEE9Ox12ta) - Algorithm Academy
* [NodeJS - Build a Full E-Commerce RESTful APIs (╪и╪з┘Д╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PLDQ11FgmbqQNFuGQTKbAIGEyOKWUGBs6i) - Programming Solutions - Academy
* [NodeJS - From Zero To Hero](https://www.youtube.com/playlist?list=PLkzDzmo9y3VG_pByjuxE7uuLYvmWgfBub) - ╪к╪о╪з╪▒┘К┘Б ┘Е╪и╪▒┘Е╪м
* [NodeJS Advanced Topics](https://www.youtube.com/playlist?list=PLkzDzmo9y3VETa2XvIch29djB47v4zJQS) - ╪к╪о╪з╪▒┘К┘Б ┘Е╪и╪▒┘Е╪м
* [NodeJS Course (2017 - ╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PLrvHCesHYw38kFL6w-i6Rv85oS3L0sp-o) - ╪и╪▒┘Е╪м┘К╪з╪к ╪н╪│╪з┘Ж
* [NodeJS Create App&rlm;](https://www.youtube.com/playlist?list=PLGhZWewM_75KPLx2otaSE4eBSYqiHmEmh) - Emam Academy
* [NodeJS Express&rlm;](https://www.youtube.com/playlist?list=PLGhZWewM_75J0BZL_jSwuYxIm9m9S_NZw) - Emam Academy
* [Pre NodeJS Course&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY4KgXU42KUgbCpyluuEc4uk) - Mobarmg
* [REST API Node.js&rlm;](https://www.youtube.com/playlist?list=PLGhZWewM_75ILwl15d0Cn-W_XHpnKbNHL) - Emam Academy
#### Nuxt.js
* [Nuxt.js Course&rlm;](https://www.youtube.com/playlist?list=PLLXntwspGdhCBdax1ZJTEX6Gg5vCwOSUL) - Mahmoud Zohdi \- &rlm;┘Е╪н┘Е┘И╪п ╪▓┘З╪п┘К
* [Nuxt.js Course&rlm;](https://www.youtube.com/playlist?list=PLLXntwspGdhCBdax1ZJTEX6Gg5vCwOSUL) - Mahmoud Zohdi \- ┘Е╪н┘Е┘И╪п ╪▓┘З╪п┘К
#### PugJs
* [Learn PugJs&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxckfbgAzwwxeoeBfi0y724) - Elzero Web School&rlm;
* [Learn PugJs&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxckfbgAzwwxeoeBfi0y724) - Elzero Web School
#### React.js
* [Learn React JS Tutorial \|\| React&rlm; ╪п┘И╪▒╪й ┘Г╪з┘Е┘Д╪й ┘Д╪к╪╣┘Д┘Е ╪з┘Д┘А](https://www.youtube.com/playlist?list=PLtFbQRDJ11kEjXWZmwkOV-vfXmrEEsuEW) - Unique Coderz Academy&rlm;
* [React JS A JavaScript library&rlm; ╪п┘И╪▒╪й](https://www.youtube.com/playlist?list=PLMYF6NkLrdN9YuSgcD3TvNowTbMrI_hh8) - Muhammed Essa&rlm;
* [React.js&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNObRCqeYOws_JK_CCGCmQv_l) - Algorithm Academy&rlm;
* [React.js Hooks&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOZ5-WwSSWYLp0kC8xxE46YG) - Algorithm Academy&rlm;
* [React.js Todo App&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOYKXNTPUiZw8X7dDIgsSZln) - Algorithm Academy&rlm;
* [ReactJS&rlm;](https://www.youtube.com/playlist?list=PLCInYL3l2AahiYaPBNh6YtI9NifuG8SqT) - Adel Nasim&rlm;
* [ReactJS - Advanced&rlm; [╪к╪╣┘Д┘Е ╪▒┘К╪з┘Г╪к ]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFTiDCCVu_uCW0GXqyvhtbf8) - kimz codes&rlm;
* [ReactJs-Build Full E-Commerce From Scratch Redux&rlm; (╪и╪з┘Д╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PLDQ11FgmbqQPRui5VDCSQvYt2HOYiCVep) - Programming Solutions - Academy&rlm;
* [ReactJS Part 1 - Learn React Hooks by Project&rlm; [╪к╪╣┘Д┘Е ╪з┘Д╪▒┘К╪з┘Г╪к ┘З┘И┘Г╪│] [╪з┘Д╪м╪▓╪б ╪з┘Д╪з┘И┘Д]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFSaQIFNstRIrbm_fqb12Q59) - kimz codes&rlm;
* [ReactJS Part 2 - UseEffect & UseRef - working with API and Prev State [Arabic]&rlm; [╪и╪з┘Д╪╣╪▒╪и┘К][╪з┘Д╪м╪▓╪б ╪з┘Д╪л╪з┘Ж┘К]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFQa9YDF5pzB4JFbJovh3TN9) - kimz codes&rlm;
* [ReactJS Part 3 - Performance Optimization (react memo, use memo, use call back)&rlm; [╪к╪╣┘Д┘Е ╪з┘Д╪▒┘К╪з┘Г╪к] [╪з┘Д╪м╪▓╪б ╪з┘Д╪л╪з┘Д╪л]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFTYdkjzqYBujf7UCVQyn_aq) - kimz codes&rlm;
* [ReactJS with zanaty&rlm;](https://www.youtube.com/playlist?list=PLLWuK602vNiUmNPrv9szscXzENArzQHAe) - Mohammed Elzanaty&rlm;
* [Redux ToolKit 2021/2022 part 4&rlm; [╪┤╪▒╪н Redux toolkit] [╪к╪╣┘Д┘Е Redux] [╪┤╪▒╪н Redux]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFREfrBoSl8tjAPZOY6HNqZv) - kimz codes&rlm;
* [Redux ToolKit Project, Book Store project&rlm; [╪к╪╣┘Д┘Е Redux toolkit]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFQFvS469VXyCPO_py_kvVD5) - kimz codes&rlm;
* [Learn React JS Tutorial \|\| React ╪п┘И╪▒╪й ┘Г╪з┘Е┘Д╪й ┘Д╪к╪╣┘Д┘Е ╪з┘Д┘А](https://www.youtube.com/playlist?list=PLtFbQRDJ11kEjXWZmwkOV-vfXmrEEsuEW) - Unique Coderz Academy
* [React JS A JavaScript library ╪п┘И╪▒╪й](https://www.youtube.com/playlist?list=PLMYF6NkLrdN9YuSgcD3TvNowTbMrI_hh8) - Muhammed Essa
* [React.js&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNObRCqeYOws_JK_CCGCmQv_l) - Algorithm Academy
* [React.js Hooks&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOZ5-WwSSWYLp0kC8xxE46YG) - Algorithm Academy
* [React.js Todo App&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOYKXNTPUiZw8X7dDIgsSZln) - Algorithm Academy
* [ReactJS - Advanced [╪к╪╣┘Д┘Е ╪▒┘К╪з┘Г╪к ]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFTiDCCVu_uCW0GXqyvhtbf8) - kimz codes
* [ReactJs-Build Full E-Commerce From Scratch Redux (╪и╪з┘Д╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PLDQ11FgmbqQPRui5VDCSQvYt2HOYiCVep) - Programming Solutions - Academy
* [ReactJS Part 1 - Learn React Hooks by Project [╪к╪╣┘Д┘Е ╪з┘Д╪▒┘К╪з┘Г╪к ┘З┘И┘Г╪│] [╪з┘Д╪м╪▓╪б ╪з┘Д╪з┘И┘Д]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFSaQIFNstRIrbm_fqb12Q59) - kimz codes
* [ReactJS Part 2 - UseEffect & UseRef - working with API and Prev State [Arabic] [╪и╪з┘Д╪╣╪▒╪и┘К][╪з┘Д╪м╪▓╪б ╪з┘Д╪л╪з┘Ж┘К]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFQa9YDF5pzB4JFbJovh3TN9) - kimz codes
* [ReactJS Part 3 - Performance Optimization (react memo, use memo, use call back) [╪к╪╣┘Д┘Е ╪з┘Д╪▒┘К╪з┘Г╪к] [╪з┘Д╪м╪▓╪б ╪з┘Д╪л╪з┘Д╪л]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFTYdkjzqYBujf7UCVQyn_aq) - kimz codes
* [ReactJS with zanaty&rlm;](https://www.youtube.com/playlist?list=PLLWuK602vNiUmNPrv9szscXzENArzQHAe) - Mohammed Elzanaty
* [Redux ToolKit 2021/2022 part 4 [╪┤╪▒╪н Redux toolkit] [╪к╪╣┘Д┘Е Redux] [╪┤╪▒╪н Redux]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFREfrBoSl8tjAPZOY6HNqZv) - kimz codes
* [Redux ToolKit Project, Book Store project [╪к╪╣┘Д┘Е Redux toolkit]](https://www.youtube.com/playlist?list=PLejc1JbD4ZFQFvS469VXyCPO_py_kvVD5) - kimz codes
#### Vue.js
* [Basic of Vue.js&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxr5AqK3Yz4DWYKVSmIFziw) - Elzero Web School&rlm;
* [Vue.js Apps and Practical examples&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzDuaT7kEURZQbw9dQHepK9) - Elzero Web School&rlm;
* [Vue.js Composition API&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOZiOnKcf00l1NWC-xz-TV0h) - Algorithm Academy&rlm;
* [Vue.js Router Tutorial&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNObtw2FtE4_eX_k9yCf-Fcd3) - Algorithm Academy&rlm;
* [Basic of Vue.js&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxr5AqK3Yz4DWYKVSmIFziw) - Elzero Web School
* [Vue.js Apps and Practical examples&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzDuaT7kEURZQbw9dQHepK9) - Elzero Web School
* [Vue.js Composition API&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOZiOnKcf00l1NWC-xz-TV0h) - Algorithm Academy
* [Vue.js Router Tutorial&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNObtw2FtE4_eX_k9yCf-Fcd3) - Algorithm Academy
### Machine Learning
* [01 machine learning &rlm;╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й , ╪з┘Д┘В╪│┘Е ╪з┘Д╪г┘И┘Д : ┘Е┘В╪п┘Е╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5Vf1RAHyBo4tRzT8lEavPhR) - Hesham Asem&rlm;
* [02 &rlm;╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й , ╪з┘Д┘В╪│┘Е ╪з┘Д╪л╪з┘Ж┘К : ╪з┘Д╪к┘И┘В╪╣ Machine learning , Regression&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UJE2PbY7UU4SHi7UpV1mXo) - Hesham Asem&rlm;
* [03 &rlm;╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й , ╪з┘Д┘В╪│┘Е ╪з┘Д╪л╪з┘Д╪л : ╪и╪з┘К╪л┘И┘Ж Machine learning , Python&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UM-FWfQeF1_YhMMa12Eg3s) - Hesham Asem&rlm;
* [04 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪▒╪з╪и╪╣ : ╪з┘Д╪к╪╡┘Ж┘К┘Б Classification & Logistic Regression&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5Uq7PkI_PWOm_DLC2CFvSzU) - Hesham Asem&rlm;
* [05 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪о╪з┘Е╪│ : ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й Neural Network&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UX-Yi32r925nsgW-3GrnSa) - Hesham Asem&rlm;
* [06 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪│╪з╪п╪│ : ┘Ж╪╕╪з┘Е ╪з┘Д╪п╪╣┘Е ╪з┘Д╪в┘Д┘К SVM&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5U98PPtkc34sg7EEGC34WRs) - Hesham Asem&rlm;
* [07 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪│╪з╪и╪╣ : ╪з┘Д╪к╪╣┘Д┘К┘Е ╪и╪п┘И┘Ж ╪е╪┤╪▒╪з┘Б Unsupervised ML&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VEygzpmG1GZgI8l1xwPDBP) - Hesham Asem&rlm;
* [08 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪л╪з┘Е┘Ж : ┘Е┘И╪з╪╢┘К╪╣ ┘З╪з┘Е╪й ┘Б┘К ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UnONA8-ENhR0NE04mIllqB) - Hesham Asem&rlm;
* [09 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪к╪з╪│╪╣ : ╪к┘Г┘Ж┘К┘Г╪з╪к ╪н╪п┘К╪л╪й ┘Б┘К ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XJKEXITqCNQN8209q3qlrL) - Hesham Asem&rlm;
* [10 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪╣╪з╪┤╪▒ : ┘Е┘Г╪к╪и╪й ╪│╪з┘К┘Г┘К╪к┘Д┘К╪▒┘Ж Sklearn Library&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5X_9JeJh1xeciAbkijvc09k) - Hesham Asem&rlm;
* [11 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪н╪з╪п┘К ╪╣╪┤╪▒ : ╪к┘Ж╪│╪▒ ┘Б┘Д┘И ┘И ┘Г┘К╪▒╪з╪│ TensorFlow & Keras&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VbuU2T0gS_mFhCpKmLxvCP) - Hesham Asem&rlm;
* [12 &rlm;╪з┘Д┘В╪│┘Е ╪з┘Д╪л╪з┘Ж┘К ╪╣╪┤╪▒ : ╪к╪╖╪и┘К┘В╪з╪к ╪╣┘Е┘Д┘К╪й ┘Е┘Ж ┘Г╪з╪м┘Д ┘И ╪м┘К╪к┘З╪з╪и Kaggle & Github&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XA13ZqfacovmyOLjYwwhMt) - Hesham Asem&rlm;
* [13 ML Helper Tutorials &rlm;╪и╪▒┘Ж╪з┘Е╪м ╪з┘Д┘Е╪│╪з╪╣╪п ┘Б┘К ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VdA0sd-nLM0LMzhfivfwmu) - Hesham Asem&rlm;
* [Introduction to Machine Learning&rlm;](https://www.youtube.com/playlist?list=PL5JZLxl_tFCdOXYNVz7Wl7XyFR67q658r) - Khaled Mostafa Elsayed&rlm;
* [01 machine learning ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й , ╪з┘Д┘В╪│┘Е ╪з┘Д╪г┘И┘Д : ┘Е┘В╪п┘Е╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5Vf1RAHyBo4tRzT8lEavPhR) - Hesham Asem
* [02 ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й , ╪з┘Д┘В╪│┘Е ╪з┘Д╪л╪з┘Ж┘К : ╪з┘Д╪к┘И┘В╪╣ Machine learning , Regression&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UJE2PbY7UU4SHi7UpV1mXo) - Hesham Asem
* [03 ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й , ╪з┘Д┘В╪│┘Е ╪з┘Д╪л╪з┘Д╪л : ╪и╪з┘К╪л┘И┘Ж Machine learning , Python&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UM-FWfQeF1_YhMMa12Eg3s) - Hesham Asem
* [04 ╪з┘Д┘В╪│┘Е ╪з┘Д╪▒╪з╪и╪╣ : ╪з┘Д╪к╪╡┘Ж┘К┘Б Classification & Logistic Regression&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5Uq7PkI_PWOm_DLC2CFvSzU) - Hesham Asem
* [05 ╪з┘Д┘В╪│┘Е ╪з┘Д╪о╪з┘Е╪│ : ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й Neural Network&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UX-Yi32r925nsgW-3GrnSa) - Hesham Asem
* [06 ╪з┘Д┘В╪│┘Е ╪з┘Д╪│╪з╪п╪│ : ┘Ж╪╕╪з┘Е ╪з┘Д╪п╪╣┘Е ╪з┘Д╪в┘Д┘К SVM&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5U98PPtkc34sg7EEGC34WRs) - Hesham Asem
* [07 ╪з┘Д┘В╪│┘Е ╪з┘Д╪│╪з╪и╪╣ : ╪з┘Д╪к╪╣┘Д┘К┘Е ╪и╪п┘И┘Ж ╪е╪┤╪▒╪з┘Б Unsupervised ML&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VEygzpmG1GZgI8l1xwPDBP) - Hesham Asem
* [08 ╪з┘Д┘В╪│┘Е ╪з┘Д╪л╪з┘Е┘Ж : ┘Е┘И╪з╪╢┘К╪╣ ┘З╪з┘Е╪й ┘Б┘К ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UnONA8-ENhR0NE04mIllqB) - Hesham Asem
* [09 ╪з┘Д┘В╪│┘Е ╪з┘Д╪к╪з╪│╪╣ : ╪к┘Г┘Ж┘К┘Г╪з╪к ╪н╪п┘К╪л╪й ┘Б┘К ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XJKEXITqCNQN8209q3qlrL) - Hesham Asem
* [10 ╪з┘Д┘В╪│┘Е ╪з┘Д╪╣╪з╪┤╪▒ : ┘Е┘Г╪к╪и╪й ╪│╪з┘К┘Г┘К╪к┘Д┘К╪▒┘Ж Sklearn Library&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5X_9JeJh1xeciAbkijvc09k) - Hesham Asem
* [11 ╪з┘Д┘В╪│┘Е ╪з┘Д╪н╪з╪п┘К ╪╣╪┤╪▒ : ╪к┘Ж╪│╪▒ ┘Б┘Д┘И ┘И ┘Г┘К╪▒╪з╪│ TensorFlow & Keras&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VbuU2T0gS_mFhCpKmLxvCP) - Hesham Asem
* [12 ╪з┘Д┘В╪│┘Е ╪з┘Д╪л╪з┘Ж┘К ╪╣╪┤╪▒ : ╪к╪╖╪и┘К┘В╪з╪к ╪╣┘Е┘Д┘К╪й ┘Е┘Ж ┘Г╪з╪м┘Д ┘И ╪м┘К╪к┘З╪з╪и Kaggle & Github&rlm;](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XA13ZqfacovmyOLjYwwhMt) - Hesham Asem
* [13 ML Helper Tutorials ╪и╪▒┘Ж╪з┘Е╪м ╪з┘Д┘Е╪│╪з╪╣╪п ┘Б┘К ╪к╪╣┘Д┘К┘Е ╪з┘Д╪в┘Д╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VdA0sd-nLM0LMzhfivfwmu) - Hesham Asem
* [Introduction to Machine Learning&rlm;](https://www.youtube.com/playlist?list=PL5JZLxl_tFCdOXYNVz7Wl7XyFR67q658r) - Khaled Mostafa Elsayed
## Microservice
* [Building Microservices&rlm;](https://www.youtube.com/playlist?list=PLZafHDYyxnk5kALJAZKVAqjcJpG6ngsFq) - Mahmoud Youssef - &rlm;┘Е╪н┘Е┘И╪п ┘К┘И╪│┘Б *( :construction: in process)*
* [Microservice&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm-LKJ_x_OuOZtuwEFqbJ5B7) - Ismail Anjrini&rlm;
* [Microservices Architecture in Arabic&rlm;](https://www.youtube.com/playlist?list=PLgAqrVq84PDdfiDow3YVsgc1q34JD415Z) - Software Architecture Talks in Arabic&rlm;
* [Microservice ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm-LKJ_x_OuOZtuwEFqbJ5B7) - Ismail Anjrini
* [Microservices Architecture in Arabic&rlm;](https://www.youtube.com/playlist?list=PLgAqrVq84PDdfiDow3YVsgc1q34JD415Z) - Software Architecture Talks in Arabic
### Natural Language Programming
* [21 NLP-01 &rlm;┘Е┘В╪п┘Е╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XpTaCGcWlSx-hy8JcIxsU7) - Hesham Asem&rlm;
* [22 NLP-02 &rlm;╪г╪│╪з╪│┘К╪з╪к ╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д┘Д╪║┘И┘К╪й ╪з┘Д╪╖╪и┘К╪╣┘К╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VFSRQLI7skbH8UPEdfCFBg) - Hesham Asem&rlm;
* [23 NLP-03 &rlm;╪г╪п┘И╪з╪к ╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д┘Д╪║┘И┘К╪й ╪з┘Д╪╖╪и┘К╪╣┘К╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5WYpWu6Y8T3firJLflZ3Ufi) - Hesham Asem&rlm;
* [24 NLP-04 &rlm;╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д╪и╪│┘К╪╖╪й ┘Д┘Д┘Ж╪╡┘И╪╡](https://www.youtube.com/playlist?list=PL6-3IRz2XF5W7brQxe9RHNpHSeUTuz-V_) - Hesham Asem&rlm;
* [25 NLP-05 &rlm;╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д┘Е╪к┘В╪п┘Е╪й ┘Д┘Д┘Ж╪╡┘И╪╡](https://www.youtube.com/playlist?list=PL6-3IRz2XF5W7QQ3mKJ1kldXpN3Vquzbc) - Hesham Asem&rlm;
* [26 NLP-06 &rlm;╪к╪м┘Е┘К╪╣ ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UsyOPThnWFKUzSkrQwQHJ0) - Hesham Asem&rlm;
* [27 NLP-07 &rlm;╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й ╪з┘Д┘Е╪к┘Г╪▒╪▒╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XZCwISqNQPFFns9bnx2wUG) - Hesham Asem&rlm;
* [28 NLP-08 &rlm;╪к┘Г┘Ж┘К┘Г╪з╪к ╪н╪п┘К╪л╪й ┘Б┘К ╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д┘Д╪║┘И┘К╪й ╪з┘Д╪╖╪и┘К╪╣┘К╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XHsUtAUid97yRi011KSDBZ) - Hesham Asem&rlm;
* [Convolutional Neural Network (CNN)&rlm;](https://www.youtube.com/playlist?list=PL5JZLxl_tFCcKucpxtkwbneqAvHaPOCK6) - Khaled Mostafa Elsayed&rlm;
* [NLP-Transformers&rlm;](https://www.youtube.com/playlist?list=PL5JZLxl_tFCd-ixMkn_CJPQhhQRFhZXjY) - Khaled Mostafa Elsayed&rlm;
* [21 NLP-01 ┘Е┘В╪п┘Е╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XpTaCGcWlSx-hy8JcIxsU7) - Hesham Asem
* [22 NLP-02 ╪г╪│╪з╪│┘К╪з╪к ╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д┘Д╪║┘И┘К╪й ╪з┘Д╪╖╪и┘К╪╣┘К╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5VFSRQLI7skbH8UPEdfCFBg) - Hesham Asem
* [23 NLP-03 ╪г╪п┘И╪з╪к ╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д┘Д╪║┘И┘К╪й ╪з┘Д╪╖╪и┘К╪╣┘К╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5WYpWu6Y8T3firJLflZ3Ufi) - Hesham Asem
* [24 NLP-04 ╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д╪и╪│┘К╪╖╪й ┘Д┘Д┘Ж╪╡┘И╪╡](https://www.youtube.com/playlist?list=PL6-3IRz2XF5W7brQxe9RHNpHSeUTuz-V_) - Hesham Asem
* [25 NLP-05 ╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д┘Е╪к┘В╪п┘Е╪й ┘Д┘Д┘Ж╪╡┘И╪╡](https://www.youtube.com/playlist?list=PL6-3IRz2XF5W7QQ3mKJ1kldXpN3Vquzbc) - Hesham Asem
* [26 NLP-06 ╪к╪м┘Е┘К╪╣ ╪з┘Д╪и┘К╪з┘Ж╪з╪к](https://www.youtube.com/playlist?list=PL6-3IRz2XF5UsyOPThnWFKUzSkrQwQHJ0) - Hesham Asem
* [27 NLP-07 ╪з┘Д╪┤╪и┘Г╪з╪к ╪з┘Д╪╣╪╡╪и┘К╪й ╪з┘Д┘Е╪к┘Г╪▒╪▒╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XZCwISqNQPFFns9bnx2wUG) - Hesham Asem
* [28 NLP-08 ╪к┘Г┘Ж┘К┘Г╪з╪к ╪н╪п┘К╪л╪й ┘Б┘К ╪з┘Д┘Е╪╣╪з┘Д╪м╪й ╪з┘Д┘Д╪║┘И┘К╪й ╪з┘Д╪╖╪и┘К╪╣┘К╪й](https://www.youtube.com/playlist?list=PL6-3IRz2XF5XHsUtAUid97yRi011KSDBZ) - Hesham Asem
* [Convolutional Neural Network (CNN)&rlm;](https://www.youtube.com/playlist?list=PL5JZLxl_tFCcKucpxtkwbneqAvHaPOCK6) - Khaled Mostafa Elsayed
* [NLP-Transformers&rlm;](https://www.youtube.com/playlist?list=PL5JZLxl_tFCd-ixMkn_CJPQhhQRFhZXjY) - Khaled Mostafa Elsayed
### .NET
* [┘Г┘И╪▒╪│ ASP.NET MVC ╪и╪з┘Д╪╣╪▒╪и┘К -ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY4PrhxzVKb3lY6Ni9kgIMYH) - Mobarmg&rlm;
* [Arabic C# .NET&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1ekZ78MzVWqpNyA5Lyb2nv) - Khalid ESSAADANI&rlm;
* [ASP.NET Core&rlm; ┘Е┘В╪п┘Е╪й ┘Б┘К ╪к╪╣┘Д┘Е](https://www.youtube.com/playlist?list=PLX1bW_GeBRhAjpkPCTpKXJoFGe2ZpYGUC) - Codographia&rlm;
* [ASP.NET Core For Beginners&rlm;](https://www.youtube.com/playlist?list=PLsV97AQt78NQ8E7cEqovH0zLYRJgJahGh) - Passionate Coders \|&rlm; ┘Е╪н┘Е╪п ╪з┘Д┘Е┘З╪п┘К
* [ASP.NET Core Fundamentals&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1zbN2olMzvIBXP06FIwoes) - Khalid ESSAADANI&rlm;
* [ASP.NET Core Long Videos&rlm;](https://www.youtube.com/playlist?list=PLX1bW_GeBRhBUAlLChHYX3BmtU0NBe30-) - Codographia&rlm;
* [ASP.NET Identity&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1T3fIb-JDa4xNFfVQoljGI) - Khalid ESSAADANI&rlm;
* [ASP.NET Identity Arabic&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1T3fIb-JDa4xNFfVQoljGI) - Khalid ESSAADANI&rlm;
* [ASP.NET MVC 5&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN3HKfGd_jgO1Odr1xWXU9Yf) - Khalid ESSAADANI&rlm;
* [ASP.NET MVC From Scratch&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN2dz2C9ShCe9wTLrXxnJPuC) - Khalid ESSAADANI&rlm;
* [ASP.NET Web REST API&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1X4QNF5wslJD6T96Owkg2t) - Khalid ESSAADANI&rlm;
* [┘Г┘И╪▒╪│ ASP.NET MVC ╪и╪з┘Д╪╣╪▒╪и┘К -ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY4PrhxzVKb3lY6Ni9kgIMYH) - Mobarmg
* [Arabic C# .NET&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1ekZ78MzVWqpNyA5Lyb2nv) - Khalid ESSAADANI
* [ASP.NET Core Fundamentals&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1zbN2olMzvIBXP06FIwoes) - Khalid ESSAADANI
* [ASP.NET Identity&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1T3fIb-JDa4xNFfVQoljGI) - Khalid ESSAADANI
* [ASP.NET Identity Arabic&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1T3fIb-JDa4xNFfVQoljGI) - Khalid ESSAADANI
* [ASP.NET MVC 5&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN3HKfGd_jgO1Odr1xWXU9Yf) - Khalid ESSAADANI
* [ASP.NET MVC From Scratch&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN2dz2C9ShCe9wTLrXxnJPuC) - Khalid ESSAADANI
* [ASP.NET Web REST API&rlm;](https://www.youtube.com/playlist?list=PLwj1YcMhLRN1X4QNF5wslJD6T96Owkg2t) - Khalid ESSAADANI
### Operating Systems
* [Linux System&rlm;](https://www.youtube.com/playlist?list=PL8pYI62gCNsWTppELEUCpforC4avEiLox) - anahr&rlm;
* [Operating Systems -&rlm; ╪г┘Ж╪╕┘Е╪й ╪з┘Д╪к╪┤╪║┘К┘Д](https://www.youtube.com/playlist?list=PLxIvc-MGOs6ib0oK1z9C46DeKd9rRcSMY) - Ahmed Hagag&rlm;
* [Operating Systems -&rlm; ┘Ж╪╕┘Е ╪з┘Д╪к╪┤╪║┘К┘Д](https://www.youtube.com/playlist?list=PLMm8EjqH1EFV-jECqtMxeVMDoVkV_kJDY) - Ahmed Sallam&rlm;
* [Operating Systems in Arabic -&rlm; ╪┤╪▒╪н ┘Ж╪╕┘Е ╪з┘Д╪к╪┤╪║┘К┘Д](https://www.youtube.com/playlist?list=PLTr1xN4uMK5seRz6IO7Am9Zp2UKdnzO_n) - Mohamed Alsayed&rlm;
* [Linux System&rlm;](https://www.youtube.com/playlist?list=PL8pYI62gCNsWTppELEUCpforC4avEiLox) - anahr
* [Operating Systems - ╪г┘Ж╪╕┘Е╪й ╪з┘Д╪к╪┤╪║┘К┘Д](https://www.youtube.com/playlist?list=PLxIvc-MGOs6ib0oK1z9C46DeKd9rRcSMY) - Ahmed Hagag
* [Operating Systems - ┘Ж╪╕┘Е ╪з┘Д╪к╪┤╪║┘К┘Д](https://www.youtube.com/playlist?list=PLMm8EjqH1EFV-jECqtMxeVMDoVkV_kJDY) - Ahmed Sallam
* [Operating Systems in Arabic - ╪┤╪▒╪н ┘Ж╪╕┘Е ╪з┘Д╪к╪┤╪║┘К┘Д](https://www.youtube.com/playlist?list=PLTr1xN4uMK5seRz6IO7Am9Zp2UKdnzO_n) - Mohamed Alsayed
### PHP
* [╪к╪╡┘Е┘К┘Е ┘И ╪и╪▒┘Е╪м╪й ┘Е┘И┘В╪╣ eCommerce by PHP&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxdiBh6J62wOzEnvC4CNuFU) - Elzero Web School&rlm;
* [╪п┘И╪▒╪й php&rlm; ┘Е┘Ж ╪з┘Д╪и╪п╪з┘К╪й ╪з┘Д┘К ╪з┘Д╪з╪н╪к╪▒╪з┘Б](https://www.youtube.com/playlist?list=PLftLUHfDSiZ5LAQuaKUUpN8F_dvKTPEtc) - Mora Soft&rlm;
* [Arabic PHP&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzH72MTPuAAaYfReraNlQgM) - Elzero Web School&rlm;
* [Design Patterns in PHP Arabic&rlm; ╪┤╪▒╪н ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?app=desktop&list=PLdYYj2XLw5BnpInmR103TyVwFd_CLI6IS) - Ramy Hakam&rlm;
* [Learn Object Oriented PHP&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxXTPncg0W4lhVS32LO_xtQ) - Elzero Web School&rlm;
* [PHP Bootcamp 2022&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy41u35AqJUrI-H83DObUDq) - Elzero Web School&rlm;
* [╪к╪╡┘Е┘К┘Е ┘И ╪и╪▒┘Е╪м╪й ┘Е┘И┘В╪╣ eCommerce by PHP&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxdiBh6J62wOzEnvC4CNuFU) - Elzero Web School
* [╪п┘И╪▒╪й php ┘Е┘Ж ╪з┘Д╪и╪п╪з┘К╪й ╪з┘Д┘К ╪з┘Д╪з╪н╪к╪▒╪з┘Б](https://www.youtube.com/playlist?list=PLftLUHfDSiZ5LAQuaKUUpN8F_dvKTPEtc) - Mora Soft
* [Arabic PHP&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAzH72MTPuAAaYfReraNlQgM) - Elzero Web School
* [Design Patterns in PHP Arabic ╪┤╪▒╪н ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?app=desktop&list=PLdYYj2XLw5BnpInmR103TyVwFd_CLI6IS) - Ramy Hakam
* [Learn Object Oriented PHP&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAxXTPncg0W4lhVS32LO_xtQ) - Elzero Web School
* [PHP Bootcamp 2022&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy41u35AqJUrI-H83DObUDq) - Elzero Web School
#### Laravel
* [╪г╪н╪к╪▒╪з┘Б ┘Д╪з╪▒╪з┘Б┘Д ╪и╪г┘Ж╪┤╪з╪б ┘Е╪к╪м╪▒ ╪з┘Д┘Г╪к╪▒┘И┘Ж┘К ┘Е╪к┘Г╪з┘Е┘Д ┘Е╪к╪╣╪п╪п ╪з┘Д╪к╪м╪з╪▒ ┘И╪з┘Д┘Д╪║╪з╪к - laravel 7 multi vendor eCommerce complete projectl Laravel E-Commerce&rlm;](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP6NeupdX_K9-Qm3ROqGud-t) - Professional Code&rlm;
* [╪к╪╣┘Д┘К┘Е ┘Д╪з╪▒╪з┘Б┘К┘Д ╪о╪╖┘И╪й ╪и╪о╪╖┘И╪й ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒](https://www.youtube.com/watch?v=f6uQfOw2_6o) - Nour Homsi&rlm;
* [╪п┘И╪▒╪й ╪з┘Ж╪┤╪з╪б ╪и╪▒┘Ж╪з┘Е╪м ╪з┘Д┘Е╪п╪з╪▒╪│ Php - Laravel&rlm;](https://www.youtube.com/playlist?list=PLftLUHfDSiZ7-RAsH8NskS7AYofykW_WN) - Mora Soft&rlm;
* [╪п┘И╪▒╪й ╪з┘Ж╪┤╪з╪б ╪и╪▒┘Ж╪з┘Е╪м ┘Б┘И╪з╪к┘К╪▒ php- laravel&rlm;](https://www.youtube.com/playlist?list=PLftLUHfDSiZ7pKXkpGCoZATm5rF6msj5A) - Mora Soft&rlm;
* [╪п┘И╪▒╪й Laravel 6/7/8 PHP&rlm;](https://www.youtube.com/playlist?list=PLMYF6NkLrdN8V2JKIMxqMsZNPsgUj3WOK) - Muhammed Essa&rlm;
* [┘Г┘И╪▒╪│ ╪з╪│╪з╪│┘К╪з╪к ┘Д╪з╪▒╪з┘Б┘К┘Д &rlm;9](https://www.youtube.com/playlist?list=PLftLUHfDSiZ4GfPZxaFDsA7ejUzD7SpWa) - Mora Soft&rlm;
* [┘Д╪з╪▒╪з┘Б┘К┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLWCBAKY7-4buQazvDjeZhjLl54UqbF3lM) - Ahmed Abd El Ftah&rlm;
* [┘Е╪┤╪▒┘И╪╣ ┘Д╪з╪▒╪з┘Б┘Д ┘Е╪к╪м╪▒ ╪з┘Д┘Г╪к╪▒┘И┘Ж┘К ┘Е╪к╪╣╪п╪п ╪з┘Д╪к╪м╪з╪▒ ┘И╪з┘Д┘Д╪║╪з╪к ┘Е╪к┘Г╪з┘Е┘Д - ╪к╪╖╪и┘К┘В╪з╪к ┘Д╪з╪▒╪з┘Б┘Д ╪╣┘Е┘Д┘К┘З](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP7DCb-NamG2tt7uQUfxP2va) - Professional Code&rlm;
* [API-Course-For-Beginners&rlm;](https://www.youtube.com/playlist?list=PLftLUHfDSiZ6MfN8UhhcXDhh64eejvIKK) - Mora Soft&rlm;
* [Build and deploy laravel realtime application on AWS for FREE (Arabic)&rlm;](https://www.youtube.com/playlist?list=PL7IXur3gcVAT4wUbA3KpOSSDm3j_n-qw5) - Ibrahim Konsowa&rlm;
* [larave advanced - realtime notification - laravel chat - laravel firebse&rlm; ╪з╪┤╪╣╪з╪▒╪з╪к ╪з┘Д╪▓┘Е┘Ж ╪з┘Д╪н┘В┘К┘В┘К ┘И ┘Б╪з┘К╪▒ ╪и┘К╪▓ ┘Д╪з╪▒╪з┘Б┘Д](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP5u3WilkVBz4s-uQtsy79eb) - Professional Code&rlm;
* [laravel + Vue.js complete tutorial -&rlm; ┘Д╪з╪▒╪з┘Б┘Д ┘И┘Б┘К┘И ╪и┘Е╪┤╪▒┘И╪╣ ╪к╪╖╪и┘К┘В ┘Е╪к┘Г╪з┘Е┘Д ╪┤╪▒╪н](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP5NRdNtBfznKtFoEAuKEd2n) - Professional Code&rlm;
* [Laravel 8 payment gateway -&rlm; ╪з┘Д╪п┘Б╪╣ ╪з┘Д╪з┘Д┘Г╪к╪▒┘И┘Ж┘К ╪и╪з╪│╪к╪о╪п╪з┘Е ┘Д╪з╪▒╪з┘Б┘Д 8 - ╪з┘Д╪п┘Б╪╣ ╪з┘Д╪и┘Ж┘Г┘К ╪и┘Д╪з╪▒╪з┘Б┘Д](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP4wtrnHHJyf8a7E26I3ZrPG) - Professional Code&rlm;
* [Laravel 8 Tutorial -&rlm; ╪п┘И╪▒╪й ┘Д╪з╪▒╪з┘Б┘К┘Д 8 ╪и╪з┘Д┘Д╪║╪й ╪з┘Д╪╣╪▒╪и┘К╪й ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒ ╪з┘Д┘Й ╪з┘Д╪з╪н╪к╪▒╪з┘Б](https://www.youtube.com/playlist?list=PLd4ZH7drWj7DAt5osYlsya3sscPoERtGC) - Mohammed Mustafa&rlm;
* [Laravel API Complete Tutorial&rlm; -╪┤╪▒╪н laravel API-&rlm; ╪┤╪▒╪н API&rlm; ┘Д╪з╪▒╪з┘Б┘Д - ┘Г┘И╪▒╪│ - ╪┤╪▒╪н laravel api&rlm; ╪и╪з┘Е┘Д╪л╪й ╪╣┘Е┘Д┘К╪й](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP5e07XG-waxCb2kLq7M4J5m) - Professional Code&rlm;
* [Laravel Arabic Tutorial&rlm; (╪и╪з┘Д╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PL_aOZuct6oAoloeFcwrIy5w5fJ5rVOGG8) - Khalid Elshafie&rlm;
* [Laravel in Arabic Framework 2020 -&rlm; ╪┤╪▒╪н ┘Д╪з╪▒╪з┘Б┘Д ╪п┘И╪▒┘З ┘Д╪з╪▒╪з┘Б┘Д ╪и╪з┘Д╪╣╪▒╪и┘К ╪з┘Д┘Е╪к┘Г╪з┘Е┘Д╪й ╪и┘Е╪┤╪▒┘И╪╣ ┘Е╪к╪м╪▒](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP4NNEikwx3wUAskQHB3p-LK) - Professional Code&rlm;
* [laravel websockets tutorial realtime notifications - chatting webscokets with node.js without any price&rlm;](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP43uz7u3096X9QY4Gs_oAFt) - Professional Code&rlm;
* [Mastering Laravel&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy_mAhY0x8cHf8oSGPKsEKP) - Elzero Web School&rlm;
* [Redis + Laravel 8 complete tutorial - ┘Д╪з╪▒╪з┘Б┘Д ╪▒┘К╪п╪│ \_ Redis queue with laravel- Redis caching with laravel&rlm;](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP5CVYv0ABdApuYekWKcPNIT) - Professional Code&rlm;
* [╪г╪н╪к╪▒╪з┘Б ┘Д╪з╪▒╪з┘Б┘Д ╪и╪г┘Ж╪┤╪з╪б ┘Е╪к╪м╪▒ ╪з┘Д┘Г╪к╪▒┘И┘Ж┘К ┘Е╪к┘Г╪з┘Е┘Д ┘Е╪к╪╣╪п╪п ╪з┘Д╪к╪м╪з╪▒ ┘И╪з┘Д┘Д╪║╪з╪к - laravel 7 multi vendor eCommerce complete projectl Laravel E-Commerce&rlm;](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP6NeupdX_K9-Qm3ROqGud-t) - Professional Code
* [╪к╪╣┘Д┘К┘Е ┘Д╪з╪▒╪з┘Б┘К┘Д ╪о╪╖┘И╪й ╪и╪о╪╖┘И╪й ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒](https://www.youtube.com/watch?v=f6uQfOw2_6o) - Nour Homsi
* [╪п┘И╪▒╪й ╪з┘Ж╪┤╪з╪б ╪и╪▒┘Ж╪з┘Е╪м ╪з┘Д┘Е╪п╪з╪▒╪│ Php - Laravel&rlm;](https://www.youtube.com/playlist?list=PLftLUHfDSiZ7-RAsH8NskS7AYofykW_WN) - Mora Soft
* [╪п┘И╪▒╪й ╪з┘Ж╪┤╪з╪б ╪и╪▒┘Ж╪з┘Е╪м ┘Б┘И╪з╪к┘К╪▒ php- laravel&rlm;](https://www.youtube.com/playlist?list=PLftLUHfDSiZ7pKXkpGCoZATm5rF6msj5A) - Mora Soft
* [╪п┘И╪▒╪й Laravel 6/7/8 PHP&rlm;](https://www.youtube.com/playlist?list=PLMYF6NkLrdN8V2JKIMxqMsZNPsgUj3WOK) - Muhammed Essa
* [┘Г┘И╪▒╪│ ╪з╪│╪з╪│┘К╪з╪к ┘Д╪з╪▒╪з┘Б┘К┘Д 9](https://www.youtube.com/playlist?list=PLftLUHfDSiZ4GfPZxaFDsA7ejUzD7SpWa) - Mora Soft
* [┘Д╪з╪▒╪з┘Б┘К┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLWCBAKY7-4buQazvDjeZhjLl54UqbF3lM) - Ahmed Abd El Ftah
* [┘Е╪┤╪▒┘И╪╣ ┘Д╪з╪▒╪з┘Б┘Д ┘Е╪к╪м╪▒ ╪з┘Д┘Г╪к╪▒┘И┘Ж┘К ┘Е╪к╪╣╪п╪п ╪з┘Д╪к╪м╪з╪▒ ┘И╪з┘Д┘Д╪║╪з╪к ┘Е╪к┘Г╪з┘Е┘Д - ╪к╪╖╪и┘К┘В╪з╪к ┘Д╪з╪▒╪з┘Б┘Д ╪╣┘Е┘Д┘К┘З](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP7DCb-NamG2tt7uQUfxP2va) - Professional Code
* [API-Course-For-Beginners&rlm;](https://www.youtube.com/playlist?list=PLftLUHfDSiZ6MfN8UhhcXDhh64eejvIKK) - Mora Soft
* [Build and deploy laravel realtime application on AWS for FREE (Arabic)&rlm;](https://www.youtube.com/playlist?list=PL7IXur3gcVAT4wUbA3KpOSSDm3j_n-qw5) - Ibrahim Konsowa
* [larave advanced - realtime notification - laravel chat - laravel firebse ╪з╪┤╪╣╪з╪▒╪з╪к ╪з┘Д╪▓┘Е┘Ж ╪з┘Д╪н┘В┘К┘В┘К ┘И ┘Б╪з┘К╪▒ ╪и┘К╪▓ ┘Д╪з╪▒╪з┘Б┘Д](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP5u3WilkVBz4s-uQtsy79eb) - Professional Code
* [laravel + Vue.js complete tutorial - ┘Д╪з╪▒╪з┘Б┘Д ┘И┘Б┘К┘И ╪и┘Е╪┤╪▒┘И╪╣ ╪к╪╖╪и┘К┘В ┘Е╪к┘Г╪з┘Е┘Д ╪┤╪▒╪н](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP5NRdNtBfznKtFoEAuKEd2n) - Professional Code
* [Laravel 8 payment gateway - ╪з┘Д╪п┘Б╪╣ ╪з┘Д╪з┘Д┘Г╪к╪▒┘И┘Ж┘К ╪и╪з╪│╪к╪о╪п╪з┘Е ┘Д╪з╪▒╪з┘Б┘Д 8 - ╪з┘Д╪п┘Б╪╣ ╪з┘Д╪и┘Ж┘Г┘К ╪и┘Д╪з╪▒╪з┘Б┘Д](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP4wtrnHHJyf8a7E26I3ZrPG) - Professional Code
* [Laravel 8 Tutorial - ╪п┘И╪▒╪й ┘Д╪з╪▒╪з┘Б┘К┘Д 8 ╪и╪з┘Д┘Д╪║╪й ╪з┘Д╪╣╪▒╪и┘К╪й ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒ ╪з┘Д┘Й ╪з┘Д╪з╪н╪к╪▒╪з┘Б](https://www.youtube.com/playlist?list=PLd4ZH7drWj7DAt5osYlsya3sscPoERtGC) - Mohammed Mustafa
* [Laravel API Complete Tutorial -╪┤╪▒╪н laravel API- ╪┤╪▒╪н API ┘Д╪з╪▒╪з┘Б┘Д - ┘Г┘И╪▒╪│ - ╪┤╪▒╪н laravel api ╪и╪з┘Е┘Д╪л╪й ╪╣┘Е┘Д┘К╪й](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP5e07XG-waxCb2kLq7M4J5m) - Professional Code
* [Laravel Arabic Tutorial (╪и╪з┘Д╪╣╪▒╪и┘К)](https://www.youtube.com/playlist?list=PL_aOZuct6oAoloeFcwrIy5w5fJ5rVOGG8) - Khalid Elshafie
* [Laravel in Arabic Framework 2020 - ╪┤╪▒╪н ┘Д╪з╪▒╪з┘Б┘Д ╪п┘И╪▒┘З ┘Д╪з╪▒╪з┘Б┘Д ╪и╪з┘Д╪╣╪▒╪и┘К ╪з┘Д┘Е╪к┘Г╪з┘Е┘Д╪й ╪и┘Е╪┤╪▒┘И╪╣ ┘Е╪к╪м╪▒](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP4NNEikwx3wUAskQHB3p-LK) - Professional Code
* [laravel websockets tutorial realtime notifications - chatting webscokets with node.js without any price&rlm;](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP43uz7u3096X9QY4Gs_oAFt) - Professional Code
* [Mastering Laravel&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy_mAhY0x8cHf8oSGPKsEKP) - Elzero Web School
* [Redis + Laravel 8 complete tutorial - ┘Д╪з╪▒╪з┘Б┘Д ╪▒┘К╪п╪│ \_ Redis queue with laravel- Redis caching with laravel&rlm;](https://www.youtube.com/playlist?list=PLCm7ZeRfGSP5CVYv0ABdApuYekWKcPNIT) - Professional Code
### Prolog
* [Logic Programming - Prolog - &rlm;╪и╪▒┘Е╪м╪й ┘Е┘Ж╪╖┘В┘К╪й](https://www.youtube.com/playlist?list=PLMm8EjqH1EFW9Faldu6D6Uh2j1EWWaTYe) - Ahmed Sallam&rlm;
* [Logic Programming - Prolog - ╪и╪▒┘Е╪м╪й ┘Е┘Ж╪╖┘В┘К╪й](https://www.youtube.com/playlist?list=PLMm8EjqH1EFW9Faldu6D6Uh2j1EWWaTYe) - Ahmed Sallam
### Python
* [╪к╪╣┘Д┘Е ╪г╪│╪з╪│┘К╪з╪к ╪з┘Д╪и╪▒┘Е╪м╪й](https://www.youtube.com/playlist?list=PLvGNfY-tFUN8HRLDE-D2sXvIgYwspdmFE) - ╪║╪▒┘К╪и ╪з┘Д╪┤┘К╪о \|\| Ghareeb Elshaik&rlm;
* [┘В┘Ж╪з╪й ╪╣┘Д┘Е ╪з┘Д╪и┘К╪з┘Ж╪з╪к - ╪н╪│╪з┘Е ╪з┘Д╪н┘И╪▒╪з┘Ж┘К](https://www.youtube.com/playlist?list=PLYW0LRZ3ePo6IYDS2K5IhmuP5qY3dmI9e) - Hussam Hourani&rlm;
* [┘Г┘И╪▒╪│ ╪и╪з┘К╪л┘И┘Ж - ╪к╪╣┘Д┘Е ╪и╪з┘К╪л┘И┘Ж ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒ ┘Д┘Д╪е╪н╪к╪▒╪з┘Б](https://www.youtube.com/playlist?list=PLoP3S2S1qTfCUdNazAZY1LFALcUr0Vbs9) - OctuCode&rlm;
* [┘Г┘И╪▒╪│ ╪и╪з┘К╪л┘И┘Ж ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒ \| ╪│┘Д╪│┘Д╪й ╪п╪▒┘И╪│ ┘Д╪║╪й ╪з┘Д╪и╪з┘К╪л┘И┘Ж \| python&rlm;](https://www.youtube.com/playlist?list=PLYyqC4bNbCIcxKO_r77w5MN1SRRnnfvNQ) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [Learn Python3&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOazcliAXXivOrg9GiAVuoQg) - Algorithm Academy&rlm;
* [Master Python from Beginner to Advanced in Arabic -&rlm; ╪п┘И╪▒╪й ╪к╪╣┘Д┘Е ╪и╪з┘К╪л┘И┘Ж ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒ ┘Г╪з┘Е┘Д╪й ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLuXY3ddo_8nzrO74UeZQVZOb5-wIS6krJ) - Codezilla&rlm;
* [Mastering Python&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAyE_gei5d18qkfIe-Z8mocs) - Elzero Web School&rlm;
* [Mastering Python Tutorial - Python for Beginners \|&rlm; ┘Г┘И╪▒╪│ ╪и╪з┘К╪л┘И┘Ж ┘Г╪з┘Е┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLknwEmKsW8OsG8dnisr_-2WGyx7lpgGEE) - Abdelrahman Gamal&rlm;
* [Object Oriented Programming -&rlm; ╪┤╪▒╪н ╪з┘Д╪и╪▒┘Е╪м╪й ┘Г╪з╪ж┘Ж┘К╪й ╪з┘Д╪к┘И╪м┘З](https://www.youtube.com/playlist?list=PLuXY3ddo_8nzUrgCyaX_WEIJljx_We-c1) - Codezilla&rlm;
* [╪к╪╣┘Д┘Е ╪г╪│╪з╪│┘К╪з╪к ╪з┘Д╪и╪▒┘Е╪м╪й](https://www.youtube.com/playlist?list=PLvGNfY-tFUN8HRLDE-D2sXvIgYwspdmFE) - ╪║╪▒┘К╪и ╪з┘Д╪┤┘К╪о \|\| Ghareeb Elshaik
* [┘Г┘И╪▒╪│ ╪и╪з┘К╪л┘И┘Ж ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒ \| ╪│┘Д╪│┘Д╪й ╪п╪▒┘И╪│ ┘Д╪║╪й ╪з┘Д╪и╪з┘К╪л┘И┘Ж \| python](https://www.youtube.com/playlist?list=PLYyqC4bNbCIcxKO_r77w5MN1SRRnnfvNQ) - ╪г┘Г╪з╪п┘К┘Е┘К╪й ╪к╪▒┘Е┘К╪▓
* [Learn Python3&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNOazcliAXXivOrg9GiAVuoQg) - Algorithm Academy
* [Master Python from Beginner to Advanced in Arabic - ╪п┘И╪▒╪й ╪к╪╣┘Д┘Е ╪и╪з┘К╪л┘И┘Ж ┘Е┘Ж ╪з┘Д╪╡┘Б╪▒ ┘Г╪з┘Е┘Д╪й ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLuXY3ddo_8nzrO74UeZQVZOb5-wIS6krJ) - Codezilla
* [Mastering Python&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAyE_gei5d18qkfIe-Z8mocs) - Elzero Web School
* [Mastering Python Tutorial - Python for Beginners \| ┘Г┘И╪▒╪│ ╪и╪з┘К╪л┘И┘Ж ┘Г╪з┘Е┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLknwEmKsW8OsG8dnisr_-2WGyx7lpgGEE) - Abdelrahman Gamal
* [Object Oriented Programming - ╪┤╪▒╪н ╪з┘Д╪и╪▒┘Е╪м╪й ┘Г╪з╪ж┘Ж┘К╪й ╪з┘Д╪к┘И╪м┘З](https://www.youtube.com/playlist?list=PLuXY3ddo_8nzUrgCyaX_WEIJljx_We-c1) - Codezilla
* [Python Beginners Tutorial](https://www.youtube.com/playlist?list=PL1DUmTEdeA6JCaY0EKssdqbiqq4sgRlUC) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘К
#### Django
* [Arabic Django&rlm;](https://www.youtube.com/playlist?list=PLdZYzC8fohEKjuYyvITqYc2vL0lAWRvhs) - Elsafy Hegazy&rlm;
* [Django 2.x](https://www.youtube.com/playlist?list=PLTcPeoMjkuCxoyflbe4AuNWMZWulKVbr4) - &rlm;╪┤╪и┘Г╪й ╪╣┘Д┘И┘Е
* [Django Create Blog](https://www.youtube.com/playlist?list=PLTcPeoMjkuCyoKpr6II_2aXUUOmtCDW4f) - &rlm;╪┤╪и┘Г╪й ╪╣┘Д┘И┘Е
* [Django Tutorial for Beginners \|&rlm; ┘Г┘И╪▒╪│ ╪п╪м╪з┘Ж╪м┘И ┘Г╪з┘Е┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLknwEmKsW8OtK_n48UOuYGxJPbSFrICxm) - Abdelrahman Gamal&rlm;
* [Arabic Django&rlm;](https://www.youtube.com/playlist?list=PLdZYzC8fohEKjuYyvITqYc2vL0lAWRvhs) - Elsafy Hegazy
* [Django 2.x](https://www.youtube.com/playlist?list=PLTcPeoMjkuCxoyflbe4AuNWMZWulKVbr4) - ╪┤╪и┘Г╪й ╪╣┘Д┘И┘Е
* [Django Create Blog](https://www.youtube.com/playlist?list=PLTcPeoMjkuCyoKpr6II_2aXUUOmtCDW4f) - ╪┤╪и┘Г╪й ╪╣┘Д┘И┘Е
* [Django Tutorial for Beginners \| ┘Г┘И╪▒╪│ ╪п╪м╪з┘Ж╪м┘И ┘Г╪з┘Е┘Д ┘Д┘Д┘Е╪и╪к╪п╪ж┘К┘Ж](https://www.youtube.com/playlist?list=PLknwEmKsW8OtK_n48UOuYGxJPbSFrICxm) - Abdelrahman Gamal
#### Flask
* [Flask&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNObFOYvkcNQG8arJX95TRE47) - Algorithm Academy&rlm;
* [Flask - Project&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNObli30BibPgVr_9JDDJ_0mZ) - Algorithm Academy&rlm;
* [Flask&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNObFOYvkcNQG8arJX95TRE47) - Algorithm Academy
* [Flask - Project&rlm;](https://www.youtube.com/playlist?list=PLfDx4cQoUNObli30BibPgVr_9JDDJ_0mZ) - Algorithm Academy
### R
* [R Tutorial For Beginners](https://www.youtube.com/playlist?list=PL1DUmTEdeA6LKTMW3wrlT3GiFMCL_r_Sn) - &rlm;┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘К
* [R Tutorial For Beginners](https://www.youtube.com/playlist?list=PL1DUmTEdeA6LKTMW3wrlT3GiFMCL_r_Sn) - ┘Е╪н┘Е╪п ╪з┘Д╪п╪│┘И┘В┘К
### RabbitMQ
* [RabbitMQ&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm9uJ2J5ryEOZV7ojLwGkATc) - Ismail Anjrini&rlm;
* [RabbitMQ ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm9uJ2J5ryEOZV7ojLwGkATc) - Ismail Anjrini
### Redis
* [Redis&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm_ijqLfnx94qkmytbWjUQ-h) - Ismail Anjrini&rlm;
* [Redis in 5 Minutes&rlm;](https://www.youtube.com/playlist?list=PLZd2bo_SbAm-5J9eQ2cdOoyKAr_H2LxNY) - Ismail Anjrini&rlm;
* [Redis ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLZd2bo_SbAm_ijqLfnx94qkmytbWjUQ-h) - Ismail Anjrini
* [Redis in 5 Minutes&rlm;](https://www.youtube.com/playlist?list=PLZd2bo_SbAm-5J9eQ2cdOoyKAr_H2LxNY) - Ismail Anjrini
### RegEx
* [╪з┘Д╪к╪╣╪з╪и┘К╪▒ ╪з┘Д┘Ж┘Е╪╖┘К╪йтАМ \| REGEX&rlm;](https://www.youtube.com/playlist?list=PLt0HRIA9i35v2W3JFiCIeUMC4GoD9titN) - Learn With Naw&rlm;
* [Crash Course - Regular Expression - Regex \|&rlm; ╪п┘И╪▒╪й ┘Е┘Г╪л┘Б╪й - ╪з┘Д╪к╪╣╪з╪и┘К╪▒ ╪з┘Д┘Ж╪╕╪з┘Е┘К╪й](https://www.youtube.com/playlist?list=PLBPdtL8DZBZISjop48YSJ82FF-2uIhe-f) - Abdallah Alfaham тАв&rlm; ╪╣╪и╪п ╪з┘Д┘Д┘З ╪з┘Д┘Б╪н╪з┘Е
* [Regular Expression tutorial - Arabic&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY4aVMg7hgQGHyQBZnHgFjJk) - Hard-Code&rlm;
### Rust
* [Rust-&rlm; ┘Д┘Д╪║┘Д╪з╪и╪й](https://www.youtube.com/playlist?list=PLald6EODoOJU0GMuYHlkS9MLhTPE7HiaT) - Ahmed Farghal&rlm;
* [Rust and chill-&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLald6EODoOJWcSXfix8tgr5aVS76IU11M) - Ahmed Farghal&rlm;
* [╪з┘Д╪к╪╣╪з╪и┘К╪▒ ╪з┘Д┘Ж┘Е╪╖┘К╪йтАМ \| REGEX&rlm;](https://www.youtube.com/playlist?list=PLt0HRIA9i35v2W3JFiCIeUMC4GoD9titN) - Learn With Naw
* [Crash Course - Regular Expression - Regex \| ╪п┘И╪▒╪й ┘Е┘Г╪л┘Б╪й - ╪з┘Д╪к╪╣╪з╪и┘К╪▒ ╪з┘Д┘Ж╪╕╪з┘Е┘К╪й](https://www.youtube.com/playlist?list=PLBPdtL8DZBZISjop48YSJ82FF-2uIhe-f) - Abdallah Alfaham тАв ╪╣╪и╪п ╪з┘Д┘Д┘З ╪з┘Д┘Б╪н╪з┘Е
* [Regular Expression tutorial - Arabic&rlm;](https://www.youtube.com/playlist?list=PLwCMLs3sjOY4aVMg7hgQGHyQBZnHgFjJk) - Hard-Code
### Software Architecture
* [Behavioral Design Patterns&rlm; ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLnqAlQ9hFYdex66Z6ViaYFQqvFD1C_G7j) - Mohammed Reda&rlm; *( :construction: in process)*
* [Clean Code Book -&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_ufTMlXoJlQvImqz9wIfcWsX) - Omar Ahmed&rlm;
* [Creational Design Patterns&rlm; ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLnqAlQ9hFYdewk9UKGBcHLulZNUBpNSKJ) - Mohammed Reda&rlm;
* [Declarative Programming](https://www.youtube.com/playlist?list=PLpbZuj8hP-I6F-Zj1Ay8nQ1rMnmFnlK2f) - &rlm;╪п╪▒╪й ╪з┘Д╪з┘Г┘И╪з╪п ┘Д╪з╪и┘Ж ╪н┘Е╪з╪п
* [Design patterns&rlm;](https://www.youtube.com/playlist?list=PLIxq078xdGdYIo2Slyt4XvBElKDcTSgHM) - Nehal Elsamoly&rlm; *( :construction: in process)*
* [Design Patterns&rlm;](https://www.youtube.com/playlist?list=PLsV97AQt78NTrqUAZM562JbR3ljX19JFR) - Passionate Coders \| &rlm;┘Е╪н┘Е╪п ╪з┘Д┘Е┘З╪п┘К *( :construction: in process)*
* [Design Patterns -&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_uczNpsoKEEi7zHcuL07Otos) - Omar Ahmed&rlm; *( :construction: in process)*
* [Software Design Patterns&rlm;](https://www.youtube.com/playlist?app=desktop&list=PLrwRNJX9gLs3oQyBoXtYimY7M5aSF0_oC) - ┘Е╪н┘Е╪п ┘К╪н┘К┘Й
* [SOLID Principles&rlm;](https://www.youtube.com/playlist?list=PLZafHDYyxnk7fKmAuCJhWTMwJZ89f0Tug) - Mahmoud Youssef -&rlm; ┘Е╪н┘Е┘И╪п ┘К┘И╪│┘Б *( :construction: in process)*
* [SOLID Principles&rlm;](https://www.youtube.com/playlist?list=PLsV97AQt78NRT1GmH2EJ-o-2_ILFM9feq) - Passionate Coders \|&rlm; ┘Е╪н┘Е╪п ╪з┘Д┘Е┘З╪п┘К
* [Solid Principles \| Uncle bob&rlm;](https://www.youtube.com/playlist?list=PLINp1xZ5bPrqtE3Hee3vnyrHCaOyMADBt) - DevLoopers&rlm;
* [SOLID Principles&rlm; ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLnqAlQ9hFYdflFSS4NigVB7aSoYPNwHTL) - Mohammed Reda&rlm;
* [SOLID Principles&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_uevri_OpofVLXkRRFnZ7TSV) - Omar Ahmed&rlm;
* [Structural Design Patterns&rlm; ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLnqAlQ9hFYdcW3viz_oXRal_FNkg2Dssm) - Mohammed Reda&rlm;
* [Tennis Game Refactoring Kata&rlm;](https://www.youtube.com/playlist?list=PLZafHDYyxnk7XNSOaQsb8GyeuGWk75WDy) - Mahmoud Youssef - &rlm;┘Е╪н┘Е┘И╪п ┘К┘И╪│┘Б *( :construction: in process)*
* [Write Better Code With Refactoring&rlm;](https://www.youtube.com/playlist?list=PLZafHDYyxnk5h31weDexEeNtchOgqR2ji) - Mahmoud Youssef - &rlm;┘Е╪н┘Е┘И╪п ┘К┘И╪│┘Б *( :construction: in process)*
* [Behavioral Design Patterns ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLnqAlQ9hFYdex66Z6ViaYFQqvFD1C_G7j) - Mohammed Reda&rlm; (:construction: *in process*)
* [Clean Code Book - ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_ufTMlXoJlQvImqz9wIfcWsX) - Omar Ahmed
* [Creational Design Patterns ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLnqAlQ9hFYdewk9UKGBcHLulZNUBpNSKJ) - Mohammed Reda
* [Declarative Programming](https://www.youtube.com/playlist?list=PLpbZuj8hP-I6F-Zj1Ay8nQ1rMnmFnlK2f) - ╪п╪▒╪й ╪з┘Д╪з┘Г┘И╪з╪п ┘Д╪з╪и┘Ж ╪н┘Е╪з╪п
* [Design patterns&rlm;](https://www.youtube.com/playlist?list=PLIxq078xdGdYIo2Slyt4XvBElKDcTSgHM) - Nehal Elsamoly&rlm; (:construction: *in process*)
* [Software Design Patterns](https://www.youtube.com/playlist?app=desktop&list=PLrwRNJX9gLs3oQyBoXtYimY7M5aSF0_oC) - ┘Е╪н┘Е╪п ┘К╪н┘К┘Й
* [SOLID Principles ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLnqAlQ9hFYdflFSS4NigVB7aSoYPNwHTL) - Mohammed Reda
* [SOLID Principles ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLwWuxCLlF_uevri_OpofVLXkRRFnZ7TSV) - Omar Ahmed
* [Structural Design Patterns ╪и╪з┘Д╪╣╪▒╪и┘Й](https://www.youtube.com/playlist?list=PLnqAlQ9hFYdcW3viz_oXRal_FNkg2Dssm) - Mohammed Reda
### TypeScript
* [Learn Typescript 2022&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy532K9M_fjiAmrJ0gkCyLJ) - Elzero Web School&rlm;
* [Typescript Course For Javascript Developer&rlm;](https://www.youtube.com/playlist?list=PLDQ11FgmbqQNDkXDd5SScLPqJM5w4Kgjc) - Programming Solutions - Academy&rlm;
* [typescript for angular developers [arabic tutorial]&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa-BC3yuZdzmAfVC7i5etLWb) - codeZone&rlm;
* [Learn Typescript 2022&rlm;](https://www.youtube.com/playlist?list=PLDoPjvoNmBAy532K9M_fjiAmrJ0gkCyLJ) - Elzero Web School
* [Typescript Course For Javascript Developer&rlm;](https://www.youtube.com/playlist?list=PLDQ11FgmbqQNDkXDd5SScLPqJM5w4Kgjc) - Programming Solutions - Academy
* [typescript for angular developers [arabic tutorial]&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa-BC3yuZdzmAfVC7i5etLWb) - codeZone
* [TypeScript tutorial Arabic&rlm;](https://www.youtube.com/playlist?list=PLF8OvnCBlEY27rEmxg4F86iFljMXyCmk1) - Hussein Al Rubaye&rlm;
#### Angular
* [┘Г┘И╪▒╪│ Angular 2&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLzCpl3aBwaY7eOwGMlps70dTYs2TSsgj1) - Mobarmg&rlm;
* [┘Г┘И╪▒╪│ AngularJS&rlm; ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY43XfnAm-IRuXwtkp0kzpdt) - Mobarmg&rlm;
* [Angular 4+ [arabic tutorial]&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa8piCgv_buHpthEBXHaw0ss) - codeZone&rlm;
* [Arabic Angular 7 from A to R&rlm; ╪з╪н╪к╪▒╪з┘Б ╪з┘Д╪з┘Ж╪м┘И┘Д╪з╪▒](https://www.youtube.com/playlist?list=PLL2zWZTDFZzjSjy7yeJwpj2QkJd8NKo-O) - KMR Script&rlm;
* [Arabic Angular and Firebase App&rlm; ╪к╪╖╪и┘К┘В ╪з┘Ж╪м┘И┘Д╪з╪▒ ┘И┘Б╪з┘К╪▒╪и┘К╪▓](https://www.youtube.com/playlist?list=PLL2zWZTDFZzh2WEmc3fH_O4y4N05ZCqB2) - KMR Script&rlm;
* [┘Г┘И╪▒╪│ Angular 2 ╪и╪з┘Д╪╣╪▒╪и┘К](https://www.youtube.com/playlist?list=PLzCpl3aBwaY7eOwGMlps70dTYs2TSsgj1) - Mobarmg
* [┘Г┘И╪▒╪│ AngularJS ╪и╪з┘Д╪╣╪▒╪и┘К-ITI&rlm;](https://www.youtube.com/playlist?list=PLzCpl3aBwaY43XfnAm-IRuXwtkp0kzpdt) - Mobarmg
* [Angular 4+ [arabic tutorial]&rlm;](https://www.youtube.com/playlist?list=PLQtNtS-WfRa8piCgv_buHpthEBXHaw0ss) - codeZone
* [Arabic Angular 7 from A to R ╪з╪н╪к╪▒╪з┘Б ╪з┘Д╪з┘Ж╪м┘И┘Д╪з╪▒](https://www.youtube.com/playlist?list=PLL2zWZTDFZzjSjy7yeJwpj2QkJd8NKo-O) - KMR Script&rlm;
* [Arabic Angular and Firebase App ╪к╪╖╪и┘К┘В ╪з┘Ж╪м┘И┘Д╪з╪▒ ┘И┘Б╪з┘К╪▒╪и┘К╪▓](https://www.youtube.com/playlist?list=PLL2zWZTDFZzh2WEmc3fH_O4y4N05ZCqB2) - KMR Script&rlm;
* [Arabic NgRx (Angular + Redux)&rlm;](https://www.youtube.com/playlist?list=PLL2zWZTDFZzhW10baUv1esvrowMwbfd5H) - KMR Script&rlm;
### iOS
* [<span dir="ltr">iOS &amp; Xcode</span> ╪п┘И╪▒╪й ╪и╪▒┘Е╪м╪й ╪к╪╖╪и┘К┘В╪з╪к ╪з┘Д╪з┘К┘Б┘И┘Ж ╪и╪з╪│╪к╪о╪п╪з┘Е ┘Д╪║╪й ╪│┘И┘К┘Б╪к](https://www.youtube.com/playlist?list=PLQaOY10EEc8bNbEBMyiJU1I-GIgs1LQfj) - ╪и╪з┘Е╪и╪▒┘Е╪м
* [iOS & Xcode ╪п┘И╪▒╪й ╪и╪▒┘Е╪м╪й ╪к╪╖╪и┘К┘В╪з╪к ╪з┘Д╪з┘К┘Б┘И┘Ж ╪и╪з╪│╪к╪о╪п╪з┘Е ┘Д╪║╪й ╪│┘И┘К┘Б╪к ](https://www.youtube.com/playlist?list=PLQaOY10EEc8bNbEBMyiJU1I-GIgs1LQfj) - ╪и╪з┘Е╪и╪▒┘Е╪м
</div>
+5 -57
View File
@@ -1,11 +1,9 @@
### Index
* [Android](#android)
* [Assembly Language](#assembly-language)
* [C](#c)
* [C#](#csharp)
* [C++](#cpp)
* [Cloud Computing](#cloud-computing)
* [Competitive Programming](#competitive-programming)
* [Dart](#dart)
* [Docker](#docker)
@@ -17,10 +15,8 @@
* [Tailwind](#tailwind)
* [IDE and editors](#ide-and-editors)
* [Java](#java)
* [Spring Boot](#spring-boot)
* [JavaScript](#javascript)
* [Angular](#angular)
* [Electron](#electron)
* [jQuery](#jquery)
* [Next.js](#nextjs)
* [Node.js](#nodejs)
@@ -31,17 +27,14 @@
* [Linux](#linux)
* [MongoDB](#mongodb)
* [MySQL](#mysql)
* [Operating Systems](#operating-systems)
* [PHP](#php)
* [Laravel](#laravel)
* [PostgreSQL](#postgresql)
* [Programming paradigms](#programming-paradigms)
* [Python](#python)
* [Django](#django)
* [Flask](#flask)
* [Scratch](#scratch)
* [Shell scripting](#shell-scripting)
* [Software Architecture](#software-architecture)
* [Swift](#swift)
* [TypeScript](#typescript)
* [WordPress](#wordpress)
@@ -56,11 +49,6 @@
* [Java, OOP & Android tutorials for beginners in Bengali](https://www.youtube.com/playlist?list=PLV3rqOvr9vgkmELwlSouvJtROQ6MWRbIH) - Zulkarnine Mahmud
### Assembly Language
* [Assembly Language Bangla Tutorial](https://www.youtube.com/playlist?list=PLEYW3pZS6IQ8UMvusEVnIJ2dDieXKyKRM) - Maruf Sarker
### C
* [C - All you need to know](https://www.youtube.com/playlist?list=PL_XxuZqN0xVASsjyqiNzgjUWHbDkN2Scy) - Stack Learner
@@ -85,12 +73,6 @@
* [C++ Bangla Tutorial for Beginners - 2022](https://www.youtube.com/playlist?list=PLeqnvPK4PpyWsjZvgLTRcc-dkPQXc8SHc) - Shikkhangon BD
* [C++ STL (Bangla)](https://youtube.com/playlist?list=PLgLCjVh3O6Sgux985GYG22xkFt9z9Sq0_) - LoveExtendsCode
* [Object Oriented C++ \| Bangla Tutorial](https://www.youtube.com/playlist?list=PLy7uM3PHzMF1hnqhFGE4_A8qTUfFmZ_3y) - Online School
* [Standard Template Library of C++ (STL)](https://www.youtube.com/playlist?list=PLoa_roVVsxA0D1Kv_T7rbGHtSdYIUo4f5) - CPS Academy
### Cloud Computing
* [(Bangla) Cloud computing tutorial series : Learn and enjoy AWS Azure and other cloud technologies like never before](https://www.youtube.com/playlist?list=PLEYpvDF6qy8YfccPez3rkafASd9PZV3te) - Foyzul Karim
### Competitive Programming
@@ -118,11 +100,9 @@
### Flutter
* [Flutter Bangla Tutorial](https://www.youtube.com/playlist?list=PLy0nhnjSE4ipl3dXqWbE_ZvBiHeySwiP7) - Afran Sarkar
* [Flutter Bangla Tutorial](https://www.youtube.com/playlist?list=PLg87mxEuu8-692INeEsxudyVifz7M3efy) - Techno BD XYZ
* [Flutter Tutorial Bangla](https://www.youtube.com/playlist?list=PLkyGuIcLcmx3-Z3QML9xkYZtdKh91LeYC) - Rabbil Hasan
* [Flutter Tutorial Bangla](https://www.youtube.com/playlist?list=PLZJlOXxGEkuyZQ-vA7B5vpvvtWU3Upo6p) - Soykot Hosen
* [Flutter Tutorial Bangla (Full Course) \| Mobile App Development](https://www.youtube.com/playlist?list=PLzHzHuEcLLzDh7koqhZJMrE879XzLAfo4) - Jibon Khan
### Git
@@ -188,15 +168,9 @@
* [Java Bangla Tutorials \| CORE Java \| Complete OOP](https://www.youtube.com/playlist?list=PLgH5QX0i9K3oAZUB2QXR-dZac0c9HNyRa) - Anisul Islam
* [Java Basic Syntax Bangla Tutorial](https://www.youtube.com/playlist?list=PLdl6zXgLsy3xCae1uL6rJ8Ay9sIiyBy5I) - Bangla Coding Tutor
* [Java Course! Full Course Bangla](https://www.youtube.com/playlist?list=PLysy6TYSMvpJmMN0ElbC936RmmFustDiy) - Online Course
* [Java For Beginners](https://www.youtube.com/playlist?list=PLvr0Ht-XkB_0KC2-N3hv0V3ib-Z6wKkAy) - Learn With Tawhid
* [Java Swing Bangla Tutorials](https://www.youtube.com/playlist?list=PLgH5QX0i9K3rAHKr6IteF5kdgN6BorH9l) - Anisul Islam
#### Spring Boot
* [Spring Boot for Beginners](https://www.youtube.com/watch?v=ELL1Pwd3W28) - Yeamim Hossain Sajid
### JavaScript
* [DOM: Client Side Javascript](https://www.youtube.com/playlist?list=PL_XxuZqN0xVA10Q5UxbhG3zTPpe_ZdDGg) - Stack Learner
@@ -223,11 +197,6 @@
* [Angularjs bangla tutorial basic](https://www.youtube.com/playlist?list=PLbC4KRSNcMnr2ZFQne_jotsiX9hGwLJHG) - Learn Hunter
#### Electron
* [Electron JS Bangla Tutorials](https://www.youtube.com/playlist?list=PL_XxuZqN0xVDgr7KreI5PaVZuG8Sx3L2c&si=FOsXyD-fC87a45YJ) - Stack Learner
#### jQuery
* [jQuery Bangla Series for Beginners](https://www.youtube.com/playlist?list=PLgH5QX0i9K3pSJG9Hwjnykd0hLGEsW4DB) - Anisul Islam
@@ -270,7 +239,6 @@
* [Introduction to Vue.js in Bangla ржмрж╛ржВрж▓рж╛ with a full Project - Vue Crash Course](https://www.youtube.com/watch?v=iIvN7upsLoA) - Learn with Sumit
* [Vue JS 3 Bangla Tutorial](https://www.youtube.com/playlist?list=PLZ8kLhUbDAhADR0nUr2rwhOD0smxVZX-x) - Mamunur Rashid
* [Vue js in Bangla. Latest Version with Projects (ржмрж╛ржВрж▓рж╛рзЯ Vue js рж╢рж┐ржЦрзБржи)](https://www.youtube.com/playlist?list=PL6f7IPPkpDKn0iI2Y5dnEgyrEqw2VvJ2P) - Rafee Amin
### Kotlin
@@ -303,12 +271,6 @@
* [MySQL Database Bangla Tutorials (HSC student / Anyone)](https://www.youtube.com/playlist?list=PLgH5QX0i9K3qLcx9DvVDWmNJ7riPvxzCD) - Anisul Islam
### Operating Systems
* [Operating System](https://www.youtube.com/playlist?list=PLgrAmbRAezujiknEO3sqpyCC4K3IgS4KU) - Farhan Hossan
* [Operating System (OS) Bangla Tutorial (ржХржоржкрзНрж▓рж┐ржЯ ржХрзЛрж░рзНрж╕)](https://www.youtube.com/playlist?list=PLncy2sD7w4Yr3ZbiP_ipAjgjDRn86N_tT) - Lecturelia - CSE Bangla Tutorial
### PHP
* [PHP All You Need To Know](https://www.youtube.com/playlist?list=PL_XxuZqN0xVCFLIrGA1GaxacvPTDQcsMV) - Stack Learner
@@ -319,13 +281,7 @@
#### Laravel
* [laravel 10 bangla tutorial latest version \| laravel basic to advanced from official documentation](https://www.youtube.com/playlist?list=PLbC4KRSNcMnrY78JyoI8c0pk-reuSw8ff) - Learn Hunter
* [Laravel Queue Tutorial \| Basic to Advanced ](https://www.youtube.com/playlist?list=PLVWmHBgSb-u8slYKd7B1dM4HpGwRX6B1X) - Programming with CodeSteps
### PostgreSQL
* [PostgreSQL Full Course In Bangla 2025](https://www.youtube.com/playlist?list=PLnAO8EqszeI_OihleIZQf_Nz2jx8J7fa5) - Nexist
* [Restapi Bangla tutorial \| Laravel & Lumen Api development](https://www.youtube.com/playlist?list=PLbC4KRSNcMnoQONzuNtFlhEzegTYadoBY) - Learn Hunter
### Programming paradigms
@@ -339,7 +295,8 @@
### Python
* [Bangla Python Tutorial for Beginners](https://www.youtube.com/playlist?list=PLlBKlxyCgmsCYJLq9qc5QzaU-oBFJN79B) - Niamul Hasan (StartBit)
* [Python All You Need to Know / stack learner](https://www.youtube.com/playlist?list=PL3-qJK8D7YirnPBwmPNRyczdVOEwJbtLW) - Stack Learner
* [Python All You Need To Know](https://www.youtube.com/playlist?list=PL_XxuZqN0xVCH8fRfZ8sUuKEQQYIFMjtJ) - Stack Learner
* [Python Bangla Tutorial & Data Science Full Course](https://www.youtube.com/playlist?list=PLmZYUigljiyc-tf7oMmM-s832ibhGxTpT) - Study Mart
* [Python Bangla Tutorial 2023](https://www.youtube.com/playlist?list=PLNMnAEqLBwmpR8JDBOEl0jrzmH1vPnO7v) - Hablu Programmer
* [Python Bangla Tutorials for Beginners](https://www.youtube.com/playlist?list=PLgH5QX0i9K3rz5XqMsTk41_j15_6682BN) - Anisul Islam
* [Python For Beginners - Bangla Tutorials](https://www.youtube.com/playlist?list=PLvr0Ht-XkB_0V-mjAYlfgk-3VRmFarlzC) - Learn With Tawhid
@@ -359,7 +316,6 @@
#### Flask
* [Flask Web Development with python (Bangla)](https://www.youtube.com/playlist?list=PL5WWFMzXof5hA8cLzEoim7BEkHcmddbOK) - Naimul Hawk
* [Python Flask Web Development Full Course in One Video(ржмрж╛ржВрж▓рж╛)](https://youtu.be/QnbsCC8wvJk?si=sRyiRRehGb_qv2wR) - CodeWithRafiq
### Scratch
@@ -375,16 +331,6 @@
* [Shell Scripting Tutorial in Bangla](https://www.youtube.com/playlist?list=PLuDISCShhAlxIduQrBqee-dlCAQTygm4l) - Mohammad Shakirul Islam
### Software Architecture
* [ржмрж╛ржВрж▓рж╛рзЯ ржорж╛ржЗржХрзНрж░рзЛрж╕рж╛рж░рзНржнрж┐рж╕ \| Microservices in Bangla - What are the building blocks of a good Microservices System](https://www.youtube.com/playlist?list=PLEYpvDF6qy8YyX2dQX93C88mQ5alaWFXJ) - Foyzul Karim
* [Career in Backend Workshop](https://www.youtube.com/playlist?list=PL_XxuZqN0xVB2m_jJ1QYOFD2D4JZuY6fO) - Stack Learner
* [Practical Microservices Workshop](https://www.youtube.com/playlist?list=PL_XxuZqN0xVAO0uVm0ClJ3wsKHJw6G_TL) - Stack Learner
* [Pro Postman Workshop](https://www.youtube.com/playlist?list=PL_XxuZqN0xVAw_wmOs1iVfdFGiAX-wGKF) - Stack Learner
* [REST API Design Workshop](https://www.youtube.com/playlist?list=PL_XxuZqN0xVAWGDKIzcn6NWikVkljJQZc) - Stack Learner
* [System Design & Application Architecture Workshop](https://www.youtube.com/playlist?list=PL_XxuZqN0xVAiu5oODf-SmeXG2Y_RG2pz) - Stack Learner
### Swift
* [Swift Programming Tutorial](https://www.youtube.com/playlist?list=PLO3_9DDlL5oQtl1_DmfAC6lAC2IoHx31K) - FHT Bangla
@@ -400,7 +346,9 @@
### WordPress
* [WordPress Bangla Tutorial](https://www.youtube.com/playlist?list=PLm64fbD5Onxti7DiUkX3UX3P2tuiEw30E) - Moshiur
* [Wordpress Bangla Tutorial Course for beginner to advanced level](https://www.youtube.com/playlist?list=PLeCz-UdZ0uzQVPdQN-mWnz8896BdYMqAf) - Freelancer Mannan
* [WordPress Customization Bangla Tutorial](https://www.youtube.com/playlist?list=PLbC4KRSNcMno7NzhTgGhoZtRjLiHUo8m4) - Learn Hunter
* [WordPress Plugin Development](https://www.youtube.com/playlist?list=PLSNRR4BKcowCkeAxfdtTsLqwR0LJYwDaz) - Procoder BD
* [WordPress Theme Development Tutorial Bangla ](https://www.youtube.com/playlist?list=PLSNRR4BKcowD6A-U_ll9ayJWqOEz3XD8l) - Procoder BD
* [WP Theme Development with ChatGPT](https://www.youtube.com/playlist?list=PLn_JOV5gUeKwLEMqi93W6eswy4hEQ_ouL) - Md Maruf Adnan Sami
+1 -3
View File
@@ -34,7 +34,7 @@
### C
* [C Tutorial Deutsch \| Lerne C in 90 Minuten](https://www.youtube.com/watch?v=BSaF8KxnoLY) - Programmieren lernen
* [C Tutorial Deutsch | Lerne C in 90 Minuten](https://www.youtube.com/watch?v=BSaF8KxnoLY) - Programmieren lernen
* [C Tutorials Deutsch](https://www.youtube.com/playlist?list=PLNmsVeXQZj7q4shI4L__SRpetWff9BjLZ) - The Morpheus Tutorials
@@ -47,7 +47,6 @@
* [CSS lernen](https://youtube.com/playlist?list=PLuBK_vNnGp8ANspdZh_aRAa1InIhFlgm_) - NEW - Vadim
* [HTML Tutorial Deutsch](https://youtube.com/playlist?list=PLnlqg5o1zhnhVI3t1iTE2oO4QSGpu7EMx) - Markus Reichl
* [HTML Tutorial Deutsch](https://youtube.com/playlist?list=PL_pqkvxZ6ho3Dho4bGSJfEXn38fI9VuC7) - Programmieren Starten
#### Bootstrap
@@ -76,7 +75,6 @@
### K├╝nstliche Intelligenz
* [Elements of AI](https://www.elementsofai.de)
* [Generative AI f├╝r Anf├дnger .NET - Ein Kurs](https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/translations/de) - Microsoft (GitHub)
### Python
+156 -407
View File
File diff suppressed because it is too large Load Diff
+4 -12
View File
@@ -8,7 +8,6 @@
* [Control de Versiones](#control-de-versiones)
* [Flujos de trabajo](#flujos-de-trabajo)
* [Frameworks](#frameworks)
* [Inteligencia Artificial](#inteligencia-artificial)
* [LaTeX](#latex)
* [Markdown](#markdown)
* [Ofim├бtica](#ofim&#x00E1;tica)
@@ -114,11 +113,6 @@
* [Probar Django \| Crear una Aplicaci├│n Web](https://www.udemy.com/course/probar-django-construir-una-aplicacion-web-en-python) - Justin Mitchel, Karlita K (Udemy)
### Inteligencia Artificial
* [Generative AI para Principiantes .NET - Un Curso](https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/translations/es) - Microsoft (GitHub)
### LaTeX
* [Curso no convencional de LaTeX](https://ondiz.github.io/cursoLatex/)
@@ -126,7 +120,6 @@
### Markdown
* [Curso de Markdown](https://www.youtube.com/playlist?list=PLM4HZoZrNapsQ_f6a9275n15riyr-2AnQ) - ProgramaTutos
* [Tutorial de Markdown](https://www.markdowntutorial.com/es/)
@@ -156,9 +149,9 @@
### Procesadores de lenguaje
* [Compiladores e Int├йrpretes (2012)](https://web.archive.org/web/20130613211947/http://ocw.uji.es/curso/4949) *( :card_file_box: archived)*
* [Compiladores e Int├йrpretes (2012)](http://ocw.uji.es/curso/4949)
* [Procesadores de lenguaje (2006)](https://ocw.ua.es/es/ingenieria-y-arquitectura/procesadores-de-lenguaje-2006.html)
* [Procesadores de Lenguaje (2012)](https://web.archive.org/web/20130524191858/http://ocw.uji.es/curso/5180) *( :card_file_box: archived)*
* [Procesadores de Lenguaje (2012)](http://ocw.uji.es/curso/5180)
* [Procesadores de lenguajes -enfocado en Perl-](https://campusvirtual.ull.es/ocw/course/view.php?id=45)
* [Procesadores de lenguajes II](https://ocw.uca.es/course/view.php?id=56)
@@ -172,8 +165,7 @@
* [Curso C#](https://www.pildorasinformaticas.es/course/curso-c) - Juan D├нaz (P├нldoras Inform├бticas)
* [Curso de Javascript](https://edutin.com/curso-de-javascript-4284) - (Edutin Academy)
* [Curso de JavaScript Gratis](https://codigofacilito.com/cursos/javascript) - C├│digo Facilito
* [Curso de PHP/MySQL](https://www.youtube.com/playlist?list=PLU8oAlHdN5BkinrODGXToK9oPAlnJxmW_) - Juan D├нaz (P├нldoras inform├бticas)
* [Curso de Python](https://www.youtube.com/playlist?list=PLNdFk2_brsRcrVO-C915sjog0WclPgxHb) - Brias Moure "MoureDev"
* [Curso de PHP/MySQL](https://www.youtube.com/playlist?list=PLU8oAlHdN5BkinrODGXToK9oPAlnJxmW_) - Juan D├нaz (P├нldoras inform├бticas)
* [Curso de Python gratis y con certificaci├│n](https://edutin.com/curso-de-python-4276) - Edutin
* [Curso Gratis de Programaci├│n B├бsica](https://platzi.com/clases/programacion-basica/) - Platzi
* [Curso Gratis de Ruby](https://codigofacilito.com/cursos/ruby-2) - C├│digo Facilito
@@ -193,7 +185,6 @@
* [Linux y Bash](https://aprendeaprogramar.com/course/view.php?id=10) - Javier Hernandez (Aprendeaprogramar.com)
* [L├│gica de programaci├│n](https://capacitateparaelempleo.org/pages.php?r=.tema&tagID=7929) - Carlos Slim Foundation (cuenta requerida)
* [Patrones de dise├▒o](https://refactoring.guru/es/design-patterns) - Alexander Shvets (Refactoring.Guru)
* [Primeros Pasos con Rust](https://learn.microsoft.com/es-es/training/paths/rust-first-steps) - Microsoft Learn
* [Principios de PHP](https://programadorwebvalencia.com/cursos/php/base/) - Andros Fenollosa (Programador Web Valencia)
* [Programaci├│n de computadoras](https://es.khanacademy.org/computing/computer-programming#programming) - Khan Academy
* [Programaci├│n en entornos interactivos 'Qt - gtk' (2010)](https://ocw.ua.es/es/ingenieria-y-arquitectura/programacion-en-entornos-interactivos-2010.html)
@@ -202,6 +193,7 @@
* [Programaci├│n en lenguaje Java (2009)](https://ocw.unican.es/course/view.php?id=217)
* [Programaci├│n en lenguaje Java (2015)](https://ocw.unican.es/course/view.php?id=240)
* [Programaci├│n en paralelo -Perl- (2012)](https://campusvirtual.ull.es/ocw/course/view.php?id=44)
* [Programaci├│n para principiantes - primeros pasos](https://www.udemy.com/course/programacion-para-principiantes) - Fernando Herrera (Udemy)
* [Programaci├│n POO (2011)](https://ocw.ua.es/es/ingenieria-y-arquitectura/programacion-3-2011.html)
* [Programador en C#](https://capacitateparaelempleo.org/pages.php?r=.tema&tagID=12989) - Carlos Slim Foundation (cuenta requerida)
* [Programador orientado a objetos](https://capacitateparaelempleo.org/pages.php?r=.tema&tagID=4244) - Carlos Slim Foundation (cuenta requerida)
+46 -64
View File
@@ -1,8 +1,5 @@
<div dir="rtl" markdown="1">
### Index
* [Ansible](#ansible)
* [Blockchain](#blockchain)
* [C, C++](#c)
* [C#](#csharp)
@@ -23,155 +20,140 @@
* [Python](#python)
* [Django](#django)
* [Flask](#flask)
* [Storage](#storage)
* [Web Development](#web-development)
### Ansible
* [╪в┘Е┘И╪▓╪┤ ╪▒╪з█М┌п╪з┘Ж ╪з┘Ж╪│█М╪и┘Д](https://www.youtube.com/playlist?list=PLRMCwJJwWR1AKYcUkdcorTFR-bhXUN6oO) - Morteza Bashsiz&rlm;
### Blockchain
* [╪п┘И╪▒┘З ╪и┘Д╪з┌й ┌Ж█М┘Ж╪М ╪▒┘Е╪▓╪з╪▒╪▓┘З╪з ┘И ╪и█М╪к ┌й┘И█М┘Ж](https://www.youtube.com/playlist?list=PL-tKrPVkKKE1gLxAL-56H-XR-fTapqofC) - Jadi Mirmirani&rlm;
* [╪п┘И╪▒┘З ╪и┘Д╪з┌й ┌Ж█М┘Ж╪М ╪▒┘Е╪▓╪з╪▒╪▓┘З╪з ┘И ╪и█М╪к ┌й┘И█М┘Ж](https://www.youtube.com/playlist?list=PL-tKrPVkKKE1gLxAL-56H-XR-fTapqofC) - Jadi Mirmirani
### C
* [╪в┘Е┘И╪▓╪┤ ╪▓╪и╪з┘Ж C&rlm;](https://toplearn.com/courses/3255/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-%D8%B1%D8%A7%DB%8C%DA%AF%D8%A7%D9%86-%D8%B2%D8%A8%D8%A7%D9%86-c) - Mohammad Moein Bagh Sheikhi&rlm;
* [╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ┘╛█М╪┤╪▒┘Б╪к┘З](https://maktabkhooneh.org/course/%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-%D9%BE%DB%8C%D8%B4%D8%B1%D9%81%D8%AA%D9%87-mk187) - Ramtin Khosravi&rlm;
* [╪п╪▒╪│ ╪з╪╡┘И┘Д ╪и╪▒┘Ж╪з┘Е┘ЗтАМ┘Ж┘И█М╪│█М ╪│█М ┘И ╪│█М ┘╛┘Д╪з╪│ ┘╛┘Д╪з╪│ ╪з╪▓ ╪п╪з┘Ж╪┤┌п╪з┘З ╪╡┘Ж╪╣╪к█М ╪з╪╡┘Б┘З╪з┘Ж](https://maktabkhooneh.org/course/%D8%A7%D8%B5%D9%88%D9%84-%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-C-%D9%88-C-mk68) - Kiarash Bazargan&rlm;
* [╪в┘Е┘И╪▓╪┤ ╪▓╪и╪з┘Ж C](https://toplearn.com/courses/3255/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-%D8%B1%D8%A7%DB%8C%DA%AF%D8%A7%D9%86-%D8%B2%D8%A8%D8%A7%D9%86-c) - Mohammad Moein Bagh Sheikhi
* [╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ┘╛█М╪┤╪▒┘Б╪к┘З](https://maktabkhooneh.org/course/%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-%D9%BE%DB%8C%D8%B4%D8%B1%D9%81%D8%AA%D9%87-mk187) - Ramtin Khosravi
* [╪п╪▒╪│ ╪з╪╡┘И┘Д ╪и╪▒┘Ж╪з┘Е┘ЗтАМ┘Ж┘И█М╪│█М ╪│█М ┘И ╪│█М ┘╛┘Д╪з╪│ ┘╛┘Д╪з╪│ ╪з╪▓ ╪п╪з┘Ж╪┤┌п╪з┘З ╪╡┘Ж╪╣╪к█М ╪з╪╡┘Б┘З╪з┘Ж](https://maktabkhooneh.org/course/%D8%A7%D8%B5%D9%88%D9%84-%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-C-%D9%88-C-mk68) - Kiarash Bazargan
### <a id="csharp"></a>C\#
* [╪в┘Е┘И╪▓╪┤ Asp.Net&lrm; MVC&rlm; ╪и┘З ┘З┘Е╪▒╪з┘З ┘╛╪▒┘И┌Ш┘З ╪╣┘Е┘Д█М](https://toplearn.com/courses/web/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-AspNet-MVC-%D8%A8%D9%87-%D9%87%D9%85%D8%B1%D8%A7%D9%87-%D9%BE%D8%B1%D9%88%DA%98%D9%87-%D8%B9%D9%85%D9%84%DB%8C) - Iman Madaeny *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪п┘И╪▒┘З ┘Е┘В╪п┘Е╪з╪к█М ╪п╪з╪к ┘Ж╪к 5&rlm; ╪к╪н╪к ┘И╪и](https://bugeto.net/courses/free-introductory-asp-dot-net-core-training-course) - Ehsan Babaei *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪в┘Е┘И╪▓╪┤ Asp.Net MVC ╪и┘З ┘З┘Е╪▒╪з┘З ┘╛╪▒┘И┌Ш┘З ╪╣┘Е┘Д█М](https://toplearn.com/courses/web/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-AspNet-MVC-%D8%A8%D9%87-%D9%87%D9%85%D8%B1%D8%A7%D9%87-%D9%BE%D8%B1%D9%88%DA%98%D9%87-%D8%B9%D9%85%D9%84%DB%8C) - Iman Madaeny *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪п┘И╪▒┘З ┘Е┘В╪п┘Е╪з╪к█М ╪п╪з╪к ┘Ж╪к 5 ╪к╪н╪к ┘И╪и](https://bugeto.net/courses/free-introductory-asp-dot-net-core-training-course) - Ehsan Babaei *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
### Git
* [╪в┘Е┘И╪▓╪┤ ┌п█М╪к╪М ┌п█М╪к ┘З╪з╪и ┘И ┌п█М╪к ┘Д╪и - ┘Б╪▒╪з╪п╪▒╪│](https://faradars.org/courses/fvgit9609-git-github-gitlab) - Jadi Mirmirani&rlm; *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪в┘Е┘И╪▓╪┤ ┌п█М╪к╪М ┌п█М╪к ┘З╪з╪и ┘И ┌п█М╪к ┘Д╪и - ┘Б╪▒╪з╪п╪▒╪│](https://faradars.org/courses/fvgit9609-git-github-gitlab) - Jadi Mirmirani *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
### HTML and CSS
* [╪в┘Е┘И╪▓╪┤ css&rlm;](https://maktabkhooneh.org/course/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-%D8%B1%D8%A7%DB%8C%DA%AF%D8%A7%D9%86-css-mk1265) - ┘Е╪н┘Е╪п╪н╪│█М┘Ж ╪│█М╪п╪в┘В╪з█М█М
* [╪в┘Е┘И╪▓╪┤ html&rlm;](https://maktabkhooneh.org/course/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-%D8%B1%D8%A7%DB%8C%DA%AF%D8%A7%D9%86-html-mk1263) - ┘Е╪н┘Е╪п╪н╪│█М┘Ж ╪│█М╪п╪в┘В╪з█М█М
* [╪в┘Е┘И╪▓╪┤ css](https://maktabkhooneh.org/course/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-%D8%B1%D8%A7%DB%8C%DA%AF%D8%A7%D9%86-css-mk1265) - ┘Е╪н┘Е╪п╪н╪│█М┘Ж ╪│█М╪п╪в┘В╪з█М█М
* [╪в┘Е┘И╪▓╪┤ html](https://maktabkhooneh.org/course/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-%D8%B1%D8%A7%DB%8C%DA%AF%D8%A7%D9%86-html-mk1263) - ┘Е╪н┘Е╪п╪н╪│█М┘Ж ╪│█М╪п╪в┘В╪з█М█М
### Java
* [╪в┘Е┘И╪▓╪┤ ╪и╪▒┘Ж╪з┘Е┘ЗтАМ┘Ж┘И█М╪│█М ╪м╪з┘И╪з](https://javacup.ir/javacup-training-videos) - Java Cup&rlm;
* [╪в┘Е┘И╪▓╪┤ ╪и╪▒┘Ж╪з┘Е┘ЗтАМ┘Ж┘И█М╪│█М ╪м╪з┘И╪з](https://javacup.ir/javacup-training-videos) - Java Cup
* [╪в┘Е┘И╪▓╪┤ ╪п┘К╪к╪з╪и┘К╪│ ╪п╪▒ ╪м╪з┘И╪з](https://b2n.ir/j02632)
* [╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ┘╛█М╪┤╪▒┘Б╪к┘З(╪м╪з┘И╪з)](https://maktabkhooneh.org/course/%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-%D9%BE%DB%8C%D8%B4%D8%B1%D9%81%D8%AA%D9%87-%D8%AC%D8%A7%D9%88%D8%A7-mk242) - Gholamali Nejad Hajali Irani&rlm;
* [╪и╪▒┘Ж╪з┘Е┘ЗтАМ┘Ж┘И█М╪│█М ╪н╪▒┘Б┘ЗтАМ╪з█М ╪к╪н╪к ┘И╪и ╪п╪▒ ╪м╪з┘И╪з](https://maktabkhooneh.org/course/%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-%D8%AD%D8%B1%D9%81%D9%87-%D8%A7%DB%8C-%D8%AA%D8%AD%D8%AA-%D9%88%D8%A8-%D8%AF%D8%B1-%D8%AC%D8%A7%D9%88%D8%A7-mk282) - Gholamali Nejad Hajali Irani&rlm;
* [╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ┘╛█М╪┤╪▒┘Б╪к┘З(╪м╪з┘И╪з)](https://maktabkhooneh.org/course/%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-%D9%BE%DB%8C%D8%B4%D8%B1%D9%81%D8%AA%D9%87-%D8%AC%D8%A7%D9%88%D8%A7-mk242) - Gholamali Nejad Hajali Irani
* [╪и╪▒┘Ж╪з┘Е┘ЗтАМ┘Ж┘И█М╪│█М ╪н╪▒┘Б┘ЗтАМ╪з█М ╪к╪н╪к ┘И╪и ╪п╪▒ ╪м╪з┘И╪з](https://maktabkhooneh.org/course/%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-%D8%AD%D8%B1%D9%81%D9%87-%D8%A7%DB%8C-%D8%AA%D8%AD%D8%AA-%D9%88%D8%A8-%D8%AF%D8%B1-%D8%AC%D8%A7%D9%88%D8%A7-mk282) - Gholamali Nejad Hajali Irani
### JavaScript
* [╪в┘Е┘И╪▓╪┤ ┘Б╪з╪▒╪│█М ╪м╪з┘И╪з ╪з╪│┌й╪▒█М┘╛╪к ┘Е┘В╪п┘Е╪з╪к█М ╪к╪з ┘╛█М╪┤╪▒┘Б╪к┘З - JavaScript Tutorial&rlm;](https://youtube.com/playlist?list=PLfbD3-Ao6cPpt5Y3Nkue_W-DrmdOLOaTH) - Mansour Kalagar&rlm;
* [╪п┘И╪▒┘З ╪з┘Е┘И╪▓╪┤█М ╪м╪з┘И╪з ╪з╪│┌й╪▒█М┘╛╪к ╪з╪▓ ╪╡┘Б╪▒](https://www.youtube.com/playlist?list=PLAt10Vana3Yctuu576LSxK6AiskBiWgOF) - Mehran Tarif&rlm; (Silicium&rlm;)
* [╪в┘Е┘И╪▓╪┤ ┘Б╪з╪▒╪│█М ╪м╪з┘И╪з ╪з╪│┌й╪▒█М┘╛╪к ┘Е┘В╪п┘Е╪з╪к█М ╪к╪з ┘╛█М╪┤╪▒┘Б╪к┘З - JavaScript Tutorial](https://youtube.com/playlist?list=PLfbD3-Ao6cPpt5Y3Nkue_W-DrmdOLOaTH) - Mansour Kalagar
* [╪п┘И╪▒┘З ╪з┘Е┘И╪▓╪┤█М ╪м╪з┘И╪з ╪з╪│┌й╪▒█М┘╛╪к ╪з╪▓ ╪╡┘Б╪▒](https://www.youtube.com/playlist?list=PLAt10Vana3Yctuu576LSxK6AiskBiWgOF) - Mehran Tarif (Silicium)
#### React
* [╪▒█М ╪з┌й╪к ╪м█М ╪з╪│ █▓█░█▓█░](https://www.youtube.com/playlist?list=PL3Y-E4YSE4wZpWH8CXwPBI1F13KhkIDEx) - Amir Azimi&rlm;
* [╪▒█М ╪з┌й╪к ╪м█М ╪з╪│ █▓█░█▓█░](https://www.youtube.com/playlist?list=PL3Y-E4YSE4wZpWH8CXwPBI1F13KhkIDEx) - Amir Azimi
#### Vue.js
* [╪в┘Е┘И╪▓╪┤ Vue.js&lrm; ╪з╪▓ ╪╡┘Б╪▒ ╪к╪з ╪╡╪п ╪и╪з 8 ╪п╪▒╪│ ╪▒╪з█М┌п╪з┘Ж](https://sariasan.com/featured/vue-free-full-lessons) - ┘Е█М┘Д╪з╪п ╪н█М╪п╪▒█М
* [╪в┘Е┘И╪▓╪┤ Vue.js ╪з╪▓ ╪╡┘Б╪▒ ╪к╪з ╪╡╪п ╪и╪з 8 ╪п╪▒╪│ ╪▒╪з█М┌п╪з┘Ж](https://sariasan.com/featured/vue-free-full-lessons) - ┘Е█М┘Д╪з╪п ╪н█М╪п╪▒█М
### Kotlin
* [╪в┘Е┘И╪▓╪┤ ┌й╪з┘Е┘Д ╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ╪и╪з ┌й╪з╪к┘Д█М┘Ж](https://www.youtube.com/watch?v=SwhXvaXx078) - Amirahmad Adibi&rlm;
* [╪п┘И╪▒┘З ╪в┘Е┘И╪▓╪┤█М ┌й╪з╪к┘Д█М┘Ж](https://mskm.ir/category/programming/kotlin/) - Mehrdad Dolatkhah&rlm;
* [╪п┘И╪▒┘З ╪▒╪з█М┌п╪з┘Ж ╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ╪з┘Ж╪п╪▒┘И█М╪п](https://www.youtube.com/playlist?list=PLoBWKLYZlNi7lecoeYXHC868ZH_AE1uXg) - Omid Sharifmehr&rlm;
* [╪в┘Е┘И╪▓╪┤ ┌й╪з┘Е┘Д ╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ╪и╪з ┌й╪з╪к┘Д█М┘Ж](https://www.youtube.com/watch?v=SwhXvaXx078) - Amirahmad Adibi
* [╪п┘И╪▒┘З ╪в┘Е┘И╪▓╪┤█М ┌й╪з╪к┘Д█М┘Ж](https://mskm.ir/category/programming/kotlin/) - Mehrdad Dolatkhah
* [╪п┘И╪▒┘З ╪▒╪з█М┌п╪з┘Ж ╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ╪з┘Ж╪п╪▒┘И█М╪п](https://www.youtube.com/playlist?list=PLoBWKLYZlNi7lecoeYXHC868ZH_AE1uXg) - Omid Sharifmehr
### Linux
* [╪в┘Е┘И╪▓╪┤ ╪▒╪з█М┌п╪з┘Ж ┘Д█М┘Ж┘И┌й╪│](https://www.youtube.com/playlist?list=PLRMCwJJwWR1A3_ECuOqdIaR-XLnr6bDj_) - Morteza Bashsiz&rlm;
* [╪в┘Е┘И╪▓╪┤ ┘Д█М┘Ж┘И┌й╪│ ╪и╪▒╪з█М ╪в╪п┘Е ┘З╪з█М ╪┤╪з╪п](https://www.youtube.com/playlist?list=PL-tKrPVkKKE2AniHDmp6zK9KGD1sjf0bd) - Jadi Mirmirani&rlm;
* [╪в┘Е┘И╪▓╪┤ ┘Д█М┘Ж┘И┌й╪│ ┘Е┘В╪п┘Е╪з╪к█М](https://www.youtube.com/watch?v=ZwaBNkQKrts&list=PLPj7mSUQL4v_oVLO-2Q1QQ9fAH45u8z4A) - Hamid Emamian&rlm;
* [╪п┘И╪▒┘З ╪з┘Д┘╛█М┌й █▒ - ╪м╪з╪п█М \| LPIC-1 with Jadi&rlm;](https://www.youtube.com/playlist?list=PL7ePwBdxM4nswZ62DvL58yJZ9W4-hOLLB) - Jadi Mirmirani&rlm;
* [╪в┘Е┘И╪▓╪┤ ╪▒╪з█М┌п╪з┘Ж ┘Д█М┘Ж┘И┌й╪│](https://www.youtube.com/playlist?list=PLFK3-mgWZHcpWSFgpy-uEwIb6xjj4vfkB) - Morteza Bashsiz
* [╪в┘Е┘И╪▓╪┤ ┘Д█М┘Ж┘И┌й╪│ ╪и╪▒╪з█М ╪в╪п┘Е ┘З╪з█М ╪┤╪з╪п](https://www.youtube.com/playlist?list=PL-tKrPVkKKE2AniHDmp6zK9KGD1sjf0bd) - Jadi Mirmirani
* [╪в┘Е┘И╪▓╪┤ ┘Д█М┘Ж┘И┌й╪│ ┘Е┘В╪п┘Е╪з╪к█М](https://www.youtube.com/watch?v=ZwaBNkQKrts&list=PLPj7mSUQL4v_oVLO-2Q1QQ9fAH45u8z4A) - Hamid Emamian
### Machine Learning
* [╪п╪▒╪│ █М╪з╪п┌п█М╪▒█М ┘Е╪з╪┤█М┘Ж ╪п╪з┘Ж╪┤┌п╪з┘З ╪з╪│╪к┘Ж┘Б┘И╪▒╪п](https://maktabkhooneh.org/course/35-%DB%8C%D8%A7%D8%AF%DA%AF%DB%8C%D8%B1%DB%8C-%D9%85%D8%A7%D8%B4%DB%8C%D9%86-mk35) - Andrew Ng&rlm;
* [╪п╪▒╪│ █М╪з╪п┌п█М╪▒█М ┘Е╪з╪┤█М┘Ж ╪п╪з┘Ж╪┤┌п╪з┘З ╪╡┘Ж╪╣╪к█М ╪┤╪▒█М┘Б](https://maktabkhooneh.org/course/273-%DB%8C%D8%A7%D8%AF%DA%AF%DB%8C%D8%B1%DB%8C-%D9%85%D8%A7%D8%B4%DB%8C%D9%86-mk273) - Mahdiyeh Soleymani&rlm;
* [╪п╪▒╪│ █М╪з╪п┌п█М╪▒█М ┘Е╪з╪┤█М┘Ж ╪п╪з┘Ж╪┤┌п╪з┘З ╪з╪│╪к┘Ж┘Б┘И╪▒╪п](https://maktabkhooneh.org/course/35-%DB%8C%D8%A7%D8%AF%DA%AF%DB%8C%D8%B1%DB%8C-%D9%85%D8%A7%D8%B4%DB%8C%D9%86-mk35) - Andrew Ng
* [╪п╪▒╪│ █М╪з╪п┌п█М╪▒█М ┘Е╪з╪┤█М┘Ж ╪п╪з┘Ж╪┤┌п╪з┘З ╪╡┘Ж╪╣╪к█М ╪┤╪▒█М┘Б](https://maktabkhooneh.org/course/273-%DB%8C%D8%A7%D8%AF%DA%AF%DB%8C%D8%B1%DB%8C-%D9%85%D8%A7%D8%B4%DB%8C%D9%86-mk273) - Mahdiyeh Soleymani
### Network
* [╪п╪▒┌й ┘Е┘В╪п┘Е╪з╪к█М ╪┤╪и┌й┘З](https://www.youtube.com/playlist?list=PL-tKrPVkKKE00meXoxmIy6EgldK5XE-Z) - Jadi Mirmirani&rlm;
* [╪п╪▒┌й ┘Е┘В╪п┘Е╪з╪к█М ╪┤╪и┌й┘З](https://www.youtube.com/playlist?list=PL-tKrPVkKKE00meXoxmIy6EgldK5XE-Z) - Jadi Mirmirani
### PHP
* [╪в┘Е┘И╪▓╪┤ ┘╛█МтАМ╪з┌ЖтАМ┘╛█М - ╪│┌й╪з┘Ж ╪в┌й╪з╪п┘Е█М](https://sokanacademy.com/courses/php/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-PHP) - Behzad Moradi&rlm;
* [╪в┘Е┘И╪▓╪┤ PHP -&rlm; ╪│╪и╪▓ ╪п╪з┘Ж╪┤](https://sabzdanesh.com/php-tutorial/) - Omid Rajaei&rlm;
* [╪в┘Е┘И╪▓╪┤ ┘╛█МтАМ╪з┌ЖтАМ┘╛█М - ╪│┌й╪з┘Ж ╪в┌й╪з╪п┘Е█М](https://sokanacademy.com/courses/php/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-PHP) - Behzad Moradi
#### Codeigniter
* [╪╖╪▒╪з╪н█М ┘И╪и Codeigniter&rlm;](https://maktabkhooneh.org/course/%D8%B7%D8%B1%D8%A7%D8%AD%DB%8C-%D9%88%D8%A8-Codeigniter-mk136)
* [╪╖╪▒╪з╪н█М ┘И╪и Codeigniter](https://maktabkhooneh.org/course/%D8%B7%D8%B1%D8%A7%D8%AD%DB%8C-%D9%88%D8%A8-Codeigniter-mk136)
#### Laravel
* [╪в┘Е┘И╪▓╪┤ ┘Д╪з╪▒╪з┘И┘Д](https://roocket.ir/series/learn-laravel) - Hesam Mousavi&rlm;
* [╪в┘Е┘И╪▓╪┤ ┘Д╪з╪▒╪з┘И┘Д](http://www.alefyar.com/laravel-tutorial) - Abolfazl Talebi&rlm;
* [╪в┘Е┘И╪▓╪┤ ┘Д╪з╪▒╪з┘И┘Д](https://roocket.ir/series/learn-laravel) - Hesam Mousavi
* [╪в┘Е┘И╪▓╪┤ ┘Д╪з╪▒╪з┘И┘Д](http://www.alefyar.com/laravel-tutorial) - Abolfazl Talebi
#### Yii
* [╪в┘Е┘И╪▓╪┤ yii framework 2&rlm;](https://maktabkhooneh.org/course/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-yii-framework-2-mk205) - Mehrdad Seifzade&rlm;
* [╪в┘Е┘И╪▓╪┤ yii framework 2](https://maktabkhooneh.org/course/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-yii-framework-2-mk205) - Mehrdad Seifzade
### Python
* [╪в┘Е┘И╪▓╪┤ ┘╛╪з█М╪к┘И┘Ж ╪▒╪з█М┌п╪з┘Ж (╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М python&rlm; ╪з╪▓ ╪╡┘Б╪▒)](https://sabzdanesh.com/python-tutorial/) - Omid Rajaei *(╪и┘ЗтАМ┘З┘Е╪▒╪з┘З ┌й┘И╪ж█М╪▓ ┘И ╪к┘Е╪▒█М┘Ж ╪и█М╪┤╪к╪▒ ╪и╪з ╪л╪и╪ктАМ┘Ж╪з┘Е ╪▒╪з█М┌п╪з┘Ж)*
* [╪п┘И╪▒┘З ╪в┘Е┘И╪▓╪┤ ╪▒╪з█М┌п╪з┘Ж ╪▓╪и╪з┘Ж ┘╛╪з█М╪к┘И┘Ж ( Python )&rlm; ╪з╪▓ ┘Е┘В╪п┘Е╪з╪к█М ╪к╪з ┘╛█М╪┤╪▒┘Б╪к┘З](https://toplearn.com/courses/2150/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-%D8%B1%D8%A7%DB%8C%DA%AF%D8%A7%D9%86-%D9%BE%D8%A7%DB%8C%D8%AA%D9%88%D9%86-(-python-)) - Mohammad Ordokhani&rlm; (TopLearn&rlm;) *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪п┘И╪▒┘З ┘Е┘В╪п┘Е╪з╪к█М ╪к╪з ┘╛█М╪┤╪к╪▒┘Б╪к┘З ┘╛╪з█М╪к┘И┘Ж - ┌й╪п╪к╪▒╪з┘╛█М](https://www.youtube.com/playlist?list=PLSMC8KtOWURqgm0c6iVXrGzK4ymzJUnfj) - CodeTherapy&rlm;
* [┘Е╪к╪о╪╡╪╡ ┘╛╪з█М╪к┘И┘Ж (Python)&rlm;](https://sabzlearn.ir/course/python/) - Reza Davalit&rlm;
* [╪п┘И╪▒┘З ╪в┘Е┘И╪▓╪┤ ╪▒╪з█М┌п╪з┘Ж ╪▓╪и╪з┘Ж ┘╛╪з█М╪к┘И┘Ж ( Python ) ╪з╪▓ ┘Е┘В╪п┘Е╪з╪к█М ╪к╪з ┘╛█М╪┤╪▒┘Б╪к┘З](https://toplearn.com/courses/2150/%D8%A2%D9%85%D9%88%D8%B2%D8%B4-%D8%B1%D8%A7%DB%8C%DA%AF%D8%A7%D9%86-%D9%BE%D8%A7%DB%8C%D8%AA%D9%88%D9%86-(-python-)) - Mohammad Ordokhani (TopLearn) *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪п┘И╪▒┘З ┘Е┘В╪п┘Е╪з╪к█М ╪к╪з ┘╛█М╪┤╪к╪▒┘Б╪к┘З ┘╛╪з█М╪к┘И┘Ж - ┌й╪п╪к╪▒╪з┘╛█М](https://www.youtube.com/playlist?list=PLSMC8KtOWURqgm0c6iVXrGzK4ymzJUnfj) - CodeTherapy
* [┘Е╪к╪о╪╡╪╡ ┘╛╪з█М╪к┘И┘Ж (Python)](https://sabzlearn.ir/course/python/) - Reza Davalit
### Django
* [╪в┘Е┘И╪▓╪┤ ┘Е┘В╪п┘Е╪з╪к█М Django Rest Framework (DRF)&rlm;](https://www.youtube.com/playlist?list=PL7MXODW7Gj1eGnm4dXnydgqSDb3pLpg9v) - TorhamDev : Tech With Tori&rlm;
* [╪п┘И╪▒┘З ╪з┘Е┘И╪▓╪┤ ╪м┘Ж┌п┘И ┘Е┘В╪п┘Е╪з╪к█М ╪к╪з ┘╛█М╪┤╪▒┘Б╪к┘З](https://www.youtube.com/playlist?list=PLAt10Vana3YeAwS_LyLCeu7chml8eP8bh) - Mehran Tarif&rlm; (Silicium&rlm;)
* [╪│┘И┌й╪к ┘Ж┘И█М╪│█М ╪и╪з ┌й╪к╪з╪и╪о╪з┘Ж┘З ╪м┘Ж┌п┘И ┌Ж┘Ж┘Д╪▓](https://www.youtube.com/playlist?list=PLRU2zoAmuzJ2GD68st5SinXXv_Gv1lWRm) - Shahriar Shariati&rlm;
* [Django2 All In One Course -&rlm; ╪п┘И╪▒┘З ┌й╪з┘Е┘Д ╪м┘Ж┌п┘И ┘И ┘Е┘З┘Ж╪п╪│█М ╪и┌й ╪з┘Ж╪п](https://www.youtube.com/playlist?list=PLGlWjLcdLyGyqEqh9rBQ-9toPsFeHWrMr) - Boby Cloud&rlm;
* [╪в┘Е┘И╪▓╪┤ ┘Е┘В╪п┘Е╪з╪к█М Django Rest Framework (DRF)](https://www.youtube.com/playlist?list=PL7MXODW7Gj1eGnm4dXnydgqSDb3pLpg9v) - TorhamDev : Tech With Tori
* [╪п┘И╪▒┘З ╪з┘Е┘И╪▓╪┤ ╪м┘Ж┌п┘И ┘Е┘В╪п┘Е╪з╪к█М ╪к╪з ┘╛█М╪┤╪▒┘Б╪к┘З](https://www.youtube.com/playlist?list=PLAt10Vana3YeAwS_LyLCeu7chml8eP8bh) - Mehran Tarif (Silicium)
* [╪│┘И┌й╪к ┘Ж┘И█М╪│█М ╪и╪з ┌й╪к╪з╪и╪о╪з┘Ж┘З ╪м┘Ж┌п┘И ┌Ж┘Ж┘Д╪▓](https://www.youtube.com/playlist?list=PLRU2zoAmuzJ2GD68st5SinXXv_Gv1lWRm) - Shahriar Shariati
* [Django2 All In One Course - ╪п┘И╪▒┘З ┌й╪з┘Е┘Д ╪м┘Ж┌п┘И ┘И ┘Е┘З┘Ж╪п╪│█М ╪и┌й ╪з┘Ж╪п](https://www.youtube.com/playlist?list=PLGlWjLcdLyGyqEqh9rBQ-9toPsFeHWrMr) - Boby Cloud
### FastAPI
* [╪в┘Е┘И╪▓╪┤ FastAPI&rlm;](https://www.youtube.com/playlist?list=PL7MXODW7Gj1c1jviyYkRHKNeU_9BK0Ud7) - TorhamDev : Tech With Tori&rlm;
* [╪в┘Е┘И╪▓╪┤ FastAPI](https://www.youtube.com/playlist?list=PL7MXODW7Gj1c1jviyYkRHKNeU_9BK0Ud7) - TorhamDev : Tech With Tori
### Flask
* [╪в┘Е┘И╪▓╪┤ ╪к┘И╪│╪╣┘З ┘И╪и ╪и╪з ┘Б╪▒█М┘ЕтАМ┘И╪▒┌й ┘Б┘Д╪│┌й](https://www.youtube.com/playlist?list=PLdUn5H7OTUk1WYCrDJpNGpJ2GFWd7yZaw) - Alireza Ayinmehr&rlm;
### Storage
* [╪в┘Е┘И╪▓╪┤ ╪▒╪з█М┌п╪з┘Ж ╪│┘Б](https://www.youtube.com/playlist?list=PLRMCwJJwWR1DhlYbrvwXCXbudzfxseo7E) - Morteza Bashsiz&rlm;
* [╪в┘Е┘И╪▓╪┤ ╪к┘И╪│╪╣┘З ┘И╪и ╪и╪з ┘Б╪▒█М┘ЕтАМ┘И╪▒┌й ┘Б┘Д╪│┌й](https://www.youtube.com/playlist?list=PLdUn5H7OTUk1WYCrDJpNGpJ2GFWd7yZaw) - Alireza Ayinmehr
### Web Development
* [╪в┘Е┘И╪▓╪┤ тАО0 ╪к╪з тАО100 ╪╖╪▒╪з╪н█М ╪│╪з█М╪к ╪и╪з ┘И╪▒╪п┘╛╪▒╪│](https://www.youtube.com/playlist?list=PLh9zdkDdmi81Cu_4HGlXoq2mvtyu7t8Fn) - Ali Karbasi&rlm;
* [╪в┘Е┘И╪▓╪┤ ╪з█М┘Ж╪│┘╛┌й╪к ╪з┘Д┘Е┘Ж╪к](https://holosen.net/inspect-element-1/) - Hossein Badrnezhad&rlm;
* [╪в┘Е┘И╪▓╪┤ ╪╖╪▒╪з╪н█М ┘И╪и](https://www.youtube.com/playlist?list=PLF10DSJQktjlCvLNuyxNjMPIHThHuIVqG) - Siavash Mahmoudian&rlm;
* [╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ┘И╪и](https://maktabkhooneh.org/course/%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-%D9%88%D8%A8-mk74) - Mohammad Salehe&rlm;
* [╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ┘И╪и ╪и╪з HTML&rlm; ┘И CSS&rlm;](https://holosen.net/web-design/) - Hossein Badrnezhad&rlm; *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪п┘И╪▒┘З ╪в┘Е┘И╪▓╪┤█М ╪и┘И╪к ╪з╪│╪к╪▒┘╛ 5&rlm;](https://www.youtube.com/playlist?list=PLAt10Vana3YciJv9EIcNSsm1yTGpOdJIp) - Mehran Tarif&rlm; (Silicium&rlm;)
* [┘И╪итАМ┘Б╪▒█М┘ЕтАМ┘И╪▒┌йтАМ┘З╪з ┌Ж┌п┘И┘Ж┘З ┌й╪з╪▒ ┘Е█МтАМ┌й┘Ж┘Ж╪п╪Я](https://www.youtube.com/playlist?list=PLRU2zoAmuzJ33x-___WkhyTJ8dDPaoOPk) - Shahriar Shariati&rlm;
* [╪в┘Е┘И╪▓╪┤ ╪з█М┘Ж╪│┘╛┌й╪к ╪з┘Д┘Е┘Ж╪к](https://holosen.net/inspect-element-1/) - Hossein Badrnezhad
* [╪в┘Е┘И╪▓╪┤ ╪╖╪▒╪з╪н█М ┘И╪и](https://www.youtube.com/playlist?list=PLF10DSJQktjlCvLNuyxNjMPIHThHuIVqG) - Siavash Mahmoudian
* [╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ┘И╪и](https://maktabkhooneh.org/course/%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D9%87-%D9%86%D9%88%DB%8C%D8%B3%DB%8C-%D9%88%D8%A8-mk74) - Mohammad Salehe
* [╪и╪▒┘Ж╪з┘Е┘З ┘Ж┘И█М╪│█М ┘И╪и ╪и╪з HTML ┘И CSS](https://holosen.net/web-design/) - Hossein Badrnezhad *(┘Ж█М╪з╪▓ ╪и┘З ╪л╪и╪к ┘Ж╪з┘Е ╪п╪з╪▒╪п)*
* [╪п┘И╪▒┘З ╪з┘Е┘И╪▓╪┤█М ╪и┘И╪к ╪з╪│╪к╪▒┘╛ 5](https://www.youtube.com/playlist?list=PLAt10Vana3YciJv9EIcNSsm1yTGpOdJIp) - Mehran Tarif (Silicium)
* [┘И╪итАМ┘Б╪▒█М┘ЕтАМ┘И╪▒┌йтАМ┘З╪з ┌Ж┌п┘И┘Ж┘З ┌й╪з╪▒ ┘Е█МтАМ┌й┘Ж┘Ж╪п╪Я](https://www.youtube.com/playlist?list=PLRU2zoAmuzJ33x-___WkhyTJ8dDPaoOPk) - Shahriar Shariati
</div>
+1 -3
View File
@@ -16,15 +16,13 @@
* [Elements of AI](https://www.elementsofai.com/fi/) - Teko├дlykurssi
* [Koodiaapinen](https://koodiaapinen.fi) - Opettajille suunnattu sivusto ohjelmoinnin maailmaan.
* [Mooc](https://mooc.fi) - Laadukkaita, avoimia ja ilmaisia verkkokursseja kaikille
* [Ohjelmointi](https://fitech.io/fi/ohjelmointi/) - FITech
### Python
* [Ohjelmoinnin perusteet ja jatkokurssi](https://ohjelmointi-25.mooc.fi) - Helsingin yliopisto
* [Helsingin yliopiston Python-ohjelmointikurssi](https://linkki.github.io/python2017) - Ilmainen verkkokurssi
### Web Development
* [Full stack open](https://fullstackopen.com) - University of Helsinki
* [Web-ohjelmointi](https://fitech.io/fi/web-ohjelmointi/) - FITech
+20 -28
View File
@@ -8,7 +8,7 @@
* [C++](#cpp)
* [Delphi](#delphi)
* [Git](#git)
* [HTML / CSS](#html--css)
* [HTML and CSS](#html-and-css)
* [Java](#java)
* [JavaScript](#javascript)
* [jQuery](#jquery)
@@ -24,7 +24,7 @@
### Algorithmes
* [Algorithmie - Cours](https://www.youtube.com/playlist?list=PLrSOXFDHBtfE0AkOm795c2qpLQJNiEBbZ) - EvoluNoob
* [Algorithmie - Cours](https://www.youtube.com/playlist?list=PLrSOXFDHBtfE0AkOm795c2qpLQJNiEBbZ) - Formation Video
### APL
@@ -41,16 +41,15 @@
### C
* [Apprendre le langage C](https://www.youtube.com/playlist?list=PLrSOXFDHBtfEh6PCE39HERGgbbaIHhy4j) - EvoluNoob
* [Apprendre le langage C - Exercices](https://www.youtube.com/playlist?list=PLrSOXFDHBtfF6lXQpJ4hBha76DsQufiEQ) - EvoluNoob
* [Apprendre le langage C](https://www.youtube.com/playlist?list=PLrSOXFDHBtfEh6PCE39HERGgbbaIHhy4j) - Formation Video
* [Apprendre le langage C - Exercices](https://www.youtube.com/playlist?list=PLrSOXFDHBtfF6lXQpJ4hBha76DsQufiEQ) - Formation Video
* [Le Langage C](https://zestedesavoir.com/tutoriels/755/le-langage-c-1/) - sur Zeste de Savoir, Informaticienzero, Taure, Paraze, Lucas-84
* [TUTOS C](https://www.youtube.com/playlist?list=PLEagTQfI6nPOWS4JPnxW5pRVgeyLuS5oC) - PrimFX
### <a id="csharp"></a>C\#
* [Apprendre le C#](https://www.youtube.com/playlist?list=PLkHw7J3J2iapWFUnQmVzsRCU5YxaAWHSY) - Pentiminax
* [C# - Cours](https://www.youtube.com/playlist?list=PLrSOXFDHBtfGBHAMEg9Om9nF_7R7h5mO7) - EvoluNoob
* [C# - Cours](https://www.youtube.com/playlist?list=PLrSOXFDHBtfGBHAMEg9Om9nF_7R7h5mO7) - Formation Video
### <a id="cpp"></a>C++
@@ -69,37 +68,32 @@
* [Formation Git en vid├йo, Cours Complet](https://www.youtube.com/playlist?list=PLjwdMgw5TTLXuY5i7RW0QqGdW0NZntqiP) - Grafikart
### Intelligence Artificielle
### HTML and CSS
* [G├йn├йrative AI pour D├йbutants .NET - Un Cours](https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/translations/fr) - Microsoft (GitHub)
### HTML / CSS
* [Apprendre ├а coder en HTML et CSS \| Cours complet (2020)](https://www.pierre-giraud.com/html-css-apprendre-coder-cours/) - Pierre Giraud (HTML)
* [Apprendre ├а utiliser le framework Bootstrap \| Cours complet (2020)](https://www.pierre-giraud.com/bootstrap-apprendre-cours/) - Pierre Giraud (HTML)
* [Apprendre ├а utiliser Sass \| Cours Complet (2020)](https://www.pierre-giraud.com/sass-apprendre-cours-complet/) - Pierre Giraud (HTML)
* [Apprendre ├а coder en HTML et CSS \| Cours complet (2020)](https://www.pierre-giraud.com/html-css-apprendre-coder-cours/) - Pierre Giraud
* [Apprendre ├а utiliser le framework Bootstrap \| Cours complet (2020)](https://www.pierre-giraud.com/bootstrap-apprendre-cours/) - Pierre Giraud
* [Apprendre ├а utiliser Sass \| Cours Complet (2020)](https://www.pierre-giraud.com/sass-apprendre-cours-complet/) - Pierre Giraud
* [Apprendre l'HTML](https://www.youtube.com/playlist?list=PLjwdMgw5TTLUeixVGPNl1uZNeJy4UY6qX) - Grafikart
* [D├йcouvrir CSS](https://www.youtube.com/playlist?list=PLjwdMgw5TTLVjTZQocrMwKicV5wsZlRpj) - Grafikart
* [HTML/CSS - Exercices](https://www.youtube.com/playlist?list=PLrSOXFDHBtfHEFVqv0pjGkPHv6PhWZQBb) - EvoluNoob
* [HTML/CSS - Tutoriels](https://www.youtube.com/playlist?list=PLrSOXFDHBtfG1_4HrfPttdwF8aLpgdsRL) - EvoluNoob
* [Documentation du MDN](https://developer.mozilla.org/fr/) (MDN Mozilla)
* [HTML/CSS - Exercices](https://www.youtube.com/playlist?list=PLrSOXFDHBtfHEFVqv0pjGkPHv6PhWZQBb) - Formation Video
* [HTML/CSS - Tutoriels](https://www.youtube.com/playlist?list=PLrSOXFDHBtfG1_4HrfPttdwF8aLpgdsRL) - Formation Video
* [Le pr├йprocesseur SASS](https://www.youtube.com/playlist?list=PLjwdMgw5TTLWVp8WUGheSrGnmEWIMk9H6) - Grafikart
* [MDN Web Docs](https://developer.mozilla.org/fr/docs/Web) - Mozilla (HTML) (CC-BY-SA)
* [Tutoriel CSS](https://web.archive.org/web/20240807215319/http://fr.html.net/tutorials/css/) - `trl.:` Jean Jacques Solari (HTML) *( :card_file_box: archived)*
* [Tutoriel HTML](https://web.archive.org/web/20240910145639/http://fr.html.net/tutorials/html/) - `trl.:` Jean Jacques Solari (HTML) *( :card_file_box: archived)*
* [TUTOS HTML et CSS](https://www.youtube.com/playlist?list=PLEagTQfI6nPObScwsDmTCbLuZXRYfiUM-) - Boris 'PrimFX'
* [Tutoriel CSS](http://fr.html.net/tutorials/css/) - `trl.:` Jean Jacques Solari
* [Tutoriel HTML](http://fr.html.net/tutorials/html/) - `trl.:` Jean Jacques Solari
* [TUTOS HTML et CSS](https://www.youtube.com/playlist?list=PLEagTQfI6nPObScwsDmTCbLuZXRYfiUM-) - PrimFX
### Java
* [Cours Java](https://www.youtube.com/playlist?list=PLrSOXFDHBtfHkq8dd3BbSaopVgRSYtgPv) - EvoluNoob
* [Cours Java](https://www.youtube.com/playlist?list=PLrSOXFDHBtfHkq8dd3BbSaopVgRSYtgPv) - Formation Video
### JavaScript
* [Apprendre ├а coder en JavaScript \| Cours complet (2020)](https://www.pierre-giraud.com/javascript-apprendre-coder-cours/) - Pierre Giraud
* [Apprendre le JavaScript](https://www.youtube.com/playlist?list=PLjwdMgw5TTLVzD9Jq_WBd1crqDwXRn4cw) - Grafikart
* [Cours JavaScript](https://www.youtube.com/playlist?list=PLrSOXFDHBtfGxf_PtXLu_OrjFKt4_dqB_) - EvoluNoob
* [Cours JavaScript](https://www.youtube.com/playlist?list=PLrSOXFDHBtfGxf_PtXLu_OrjFKt4_dqB_) - Formation Video
* [D├йboguer son code JavaScript](https://www.youtube.com/playlist?list=PLjwdMgw5TTLWWXgsHpfCLHJ1Oq4YnE08e) - Grafikart
* [Le Tutoriel JavaScript Moderne](https://fr.javascript.info) - javascript.info
* [TUTOS JS](https://www.youtube.com/playlist?list=PLEagTQfI6nPPVSKoYo2p8Cf8eijcyz5t9) - PrimFX
@@ -128,15 +122,13 @@
### Python
* [Apprendre ├а programmer en Python \| Cours complet (2019)](https://www.pierre-giraud.com/python-apprendre-programmer-cours/) - Pierre Giraud
* [Apprendre Python](https://www.youtube.com/playlist?list=PLrSOXFDHBtfHg8fWBd7sKPxEmahwyVBkC) - EvoluNoob
* [Introduction ├а la programmation](https://self-learning.info.ucl.ac.be/index/info1-exercises) - Tanguy De Bels, Kim Mens, Siegfried Nijssen, Charles Pecheur (HTML) (CC BY-SA)
* [Python Programming in French](https://www.youtube.com/playlist?list=PL0mGkrTWmp4ugGM9fiZjEuzMFeKD6Rh5G) - Data Science Nigeria
* [Apprendre Python](https://www.youtube.com/playlist?list=PLrSOXFDHBtfHg8fWBd7sKPxEmahwyVBkC) - Formation Video
### PHP
* [Apprendre Laravel 5.0.X](https://www.youtube.com/playlist?list=PLjwdMgw5TTLUCpXVEehCHs99N7IWByS3i) - Grafikart
* [Apprendre PHP](https://www.youtube.com/playlist?list=PLrSOXFDHBtfFuZttC17M-jNpKnzUL5Adc) - EvoluNoob
* [Apprendre PHP](https://www.youtube.com/playlist?list=PLrSOXFDHBtfFuZttC17M-jNpKnzUL5Adc) - Formation Video
* [Apprendre PHP - Cours Complet + POO](https://www.youtube.com/playlist?list=PLjwdMgw5TTLVDv-ceONHM_C19dPW1MAMD) - Grafikart
* [Apprendre Symfony 4 par l'exemple](https://www.youtube.com/playlist?list=PLjwdMgw5TTLX7wmorGgfrqI9TcA8nMb29) - Grafikart
* [Cours complet de Pierre Giraud sur le d├йveloppement PHP avec MySQL](https://www.pierre-giraud.com/php-mysql-apprendre-coder-cours/) - Pierre Giraud
@@ -154,7 +146,7 @@
### SQL
* [Apprendre MySQL - Ancien Cours](https://www.youtube.com/playlist?list=PLjwdMgw5TTLUJLpzUYGBK7K5-hPgZA7zo) - Grafikart
* [SQL - Cours](https://www.youtube.com/playlist?list=PLrSOXFDHBtfGl66sXijiN8SU9YJaM_EQg) - EvoluNoob
* [SQL - Cours](https://www.youtube.com/playlist?list=PLrSOXFDHBtfGl66sXijiN8SU9YJaM_EQg) - Formation Video
### SysAdmin
+6 -11
View File
@@ -1,5 +1,3 @@
<div dir="rtl" markdown="1">
### Index
* [C++](#cpp)
@@ -9,20 +7,17 @@
### <a id="cpp"></a>C++
* [╫Ю╫С╫Х╫Р ╫Ь╫к╫Ы╫а╫Х╫к ╫С╫й╫д╫к C++&lrm;](https://campus.gov.il/course/course-v1-basmach-pc264/) (╫з╫Ю╫д╫Х╫бIL&lrm; ╫Х╫С╫б╫Ю╫┤╫Ч)
* [╫Ю╫С╫Х╫Р ╫Ь╫к╫Ы╫а╫Х╫к ╫С╫й╫д╫к C++](https://campus.gov.il/course/course-v1-basmach-pc264/) (╫з╫Ю╫д╫Х╫бIL ╫Х╫С╫б╫Ю╫┤╫Ч)
### Python
* [Next.py тАУ&lrm; ╫Ф╫ж╫в╫У ╫Ф╫С╫Р ╫й╫Ь╫Ъ ╫С╫д╫Щ╫Щ╫к╫Х╫Я](https://campus.gov.il/course/course-v1-cs-gov-cs-nextpy102/) (╫з╫Ю╫д╫Х╫бIL&lrm; ╫Х╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и)
* [network.py&lrm; ╫Ь╫к╫Ы╫а╫к ╫С╫Ю╫и╫Ч╫С ╫Ф╫и╫й╫к](https://campus.gov.il/course/cs-gov-cs-networkpy103-2020-1/) (╫з╫Ю╫д╫Х╫бIL&lrm; ╫Х╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и)
* [Python Course Hebrew](https://youtube.com/playlist?list=PL1ZSrkGSJEGMgiAaEx1Cw3khbdDXGx_6i) - Geek of Automation&rlm;
* [Self.py тАУ&lrm; ╫Ф╫У╫и╫Ъ ╫й╫Ь╫Ъ ╫Ь╫Ь╫Ю╫Х╫У ╫д╫Щ╫Щ╫к╫Х╫Я](https://campus.gov.il/course/course-v1-cs-gov_cs_selfpy101/) (╫з╫Ю╫д╫Х╫бIL&lrm; ╫Х╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и)
* [Next.py тАУ ╫Ф╫ж╫в╫У ╫Ф╫С╫Р ╫й╫Ь╫Ъ ╫С╫д╫Щ╫Щ╫к╫Х╫Я](https://campus.gov.il/course/course-v1-cs-gov-cs-nextpy102/) (╫з╫Ю╫д╫Х╫бIL ╫Х╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и)
* [network.py ╫Ь╫к╫Ы╫а╫к ╫С╫Ю╫и╫Ч╫С ╫Ф╫и╫й╫к](https://campus.gov.il/course/cs-gov-cs-networkpy103-2020-1/) (╫з╫Ю╫д╫Х╫бIL ╫Х╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и)
* [Python Course Hebrew](https://youtube.com/playlist?list=PL1ZSrkGSJEGMgiAaEx1Cw3khbdDXGx_6i) - Geek of Automation
* [Self.py тАУ ╫Ф╫У╫и╫Ъ ╫й╫Ь╫Ъ ╫Ь╫Ь╫Ю╫Х╫У ╫д╫Щ╫Щ╫к╫Х╫Я](https://campus.gov.il/course/course-v1-cs-gov_cs_selfpy101/) (╫з╫Ю╫д╫Х╫бIL ╫Х╫Ф╫Ю╫и╫Ы╫Ц ╫Ь╫Ч╫Щ╫а╫Х╫Ъ ╫б╫Щ╫Щ╫С╫и)
### R
* [╫Ю╫С╫Х╫Р ╫Ь╫к╫Ы╫а╫Х╫к ╫Х╫в╫Щ╫С╫Х╫У ╫а╫к╫Х╫а╫Щ╫Э ╫С╫й╫д╫к R&rlm;](https://campus.gov.il/course/telhai-acd-rfp4-telhai-r/) (╫з╫Ю╫д╫Х╫бIL&lrm; ╫Х╫Ю╫Ы╫Ь╫Ь╫к ╫к╫Ь╓╛╫Ч╫Щ)
</div>
* [╫Ю╫С╫Х╫Р ╫Ь╫к╫Ы╫а╫Х╫к ╫Х╫в╫Щ╫С╫Х╫У ╫а╫к╫Х╫а╫Щ╫Э ╫С╫й╫д╫к R](https://campus.gov.il/course/telhai-acd-rfp4-telhai-r/) (╫з╫Ю╫д╫Х╫бIL ╫Х╫Ю╫Ы╫Ь╫Ь╫к ╫к╫Ь╓╛╫Ч╫Щ)
+96 -216
View File
@@ -1,8 +1,6 @@
### Index
* [Algorithms and Data Structures](#algorithms-and-data-structures)
* [Algorithms](#algorithms)
* [Data Structures](#data-structures)
* [Algorithms](#algorithms)
* [Soft Computing](#soft-computing)
* [Android](#android)
* [Angular](#angular)
@@ -22,6 +20,7 @@
* [Computer Graphics](#computer-graphics)
* [Computer Organization and Architecture](#computer-organization-and-architecture)
* [Data Science](#data-science)
* [Data Structures](#data-structures)
* [Databases](#databases)
* [DevOps](#devops)
* [Figma](#figma)
@@ -31,14 +30,11 @@
* [Golang](#golang)
* [HTML and CSS](#html-and-css)
* [Bootstrap](#bootstrap)
* [Material UI](#material-ui)
* [Tailwind CSS](#tailwind-css)
* [iOS](#ios)
* [Java](#java)
* [Spring Boot](#spring-boot)
* [JavaScript](#javascript)
* [Electron.js](#electronjs)
* [GSAP](#gsap)
* [jQuery](#jquery)
* [Next.js](#nextjs)
* [Node.js](#nodejs)
@@ -69,66 +65,37 @@
* [Rust](#rust)
* [Security](#security)
* [Software Engineering](#software-engineering)
* [Solidity](#solidity)
* [Swift](#swift)
* [System Design](#system-design)
* [TypeScript](#typescript)
* [WordPress](#wordpress)
### Algorithms and Data Structures
* [Complete C++ DSA Course \| Data Structures & Algorithms Playlist](https://www.youtube.com/playlist?list=PLfqMhTWNBTe137I_EPQd34TsgV6IO55pt) - Apna College
* [Complete C++ Placement DSA Course](https://www.youtube.com/playlist?list=PLDzeHZWIZsTryvtXdMr6rPh4IDexB5NIA) - CodeHelp by Babbar
* [Data Structures and Algorithms Course in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9ahIappRPN0MCAgtOu3lQjQi) - CodeWithHarry
* [Data Structures and Algorithms Course in Hindi using C](https://www.youtube.com/playlist?list=PLf0LpPWikpPfA_vez2NndnYuQy6WkpTzc) - DataFlair
* [Data Structures and Algorithms for GATE тАФ Complete Playlist](https://www.youtube.com/playlist?list=PLC36xJgs4dxFCQVvjMrrjcY3XrcMm2GHy) - Gate CSE lectures by Amit Khurana
* [Data Structures and Algorithms in Python](https://www.youtube.com/playlist?list=PLyMom0n-MBrpakdIZvnhd6PFUCKNAyKo1) - Jovian
* [DS & Algorithms Course Using Javascript](https://www.youtube.com/playlist?list=PL_HlKez9XCSOi5thYDzipbJ2pEdzop7vx) - Technical Suneja
* [Hindi Data Structures And Algorithms Tutorial Python](https://www.youtube.com/playlist?list=PLPbgcxheSpE3NlJ30EDpxNYU6P2Jylns8) - codebasics Hindi
#### Algorithms
### Algorithms
* [All Sorting algorithms and Programs](https://www.youtube.com/playlist?list=PLsFNQxKNzefK_DAUwnQwBizOmcY7aDLoY) - Saurabh Shukla
* [Binary Search \| Interview Questions \| Coding \| Tutorials \| Algorithm](https://www.youtube.com/playlist?list=PL_z_8CaSLPWeYfhtuKHj-9MpYb6XQJ_f2) - Aditya Verma
* [Complete DAA Design and Analysis of Algorithm in one shot \| Semester Exam | Hindi](https://www.youtube.com/watch?v=z6DY_YSdyww) - KnowledgeGATE by Sanchit Sir
* [Design And Analysis Of Algorithms](https://www.youtube.com/playlist?list=PLxCzCOWd7aiHcmS4i14bI0VrMbZTUvlTa) - Gate Smashers
* [Design and Analysis of Algorithms](https://www.youtube.com/playlist?list=PL1QH9gyQXfgs7foRxIbIH8wmJyDh5QzAm) - The Gatehub
* [Dynamic Programming Playlist \| Coding \| Interview Questions \| Tutorials \| Algorithm](https://www.youtube.com/playlist?list=PL_z_8CaSLPWekqhdCPmFohncHwz8TY2Go) - Aditya Verma
* [Dynamic Programming Workshop](https://www.youtube.com/playlist?list=PLqf9emQRQrnKA_EeveiXQj_uP25w8_5qL) - Vivek Gupta
* [Graph Theory](https://www.youtube.com/playlist?list=PLxCzCOWd7aiG0M5FqjyoqB20Edk0tyzVt) - Gate Smashers
* [Recursion Playlist \| Coding \| Interview Questions \| Algorithm \| Tutorials](https://www.youtube.com/playlist?list=PL_z_8CaSLPWeT1ffjiImo0sYTcnLzo-wY) - Aditya Verma
* [Sliding Window Algorithm - Face to Face Interviews](https://www.youtube.com/playlist?list=PL_z_8CaSLPWeM8BDJmIYDaoQ5zuwyxnfj) - Aditya Verma
#### Data Structures
* [2-D Arrays - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiFkOETg2Ybq-FMuJjkZSGeH) - Pepcoding
* [All Data Structure Concepts \| Hindi](https://www.youtube.com/playlist?list=PLsFNQxKNzefJNztGGoQC-59UhSwIaiIW3) - Saurabh Shukla
* [Binary Trees - by LoveBabbar](https://www.youtube.com/playlist?list=PLDzeHZWIZsTo87y1ytEAqp7wYlEP3nner) - CodeHelp - by Babbar
* [Binary Trees - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiHYxUk8dSu2_G7MR1PaGXN4) - Pepcoding
* [Bit Manipulation - Level 2](https://www.youtube.com/playlist?list=PL-Jc9J83PIiFJRioti3ZV7QabwoJK6eKe) - Pepcoding
* [Data Structure And Algorithms Course \| DSA Tutorial in Hindi](https://www.youtube.com/playlist?list=PLmGElG-9wxc9Us6IK6Qy-KHlG_F3IS6Q9) - ScoreShala
* [Data Structure Programs \| Hindi](https://www.youtube.com/playlist?list=PLsFNQxKNzefJU-Sj__mljvrmJHZVKWbEm) - Saurabh Shukla
* [Data Structure using Java](https://www.youtube.com/playlist?list=PLH9iLcrNpXtQYQiudzpZpGw0mptHc06Su) - ForMyScholars
* [Data Structures by Nargish Gupta](https://www.youtube.com/playlist?list=PLPzfPcir5uPQ6LrB421cvMvcF3EcsGrr5) - NG Tutorials
* [Data Structures using C](https://www.youtube.com/playlist?list=PLf0LpPWikpPfA_vez2NndnYuQy6WkpTzc) - DataFlair
* [DSA-One Course- The Complete Data Structure and Algorithms Course](https://www.youtube.com/playlist?list=PLUcsbZa0qzu3yNzzAxgvSgRobdUUJvz7p) - Anuj Bhaiya
* [Functions and Arrays - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiHOV7lm2uSw4ZiVsIRsGS6r) - Pepcoding
* [Bit Manipulation - Level 2](https://youtube.com/playlist?list=PL-Jc9J83PIiFJRioti3ZV7QabwoJK6eKe) - Pepcoding
* [Complete C++ Placement DSA Course](https://www.youtube.com/playlist?list=PLDzeHZWIZsTryvtXdMr6rPh4IDexB5NIA) - CodeHelp by Babbar
* [Data Structures and Algorithms Course in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9ahIappRPN0MCAgtOu3lQjQi) - CodeWithHarry
* [Data Structures and Algorithms for GATE тАФ Complete Playlist](https://www.youtube.com/playlist?list=PLC36xJgs4dxFCQVvjMrrjcY3XrcMm2GHy) - Gate CSE lectures by Amit Khurana
* [Data Structures and Algorithms in Python](https://www.youtube.com/playlist?list=PLyMom0n-MBrpakdIZvnhd6PFUCKNAyKo1) - Jovian
* [Design And Analysis Of Algorithms](https://youtube.com/playlist?list=PLxCzCOWd7aiHcmS4i14bI0VrMbZTUvlTa) - Gate Smashers
* [DS & Algorithms Course Using Javascript](https://www.youtube.com/playlist?list=PL_HlKez9XCSOi5thYDzipbJ2pEdzop7vx) - Technical Suneja
* [Dynamic Programming Playlist \| Coding \| Interview Questions \| Tutorials \| Algorithm](https://www.youtube.com/playlist?list=PL_z_8CaSLPWekqhdCPmFohncHwz8TY2Go) - Aditya Verma
* [Dynamic Programming Workshop](https://www.youtube.com/playlist?list=PLqf9emQRQrnKA_EeveiXQj_uP25w8_5qL) - Vivek Gupta
* [Generic Trees - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiEmjuIVDrwR9h5i9TT2CEU_) - Pepcoding
* [Graph Data Structure & Algorithms Full Course In Hindi](https://www.youtube.com/playlist?list=PLzjZaW71kMwSrxEtvK5uQnfNQ9UjGGzA-) - Hello World
* [Graph Theory](https://www.youtube.com/playlist?list=PLxCzCOWd7aiG0M5FqjyoqB20Edk0tyzVt) - Gate Smashers
* [Graphs - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiHfqDcLZMcO9SsUDY4S3a-v) - Pepcoding
* [Graphs - Level 2](https://www.youtube.com/playlist?list=PL-Jc9J83PIiEuHrjpZ9m94Nag4fwAvtPQ) - Pepcoding
* [Heap Playlist Interview Questions Coding Tutorials Data Structures](https://www.youtube.com/playlist?list=PL_z_8CaSLPWdtY9W22VjnPxG30CXNZpI9) - Aditya Verma┬а
* [Java + Data Structures + Algorithms](https://www.youtube.com/playlist?list=PLKKfKV1b9e8ps6dD3QA5KFfHdiWj9cB1s) - Apni Kaksha
* [Java + DSA](https://www.youtube.com/playlist?list=PLfqMhTWNBTe3LtFWcvwpqTkUSlB32kJop) - Apna College
* [Linked List - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiF5VZmktfqW6WVU1pxBF6l_) - Pepcoding
* [Hindi Data Structures And Algorithms Tutorial Python](https://www.youtube.com/playlist?list=PLPbgcxheSpE3NlJ30EDpxNYU6P2Jylns8) - codebasics Hindi
* [Linked List - Level 1](https://youtube.com/playlist?list=PL-Jc9J83PIiF5VZmktfqW6WVU1pxBF6l_&si=S_MRPF7yyupBUCC6) - Pepcoding
* [Recursion & Backtracking - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiFxaBahjslhBD1LiJAV7nKs) - Pepcoding
* [Recursion & Backtracking - Level 2](https://www.youtube.com/playlist?list=PL-Jc9J83PIiHO9SQ6lxGuDsZNt2mkHEn0) - Pepcoding
* [Simplified DSA with FRAZ](https://www.youtube.com/playlist?list=PLKZaSt2df1gy75J3irj89a2vSGqeQdtDA) - Fraz
* [Stack Playlist \| Interview Questions \| Coding \| Tutorials \| Data Structures](https://www.youtube.com/playlist?list=PL_z_8CaSLPWdeOezg68SKkeLN4-T_jNHd) - Aditya Verma
* [Strivers A2Z-DSA Course \| DSA Playlist \| Placements](https://www.youtube.com/playlist?list=PLgUwDviBIf0oF6QL8m22w1hIDC1vJ_BHz) - take U forward
* [Recursion Playlist \| Coding \| Interview Questions \| Algorithm \| Tutorials](https://www.youtube.com/playlist?list=PL_z_8CaSLPWeT1ffjiImo0sYTcnLzo-wY) - Aditya Verma
* [Sliding Window Algorithm - Face to Face Interviews](https://youtube.com/playlist?list=PL_z_8CaSLPWeM8BDJmIYDaoQ5zuwyxnfj) - Aditya Verma
* [Time and Space - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiFc7hJ5eeCb579PS8p-en4f) - Pepcoding
@@ -144,43 +111,35 @@
### Android
* [Android App Development Course (Beginner to Advanced) \| WsCube Tech 2.0](https://www.youtube.com/playlist?list=PLjVLYmrlmjGdDps6HAwOOVoAtBPAgIOXL) - WsCube Tech
* [Android App Development Course in 2024](https://www.youtube.com/playlist?list=PLTV_nsuD2lf4UCTV6xwvNPvFdmCNKyhc8) - Saumya Singh
* [Android Development Tutorial for Beginners](https://www.youtube.com/playlist?list=PLUcsbZa0qzu3Mri2tL1FzZy-5SX75UJfb) - Anuj Bhaiya
* [Android Development Tutorials in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9aiL0kysYlfSOUgY5rNlOhUd) - CodeWithHarry
* [Android Development With KOTLIN \| Android App Development Course In Hindi](https://www.youtube.com/playlist?list=PL6Fr59UplGvL7q7P3Hg6nYzS45gld-CCI) - Zain Farhan
* [App Development Course For School Students \| Certified Course By Coding Blocks Junior](https://www.youtube.com/playlist?list=PLhLbJ9UoJCvu4ktQMUJJq-D_6-Eoz8lOk) - Coding Blocks Junior
* [App Development Course For School Students \| Certified Course By Coding Blocks Junior](https://youtube.com/playlist?list=PLhLbJ9UoJCvu4ktQMUJJq-D_6-Eoz8lOk) - Coding Blocks Junior
* [Complete Android Development Course in Hindi](https://www.youtube.com/playlist?list=PLUhfM8afLE_Ok-0Lx2v9hfrmbxi3GgsX1) - Neat Roots
* [The complete Android Application Development Course in Hindi/Urdu](https://www.youtube.com/playlist?list=PLtCBuHKmdxOe8IWZnA515lGPKaWx5WNOE) - Fahad Hussain
### Angular┬а
### Angular
* [Angular 12 - 13 tutorial in Hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV45--5t7_N4lveUI6Y31vQ6C) - Code Step By Step
* [Angular 13 Tutorial in Hindi](https://www.youtube.com/playlist?list=PL_qizAfcpJ-N2mRgfQxnDgsv20daqwlfN) - Sahosoft Solutions
* [Angular 6/7/8 Series (In Hindi)](https://www.youtube.com/playlist?list=PLLhsXdvz0qjL1HVD2jAtlvoDmS5qj0OvA) - UX Trendz
* [Angular In Depth](https://www.youtube.com/playlist?list=PLqLR2H326bY4GoOaaxVYwdbNl9dvyWKvU) - Computer Baba
* [Learn Angular in one video (Hindi)](https://www.youtube.com/watch?v=0LhBvp8qpro&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7&index=21) - Code With Harry
* [Angular In Depth](https://youtube.com/playlist?list=PLqLR2H326bY4GoOaaxVYwdbNl9dvyWKvU) - Computer Baba
* [Learn Angular in one video (Hindi)](https://www.youtube.com/watch?v=0LhBvp8qpro&list=PLu0W_9lII9ahKZ42vg2w9ERPmShYbYAB7&index=21) - Code With Harry
### Arduino
* [Arduino Programming In Hindi (Full Playlist)](https://www.youtube.com/watch?v=KOa1aVijhao) - SBS online classes
* [Arduino Programming Series (рд╣рд┐рдВрджреА рдореЗрдВ)](https://www.youtube.com/playlist?list=PLV3C-t_tgjGFyXP_-AF37AoIuxM9jzELM) - Engineers & Electronics
* [Arduino project in hindi](https://www.youtube.com/playlist?list=PLLpp1gWWec-Fj93mz9kfflp_ovplKCpR4) - Praveen Innovation Lab
* [Arduino Programming Series (рд╣рд┐рдВрджреА рдореЗрдВ)](https://youtube.com/playlist?list=PLV3C-t_tgjGFyXP_-AF37AoIuxM9jzELM) - Engineers & Electronics
* [Complete Arduino Tutorial Learn Arduino Programming in Hindi](https://www.youtube.com/playlist?list=PLg2KtP8cgLjzNu5G2bQQLxFeBiqk8IO0s) - Techtalks With Vivek
* [Learn Arduino in Hindi](https://www.youtube.com/playlist?list=PLVl__93X7ZlxnDtEY1_ibH-fECYEAKAQC) - TEKNOISTIX
### Artificial Intelligence
* [Artificial Intelligence (Complete Playlist)](https://www.youtube.com/playlist?list=PLxCzCOWd7aiHGhOHV-nwb0HR5US5GFKFI) - Gate Smashers
* [Artificial Intelligence Lectures Hindi](https://www.youtube.com/playlist?list=PLV8vIYTIdSnYsdt0Dh9KkD9WFEi7nVgbe) - Easy Engineering Classes
* [Complete Basics of AI in One Shot](https://www.youtube.com/watch?v=D1eL1EnxXXQ) - Apna College
* [Generative AI Series - Showcasing Generative AI By Building Projects](https://www.youtube.com/playlist?list=PLu0W_9lII9aiS4rUVp2jXwIvCruo27sG6) - CodeWithHarry
* [Generative AI using LangChain](https://www.youtube.com/playlist?list=PLKnIA16_RmvaTbihpo4MtzVm4XOQa0ER0) - CampusX
* [LangChain](https://www.youtube.com/playlist?list=PLTDARY42LDV6flFgQLJCcVSXXa58mZ9Ty) - Krish Naik Hindi
* [Playlist to Artificial Intelligence ](https://www.youtube.com/playlist?list=PLPIwNooIb9vgB1DQEftkKA3qOdeC4vonA) - Perfect Computer Engineer
* [Prompt Engineering Full Course in Hindi (beginner to Master)](https://www.youtube.com/playlist?list=PLyz4Eb45WBQ02Md7BiIO1sUsKTs8GcWKS) - EduExpress
### Assembly
@@ -192,25 +151,20 @@
### Bash and Shell
* [Bash Scripting | Complete Course In Hindi](https://www.youtube.com/playlist?list=PLDnEHblf8hExnR-Xpmrpu3GdeO_4YJ_tD) - ENCODERSPRO
* [Bash Basic Commands](https://youtube.com/playlist?list=PLzOLSdbK1deOKmOiiv-o4wn7xUj6ZYzrM) - Noob Coders
* [Bash Scripting tutorial](https://www.youtube.com/playlist?list=PLxLRoXCDIalcosmDOQizh31EIHEK1njfO) - Fortify Solutions
* [Shell Scripting and Bash Programming for Beginners In Hindi](https://www.youtube.com/playlist?list=PLZqV_M3p_p10yhNExLIKj497ZkdUz1KuB) - LogicOps Lab - Hindi
* [shell scripting complete tutorial in hindi](https://www.youtube.com/playlist?list=PL9A0tISr5Ow5nZSY8-ICNAyXHJKesl_XL) - Cybersploit
* [Shell Scripting For DevOps 2024 (Hindi)](https://www.youtube.com/playlist?list=PLlfy9GnSVerQu-uL0AdI3O5VzUmIv5pPf) - TrainWithShubham
* [Shell Scripting Linux Beginners to Advanced in Hindi | Shell Scripting Tutorials for Beginner to Advanced in Hindi](https://www.youtube.com/playlist?list=PLrFWmDe-rblpqyEzyAW6TMJyut-pbQHlr) - Cloud Tech Burner
* [SHELL SCRIPTING Tutorial For Beginners](https://www.youtube.com/playlist?list=PL0tP8lerTbX3MeIyMxGW2sLhWnPdn_xhd) - M Prashant
* [Unix Shell Scripting Full Course](https://www.youtube.com/playlist?list=PL6UwySlcwEYIZGsbXnUxsojD0yeUA67lb) - AmpCode
* [Bash Shell Scripting (NOOB)](https://youtube.com/playlist?list=PLzOLSdbK1deNuVMOw0EkKGSsES-rPeONe) - Noob Coders
* [shell scripting complete tutorial in hindi](https://youtube.com/playlist?list=PL9A0tISr5Ow5nZSY8-ICNAyXHJKesl_XL) - Cybersploit
### Blockchain
* [Blockchain](https://www.youtube.com/playlist?list=PLYwpaL_SFmcDFRupamGc-9zc-vQqvkQnn) - 5 Minutes Engineering
* [Blockchain Full Course in Hindi](https://www.youtube.com/playlist?list=PLgPmWS2dQHW-BRQCQCNYgmHUfCN115pn0) - Code Eater
* [Blockchain Full Course in Hindi](https://www.youtube.com/playlist?list=PLRlT7xBRpp9MiMN25XJjUVz01rGFQohq2) - Innovate India
* [Complete Blockchain Development Course for Beginners in Hindi](https://www.youtube.com/watch?v=RkYVVC2vXho) - web3Mantra
* [Ethereum](https://www.youtube.com/playlist?list=PL-Jc9J83PIiE3QA0h3I6HDYNXejdPFKFN) - Pepcoding
* [Playlist to Blockchain](https://www.youtube.com/playlist?list=PLPIwNooIb9vgfXs-QkRYqqZbDXX-yLf59) - Perfect Computer Engineer
* [Solidity ^0.8 \| Blockchain \| In Hindi](https://www.youtube.com/playlist?list=PL-Jc9J83PIiG6_thChXWzolj9BEG-Y0gh) - Pepcoding
* [Solidity ^0.8 | Blockchain | In Hindi](https://www.youtube.com/playlist?list=PL-Jc9J83PIiG6_thChXWzolj9BEG-Y0gh) - Pepcoding
### <a id="c"></a>C
@@ -221,16 +175,12 @@
* [C Language Tutorial For Beginners In Hindi (With Notes)](https://www.youtube.com/watch?v=ZSPZob_1TOk) - CodeWithHarry
* [C Language Tutorial in Hindi](https://www.youtube.com/playlist?list=PLmRclvVt5DtksgReOH3s7R1_cb1QA8vrb) - codeitup
* [C Language Tutorials In Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9aiXlHcLx-mDH1Qul38wD3aR) - CodeWithHarry
* [C Programming Course](https://www.youtube.com/playlist?list=PLxgZQoSe9cg1drBnejUaDD9GEJBGQ5hMt) - College Wallah
* [C Programming for Beginners](https://www.youtube.com/playlist?list=PL98qAXLA6aftD9ZlnjpLhdQAOFI8xIB6e) - Programiz
* [C Programming Tutorials](https://www.youtube.com/playlist?list=PLiOa6ike4WAHH3HyPUu6pUG-r0LApvW-l) - Vikas Pandey, easytuts4you
### <a id="csharp"></a>C\#
* [Basic C# Programming Tutorials](https://www.youtube.com/playlist?list=PLCqWuVe6WFLLmMTO44hpYKnptJ6765skH) - Sunny Games & Technology
* [C# Programming Complete in Hindi By Arvind](https://www.youtube.com/playlist?list=PLOd2apPiwn-Z8GJiZs5HYb7HoiVvTV9H7) - Sarkar Study Waves Education
* [C# Programming language (Console Applications)](https://www.youtube.com/playlist?list=PLX07l0qxoHFLZftsVKyj3k9kfMca2uaPR) - Learning Never Ends
* [C# Programming language (Console Applications)](https://www.youtube.com/playlist?list=PLX07l0qxoHFLZftsVKyj3k9kfMca2uaPR) - Learning Never Ends
* [C# Tutorial In Hindi](https://www.youtube.com/watch?v=SuLiu5AK9Ps) - CodeWithHarry
* [C# Tutorial in Hindi for Beginners](https://www.youtube.com/playlist?list=PLV8vIYTIdSnYTYr0bmIbfzYii0YQSPocB) - Easy Engineering Classes
@@ -238,28 +188,25 @@
### <a id="asp.net"></a>ASP.NET
* [ASP .Net in Hindi](https://www.youtube.com/playlist?list=PLbsXhdgwIKL1g2vE86yGBK_RYuqt98yWL) - ComputerHindiNotes
* [ASP.NET C# Web Form Tutorial In Hindi](https://www.youtube.com/playlist?list=PLx8RMTm-T9mq86-hvog8fHjJS1pBsPurS) - IT Tech Hindi Hub World
* [ASP.NET Core Tutorials in Hindi](https://www.youtube.com/playlist?list=PL18HZjtdIA4Al-wYHC-i2TA-lgXLvHVmB) - Technology Keeda
* [ASP.NET Course 2023](https://www.youtube.com/playlist?list=PLMoluEXvWXK6Q1h-5vVX4tzX7-O2FdgZA) - Coder Baba
* [ASP.NET Web Forms Tutorial](https://www.youtube.com/playlist?list=PLp_RsiLZjwQS1FNXy0neuYgRGKNYPWpPk) - Programentor
### <a id="cpp"></a>C++
* [C++ and DSA Foundation Course](https://www.youtube.com/playlist?list=PLxgZQoSe9cg0df_GxVjz3DD_Gck5tMXAd) - College Wallah
* [C++ and DSA Foundation Course](https://youtube.com/playlist?list=PLxgZQoSe9cg0df_GxVjz3DD_Gck5tMXAd) - College Wallah
* [C++ Basics in One Shot - Strivers A2Z DSA Course - L1](https://www.youtube.com/watch?v=EAR7De6Goz4) - Take U Forward
* [C++ Full Course \| C++ Tutorial \| Data Structures & Algorithms](https://www.youtube.com/playlist?list=PLfqMhTWNBTe0b2nM6JHVCnAkhQRGiZMSJ) - Apna College
* [C++ Full Course \|Complete C++ Placement DSA Course\| Data Structures & Algorithms](https://www.youtube.com/playlist?list=PLDzeHZWIZsTryvtXdMr6rPh4IDexB5NIA) - CodeHelp - by Babbar
* [C++ Programming in Hindi](https://www.mygreatlearning.com/academy/learn-for-free/courses/c-programming-in-hindi1) - Bharani Akella (My Great Learning)
* [C++ Programming in Hindi](https://www.youtube.com/playlist?list=PLDA2q3s0-n15yszaZ2yRKEoxY-WWkuAt4) - Sumit Bisht (Edutainment 1.0)
* [C++ Programming in Hindi](https://www.youtube.com/playlist?list=PLbGui_ZYuhijXuOfBSdQgK296Y7wUDWLn) - Rajesh Kumar, Geeky Shows
* [C++ Programming Tutorial in Hindi](https://www.youtube.com/playlist?list=PLoVVmGDgrrnS5_TiSg193ezTPd-Ukb25k) - Rakesh Roshan, Learn TechToTech
* [C++ STL \| Competitive Programming](https://www.youtube.com/playlist?list=PLauivoElc3gh3RCiQA82MDI-gJfXQQVnn) - Luv
* [C++ STL \| Competitive Programming](https://youtube.com/playlist?list=PLauivoElc3gh3RCiQA82MDI-gJfXQQVnn) - Luv
* [C++ Tutorial For Begineers In Hindi](https://www.youtube.com/playlist?list=PLnSDvcENZlwA6YDSfoieM1bl-Y3ALcnL5) - Abhishek Shrivastava, Micro Solution
* [C++ Tutorial for Beginners \| C++ Tutorials In Hindi](https://www.youtube.com/playlist?list=PLmGElG-9wxc8VMy1nNHDQldH2dU8Y08s7) - Manish Gehlot, WsCube Tech Programming Concepts
* [C++ Tutorial In Hindi](https://www.youtube.com/playlist?list=PLhvdldYcnZMl3Smc6ANF6rO56ORgwb46g) - Coding Wallah Sir
* [C++ Tutorials In Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9agpFUAlPFe_VNSlXW5uE0YL) - CodeWithHarry
* [Chai aur C++](https://www.youtube.com/playlist?list=PLu71SKxNbfoCPfgKZS8UE0MDuwiKvL8zi) - Chai aur Code
* [Object Oriented Programming in C++](https://www.youtube.com/playlist?list=PLQEaRBV9gAFujcBWJhBT2XXsuMlIfETBy) - Coder Army
* [The Complete C++ Course \| Hindi](https://www.youtube.com/playlist?list=PLLYz8uHU480j37APNXBdPz7YzAi4XlQUF) - Saurabh Shukla
@@ -267,17 +214,14 @@
* [Cloud Computing](https://www.youtube.com/playlist?list=PLYwpaL_SFmcCyQH0n9GHfwviu6KeJ46BV) - 5 Minutes Engineering
* [Cloud Computing](https://www.youtube.com/playlist?list=PLDN4rrl48XKqNsrDogCpHsul3UHMC0Wdq) - Abdul Bari
* [Cloud Computing (Complete Course)](https://www.youtube.com/playlist?list=PLxCzCOWd7aiHRHVUtR-O52MsrdUSrzuy4) - Gate Smashers
* [Cloud Computing Course Free](https://www.youtube.com/watch?v=lae0mfHBSjk) - Intellipaat
* [Cloud Computing Tutorial](https://www.youtube.com/playlist?list=PL-JvKqQx2AtfQ8cGyKsFE7Tj2FyB1yCkd) - University Academy
#### AWS
* [AWS For Beginners Playlist [HINDI]](https://www.youtube.com/playlist?list=PL0tP8lerTbX3mKdZYfJwXcKf6SOfmQcgl) - M Prashant
* [AWS Tutorial for Beginners In Hindi](https://www.youtube.com/playlist?list=PLCFe3TcoBniI4iaavlfnR0UGQrtjgOMj9) - Together with Abhi
* [AWS Tutorial in Hindi](https://www.youtube.com/playlist?list=PL_OdF9Z6GmVZCwyfd8n6_50jcE_Xlz1je) - S3CloudHub
* [AWS Tutorial in Hindi \| Edureka](https://www.youtube.com/playlist?list=PLQbQOmlGYH3uoa_mYHDJkl958B_dBiaqW) - edureka! Hindi
* [AWS Tutorial in Hindi | Edureka](https://www.youtube.com/playlist?list=PLQbQOmlGYH3uoa_mYHDJkl958B_dBiaqW) - edureka! Hindi
* [AWS Tutorials - AWS tutorials For Beginners - AWS Architect and SysOps - In Hindi](https://www.youtube.com/playlist?list=PLBGx66SQNZ8a_y_CMLHchyHz_R6-6i-i_) - Technical Guftgu
* [AWS Tutorials - AWS tutorials For Beginners - AWS Certification - AWS Training - In Hindi](https://www.youtube.com/playlist?list=PL6XT0grm_TfgtwtwUit305qS-HhDvb4du) - Gaurav Sharma
@@ -287,13 +231,12 @@
* [Competitive Programming Series - Java Placement Course](https://www.youtube.com/playlist?list=PLjVLYmrlmjGfHs-LbtPOrlQHA37LFQg3S) - Wscube Tech
* [Competitive Programming/DSA Course \| Hindi](https://www.youtube.com/playlist?list=PLauivoElc3ggagradg8MfOZreCMmXMmJ-) - Luv
* [Full course in Competitive programming [ Hindi ] \|\| -by prince](https://www.youtube.com/playlist?list=PLzjZaW71kMwTGbP1suqY16w1VSb9ZNuvE) - Hello World
* [Range Queries - Level 3](https://www.youtube.com/playlist?list=PL-Jc9J83PIiGkI_pL8l67OVvbpnwf-5yO) - Pepcoding
* [Text Processing - Level 3](https://www.youtube.com/playlist?list=PL-Jc9J83PIiEoZSwjEZT3TvpKG16FntFL) - Pepcoding
* [Range Queries - Level 3](https://youtube.com/playlist?list=PL-Jc9J83PIiGkI_pL8l67OVvbpnwf-5yO) - Pepcoding
* [Text Processing - Level 3](https://youtube.com/playlist?list=PL-Jc9J83PIiEoZSwjEZT3TvpKG16FntFL) - Pepcoding
### Compiler Design
* [Compiler Design](https://www.youtube.com/playlist?list=PL1QH9gyQXfguPNDTsnG90W2kBDQpYLDQr) - The Gatehub
* [Compiler Design](https://www.youtube.com/playlist?list=PL9FuOtXibFjVR-87LcU-DS-9TJcbG97_p) - Abhishek Sharma
* [Compiler Design](https://www.youtube.com/playlist?list=PL23dd-8zssJBiyntds3X1sVWUDeb0Aa1N) - Start Practicing
* [Compiler Design (Complete Playlist)](https://www.youtube.com/playlist?list=PLmXKhU9FNesSmu-_DKC7APRoFkaQvGurx) - KnowledgeGATE by Sanchit Sir
@@ -303,7 +246,7 @@
### Computer Graphics
* [Computer Graphics](https://www.youtube.com/playlist?list=PLYwpaL_SFmcAtxMe7ahYC4ZYjQHun_b-T) - 5 Minutes Engineering
* [Computer Graphics](https://youtube.com/playlist?list=PLYwpaL_SFmcAtxMe7ahYC4ZYjQHun_b-T) - 5 Minutes Engineering
* [Computer Graphics and Multimedia (CGMM) Lectures in Hindi](https://www.youtube.com/playlist?list=PLV8vIYTIdSnaTVCcd954N14bVOOgYh-2V) - Easy Engineering Classes
* [Computer Graphics Complete Syllabus Tutorials](https://www.youtube.com/playlist?list=PLL8qj6F8dGlScni_9ZmeOMoRodrwzhvTq) - TutorialsSpace- Er. Deepak Garg
* [Computer Graphics Full Course in Hindi](https://www.youtube.com/playlist?list=PLAC6WcHCOQCHVfV3vR4At0g0QADIeZc_j) - Edulogy
@@ -311,19 +254,36 @@
### Computer Organization and Architecture
* [Computer Organisation and Architecture \| Coa Complete Course in Hindi \| True Engineer](https://www.youtube.com/playlist?list=PLo4m8hx3sbb9SGSZy2Os7K4sAr53K9m-W) - True Engineer
* [Computer Organization and Architecture](https://www.youtube.com/playlist?list=PLxCzCOWd7aiHMonh3G6QNKq53C6oNXGrX) - Gate Smashers
* [Computer Organization and Architecture ( COA ) \| CS & IT \| GATE 2025 Crash Course](https://www.youtube.com/playlist?list=PL3eEXnCBViH8OS7fH0uQdre5YGCIOhCBH) - GATE Wallah - EE, EC, CS & IN
* [Computer Organization and Architecture GATE (Hindi) \| Computer Organization GATE \| Computer Organization and Architecture Tutorials](https://www.youtube.com/playlist?list=PL9zFgBale5fsVaOVUqXA1cJ22ePKpDEim) - Well Academy
* [Computer Organization and Architecture Lectures in Hindi](https://www.youtube.com/playlist?list=PLV8vIYTIdSnar4uzz-4TIlgyFJ2m18NE3) - Easy Engineering Classes
* [Introduction to Computer Organization and Architecture](https://www.youtube.com/playlist?list=PLBlnK6fEyqRjC2nTHdeUtWFkoiPVespkc) - Neso Academy
* [Introduction to Computer Organization and Architecture](https://youtube.com/playlist?list=PLBlnK6fEyqRjC2nTHdeUtWFkoiPVespkc) - Neso Academy
### Data Science
* [Data Analyst Course - Beginner's to Advance (рд╣рд┐рдВрджреА рдореЗрдВ) - Full Playlist](https://www.youtube.com/playlist?list=PLxzTa0VPR9ryvGSuCm4RS8aeAvOLXz9XM) - IHHPET: Industries Helping Hands Dot Com
* [Data Science Course 2023](https://www.youtube.com/playlist?list=PLfP3JxW-T70HvifebGl3d5d5jzI1Kp0i8) - Indian AI Production
* [Python Data Science and Big Data Tutorials In Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9agK8pojo23OHiNz3Jm6VQCH) - CodeWithHarry
*[Data Analyst Course - Beginner's to Advance (рд╣рд┐рдВрджреА рдореЗрдВ) - Full Playlist](https://www.youtube.com/playlist?list=PLxzTa0VPR9ryvGSuCm4RS8aeAvOLXz9XM) - IHHPET: Industries Helping Hands Dot Com
*[Data Science Course 2023](https://www.youtube.com/playlist?list=PLfP3JxW-T70HvifebGl3d5d5jzI1Kp0i8) - Indian AI Production
### Data Structures
* [2-D Arrays - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiFkOETg2Ybq-FMuJjkZSGeH) - Pepcoding
* [All Data Structure Concepts \| Hindi](https://www.youtube.com/playlist?list=PLsFNQxKNzefJNztGGoQC-59UhSwIaiIW3) - Saurabh Shukla
* [C++ Full Course \| C++ Tutorial \| Data Structures & Algorithms](https://www.youtube.com/playlist?list=PLfqMhTWNBTe0b2nM6JHVCnAkhQRGiZMSJ) - Apna College
* [Complete C++ Placement DSA Course](https://www.youtube.com/playlist?list=PLDzeHZWIZsTryvtXdMr6rPh4IDexB5NIA) - CodeHelp by Babbar
* [Data Structure And Algorithms Course | DSA Tutorial in Hindi](https://www.youtube.com/playlist?list=PLmGElG-9wxc9Us6IK6Qy-KHlG_F3IS6Q9) - ScoreShala
* [Data Structure Programs \| Hindi](https://www.youtube.com/playlist?list=PLsFNQxKNzefJU-Sj__mljvrmJHZVKWbEm) - Saurabh Shukla
* [Data Structures and Algorithms Course in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9ahIappRPN0MCAgtOu3lQjQi) - CodeWithHarry
* [DSA-One Course- The Complete Data Structure and Algorithms Course](https://www.youtube.com/playlist?list=PLUcsbZa0qzu3yNzzAxgvSgRobdUUJvz7p) - Anuj Bhaiya
* [Functions and Arrays - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiHOV7lm2uSw4ZiVsIRsGS6r) - Pepcoding
* [Graph Data Structure & Algorithms Full Course In Hindi](https://www.youtube.com/playlist?list=PLzjZaW71kMwSrxEtvK5uQnfNQ9UjGGzA-) - Hello World
* [Heap Playlist Interview Questions Coding Tutorials Data Structures](https://youtube.com/playlist?list=PL_z_8CaSLPWdtY9W22VjnPxG30CXNZpI9) - Aditya Verma
* [Java + Data Structures + Algorithms](https://www.youtube.com/playlist?list=PLKKfKV1b9e8ps6dD3QA5KFfHdiWj9cB1s) - Apni Kaksha
* [Java + DSA](https://www.youtube.com/playlist?list=PLfqMhTWNBTe3LtFWcvwpqTkUSlB32kJop) - Apna College
* [Java + DSA + Interview Preparation Course](https://youtube.com/playlist?list=PL9gnSGHSqcnr_DxHsP7AW9ftq0AtAyYqJ) - Kunal Kushwaha
* [Linked Lists - Level 1](https://www.youtube.com/playlist?list=PL-Jc9J83PIiF5VZmktfqW6WVU1pxBF6l_) - Pepcoding
* [Simplified DSA with FRAZ](https://www.youtube.com/playlist?list=PLKZaSt2df1gy75J3irj89a2vSGqeQdtDA) - Fraz
* [Stack Playlist \| Interview Questions \| Coding \| Tutorials \| Data Structures](https://www.youtube.com/playlist?list=PL_z_8CaSLPWdeOezg68SKkeLN4-T_jNHd) - Aditya Verma
### Databases
@@ -331,10 +291,10 @@
* [3.1 DBMS In Hindi (Complete Playlist)](https://www.youtube.com/playlist?list=PLmXKhU9FNesR1rSES7oLdJaNFgmuj0SYV) - Knowledge Gate
* [Database Management System (DBMS)](https://www.youtube.com/playlist?list=PLrjkTql3jnm-CLxHftqLgkrZbM8fUt0vn) - Education 4u
* [Database Management System (DBMS) in Hindi](https://www.youtube.com/playlist?list=PLAOnhLRjMTMDigfUzaAAQo7lbfScPFtHs) - Jitendra Ajmedha
* [DBMS (Database Management System)](https://www.youtube.com/playlist?list=PLdo5W4Nhv31b33kF46f9aFjoJPOkdlsRc) - Jenny's lectures CS/IT NET&JRF
* [DBMS (Database Management System) Complete Playlist](https://www.youtube.com/playlist?list=PLxCzCOWd7aiFAN6I8CuViBuCdJgiOkT2Y) - Gate Smashers
* [DBMS Lectures in Hindi](https://www.youtube.com/playlist?list=PL0s3O6GgLL5dg3bZhTicr5zUITPAlZNjj) - Last moment tuitions
* [DBMS Lectures in Hindi](https://www.youtube.com/playlist?list=PL0s3O6GgLL5dg3bZhTicr5zUITPAlZNjj) - Last moment tuitions
* [DBMS Placements Series 2022](https://www.youtube.com/playlist?list=PLDzeHZWIZsTpukecmA2p5rhHM14bl2dHU) - CodeHelp - by Babbar
* [MongoDB Tutorial Course for Beginners to Advanced in Hindi / Urdu](https://www.youtube.com/playlist?list=PL0b6OzIxLPbysebQ-yBd7ZHYGPMuFvvyD) - Yahu Baba
* [SQL Tutorial in Hindi](https://www.youtube.com/playlist?list=PLdOKnrf8EcP17p05q13WXbHO5Z_JfXNpw) - Rishabh Mishra
@@ -344,10 +304,7 @@
* [DevOps Training Tutorials For Beginners in Hindi](https://www.youtube.com/playlist?list=PLYEK_dHOjwtODYB46wFuc34muw9Gl5X5x) - Linux Wale Guruji
* [DevOps Training Videos in Hindi](https://www.youtube.com/playlist?list=PLQbQOmlGYH3sxlq9ugoq1ipNFP7tus5Gd) - edureka! Hindi
* [DevOps Tutorials in Hindi/Urdu \| Devops рд╕реАрдЦрдиреЗ рдХрд╛ рд╕рдмрд╕реЗ рдЖрд╕рд╛рди рддрд░реАрдХрд╛ \| Complete Devops including Git,Jenkins,Maven,Chef,docker,Ansible and Kubernetes](https://www.youtube.com/playlist?list=PLBGx66SQNZ8aPsFDwb79JrS2KQBTIZo10) - Bhupinder Rajput, Technical Guftgu
* [Free Terraform Course](https://www.youtube.com/playlist?list=PLlfy9GnSVerQzwhT644uP14iqZa0ZC4pn) - TrainWithShubham
* [Jenkins For Beginners In Hindi](https://www.youtube.com/playlist?list=PL6XT0grm_Tfi21F8O0TvHmb78P2uEmhDq) - Gaurav Sharma
* [Server Configuration, Deployment & VPS Tutorials For Beginners](https://www.youtube.com/playlist?list=PLu0W_9lII9aiBNXUisDdSmfNbsKq407XC) - CodeWithHarry
* [Terraform Tutorials For Beginners In Hindi](https://www.youtube.com/playlist?list=PL6XT0grm_TfgdaAjTmLb4QedMCCMQHISm) - Gaurav Sharma
### Figma
@@ -365,8 +322,9 @@
* [Flutter 3 tutorial in Hindi](https://youtube.com/playlist?list=PLB97yPrFwo5g-XcPlfSXSOeeby23jVAcp) - CODERS NEVER QUIT
* [Flutter App Development](https://www.youtube.com/playlist?list=PLlvhNpz1tBvH4Wn8rMjtscK3l2pXnC9aN) - Code With Dhruv
* [Flutter Complete Tutorial in Hindi](https://www.youtube.com/playlist?list=PLjVLYmrlmjGfGLShoW0vVX_tcyT8u1Y3E) - WsCube Tech
* [Flutter Essential Course](https://www.youtube.com/watch?v=Wdx8vwN_nWI) - freecodecamp
* [Flutter Series 2020](https://www.youtube.com/playlist?list=PLDzeHZWIZsTo3Cs115GXkot28i406511Y) - CodeHelp - by Babbar
* [Flutter Tutorial For Beginners in Hindi](https://www.youtube.com/playlist?list=PLMkkZSS5OjPIwDyHHKVex6zr008U1-sWM) - Geeks Rank
* [Flutter Tutorial For Beginners in Hindi](https://youtube.com/playlist?list=PLMkkZSS5OjPIwDyHHKVex6zr008U1-sWM) - Geeks Rank
* [Flutter Widgets in Hindi](https://www.youtube.com/playlist?list=PLz7ymP4HzwSH3vAnhDWLkO2TLbwGeigl7) - Ahirlog
* [Master Flutter in Just 8 Hours \| Full Course Hindi](https://www.youtube.com/watch?v=j-LOab_PzzU) - Codepur
@@ -384,20 +342,18 @@
### Git and GitHub
* [Complete git and Github course in Hindi](https://www.youtube.com/watch?v=q8EevlEpQ2A) - Chai aur Code
* [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics&t=7s) - Kunal Kushwaha
* [Complete Git and Github Tutorials for Beginners](https://www.youtube.com/watch?v=Ez8F0nW6S-w) - Apna College
* [Complete Git and GitHub Tutorials For Beginners In Hindi](https://www.youtube.com/playlist?list=PLzdlNxYnNoafZq1AKcqiGvj0gkzrjmgq7) - Code House
* [Complete Git Tutorials For Beginners In Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9agwhy658ZPA0MTStKUJTWPi) - CodeWithHarry
* [Complete Git Tutorials For Beginners In Hindi](https://youtube.com/playlist?list=PLu0W_9lII9agwhy658ZPA0MTStKUJTWPi) - CodeWithHarry
* [Complete Git/GitHub Tutorials In Hindi 2021](https://www.youtube.com/playlist?list=PLoxQvXKPyCeX9__PPTu2M2oeY2QJt-3JB) - Vashishth Muni Singh
* [Git & GitHub Fundamentals in 6 Hours](https://www.youtube.com/playlist?list=PLfEr2kn3s-brBO7d9irTRvClcjiNhzczH) - Anurag Singh ProCodrr
* [Git & Github](https://youtube.com/playlist?list=PL5P8NPoF-nn8LFPLjJemBTVI_KsLo0VC1&si=U94-O5hr4Im0hI85) - Rahul Singh
* [Git & GitHub Tutorial For Beginners In Hindi](https://www.youtube.com/watch?v=gwWKnnCMQ5c) - CodeWithHarry
* [Git & GitHub Tutorial in Hindi](https://www.youtube.com/watch?v=NR_A2gCxaLE) - Edureka! Hindi
* [Git and Github \| Complete рд╣рд┐рдВрджреА рдореЗрдВ (With Examples)](https://www.youtube.com/watch?v=zGq7T9gZH2k) - Knowledge Gate
* [Git and Github | Complete рд╣рд┐рдВрджреА рдореЗрдВ (With Examples)](https://www.youtube.com/watch?v=zGq7T9gZH2k) - Knowledge Gate
* [Git Complete Tutorials for Beginners in Hindi (A to Z)](https://www.youtube.com/playlist?list=PLjVLYmrlmjGdIVmcu5nfgE68jANQetnOX) - WsCube Tech
* [Git Step-by-Step: Git Tutorials For Beginners - In Hindi ](https://www.youtube.com/playlist?list=PL6XT0grm_TfjgDZ_shvnNvxHu0SGeR2ge) - Gaurav Sharma
* [Github \| All about Git and GitHub](https://www.youtube.com/watch?v=77b2lVHHZqI) - Anuj Bhaiya
* [GitHub Tutorial in Hindi](https://www.youtube.com/playlist?list=PLVdoaEL574VBxxcGQmTjxS-JoP5rKV8Wi) - Be A Programmar
* [GitHub Tutorial in Hindi](https://youtube.com/playlist?list=PLVdoaEL574VBxxcGQmTjxS-JoP5rKV8Wi) - Be A Programmar
* [GitHub with Visual Studio (Hindi)](https://www.youtube.com/playlist?list=PLbGui_ZYuhigWA1mNWzwErSBIZvgOJbNc) - Rajesh Kumar, Geeky Shows
@@ -408,24 +364,17 @@
* [Go Lang Tutorials in HINDI](https://www.youtube.com/playlist?list=PL45_xGOyv4bk55CMmqH6S6vvnwKD8qifD) - Coder Singh
* [Go programming (GoLang) Tutorial for Beginners in Hindi](https://www.youtube.com/playlist?list=PLEtkoO2np9szq1XDH1Mfr36Fg5EXh-z20) - Host Progrmming
* [Go programming Tutorial for Beginners(Hindi)](https://www.youtube.com/playlist?list=PLgPJX9sVy92yu7If3I7GonlWA8YU1BuAk) - CS Geeks
* [Golang Tutorial](https://www.youtube.com/playlist?list=PLXQpH_kZIxTWUe-Ee-DZEX5gfeoo4tHV6) - Coder's Gyan
* [Let's go with golang](https://www.youtube.com/playlist?list=PLRAV69dS1uWQGDQoBYMZWKjzuhCaOnBpa) - Hitesh Choudhary
### HTML and CSS
* [Chai aur HTML in рд╣рд┐рдиреНрджреА](https://www.youtube.com/playlist?list=PLu71SKxNbfoDBNF5s-WH6aLbthSEIMhMI) - Chai aur Code
* [Complete Web Dev using mern stack Love Babbar](https://www.youtube.com/playlist?list=PLDzeHZWIZsTo0wSBcg4-NMIbC0L8evLrD) - Love Babbar
* [CSS Full Free Course by WsCube Tech](https://www.youtube.com/playlist?list=PLjVLYmrlmjGcotVRgbduK05oOMnt-9r8H) - WsCube Tech
* [CSS Tutorial in Hindi \| Complete CSS Course For Beginners to Advanced \| Step By Step Tutorial](https://www.youtube.com/watch?v=WyxzAU3p8CE) - Vishwajeet Kumar (Tech Gun)
* [Free Web Development Course For School Students (Grade 5 - 10) \| Certified Course By Coding Blocks Junior \| Learn HTML, CSS, Javascript](https://www.youtube.com/playlist?list=PLhLbJ9UoJCvsCXqP9yAOZpzXHhWkLBXdw) - Coding Blocks Junior
* [Front End Development Tutorial \| Complete HTML and CSS Tutorial for Beginners (9 Hours)](https://www.youtube.com/watch?v=Eu7G0jV0ImY) - WsCube Tech
* [Full HTML Course for Beginners in Hindi](https://www.youtube.com/playlist?list=PLfEr2kn3s-bpuh9XfcDlXP6weTISBWzvQ) - Anurag Singh ProCodrr
* [HTML CSS & Browser APIs](https://www.youtube.com/playlist?list=PL-Jc9J83PIiHU9RkY9sfh3G64-bd0ptvC) - Pepcoding
* [HTML Tutorial for Beginners in Hindi \| Complete HTML Course with AI + Notes + 5 Project Bundle](https://www.youtube.com/watch?v=k2DSi1zGEc8) - CodeWithHarry
* [HTML Tutorial in Hindi \| Complete HTML Course For Beginners to Advanced](https://www.youtube.com/watch?v=QXPWs00RD3A) - Vishwajeet Kumar (Tech Gun)
* [Sigma Web Development Course](https://youtube.com/playlist?list=PLu0W_9lII9agq5TrH9XLIKQvv0iaF2X3w&si=mGaDlsxY1dRAR1t0) - CodeWithHarry
* [Tailwind CSS Tutorials in Hindi](https://youtube.com/playlist?list=PLu0W_9lII9ahwFDuExCpPFHAK829Wto2O&si=rTTFha3VOrpdSXU2) - CodeWithHarry
* [Web Development Course](https://www.youtube.com/playlist?list=PLfqMhTWNBTe3H6c9OGXb5_6wcc1Mca52n) - Apna College
* [Web Development Tutorials for Beginners in Hindi: HTML, CSS, JavaScript and more](https://www.youtube.com/playlist?list=PLu0W_9lII9agiCUZYRsvtGTXdxkzPyItg) - CodeWithHarry
* [Website Development Course in Hindi 2022](https://www.youtube.com/playlist?list=PLwGdqUZWnOp2jmYb2TQGYgBYp0xGwj9V1) - Thapa Technical
@@ -433,28 +382,18 @@
#### Bootstrap
* [Bootstrap 3 Tutorial](https://www.youtube.com/playlist?list=PLjVLYmrlmjGciJ5_Ze6jDIfJpEeMYtsSe) - WsCube Tech
* [Bootstrap 3 Tutorial](https://youtube.com/playlist?list=PLjVLYmrlmjGciJ5_Ze6jDIfJpEeMYtsSe) - WsCube Tech
* [Bootstrap Tutorial for beginners in Hindi / Urdu](https://www.youtube.com/playlist?list=PL0b6OzIxLPbz1cgxiH5KCBsyQij1HsPtG) - Yahoo Baba
* [Bootstrap Tutorial for Beginners(Hindi)](https://youtube.com/playlist?list=PLgPJX9sVy92wc38jA6JtvkA4l1xmJcKKH) - CS Geeks
* [Bootstrap Tutorial In Hindi](https://www.youtube.com/playlist?list=PLdPwRNmUlk0k91-qAXTHFqMScNEuo8E5d) - CODE4EDUCATION
* [Bootstrap Tutorial In Hindi](https://www.youtube.com/watch?v=vpAJ0s5S2t0) - CodeWithHarry
* [Bootstrap Tutorial In Hindi](https://youtube.com/playlist?list=PLdPwRNmUlk0k91-qAXTHFqMScNEuo8E5d) - CODE4EDUCATION
* [Bootstrap Tutorial In Hindi](https://youtube.com/watch?v=vpAJ0s5S2t0) - CodeWithHarry
* [Bootstrap tutorial in Hindi \| Best Course](https://youtube.com/playlist?list=PL7akPJI4biSIQmT7fSHWoMRaNUcRbXHFN) - CodinGyaan
* [Bootstrap Tutorial in Hindi With 2 Projects for Beginners \| Complete Bootstrap 5 Tutorial in Hindi](https://youtube.com/watch?v=QE5oQh63gGE) - Tech Gun
#### Material UI
* [Material UI Complete in One Video (Hindi)](https://www.youtube.com/watch?v=TJz6y9RLtA8) - Geeky Shows
* [Material UI Tutorial](https://www.youtube.com/playlist?list=PLlR2O33QQkfXnZMMZC0y22gLayBbB1UQd) - Indian Coders
* [Material UI Tutorial for Beginners in Hindi](https://www.youtube.com/playlist?list=PL8u9CiaEfFDaR0ipsKfHdnZccTm10J7-3) - Basics Adda
* [Reactjs material ui in hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV4722H3_nosmpdjNXIPuBUXm) - Code Step By Step
#### Tailwind CSS
* [Learn Tailwind CSS with Projects - Hindi](https://www.youtube.com/playlist?list=PLPppPPmk0i3h9Xs6cAknE9OODTqZD5zFe) - Do Some Coding
* [Tailwind Course + Project](https://www.youtube.com/playlist?list=PLUcsbZa0qzu0OrMJWIuhvibOPZm_IHGTl) - Anuj Bhaiya
* [Tailwind CSS Complete Course](https://www.youtube.com/playlist?list=PLfEr2kn3s-br05lTglbEi25A1X07cvihy) - Anurag Singh ProCodrr
* [Tailwind CSS Complete Course - CSS Framework [Hindi] - Beginner to Advanced](https://www.youtube.com/playlist?list=PLjVLYmrlmjGfpwYhVAbiGAhFl6h8XWDV_) - WsCube Tech
* [Tailwind css hindi](https://www.youtube.com/playlist?list=PLLCu4ndnReXLXfD-iIGBEB6_l8uF6TMNO) - NST Infotech
* [Tailwind CSS In Hindi](https://www.youtube.com/playlist?list=PLwGdqUZWnOp3l8tWTcB7R7Bsgd86lCa8a) - Thapa Technical
@@ -471,28 +410,23 @@
### Java
* [Complete Java Programming Course 2025](https://www.youtube.com/playlist?list=PLA3GkZPtsafY62QhQ030p85HAer0pFDdr) - Engineering Digest
* [Complete Java Programming in Hindi](https://www.youtube.com/playlist?list=PLmRclvVt5DtnqhXTJwd-oqVRwO3bLZCGV) - Anand Kumar, CodeitUp
* [Core Java in Hindi](https://www.youtube.com/playlist?list=PLVlQHNRLflP8kPvCvEM7ZopbRB93joJXy) - Naresh i Technologies
* [Core Java Programming (Hindi)](https://www.youtube.com/playlist?list=PLbGui_ZYuhij8Oplrvjt_RlDliZQgdxoV) - Rajesh Kumar, Geeky Shows
* [Hibernate tutorial Basic to Advance in Hindi](https://youtube.com/playlist?list=PL0zysOflRCekX8OO7V7pGQ9kxZ28JyJlk) - Learn Code With Durgesh
* [Java + DS + Algorithms](https://www.youtube.com/playlist?list=PLKKfKV1b9e8ps6dD3QA5KFfHdiWj9cB1s) - Apni Kaksha (Anuj)
* [Java + DSA](https://www.youtube.com/playlist?list=PLfqMhTWNBTe3LtFWcvwpqTkUSlB32kJop) - Apna College
* [Java and DSA Foundation Course](https://youtube.com/playlist?list=PLxgZQoSe9cg00xyG5gzb5BMkOClkch7Gr) - College Wallah
* [Java and DSA Foundation Course](https://youtube.com/playlist?list=PLxgZQoSe9cg00xyG5gzb5BMkOClkch7Gr&si=ctLRknqelKTSI5Lh) - College Wallah
* [Java Foundation Course \| Hindi](https://www.youtube.com/playlist?list=PL-Jc9J83PIiFj7YSPl2ulcpwy-mwj1SSk) - Pepcoding
* [Java Live Community Class](https://www.youtube.com/playlist?list=PLsyeobzWxl7pyuXTES7ZqncOI_X0mgKgK) - Navin Reddy (Telusko)
* [Java Programming Tutorial (HINDI/URDU)](https://www.youtube.com/playlist?list=PLiOa6ike4WAHljIOitb3vR0nXQgneUedR) - Vikas Pandey, Easytuts4you
* [Java Tutorial](https://youtube.com/playlist?list=PLX9Zi6XTqOKQ7TdRz0QynGIKuMV9Q2H8E) - Saurabh Shukla Sir
* [Java tutorial in Hindi for beginners](https://www.youtube.com/playlist?list=PL8p2I9GklV466xs0qGUvLGAXy6xLyEcQy) - Code Step By Step
* [Java Tutorials for Beginners](https://www.youtube.com/playlist?list=PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b) - Deepak Panwar, Smart Programming
* [Java Tutorials For Beginners In Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9agS67Uits0UnJyrYiXhDS6q) - CodeWithHarry
* [Microservice Tutorial in Hindi 2023](https://www.youtube.com/playlist?list=PL0zysOflRCelb2Y4WOVckFC6B050BzV0D) - Learn Code With Durgesh
* [Object Oriented Programming with Java](https://www.youtube.com/playlist?list=PL9gnSGHSqcno1G3XjUbwzXHL8_EttOuKk) - Kunal Kushwaha
* [Spring Framework Tutorial with SpringBoot in Hindi Complete Course](https://www.youtube.com/playlist?list=PLiOIhBfKi8AIYNWEjYy1zZFe1N8GvPRHR) - CoderX Ankit
* [Spring Framework Tutorial with SpringBoot in Hindi Complete Course](https://www.youtube.com/playlist?list=PLiOIhBfKi8AIYNWEjYy1zZFe1N8GvPRHR) - CoderX Ankit
### Spring Boot
* [Spring Boot complete course in Hindi](https://www.youtube.com/playlist?list=PLX1XVaZeuvXfDHGqgYF6WBZsBjpA-hCCa) - Bits And Bytes
* [Spring Boot In Hindi](https://www.youtube.com/playlist?list=PLJc-LD5TzDQToG2MOYDAuCl-JFZoMBxgC) - ekumeed help
* [Spring Boot Tutorial (Full Course In Hindi)](https://www.youtube.com/playlist?list=PLnfapp4Woqprxl6N1r4Gkq87Lkn-IEZ0z) - AndroJava Tech4U
* [Spring Boot Tutorial For Beginners (in Hindi)](https://www.youtube.com/playlist?list=PL5mjp3QjkuoLPS-L28yKCKyzCMX8WRVno) - ProgRank
@@ -511,30 +445,15 @@
* [JavaScript Tutorial for beginners in Hindi / Urdu](https://www.youtube.com/playlist?list=PLw9zMOoodWb5YB2TqrboVoSBkCKaOsvE_) - Husain Sir
* [JavaScript Tutorials for Beginners in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9ahR1blWXxgSlL4y9iQBnLpR) - CodeWithHarry
* [JavaScript Tutorials In Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9ajyk081To1Cbt2eI5913SsL) - CodeWithHarry
* [Namaste JavaScript](https://www.youtube.com/playlist?list=PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP) - Akshay Saini
* [Namaste JavaScript](https://youtube.com/playlist?list=PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP) - Akshay Saini
* [RxJS Series (In Hindi)](https://youtube.com/playlist?list=PLLhsXdvz0qjI68a8tLUUMyXmNhl608mcn) - UX Trendz
* [Web Development Course](https://www.youtube.com/playlist?list=PLfqMhTWNBTe3H6c9OGXb5_6wcc1Mca52n) - Apna College
#### Electron.js
* [Electron js Course in Hindi for beginner](https://www.youtube.com/playlist?list=PLCHw5ssvpa9sYFawfqZPeb70Le-3H9nTt) - satendrasingh programmer
* [Electron js desktop app development tutorial](https://www.youtube.com/playlist?list=PLfxALjnZodrvtzXTg-ZFeRL7AIutdJBV4) - Wap Institute
* [Electron js tutorial in Hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV46sT0RXw6PlMRVxJzEDUWuD) - Code Step By Step
#### GSAP
* [Animate anything with GSAP \| Complete GSAP Course](https://www.youtube.com/playlist?list=PLbtI3_MArDOnIIJxB6xFtpnhM0wTwz0x6) - Sheryians Coding School
* [GSAP Demystified \| From Beginning to Advanced](https://www.youtube.com/playlist?list=PLbtI3_MArDOn9x8DUbc-E0t9PnvrUaPs9) - Sheryians Coding School
* [Learning GSAP in hindi](https://www.youtube.com/playlist?list=PLf8nAOi8Z9NXGhl7m8rTWmzjyhJEuFYmF) - D.Designing
#### jQuery
* [jQuery Tutorial for beginners in Hindi 2020](https://youtube.com/playlist?list=PL-6FWL4WVVWXmWe_HnPG0rBQmmJfGsTKS) - CSEtutorials
* [jQuery Tutorial in Hindi](https://youtube.com/playlist?list=PLvQjNLQMdagPRDnMQPMs5-vQL_IyAB0St) - Teaching Web
* [jQuery Tutorials](https://www.youtube.com/playlist?list=PLp_RsiLZjwQQEtvmHTJRkK-lEuSn0kg7p) - Programentor
* [jQuery Tutorials in Hindi / Urdu](https://www.youtube.com/playlist?list=PL0b6OzIxLPbzSyiC0PFaqeabe1aGhfrbW) - Yahoo Baba
* [jQuery Tutorials in Hindi 2018](https://youtube.com/playlist?list=PLwGdqUZWnOp0X4dVwSsEd6dV49TLLCooI) - Vinod Bahadur Thapa (Thapa Technical)
* [jQuery Video Course](https://www.youtube.com/playlist?list=PLPAcs2twrK5_FzWMttkbTuM0dB5A-ni-Q) - w3webschool.net
@@ -543,46 +462,35 @@
#### Next.js
* [Learn NextJS with Aceternity UI library by building a project](https://www.youtube.com/watch?v=cVKB5NQPiFA&t=744s) - Chai aur Code
* [Master Next JS 14 Complete Basic to Advance](https://www.youtube.com/watch?v=yN8VXmncvRU&t=190s) - Geeky Shows
* [Next JS Tutorial for Beginners in Hindi](https://www.youtube.com/playlist?list=PLZjjdd9-SJS2ZvI4ct5Qtkje_Vdb5O_KM) - ILive4Coding
* [Next js tutorial in Hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV44sj_Ikp8jQSvwD-m9htnHT) - Code Step By Step
* [Next.JS Full FREE Course (New Updated) by WsCube Tech](https://www.youtube.com/playlist?list=PLjVLYmrlmjGcg_ZTmYgMkYp0snH-g4Zf6) - WsCube Tech
* [Next.js Tutorials for Beginners in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9agtWvR_TZdb_r0dNI8-lDwG) - CodeWithHarry
* [NextJS Chai aur full stack](https://www.youtube.com/playlist?list=PLu71SKxNbfoBAaWGtn9GA2PTw0HO0tXzq) - Chai aur Code
* [NextJS Master Course](https://www.youtube.com/playlist?list=PLinedj3B30sDP2CHN5P0lDD64yYZ0Nn4J) - Piyush Garg
* [NextJS Tutorial In Hindi](https://www.youtube.com/playlist?list=PLwGdqUZWnOp2rDbpfKAeUi9f8qZMS7_cv) - Vinod Bahadur Thapa (Thapa Technical)
* [NextJS Tutorial with Project in Hindi](https://www.youtube.com/playlist?list=PL0zysOflRCemKr4NHzNgrfZAUjDzlQtO5) - Learn Code┬аWith┬аDurgesh
#### Node.js
* [Complete NodeJS + ExpressJS + MongoDB Course in Hindi \| Notes \| Certification](https://www.youtube.com/playlist?list=PL78RhpUUKSwfeSOOwfE9x6l5jTjn5LbY3) - Complete Coding by Prashant Sir
* [Master NodeJS](https://www.youtube.com/playlist?list=PLinedj3B30sDby4Al-i13hQJGQoRQDfPo) - Piyush Garg
* [Node JS](https://www.youtube.com/playlist?list=PLbGui_ZYuhiiSVvVP_9w57-aU7kx_H9bu) - Geeky Shows
* [Node Js Tutorial in Hindi](https://www.youtube.com/watch?v=BLl32FvcdVM&ab_channel=CodeWithHarry) - Code With Harry
* [Node.js Tutorial in Hindi](https://www.youtube.com/playlist?list=PLgOUQYMnO_SRqPikOJBu5G1ld4bJUZCmy) - truecodex
* [Node.js Tutorials for Beginners in Hindi](https://www.youtube.com/playlist?list=PLUVqY59GNZQNCk_D9VW_zNh60WuQIzo3K) - Tutorials Website
* [NodeJS in Hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV456iofeMKReMTvWLr7Ki9At) - Code Step By Step
* [NodeJS Tutorial for Beginners](https://www.youtube.com/playlist?list=PLzjZaW71kMwScTRKzoasdyB1sX-a9EbFp) - Hello World
* [NodeJS Tutorial for Beginners](https://www.youtube.com/playlist?list=PLsyeobzWxl7occsESx2X1E2R2Uw5wCoeG) - Telusko
* [NodeJS Tutorial in Hindi 2020](https://www.youtube.com/playlist?list=PLwGdqUZWnOp00IbeN0OtL9dmnasipZ9x8) - Vinod Bahadur Thapa (Thapa Technical)
* [NodeJS Tutorial in Hindi 2020](https://youtube.com/playlist?list=PLwGdqUZWnOp00IbeN0OtL9dmnasipZ9x8) - Vinod Bahadur Thapa (Thapa Technical)
#### React
* [10-Hour React Tutorial 2023 - Zero to Advanced \| Learn React JS in Hindi](https://www.youtube.com/watch?v=6l8RWV8D-Yo&list=PL2PkZdv6p7ZnS2QIz8WAPmqeqUUccPNQY) - Coder Dost
* [Chai aur react \| with projects](https://www.youtube.com/playlist?list=PLu71SKxNbfoDqgPchmvIsL4hTnJIrtige) - Chai aur Code
* [React JS (Hindi)](https://www.youtube.com/playlist?list=PLbGui_ZYuhignjLLXTJWkRJKN-SgAqClL) - Rajesh Kumar, Geeky Shows
* [React JS Course 2023](https://www.youtube.com/playlist?list=PLt5mNkGuWcuWSUHxSzWP74IU9U4BTVLt0) - 6 Pack Programmer
* [React JS Tutorial For Beginners in Hindi 2024 \| React JS Tutorial](https://www.youtube.com/playlist?list=PLrdDvCsCDu0Gdr-E7NlcFYaNPw29t7xmq) - CODE with Sufyan Shaikh
* [React JS Course 2023](https://youtube.com/playlist?list=PLt5mNkGuWcuWSUHxSzWP74IU9U4BTVLt0) - 6 Pack Programmer
* [React JS Tutorial in Hindi \| React JS for Beginner to Advanced \| Step by Step Video Tutorials](https://www.youtube.com/playlist?list=PLjVLYmrlmjGdnIQKgnTeR1T9-1ltJEaJh) - WsCubeTech
* [React JS Tutorial in Hindi 2022](https://www.youtube.com/playlist?list=PLwGdqUZWnOp3aROg4wypcRhZqJG3ajZWJ) - Vinod Bahadur Thapa, Thapa Technical
* [React Js Tutorials in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9agx66oZnT6IyhcMIbUMNMdt) - Haris Ali Khan, CodeWithHarry
* [React Tutorial for Beginners in Hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV47BCAjiCtuV_liN9IwAl8pM) - Code Step By Step
* [React JS Tutorials for Begineers in Hindi](https://youtube.com/playlist?list=PLu71SKxNbfoDqgPchmvIsL4hTnJIrtige) - Chai aur Code
* [React Js Tutorials in Hindi](https://youtube.com/playlist?list=PLu0W_9lII9agx66oZnT6IyhcMIbUMNMdt) - Haris Ali Khan, CodeWithHarry
* [React Tutorial for beginners in Hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV47BCAjiCtuV_liN9IwAl8pM) - Code Step By Step
* [React Tutorial in Hindi](https://www.youtube.com/watch?v=RGKi6LSPDLU) - CodeWithHarry
* [React.js Full Course in Hindi \| Zero to Advanced in 28 Hours](https://www.youtube.com/playlist?list=PLfEr2kn3s-bqpPUbeTZP6iRXTxTLwNB7F) - Anurag Singh ProCodrr
* [ReactJS Tutorial for Beginners to Advanced](https://www.youtube.com/playlist?list=PL_HlKez9XCSO1g7c61SyJZE4iehJDFg_w) - Technical Suneja
* [ReactJS Tutorial for Beginners to Advanced](https://youtube.com/playlist?list=PL_HlKez9XCSO1g7c61SyJZE4iehJDFg_w) - Technical Suneja
* [ReactJS Tutorial in Hindi 2020](https://www.youtube.com/playlist?list=PLwGdqUZWnOp3aROg4wypcRhZqJG3ajZWJ) - Vinod Bahadur Thapa (Thapa Technical)
* [ReactJS Tutorials for Beginners In Hindi](https://www.youtube.com/playlist?list=PLUVqY59GNZQNTlOnGne0G7DXnmi7CeOtc) - Pradeep Maurya
@@ -593,7 +501,7 @@
* [React Native Tutorial In Hindi - 2023](https://www.youtube.com/playlist?list=PLvN7nvnjkvpQribRyQ4r0FYZxKsPLGciy) - Code Diggers
* [React Native Tutorial in Hindi 2022](https://www.youtube.com/playlist?list=PLwGdqUZWnOp354xMD8u0hxX-1qmCvfLiY) - Thapa Technical
* [React Native Tutorials (mobile app development) in hindi](https://www.youtube.com/playlist?list=PLB97yPrFwo5gxB5SuNWzH73t2Su65KN2f) - Coders Never Quit
* [React Native Tutorials for Begginers](https://www.youtube.com/playlist?list=PL8kfZyp--gEXs4YsSLtB3KqDtdOFHMjWZ) - Programming with Mash
* [React Native Tutorials for Begginers](https://youtube.com/playlist?list=PL8kfZyp--gEXs4YsSLtB3KqDtdOFHMjWZ) - Programming with Mash
#### Redux
@@ -607,13 +515,12 @@
* [Latest vue js 3 tutorial for beginners in hindi](https://www.youtube.com/playlist?list=PLfxALjnZodruGEvbM8zTdnPMrQ5wHMmw8) - Wap Institute
* [Vue js tutorial in Hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV45qwTH-mdzllUuFRJO-euYn) - Code Step By Step
* [Vue JS Tutorial in Hindi (Learning from documentation)](https://www.youtube.com/playlist?list=PLWxTHN2c_6cZpCJBULGoubyWsbfI0gDGW) - Touseef Jamal
* [Vue JS Tutorials in Hindi](https://www.youtube.com/playlist?list=PLbGui_ZYuhih5ItBhn2cTncaS24_Kgeui) - Rajesh Kumar, Geeky Shows
### Kotlin
* [Kotlin Beginner Tutorials Hindi \| Complete Series](https://www.youtube.com/playlist?list=PLRKyZvuMYSIMW3-rSOGCkPlO1z_IYJy3G) - Cheezy Code
* [Kotlin Beginner Tutorials Hindi | Complete Series](https://www.youtube.com/playlist?list=PLRKyZvuMYSIMW3-rSOGCkPlO1z_IYJy3G) - Cheezy Code
* [Kotlin for Beginners in Hindi](https://www.youtube.com/playlist?list=PLUhfM8afLE_MXuRUfgm1g-qDuBRD1pxPG) - Neat Roots
* [Kotlin Programming Complete in one Video (Hindi)](https://www.youtube.com/watch?v=uoP4JKHgzDE) - Geeky Shows, `tch.:` Rajesh Kumar
* [Kotlin Tutorial in Hindi : From beginner to advance Android](https://www.youtube.com/playlist?list=PLaLbT5lAehvULj67yZ_JJ6zMwyvmqt78o) - Coding With Vikrant
@@ -623,7 +530,7 @@
* [рд╕рдВрдкреВрд░реНрдг рд▓рд┐рдирдХреНрд╕ рд╣рд┐рдВрджреА рднрд╛рд╖рд╛ рдореЗрдВ рд╕реАрдЦреЗрдВ (Complete Linux Course in Hindi)](https://www.youtube.com/playlist?list=PL9LY4jTSNS23_yo6XIyIFZeZKL7UlKm-V) - Nehra Classes
* [Linux Basic tutorials in Hindi](https://www.youtube.com/playlist?list=PLYEK_dHOjwtNX9NcnILJR1q5hL_4N0cdu) - Linux Wale Guruji
* [Linux Playlist ZERO to Superhero \| Linux for Freshers \| Linux Full Course in hindi \| Linux Full Playlist in hindi](https://www.youtube.com/playlist?list=PLrFWmDe-rblqDfPvkVkEt45Nhnyvh6kN5) - Cloud Tech Burner
* [Linux Full Course (Beginner to Advanced) \| Learn Linux in Hindi](https://www.youtube.com/playlist?list=PLjVLYmrlmjGcsZGJWeo8ec4yIBLX2KeyR) - WsCube Tech
* [Linux Tutorial For Beginners in Hindi](https://www.youtube.com/playlist?list=PLSntPnamABVEi_K1gxbOEwXVz09pY9qb8) - Ankit Tiwari
* [Linux Tutorial For Beginners in Hindi](https://www.youtube.com/watch?v=_tCY-c-sPZc) - CodeWithHarry
* [Linux Tutorials For Beginners in Hindi](https://www.youtube.com/playlist?list=PL0tP8lerTbX3eUtBFS0Ir4_aFqKuXWjYZ) - M Prashant
@@ -633,13 +540,10 @@
* [100 Days Of Deep Learning](https://www.youtube.com/playlist?list=PLKnIA16_RmvYuZauWaPlRTC54KxSNLtNn) - CampusX
* [100 Days Of Machine Learning](https://www.youtube.com/playlist?list=PLKnIA16_Rmvbr7zKYQuBfsVkjoLcJgxHH) - CampusX
* [Complete Machine Learning Course with Projects \| Learn ML Step-by-Step](https://www.youtube.com/playlist?list=PLaldQ9PzZd9qT0KsKJ7yCq70iFFP3MFJ5) - sheryians AI School
* [Intro to Machine Learning](https://www.youtube.com/playlist?list=PL-Jc9J83PIiHioMKxmCxzpXdNfLE4TVjD) - Pepcoding
* [Machine Learning](https://www.youtube.com/playlist?list=PLYwpaL_SFmcBhOEPwf5cFwqo5B-cP9G4P) - 5 Minutes Engineering
* [Machine Learning for Data Science in Hindi](https://www.youtube.com/playlist?list=PLxzTa0VPR9rzus4Egb-aOmCWier5XiOba) - The iScale
* [Machine Learning Full Course](https://www.youtube.com/watch?v=IoZGSQ07e8g) - Bharani Akella, Great Learning
* [Machine Learning in Hindi](https://www.youtube.com/playlist?list=PLPbgcxheSpE0aBsefANDYe2X_-tyJbBMr) - Codebasics Hindi
* [Machine Learning Playlist](https://www.youtube.com/playlist?list=PLTDARY42LDV7WGmlzZtY-w9pemyPrKNUZ) - by Krish Naik
* [Machine Learning Tutorial using Python in Hindi 2022](https://www.youtube.com/playlist?list=PLfP3JxW-T70Hh7j17_NLzjZ8CejSPx40V) - Indian AI Production
* [Machine Learning Tutorials For Beginners Using Python in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9ai6fAMHp-acBmJONT7Y4BSG) - CodeWithHarry
@@ -649,8 +553,7 @@
* [Discrete Mathematics](https://www.youtube.com/playlist?list=PLxCzCOWd7aiH2wwES9vPWsEL6ipTaUSl3) - Gate Smashers, `tch.:` Varun Singla, `tch.:` Naina Wadhwa Singla
* [Discrete Mathematics (Full Course) By Dr.Gajendra Purohit](https://www.youtube.com/playlist?list=PLU6SqdYcYsfJ27O0dvuMwafS3X8CecqUg) - Gajendra Purohit
* [Discrete Mathematics Tutorials In Hindi | B.TECH- B.E.-UGC NET- GATE- LECTURES In Hindi](https://www.youtube.com/playlist?list=PLL8qj6F8dGlTX359q-PBBUFw3BrBvAxq3) - Deepak Garg
* [Maths for CP](https://www.youtube.com/playlist?list=PL-Jc9J83PIiFs8E0EGeckM89cD8E6sFro) - Pepcoding
* [Maths for Machine Learning](https://www.youtube.com/playlist?list=PLKnIA16_RmvbYFaaeLY28cWeqV-3vADST) - CampusX
* [Maths for CP](https://youtube.com/playlist?list=PL-Jc9J83PIiFs8E0EGeckM89cD8E6sFro) - Pepcoding
* [Statistics And Probability](https://www.youtube.com/playlist?list=PLU6SqdYcYsfLRq3tu-g_hvkHDcorrtcBK) - Gajendra Purohit
@@ -664,10 +567,9 @@
### Mongo DB
* [Complete MongoDB Tutorial Series in Hindi](https://www.youtube.com/playlist?list=PL5IobCNPDnI_Xh2iya6p37Ain_71ro71w) - Simple Snip Code
* [MongoDB Complete Course Tutorial in Hindi](https://www.youtube.com/watch?v=rU9ZODw5yvU) - Vinod Bahadur Thapa (Thapa Technical)
* [MongoDB full course for beginners](https://youtube.com/playlist?list=PLwGdqUZWnOp1P9xSsJg7g3AY0CUjs-WOa) - Thapa Technical
* [MongoDB playlist in Hindi](https://www.youtube.com/playlist?list=PLA3GkZPtsafZydhN4nP0h7hw7PQuLsBv1) - Engineering Digest
* [MongoDB playlist in Hindi](https://youtube.com/playlist?list=PLA3GkZPtsafZydhN4nP0h7hw7PQuLsBv1&si=4Je3O9WkMYMu9cWO) - Engineering Digest
* [MongoDB Tutorial for Beginners (Hindi)](https://www.youtube.com/playlist?list=PLgPJX9sVy92xUxpTFgAOSBHdBwIdxav39) - CS Geeks
* [MongoDB Tutorial in 1 Hour (2023)](https://www.youtube.com/watch?v=J6mDkcqU_ZE) - CodeWithHarry
* [MongoDB tutorial in hindi](https://www.youtube.com/playlist?list=PLolI8AY2AS9aaE4Vx0adwfwUh3XiuVewX) - Code Improve
@@ -676,18 +578,17 @@
### Natural Language Processing
* [Natural Language Processing](https://www.youtube.com/playlist?list=PLKnIA16_RmvZo7fp5kkIth6nRTeQQsjfX) - CampusX
* [Natural Language Processing with Deep NLP from Zero to Hero](https://www.youtube.com/playlist?list=PLtCBuHKmdxOefxJhd6u8KY9vTN8G5D5yG) - Fahad Hussain
* [NLP Tutorial Playlist Python](https://www.youtube.com/playlist?list=PLeo1K3hjS3uuvuAXhYjV2lMEShq2UYSwX) - Code Basics
* [Natural Language Processing with Deep NLP from Zero to Hero](https://www.youtube.com/playlist?list=PLtCBuHKmdxOefxJhd6u8KY9vTN8G5D5yG) - Fahad Hussain
* [NLP Tutorial Playlist Python](https://youtube.com/playlist?list=PLeo1K3hjS3uuvuAXhYjV2lMEShq2UYSwX) - Code Basics
* [Playlist to Natural Language Processing [ Hindi ]](https://www.youtube.com/playlist?list=PLPIwNooIb9vimsumdWeKF3BRzs9tJ-_gy) - Perfect Computer Engineer
### Networking
* [3.4 Computer Networks (Complete Playlist)](https://www.youtube.com/playlist?list=PLmXKhU9FNesSjFbXSZGF8JF_4LVwwofCd) - Knowledge Gate
* [Computer Network (CN)](https://www.youtube.com/playlist?list=PLYwpaL_SFmcAXkWn2IR-l_WXOrr0n851a) - 5 Minutes Engineering
* [CCNA Hindi by Network Engineer](https://www.youtube.com/playlist?list=PLz8UpOu_f4zoIai54JZFfIJxaSrmqz3B9) - Network Kings
* [Computer Network (CN)](https://youtube.com/playlist?list=PLYwpaL_SFmcAXkWn2IR-l_WXOrr0n851a) - 5 Minutes Engineering
* [Computer Network Tutorial in Hindi](https://www.youtube.com/playlist?list=PL-JvKqQx2AteLNR8UO4UQiDmQF-Wotu5G) - University Academy
* [Computer Networks](https://www.youtube.com/playlist?list=PLBlnK6fEyqRgMCUAG0XRw78UA8qnv6jEx) - Neso Academy
* [Computer Networks (Complete Playlist)](https://www.youtube.com/playlist?list=PLxCzCOWd7aiGFBD2-2joCpWOLUrDLvVV_) - Gate Smashers, `tch.:` Varun Singla
* [Networking Basics](https://www.youtube.com/playlist?list=PLkW9FMxqUvyZaSQNQslneeODER3bJCb2K) - Bitten Tech
@@ -701,7 +602,6 @@
* [3.2 Operating System (Complete Playlist)](https://www.youtube.com/playlist?list=PLmXKhU9FNesSFvj6gASuWmQd23Ul5omtD) - Knowledge Gate
* [Operating System (Complete Playlist)](https://www.youtube.com/playlist?list=PLxCzCOWd7aiGz9donHRrE9I3Mwn6XdP8p) - Gate Smashers
* [Operating System in Hindi](https://www.youtube.com/playlist?list=PLqcuf9-ILPYARwquS3KOD3bDe0NSaD-oK) - CS Engineering Gyan
* [Operating Systems for Placements 2022](https://www.youtube.com/playlist?list=PLDzeHZWIZsTr3nwuTegHLa2qlI81QweYG) - CodeHelp - by Babbar
@@ -712,7 +612,7 @@
* [PHP OOP Tutorial in Hindi / Urdu](https://www.youtube.com/playlist?list=PL0b6OzIxLPbwoi6Urr4LZTz2AMMCtzqDt) - Yahoo Baba
* [PHP Tutorial for beginners in Hindi](https://www.youtube.com/playlist?list=PLmGElG-9wxc_Hp_bqKH0-cpeboH1_sQg7) - ScoreShala
* [PHP Tutorial in Hindi / Urdu](https://www.youtube.com/playlist?list=PL0b6OzIxLPbyrzCMJOFzLnf_-_5E_dkzs) - Yahoo Baba
* [PHP Tutorials in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9aikXkRE0WxDt1vozo3hnmtR) - CodeWithHarry
* [PHP Tutorials in Hindi](https://youtube.com/playlist?list=PLu0W_9lII9aikXkRE0WxDt1vozo3hnmtR) - CodeWithHarry
### CodeIgniter
@@ -721,7 +621,7 @@
* [Codeigniter 4 Tutorial in Hindi](https://www.youtube.com/playlist?list=PLolI8AY2AS9ZmTeMOpu1iTOsx9WALtCgM) - Code Improve
* [Codeigniter 4 Tutorial in Hindi](https://www.youtube.com/playlist?list=PL4_As-_ROQH2OIE5uILfodqSNQzUfAqFs) - Cs Krish
* [CodeIgniter 4 Tutorials for Beginners](https://www.youtube.com/playlist?list=PL79xP87McblnMZG-F1hnRLuMgM5C95nMG) - GoPHP
* [CodeIgniter Tutorial in Hindi \| Learn CodeIgniter Framework Step by Step \| Full Course](https://www.youtube.com/playlist?list=PL97P2RbKWLQgkc4EXn7FBj_R6t0gsgHKo) - Heavy Coding
* [Codeigniter Tutorial for Beginners Step by Step in Hindi](https://www.youtube.com/playlist?list=PL_HlKez9XCSM6WNO_dHhF3yPKVdY1ZZzB) - Technical Suneja
* [Learn CodeIgniter 4 Framework Tutorials Hindi](https://www.youtube.com/playlist?list=PLn1Gr7zhiAMfWpSYfDgND8t7KjiqSaEum) - Online Web Tutor
@@ -739,44 +639,37 @@
* [100 Days of Code (Hindi) - Python Course](https://replit.com/learn/code-with-harry-100-doc) - CodeWithHarry (replit)
* [Advance Python (Hindi)](https://www.youtube.com/playlist?list=PLbGui_ZYuhijd1hUF2VWiKt8FHNBa7kGb) - Rajesh Kumar, Geeky Shows
* [Chai aur Python](https://www.youtube.com/playlist?list=PLu71SKxNbfoBsMugTFALhdLlZ5VOqCg2s) - Chai aur Code
* [Class 12 Board \| Python \| Computer Science](https://www.youtube.com/playlist?list=PLKKfKV1b9e8oyESqu5mrGN-eDxHdNoi_j) - Apni Kaksha
* [Complete Python Tutorial for Beginners to Advanced in Hindi](https://www.youtube.com/playlist?list=PLjVLYmrlmjGcQfNj_SLlLV4Ytf39f8BF7) - WsCube Tech
* [Complete Python tutorial in Hindi](https://www.youtube.com/playlist?list=PLmRclvVt5DtmcLF3ywxKg692lhfD6SUOr) - codeitup
* [Complete Python Tutorial in Hindi (2020)](https://www.youtube.com/playlist?list=PLwgFb6VsUj_lQTpQKDtLXKXElQychT_2j) - Harshit Vashisth
* [Core Python (Hindi)](https://www.youtube.com/playlist?list=PLbGui_ZYuhigZkqrHbI_ZkPBrIr5Rsd5L) - Rajesh Kumar, Geeky Shows
* [Free Python Course For School Students (Grade7-10) Certified Course By Coding Blocks Junior](https://youtube.com/playlist?list=PLhLbJ9UoJCvumawW64knIBSJuHALx3zBE) - Coding Blocks Junior
* [Full Python Tutorial in Hindi](https://www.youtube.com/playlist?list=PLlgLmuG_KgbZziQYQV1sdhKt-VQHUE_Yl) - Bharani Akella
* [Intermediate/Advanced python Tutorials in Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9aiJWQ7VhY712fuimEpQZYp4) - CodeWithHarry
* [OpenCV Full Tutorial by WsCube Tech](https://www.youtube.com/playlist?list=PLjVLYmrlmjGelmHXLZ0ukHdb-jjvG6rRm) - WsCube Tech
* [Python](https://www.youtube.com/playlist?list=PLHjOos34ty4GYwKO-CFTdJKfVNd50tajF) - Computer Gyan Guruji
* [Python For Beginners](https://youtube.com/playlist?list=PL-5gYa7CLd4iBdPHRaSEwbivCnUq1nxj9) - Technical Sagar
* [Python for Data Science for Absolute Beginners (Full Course)](https://www.youtube.com/playlist?list=PL1gztxnUtwNfnR0jYniFM5E6HwcQMnFmx) - Data is Good
* [Python Language Full Course (2025-26)](https://www.youtube.com/playlist?list=PLGjplNEQ1it8-0CmoljS5yeV-GlKSUEt0) - Shradha Khapra
* [Python Programming in Hindi](https://www.greatlearning.in/academy/learn-for-free/courses/python-programming-in-hindi) (Great Learning) *(account required)*
* [Python Tutorial For Beginners \| Hindi (With Notes)](https://www.youtube.com/playlist?list=PLu0W_9lII9agICnT8t4iYVSZ3eykIAOME) - CodeWithHarry
* [Python Tutorial For Beginners in (Hindi)](https://www.youtube.com/playlist?list=PLf0LpPWikpPe5gc6fT9wDj3Y6e97z6ZD_) - DataFlair Hindi
* [Python Tutorial For Beginners in Hindi](https://www.youtube.com/watch?v=FStwWUkW5RQ&list=PLnSDvcENZlwAcFgFLD5bzt5Zh428yzQXT) - Micro Solution
* [Python Tutorial in Hindi](https://www.youtube.com/playlist?list=PLQbQOmlGYH3tC535nKa7xB7dd7pZtYMZX) - edureka! Hindi
* [Web Scraping Full Free Course by WsCube Tech](https://youtube.com/playlist?list=PLjVLYmrlmjGfSYkgH-_jgC8KMxyRzq7US&si=quHKEA6-lapsAXQu) - WsCube Tech
#### Django
* [Chai aur Django](https://www.youtube.com/playlist?list=PLu71SKxNbfoDOf-6vAcKmazT92uLnWAgy) - Chai aur Code
* [Complete Django Tutorial in Hindi (Beginner to Advanced)](https://www.youtube.com/playlist?list=PLtjl3y2jZEeVEROmLDT7sjziUR4gb4N5G) - Moh Technology, Mohshin Mansuri
* [Django (Hindi)](https://www.youtube.com/playlist?list=PLbGui_ZYuhigchy8DTw4pX4duTTpvqlh6) - Rajesh Kumar, Geeky Shows
* [Django in Hindi](https://www.youtube.com/playlist?list=PLKkAfNrxxRKqYLB9bCqMXrvoYd13WVxOq) - Effcon Technology
* [Django REST Framework (Hindi)](https://www.youtube.com/playlist?list=PLbGui_ZYuhijTKyrlu-0g5GcP9nUp_HlN) - Rajesh Kumar, Geeky Shows
* [Django Tutorial for Beginners(Hindi)](https://www.youtube.com/playlist?list=PLgPJX9sVy92yWUMgLpWrXtegKxrWLRnRv) - Vijay Manral, CS Geeks
* [Django(Hindi)](https://www.youtube.com/playlist?list=PLbGui_ZYuhigchy8DTw4pX4duTTpvqlh6) - Rajesh Kumar, GeekyShows
* [Python Django Tutorials In Hindi](https://www.youtube.com/playlist?list=PLu0W_9lII9ah7DDtYtflgwMwpT3xmjXY9) - CodeWithHarry
#### Flask
* [[Hindi] Flask Tutorial For Beginners 2020](https://www.youtube.com/playlist?list=PLkPmSWtWNIyQ-_mlHIQho9nCnxdbvnQIl) - Knowledge Shelf
* [Flask (Python) In Hindi](https://www.youtube.com/playlist?list=PLy-CGmBdq2VGQGbhmSQEOD3Ty-Fp19pGC) - HindiSiksha
* [Flask for Machine Learning](https://learnwith.campusx.in/courses/Flask-for-Machine-Learning-Introduction-to-Flask--Dynamic-URL-Redirection-URL-Building-Jinja-Templates-Forms--Input-Validation-Databases-Sessions-Cookies-Training--Deloyment-of-ML-Model-6658698ad54433398d1a487b) - Mohammed Misbahullah Sheriff (CampusX)
* [Flask Tutorial in Hindi](https://www.youtube.com/playlist?list=PLQ623tNax05w6xydSxUSWpBuIUDe_SBNb) - Knowledge Gainer
* [Web Development Using Flask and Python](https://www.youtube.com/playlist?list=PLu0W_9lII9agAiWp6Y41ueUKx1VcTRxmf) - CodeWithHarry
@@ -796,32 +689,25 @@
### Ruby
* [Complete Ruby Programming Course \|\| Hindi](https://www.youtube.com/playlist?list=PLgPJX9sVy92y_ENwi_4hMCpDtQFnazFPp) - CS Geeks
* [Learn Ruby in 45 Minutes \| Hindi](https://www.youtube.com/watch?v=3V9a_WYEQPA) - CS Geeks
* [Ruby Tutorial for Beginners (Hindi)](https://www.youtube.com/playlist?list=PLgPJX9sVy92yefe1xmyxgcyXjxmLHsSEV) - CS Geeks
#### Ruby on Rails
* [Full Stack Development in Ruby on Rails - Hindi](https://www.youtube.com/playlist?list=PLSfx1NJkuWPWlVjFy5datW4Y-54ltIFw7) - APPSIMPACT Academy Hindi
* [Ruby on Rails 5 Tutorial(Hindi)](https://www.youtube.com/playlist?list=PLgPJX9sVy92yV7Qt6_8ElC9paGWdtdIbb) - CS Geeks
* [Ruby on Rails Course \| Urdu / Hindi](https://www.youtube.com/playlist?list=PL9WbyKqkuCAYT-IPvo5PxR_hijMuR1RCB) - Code with Naqvi
* [Ruby on Rails Tutorial in Hindi](https://www.youtube.com/playlist?list=PLWWB_UKBNWcuATKL6_MjSkPOMckEgYpcD) - AJ Technical
### Rust
* [Complete Rust Course - Zero to Advanced 2023](https://www.youtube.com/playlist?list=PLOY5k46NyxirlL6Pk3Py6_5SL1EIdXg5c) - Blockchain Wala
* [Rust Complete Tutorial In Hindi](https://www.youtube.com/playlist?list=PLRuqvIc0eAmp8Lv6M4BKQWEinvCuqdVFP) - One Two Coding
* [Rust Programming Complete Tutorial In Hindi 2023.](https://www.youtube.com/playlist?list=PLndmg9UIKNomnnSxd__VKkUX4zT1YpSoY) - Code Your Money
* [Rust-Programming in Hindi](https://www.youtube.com/playlist?list=PL8fnAiiuQeFsss4xdjXyHJ4fT4_w10s3J) - Go Guru
* [Rust Programming Language](https://www.youtube.com/playlist?list=PLinedj3B30sA_M0oxCRgFzPzEMX3CSfT5) - Piyush Garg
### Security
* [Complete Ethical Hacking Tutorial for Beginners to Pro 2022](https://www.youtube.com/playlist?list=PLjVLYmrlmjGea8U9nphmCHGK_v6p_wq-R) - WsCube Tech
* [Cryptography and network security](https://www.youtube.com/playlist?list=PL9FuOtXibFjV77w2eyil4Xzp8eooqsPp8) - Abhishek Sharma
* [Cryptography and Network Security Lecture in Hindi / Urdu for Beginners](https://youtube.com/playlist?list=PLE3bzAX_OzbkQXKbRFqQqbnlGxTNeaUqe) - Katoon Studio
* [cyber security course for beginners - Urdu/Hindi](https://www.youtube.com/playlist?list=PLKJfBg0XdWkevCEJ64RK11LylBNX2-zbk) - hashintelligence
* [Cyber Security Tutorial In Hindi](https://www.youtube.com/playlist?list=PL-JvKqQx2AteIbm-z4X709scVr9OaHpIY) - University Academy
@@ -834,20 +720,13 @@
* [Software Engineering](https://www.youtube.com/playlist?list=PLxCzCOWd7aiEed7SKZBnC6ypFDWYLRvB2) - Gate Smashers
* [Software Engineering](https://www.youtube.com/playlist?list=PLmXKhU9FNesTrw7n8ouPsSLEcduRlENHr) - Knowledge Gate
* [Software Engineering Lectures](https://www.youtube.com/playlist?list=PLV8vIYTIdSnat3WCO9jfehtZyjnxb74wm) - Easy Engineering Classes
### Solidity
* [Solidity ^0.8 \| Blockchain \| In Hindi](https://www.youtube.com/playlist?list=PL-Jc9J83PIiG6_thChXWzolj9BEG-Y0gh) - Pepcoding
* [Solidity Full Course](https://www.youtube.com/playlist?list=PLgPmWS2dQHW9u6IXZq5t5GMQTpW7JL33i) - Code Eater
* [Solidity full course for beginners in Hindi](https://www.youtube.com/playlist?list=PLR0uCBk15bq9a__TgfcZ7oA73MTEZ3NOK) - web3Mantra
* [Software Engineering Lectures](https://youtube.com/playlist?list=PLV8vIYTIdSnat3WCO9jfehtZyjnxb74wm) - Easy Engineering Classes
### Swift
* [Swift Programming For Beginners In Hindi](https://www.youtube.com/playlist?list=PL3IxLTWfZ7Y1zM3EejYkcq4I86K3eloCb) - BuildWithShubham
* [Swift Programming For IOS From Scratch](https://www.youtube.com/playlist?list=PLtCBuHKmdxOd9kxsru5t_MFvDj5o5GdDl) - Fahad Hussain
* [Swift Programming For IOS From Scratch](https://youtube.com/playlist?list=PLtCBuHKmdxOd9kxsru5t_MFvDj5o5GdDl) - Fahad Hussain
* [Swift Programming Hindi Tutorial For Beginners](https://www.youtube.com/playlist?list=PLb5R4QC2DtFv3MvfG42Cd5La34Hwj4pY6) - Code Cat
* [Swift Tutorials For Beginners(Full) in Hindi.](https://www.youtube.com/playlist?list=PLWZIhpNhtvfqBd00bF3ouroGHMPe-iroO) - Yogesh Patel
@@ -862,6 +741,7 @@
### TypeScript
* [Typescript in Hindi](https://www.youtube.com/playlist?list=PL8p2I9GklV44eT51JPju4LsTQlce6DPtx) - Code Step By Step
* [Typescript in Hindi &#124; Crash Course &#124; Coders Gyan](https://www.youtube.com/watch?v=F5pjG-sP0c8) - Coder's Gyan
* [Typescript Tutorial for Beginners in Hindi](https://www.youtube.com/playlist?list=PLwGdqUZWnOp0xfHQFmlL52b_6-QZ0mnk_) - Thapa Technical
* [Typescript Tutorial in Hindi](https://youtube.com/playlist?list=PL8p2I9GklV44eT51JPju4LsTQlce6DPtx) - Code Step By Step
+1 -26
View File
@@ -47,7 +47,6 @@
### Android
* [Belajar Android Studio](https://www.malasngoding.com/category/android-studio/) - Muzanni (Malas Ngoding)
* [Belajar Android Untuk Pemula](https://www.youtube.com/playlist?list=PLCZlgfAG0GXDOP6M6q981yyEG0PDcVyGq) - Sekolah Koding
* [Belajar Fundamental Aplikasi Android](https://www.dicoding.com/academies/14) - Dicoding, membutuhkan registrasi
* [Belajar Membuat Aplikasi Android untuk Pemula](https://www.dicoding.com/academies/51) - Dicoding, membutuhkan registrasi
* [Menjadi Android Developer Expert](https://www.dicoding.com/academies/165) - Dicoding, membutuhkan registrasi
@@ -70,7 +69,6 @@
### Bootstrap
* [Belajar Framework Bootstrap 5](https://www.youtube.com/playlist?list=PL53uJBBtLf5ChsCZp26yEcDQu5ujfhsM8) - Ngoding Pintar
* [Belajar menggunakan bootstrap](https://www.youtube.com/playlist?list=PLCZlgfAG0GXC5wPjJGj1LvFaVK2cbN2GQ) - Sekolah Koding
* [Tutorial Bootstrap 4 Lengkap dalam Bahasa Indonesia](https://www.youtube.com/playlist?list=PLce3Eyp7oY9-o3JavSawkXcazJSYx7KAf) - Framework Indonesia
* [Tutorial Bootstrap 5 untuk Pemula Bahasa Indonesia](https://www.youtube.com/playlist?list=PLnrs9DcLyeJTxqZ4lWgVHXBwFgZEkwp9r) - Cara Fajar
@@ -87,9 +85,7 @@
### <a id="csharp"></a>C\#
* [Belajar C# C-Sharp Lengkap](https://www.youtube.com/playlist?list=PLYMJJHENUMwwiL91VnHhqV_Zy1LANgNVc) - Tech Tawar
* [Belajar Pemrograman C#](https://www.youtube.com/playlist?list=PLuGFxya63u253zhOzhxanaSBNJ_UiIhUb) - Galih Pratama
* [Tutorial Lengkap - Belajar Coding C# Programming untuk Pemula](https://www.youtube.com/playlist?list=PLa6D44cKrtoN9guvynhwiCIdUJ0CJkAMB) - Bimbingan Belajar Coding
### Construct
@@ -103,8 +99,6 @@
* [Dart Indonesia](https://www.youtube.com/playlist?list=PLoNv-2zK-dzEbZSFeGgSnpdp5i_Lwto-8) - CodeWithIhwan
* [Dart Programming Untuk Persiapan Belajar Flutter](https://buildwithangga.com/kelas/dart-programming-untuk-persiapan-belajar-flutter) - Rifqi Eka (BuildWithAngga) *(phone number and email address required)*
* [Pemrograman Berorientasi Objek - Dart](https://www.youtube.com/playlist?list=PLZS-MHyEIRo7cgStrKAMhgnOT66z2qKz1) - Erico Darmawan Handoyo
* [Pemrograman Dart Dasar](https://www.youtube.com/playlist?list=PLbLqbqNn7VYpWt6pC0C1fVNVSYrlJiX9p) - ID Networkers
* [Tutorial Dart](https://www.kevintekno.com/p/tutorial-dart.html) - Kevin Tekno
* [TUTORIAL DART DASAR (BAHASA INDONESIA)](https://www.youtube.com/watch?v=-mzXdI27tyk) - Eko Kurniawan Khannedy, Programmer Zaman Now
* [Tutorial Dart OOP - Bahasa Indonesia](https://www.youtube.com/watch?v=k0ycD2aqPzU) - Eko Kurniawan Khannedy, Programmer Zaman Now
@@ -121,7 +115,6 @@
* [Belajar Docker untuk Pemula](https://www.youtube.com/playlist?list=PL4SGTPmSY0qkxCTe3Gd0wA-bQZChXhsNI) - Giri Kuncoro
* [Mengenal Container dan Docker Sampai Jago Dalam 2 Jam](https://www.youtube.com/watch?v=26O6Ke03j3Y) - Imre Nagi
* [Pengembangan Microservice Dengan Docker Compose](https://www.youtube.com/watch?v=ALGVV5cGUtc) - Imre Nagi
* [Tutorial Docker](https://www.youtube.com/playlist?list=PLZS-MHyEIRo6A7ODX8EWghd0r4HgKjJvy) - Kelas Terbuka
* [Tutorial Docker untuk Pemula](https://www.youtube.com/playlist?list=PL-CtdCApEFH-A7jBmdertzbeACuQWvQao) - Eko Kurniawan Khannedy, Programmer Zaman Now
@@ -146,7 +139,6 @@
### Git
* [ALL Basic Pemul](https://www.youtube.com/playlist?list=PLc6SEcJkQ6DxurcQDUkY_t8cIgXya5Blj) - Dea Afrizal
* [Apa itu GitHub](https://www.youtube.com/playlist?list=PLCZlgfAG0GXCtwnagWsUzZum1CFZYqrB5) - Hilman Ramadhan, Sekolah Koding
* [Belajar Git](https://www.youtube.com/playlist?list=PLuGFxya63u24bmP-ILRaiGeMwZh3PGxW4) - Galih Pratama
* [Belajar GIT (Source Code Management)](https://www.youtube.com/playlist?list=PL8bBYpHH3RI6BlCzFTMQvt7sGSycUj7S-) - Eka Putra, UpKoding
@@ -156,7 +148,6 @@
* [Source Code Management untuk Pemula](https://www.dicoding.com/academies/116) - Dicoding, membutuhkan registrasi
* [Tutorial GIT Bahasa Indonesia Lengkap](https://www.youtube.com/playlist?list=PL1aMeb5UP_PHXTV_Xpt-19x_rVPXrymOM) - IDStack
* [Tutorial Git Dasar](https://www.youtube.com/watch?v=fQbTeNX1mvM) - Programmer Zaman Now
* [Upload Code di Github](https://app.sko.dev/kelas/upload-kode-di-github) - Sekolah Koding
### Go
@@ -180,7 +171,6 @@
### HTML and CSS
* [Belajar CSS](https://alwaysngoding.com/belajar-css/teori) - Muhammad Saleh Solahudin, Always Ngoding (account *required*)
* [Belajar CSS Layout](https://www.youtube.com/playlist?list=PLZS-MHyEIRo5iBPtg3ovrj25C1Wsu4O3I) - Kelas Terbuka
* [Belajar FLEXBOX](https://www.youtube.com/playlist?list=PLFIM0718LjIU1lWlM34j6E9fMlrrSGZ1k) - Web Programming UNPAS
* [Belajar HTML](https://alwaysngoding.com/belajar-html/teori) - Muhammad Saleh Solahudin, Always Ngoding (account *required*)
* [Belajar HTML 5](https://www.youtube.com/playlist?list=PLFIM0718LjIX-K5eeHRImnZhPUMhsw9A7) - Sandhika Galih, Web Programming UNPAS
@@ -192,7 +182,6 @@
* [CSS Website Design](https://www.buildwithangga.com/kelas/css-website-design) - BuildWithAngga
* [CSS3](https://www.youtube.com/playlist?list=PLFIM0718LjIVCmrSWbZPKCccCkfFw-Naa) - Web Programming UNPAS
* [HTML Dasar](https://www.youtube.com/playlist?list=PLFIM0718LjIVuONHysfOK0ZtiqUWvrx4F) - Web Programming UNPAS
* [HTML Dasar](https://www.youtube.com/playlist?list=PLZS-MHyEIRo7FTCFuVfsbpllsoAs53xDn) - Kelas Terbuka
* [HTML5 Canvas](https://www.youtube.com/playlist?list=PL0-7Xi0GB3teW5TsBQmD2MzLU5ryjXkVE) - Idr Corner
* [HTML5 Dasar](https://www.buildwithangga.com/kelas/html5-dasar) - BuildWithAngga
* [HTML5 Pemula Dasar](https://www.petanikode.com/html-dasar/) - petanikode
@@ -207,7 +196,6 @@
* [Belajar Java Bahasa Indonesia (Dasar)](https://www.youtube.com/playlist?list=PLZS-MHyEIRo51w0Hmqi0C8h2KWNzDfo6F) - Kelas Terbuka
* [Belajar Java OOP Bahasa Indonesia](https://www.youtube.com/playlist?list=PLiuHSY2x882bBLmmli1ly06MWZY-EOqX8) - Imam Farisi
* [Belajar Java Untuk Pemula](https://www.youtube.com/playlist?list=PLCZlgfAG0GXDUvrO3Bc_VUvIjWKnYIRJ1) - Hilman Ramadhan, Sekolah Koding
* [Belajar Pemrograman Java dengan VSCode](https://www.youtube.com/playlist?list=PL53uJBBtLf5CsXG4Sx77dNMsrTser-ppH) - Ngoding Pintar
* [Java Dasar](https://www.malasngoding.com/category/java/) - Muzanni (Malas Ngoding)
* [JAVA TUTORIAL - BAHASA INDONESIA](https://www.youtube.com/playlist?list=PL-CtdCApEFH-p_Q2GyK4K3ORoAT0Yt7CX) - Eko Kurniawan Khannedy, Programmer Zaman Now
* [Memulai Pemrograman dengan Java](https://www.dicoding.com/academies/60) - Dicoding, membutuhkan registrasi
@@ -223,14 +211,10 @@
### JavaScript
* [Belajar Angular JS](https://www.youtube.com/playlist?list=PLCZlgfAG0GXBD2nko3bXRs-JSDNA8tNvq) - Sekolah Koding
* [Belajar es6 - javacsript gaya baru](https://www.youtube.com/playlist?list=PLCZlgfAG0GXBWhs2AwMdPyKtMG2cF4YSR) - Sekolah Koding
* [Belajar Full-stack JavaScript Dengan Next.js Dalam 6 Jam](https://www.youtube.com/watch?v=kproo1ezjH0&t=2s) - Nauval, Array Id
* [Belajar Java Bahasa Indonesia (Dasar)](https://www.youtube.com/playlist?list=PLZS-MHyEIRo51w0Hmqi0C8h2KWNzDfo6F) - Kelas Terbuka
* [Belajar JavaScript](https://alwaysngoding.com/belajar-javascript/teori) - Muhammad Saleh Solahudin, Always Ngoding (account *required*)
* [Belajar JavaScript Async](https://www.youtube.com/playlist?list=PL-CtdCApEFH-I4CD6km3BcXqrhWAkY4et) - Eko Kurniawan Khannedy, Programmer Zaman Now
* [Belajar JavaScript Dasar](https://www.youtube.com/playlist?list=PLZS-MHyEIRo6rAu3mYVNs2_y-fbJaOH5R) - Kelas Terbuka
* [Belajar JavaScript Untuk Website](https://app.sko.dev/kelas/belajar-javascript-untuk-website) - sko.dev
* [Dasar Pemrograman dengan JavaScriipt](https://www.youtube.com/playlist?list=PLFIM0718LjIWXagluzROrA-iBY9eeUt4w) - Web Programming UNPAS
* [ExpressJS Tutorial Indonesia](https://www.youtube.com/playlist?list=PL9At9z2rvOC-sgzJx7rM_wMDONnEM4E0A) - Ekky Ridyanto (Balademy)
* [JavaScript dan DOM (Document Object Model)](https://www.youtube.com/playlist?list=PLFIM0718LjIWB3YRoQbQh82ZewAGtE2-3) - Web Programming UNPAS
@@ -305,7 +289,6 @@
### Linux
* [Belajar linux fundamentals](https://youtube.com/playlist?list=PLbLqbqNn7VYpnd7FggSeq18AgE4gdsy2F) - ID-Networkers
* [Instalasi & Review Linux](https://www.youtube.com/playlist?list=PL2O3HdJI4voEclcVMPqHoS6GSgcVNGIjy) - Indonesia Belajar
* [Linux Pemula](https://www.youtube.com/playlist?list=PLACzo3mGgHK_D2wkGu4AvUAQiqLC30PTz) - LINUXcare
* [Tutorial Terminal Linux Bahasa Indonesia](https://www.youtube.com/playlist?list=PLy1BHEa_Wr-cpjWY5uOqsMxQwiQrRnC8B) - ArtAway
@@ -329,7 +312,6 @@
### MongoDB
* [Belajar MongoDB](https://www.youtube.com/playlist?list=PL-CtdCApEFH-eFFdPeS5e16o3THdmvxvz) - Eko Kurniawan Khannedy, Programmer Zaman Now
* [MongoDB Tutorial Indonesia](https://www.youtube.com/playlist?list=PLhzwHCJWMbnu830iJ8xLcXgbnklmXpSK5) - Pojok Code
### MySQL
@@ -343,7 +325,6 @@
### PHP
* [Belajar PHP](https://alwaysngoding.com/belajar-php/teori) - Muhammad Saleh Solahudin, Always Ngoding (account *required*)
* [Belajar PHP Dasar](https://www.youtube.com/playlist?list=PL53uJBBtLf5AiyMU-LMqIx7uz3-ozRTlb) - Ngoding Pintar
* [Belajar PHP untuk PEMULA](https://www.youtube.com/playlist?list=PLFIM0718LjIUqXfmEIBE3-uzERZPh3vp6) - Web Programming UNPAS
* [Membuat Aplikasi MVC dengan PHP](https://www.youtube.com/playlist?list=PLFIM0718LjIVEh_d-h5wAjsdv2W4SAtkx) - Web Programming UNPAS
* [OOP Dasar pada PHP](https://www.youtube.com/playlist?list=PLFIM0718LjIWvxxll-6wLXrC_16h_Bl_p) - Web Programming UNPAS
@@ -365,7 +346,6 @@
#### Laravel
* [Belajar CRUD Laravel 8 + Livewire](https://www.youtube.com/playlist?list=PLEgI20pG1DqzAa8npy9C_NDUvYwhslUb4) - Muhammad Amirul Ihsan (Kawan Koding)
* [Belajar Laravel 5](https://www.youtube.com/playlist?list=PLCZlgfAG0GXDlNd0Flz20xksNtJQZWywz) - Sekolah Koding
* [Belajar Laravel 7 Dari Awal](https://www.youtube.com/playlist?list=PLRKMmwY3-5MxfIKTn_wZ49XlplwHtz1AV) - Irsyad A. Panjaitan (Parsinta)
* [Belajar Laravel 8](https://www.youtube.com/playlist?list=PLFIM0718LjIWiihbBIq-SWPU6b6x21Q_2) - Sandhika Galih, Web Programming UNPAS
* [Belajar Laravel 8 Dari Awal](https://www.youtube.com/playlist?list=PLRKMmwY3-5MwADhthqRaewl-7e7AhjpP8) - Irsyad A. Panjaitan (Parsinta)
@@ -392,8 +372,8 @@
* [OpenCV untuk Pemula](https://www.youtube.com/playlist?list=PLl-Zj2iuqlwt4cBsBy_Ej7gNlXdQ7blCB) - NgodingPython
* [Python](https://codesaya.com/python/) - CodeSaya
* [Python (dasar)](https://www.youtube.com/playlist?list=PLT2AwM1dOOUe27iCPe68Z0qwwDeNyJawN) - beecoder id *(Dalam Proses)*
* [Tutorial Belajar Machine Learning Dasar | Python Scikit-Learn](https://www.youtube.com/playlist?list=PL2O3HdJI4voHNEv59SdXKRQVRZAFmwN9E) - Indonesia Belajar
* [Tutorial Belajar Python Pandas](https://www.youtube.com/playlist?list=PL2O3HdJI4voGdD_9xhVCTBoDTDNHpajm5) - Indonesia Belajar
* [Tutorial Dasar Pemrograman Python](https://www.petanikode.com/tutorial/python/) - PetaniKode
* [Tutorial Python Beginner Bahasa Indonesia](https://www.youtube.com/watch?v=rWC2iFlN3TM) - Agung Setiawan
* [Tutorial Python GUI dengan TKinter](https://www.youtube.com/playlist?list=PL2O3HdJI4voHjX09IpdsiSBNnLRaR-CbJ) - Indonesia Belajar
* [Tutorial Python OOP Object Oriented Programming Bahasa Indonesia - Full Course](https://www.youtube.com/watch?v=b6Y5CzFM0Oc) - Agung Setiawan
@@ -409,14 +389,12 @@
### Flask
* [Belajar Membuat Website Dengan Flask Python](https://www.youtube.com/playlist?list=PL8q4s70ndvwfD1Nbrl5iYsgSWVStCXo5h) - Riffa Media
* [Membuat website dengan Flask](https://www.youtube.com/playlist?list=PLCZlgfAG0GXCZwaY3F4bHikozOBzrFD_R) - Sekolah Koding
* [Tutorial web dengan flask sampai mahir](https://www.youtube.com/playlist?list=PL5vG7_Y90KtxXH4YhDcb5m4n82ShAPnPc) - Toufan RA
### PyTorch
* [Course 5 \| Pengantar Deep Learning \| Tutorial Bahasa Indonesia](https://www.youtube.com/playlist?list=PLGn1wRmlR3Mtz5i4k4qyd5qQjOtm9JSC6) - JCOp Untuk Indonesia
* [PyTorch untuk Pemula](https://www.youtube.com/playlist?list=PLl-Zj2iuqlwvMCvaX_4POywGiw4TFuHp1) - NgodingPython
@@ -427,7 +405,6 @@
### Rust
* [Belajar bahasa pemrograman Rust!](https://www.youtube.com/watch?v=1gRIAVwDlb4&pp=ygUMYmVsYWphciBydXN0) - Ngooding
* [Belajar Rust](https://www.youtube.com/playlist?list=PLIfsrcorUur10nUSHVq9Mb4yWu87_5lZn) - Dev Activity
@@ -447,7 +424,6 @@
### Terraform
* [Belajar Terraform untuk Pemula](https://www.youtube.com/playlist?list=PL4SGTPmSY0qngs44Ssc0RHO9h4fmZ9JUb) - Giri Kuncoro
* [DevOps 101](https://www.youtube.com/playlist?list=PLvhu7dkzS_I3T1WlDMJjS85L4In-WYLN_) - Iqbal Syamil
### TypeScript
@@ -455,5 +431,4 @@
* [Belajar Typescript Dasar Bahasa Indonesia](https://www.youtube.com/playlist?list=PLiuHSY2x882Z4NSJGNq0eB9Fz6tIx-CgO) - Imam Farisi
* [Belajar Typescript OOP Bahasa Indonesia](https://www.youtube.com/playlist?list=PLiuHSY2x882a-sLbdqZTtraO3cl0Clwg0) - Imam Farisi
* [OOP TypeScript](https://www.youtube.com/playlist?list=PLnQvfeVegcJZRieebeIp0xj1NeC5L633Y) - Nusendra Hanggarawan
* [Tutorial TypeScript Dasar](https://www.youtube.com/watch?v=C_C64faSO4c) - Eko Kurniawan Khannedy, Programmer Zaman Now
* [TypeScript Dasar](https://www.youtube.com/playlist?list=PLnQvfeVegcJbjCnML6FdusK-rl-oDRMXJ) - Nusendra Hanggarawan
+1 -23
View File
@@ -18,13 +18,11 @@
* [Java](#java)
* [JavaScript](#javascript)
* [Vue.js](#vuejs)
* [Julia](#julia)
* [Machine Learning](#machine-learning)
* [Misto](#misto)
* [Mobile](#mobile)
* [Networking](#networking)
* [Pascal](#pascal)
* [Php](#php)
* [Programmazione](#programmazione)
* [Python](#python)
* [Ruby](#ruby)
@@ -60,7 +58,6 @@
### Assembly
* [Assembler x86](https://www.youtube.com/playlist?list=PLUJjY3hQLJ3NHQ9315KVvgiZ3v2FLtcbs)
* [Assembly x86](https://www.youtube.com/playlist?list=PL4GzWsD6ECaXVzneIlSV62plQPdWXIZ_h) - Leonardo Boselli
### Bash / Shell
@@ -72,7 +69,6 @@
* [Corso C Italiano](https://www.youtube.com/playlist?list=PLP5MAKLy8lP9J2blw2HWEDnaNjmvUW-QG) - Edoardo Midali
* [Corso di programmazione in C](https://www.youtube.com/playlist?list=PLO4y9a8lTpK2ugwPRLN_1oOrlzX9Zc9It) - R. Rizzi, Universit├а di Verona
* [Corso di programmazione in C](https://www.youtube.com/playlist?list=PLrEMgOSrS_3cFJpM2gdw8EGFyRBZOyAKY) - Salvatore Sanfilippo
* [Linguaggio C - Corso completo](https://www.youtube.com/playlist?list=PL83Ordjpzm5oUl7tFEjc4iirkPBiv7FxR) - Programmazione Time
@@ -84,7 +80,6 @@
### <a id="cpp"></a>C++
* [C++ 11](https://www.youtube.com/playlist?list=PL0qAPtx8YtJfZpJD7uFxAXglkiHSEhktG) - Fabrizio Camuso
* [C++ 23/26 - Modern First](https://www.youtube.com/playlist?list=PLd6QTB-nRibM85WylqKvcmdMMxdOLnwiP) - Fabrizio Camuso
* [C++ libreria QT - playlist 1](https://www.youtube.com/playlist?list=PL0qAPtx8YtJdH4GVwL_3QeJjPcz3DHE2t) - Fabrizio Camuso
* [Corso C++ 2023](https://www.youtube.com/playlist?list=PLP5MAKLy8lP85m_fZy3TkWqB_8Zt5Q5aK) - Edoardo Midali
@@ -109,7 +104,6 @@
### DevOps
* [Corso DevOps](https://www.youtube.com/playlist?list=PLU2FPKLp7ojKcxrKXr1cFmXH81tMK4P3E) - Michele Ferracin
* [DevOps con GitHub Actions](https://www.youtube.com/playlist?list=PLoZNHBEyxFQHOR8EiAD_tQnRAP49_Ev24) - Giovanni Pace
* [Docker - EmmeCiLab](https://www.youtube.com/playlist?list=PLCbSCJEIR6CpDJw4MawjHlgbsP3IG376e) - Mauro Cicolella
@@ -137,7 +131,6 @@
### Java
* [Corso Base Spring Boot](https://www.youtube.com/playlist?list=PLoZNHBEyxFQHFkgxYwri50YEmbiRADl-O) - Giovanni Pace
* [Corso di Java Spring Framework](https://www.youtube.com/playlist?list=PLCbSCJEIR6CqgCLyVzqp49xOm8A5YDTKA) - Mauro Cicolella
* [Corso di JPA Java Persistence API](https://www.youtube.com/playlist?list=PLCbSCJEIR6Co1aPvFfPuIsRGouF9D0Jk3) - Mauro Cicolella
* [Corso Java in Italiano COMPLETO 2023/2024](https://www.youtube.com/playlist?list=PLUnSLr48xh3CAuL_Q0VAjthv0WbPuQQRR) - Code Brothers
@@ -145,8 +138,7 @@
* [Esercitazioni di Spring Boot](https://www.youtube.com/playlist?list=PLCbSCJEIR6CpGchit9OCI6fX_qVYs78d_) - Mauro Cicolella
* [Java EE](https://www.youtube.com/playlist?list=PLjGYWJ4Dcy-erfReHXB9Ush0cREGSmyIe) - Sonia Zorba
* [Programmazione a Oggetti (Java)](https://www.youtube.com/playlist?list=PLUFFnpJdi99kewGZIHpCDgarZER_-J1am) - M. Torchiano, Politecnico di Torino
* [Programmazione ad Oggetti - Java](https://www.youtube.com/playlist?list=PLhlcRDRHVUzTruZmXalUSJAK26pouP8ST) - Nicola Bicocchi
* [Spring Boot su Docker](https://www.youtube.com/playlist?list=PLoZNHBEyxFQGdNvr_5mMikHxuv2YHPjDz) - Giovanni Pace
* [Programmazione ad Oggetti - Java](https://www.youtube.com/playlist?list=PLhlcRDRHVUzTruZmXalUSJAK26pouP8ST) - Nicola Bicocchi
### JavaScript
@@ -162,15 +154,9 @@
* [Vue 2.x (corso base)](https://www.youtube.com/playlist?list=PL0qAPtx8YtJdUH44fvkzVxy9waP23I_bE) - Fabrizio Camuso
### Julia
* [Corso di linguaggio Julia](https://www.youtube.com/playlist?list=PL4GzWsD6ECaWvDCPuPB9OxdIye8IZXCuE) - Leonardo Boselli
### Machine Learning
* [Machine Learning in italiano col Pollo Watzlawick](https://www.youtube.com/playlist?list=PLa-sizbCyh93c0nSPAb8k5ZZeOq4SBIl9) - Piero Savastano
* [Machine Learning Reti Neurali](https://www.youtube.com/playlist?list=PL-tCoHPn6YlbCQHeyRxc_CQ0f1VZsUD6D) - Davide Manzoni (Brainlink)
### Misto
@@ -197,11 +183,6 @@
* [Videocorso Pascal (Turbo e FPC)](https://www.youtube.com/playlist?list=PLC98ABC853EAEFD7F) - Fabrizio Camuso
### Php
* [Corso PHP Completo 2023](https://www.youtube.com/playlist?list=PLP5MAKLy8lP_zqdyjNaPjh95NG40Op8he) - Edoardo Midali
### Python
* [Corso Python 2016](https://www.youtube.com/playlist?list=PLA27EZBY5veOa-dbNIetJvyrAuoVy4zDD) - POuL Politecnico di Milano
@@ -244,7 +225,6 @@
#### Git
* [Corso Git 2017](https://www.youtube.com/playlist?list=PLA27EZBY5veN02RzEr6Ecm7KcjWadthBh) - POuL Politecnico di Milano
* [Dominare GIT - La Guida Completa per Principianti e Professionisti](https://www.youtube.com/playlist?list=PLoZNHBEyxFQFc2fn3raEjovUK_BLWS0kO) - Giovanni Pace
#### Maven
@@ -255,13 +235,11 @@
### Web
* [Computer grafica 2017/2018](https://www.youtube.com/playlist?list=PLUFFnpJdi99kXjntQ0LNPnLbRLjKzmQaC) - A. Bottino, Politecnico di Torino
* [Corso Bootstrap Italiano](https://www.youtube.com/playlist?list=PLP5MAKLy8lP_boQ2FBTSvA1fU73x2BiEv) - Edoardo Midali
* [Corso CSS 3 Completo 2023](https://www.youtube.com/playlist?list=PLP5MAKLy8lP-a0MG-MFHKCISmj2Wg4vT6) - Edoardo Midali
* [Corso Flutter 2020](https://www.youtube.com/playlist?list=PLFD-5ZFcEgYX5q5pobSkQGfC6rMYy_puq) - Angelo Cassano
* [Corso HTML 5 Completo 2023](https://www.youtube.com/playlist?list=PLP5MAKLy8lP8U-yYn6J4hGfcee4Tirieg) - Edoardo Midali
* [Corso HTML 5 Italiano 2023](https://www.youtube.com/playlist?list=PL6PilnEO6HWbTXL8nLSkp-875H-x-vhEo) - Manuel Ricci
* [Corso SEO Italiano 2023](https://www.youtube.com/playlist?list=PLP5MAKLy8lP9OpFQyF2LnTWgtcoDLgYm7) - Edoardo Midali
* [Corso Typescript 2023](https://www.youtube.com/playlist?list=PLP5MAKLy8lP--n8iUsDsFMuTiKW5ooZE6) - Edoardo Midali
* [Mini Corso React / TypeScript / TSX 2023](https://www.youtube.com/playlist?list=PLUioGv_6G9YJw8uZb040obhcCi8tQX9IQ) - Fabio Biondi
* [Progettazione di applicazioni Web](https://www.youtube.com/playlist?list=PLE0AA1735F10543A6) - Fulvio Corno, S. Di Carlo, Politecnico di Torino
-6
View File
@@ -2,7 +2,6 @@
* [0 - хдзшжПцибхЕмщЦЛуВкуГ│уГйуВдуГ│шмЫх║з(MOOC)](#0---mooc)
* [Scratch](#scratch)
* [ф║║х╖ечЯешГ╜](#ф║║х╖ечЯешГ╜)
### <a id="0---mooc"></a>0 - хдзшжПцибхЕмщЦЛуВкуГ│уГйуВдуГ│шмЫх║з(MOOC)
@@ -13,8 +12,3 @@
### Scratch
* [Scratch for CS First уБзуГЧуГнуВ░уГйуГЯуГ│уВ░уВТуБпуБШуВБуВИуБЖ](https://csfirst.withgoogle.com/c/cs-first/ja/welcome-to-cs-first/overview.html) - Grow with Google уГЧуГнуВ░уГйуГа (Google/Scratch уВвуВлуВжуГ│уГИуБМ*х┐ЕшжБ* тА╗х┐ЕщаИуБзуБпуБкуБД)
### ф║║х╖ечЯешГ╜
* [хИЭх┐ГшАЕхРСуБС чФЯцИР AI .NET уВ│уГ╝уВ╣](https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/translations/ja) - Microsoft (GitHub)
+2 -3
View File
@@ -16,6 +16,7 @@
### HTML and CSS
* [CSS in Kannada (р▓Хр▓ир│Нр▓ир▓бр▓жр▓▓р│Нр▓▓р▓┐) - Beginner to Advanced.](https://youtube.com/playlist?list=PLBGSzVCM24iHnpfOMnhuyiyEo_NGSxdPD) - DEBUG CODING
* [HTML and CSS in Kannada || Web Designing in Kannada || CSS in Kannada || Html in Kannada](https://youtube.com/playlist?list=PLBVoFEaXQzK3F2BN7ZbXb_EpnDMAlJsPo) - Learn Tech in Kannada
* [HTML in Kannada (р▓Хр▓ир│Нр▓ир▓бр▓жр▓▓р│Нр▓▓р▓┐) - Beginners to Advanced](https://youtube.com/playlist?list=PLBGSzVCM24iHCjyPxCZBbZSNIiFS7vDFl) - DEBUG CODING
@@ -23,7 +24,7 @@
* [JavaScript course in Kannada](https://youtube.com/playlist?list=PLUZkVL-W-8GJVkp8Az0SAWqmDPv5b2Tn9) - script kiddie
* [JavaScript for Beginners in Kannada(Full Course)](https://www.youtube.com/playlist?list=PLQztdyH5OY4BvjvmU0PV8nTevqXjYcYEE) - MicroDegree р▓Хр▓ир│Нр▓ир▓б
* [React JS Tutorial Series in Kannada](https://www.youtube.com/playlist?list=PLUZkVL-W-8GIYC4-b8Q8PX2M9Z1DWy8Hr) - Script kiddie
* [Javascript tutorial in Kannada || Javascript in Kannada || Complete Javascript in Kannada](https://youtube.com/playlist?list=PLBVoFEaXQzK0ybl-O3g_2_PswaLzNGbb8) - Learn Tech in Kannada
### PLC
@@ -35,5 +36,3 @@
* [Learn Python in Kannada](https://youtube.com/playlist?list=PLlGueSbLhZoD_mUatMaJsVukJ2Re3JAUj) - Engineering in Kannada
* [python complete course in Kannada](https://youtube.com/playlist?list=PLUZkVL-W-8GKpo--HuELu27Lkc308fNXe) - script kiddie
+70 -72
View File
@@ -6,17 +6,18 @@
* [ASP.NET](#aspnet)
* [C/C++](#cc)
* [C#](#csharp)
* [Circuit](#circuit)
* [Deep Learning](#deep-learning)
* [Flutter](#flutter)
* [Generative AI](#generative-ai)
* [Git](#git)
* [Go](#go)
* [Haskell](#haskell)
* [Introduction](#introduction)
* [iOS](#ios)
* [Java](#java)
* [JavaScript](#javascript)
* [AngularJS](#angularjs)
* [React.js](#reactjs)
* [Svelte](#svelte)
* [Kotlin](#kotlin)
* [Linux](#linux)
* [Machine Learning](#machine-learning)
@@ -34,7 +35,7 @@
* [Security](#security)
* [Spring](#spring)
* [Swift](#swift)
* [Unity](#unity)
* [Unreal Engine](#unreal-engine)
* [Web Development](#web-development)
* [WebRTC](#webrtc)
* [Windows](#windows)
@@ -42,20 +43,20 @@
### Algorithms & Data Structures
* [ьЛдьаД ьХМъ│аыжмьжШ ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdDHxCvAQS1_6XV4deOwfVrz) - ыПЩы╣ИыВШ
* [ьХМъ│аыжмьжШ ъ░ХьвМ](https://www.youtube.com/playlist?list=PLNvbgg5to7cfAx80VeQFW1Sq1mHGfiECo) - ъ╢МьШдэЭа
* [ьЭ┤ьГБьзДьЭШ ьЮРыгМъ╡мьб░ (2017)](https://www.youtube.com/playlist?list=PL7mmuO705dG12pP82RPUR3wdD5dbYu9gZ) - эФДыжмыаЙ
* [ьЛдьаД ьХМъ│аыжмьжШ ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdDHxCvAQS1_6XV4deOwfVrz)
* [ьХМъ│аыжмьжШ ъ░ХьвМ](https://www.youtube.com/playlist?list=PLNvbgg5to7cfAx80VeQFW1Sq1mHGfiECo) (ы╢Аъ▓╜ыМА ъ╢МьШдэЭа)
* [ьЭ┤ьГБьзДьЭШ ьЮРыгМъ╡мьб░](https://www.youtube.com/playlist?list=PL7mmuO705dG12pP82RPUR3wdD5dbYu9gZ)
### Android
* [ьХИыУЬыбЬьЭ┤ыУЬ ьКдэКЬыФФьШд ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdB6sCgj_jubp8KPb1ni0VOC) - ыПЩы╣ИыВШ
* [ьХИыУЬыбЬьЭ┤ыУЬ ьКдэКЬыФФьШд ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdB6sCgj_jubp8KPb1ni0VOC)
* [ьХИыУЬыбЬьЭ┤ыУЬ ьКдэКЬыФФьШд ьЛдьаД эФДыбЬьаЭэК╕](https://www.youtube.com/playlist?list=PLRx0vPvlEmdD862e43ADbvDeGPUZKDuqL)
* [ьХИыУЬыбЬьЭ┤ыУЬ эФДыбЬъ╖╕ыЮШы░Н ъ│аъ╕Й](https://www.youtube.com/playlist?list=PL9mhQYIlKEhcXoTW9RwEf_7UTMcAJaink) - T ьХДь╣┤ыН░ып╕
* [ьХИыУЬыбЬьЭ┤ыУЬ эФДыбЬъ╖╕ыЮШы░Н ьЭСьЪй](https://www.youtube.com/playlist?list=PL9mhQYIlKEhd0NndsEQc0in36Oegm3ldE) - T ьХДь╣┤ыН░ып╕
* [ьХИыУЬыбЬьЭ┤ыУЬ эФДыбЬъ╖╕ыЮШы░Н ьдСъ╕Й](https://www.youtube.com/playlist?list=PL9mhQYIlKEhc7o2HHixQi0PU2sQVerRW2) - T ьХДь╣┤ыН░ып╕
* [ьХИыУЬыбЬьЭ┤ыУЬ эФДыбЬъ╖╕ыЮШы░Н ь┤Иъ╕Й](https://www.youtube.com/playlist?list=PL9mhQYIlKEhcAHpIweCixdDrPoXv5bXGx) - T ьХДь╣┤ыН░ып╕
* [Do it! ьХИыУЬыбЬьЭ┤ыУЬ ьХ▒ эФДыбЬъ╖╕ыЮШы░Н (2018)](https://www.youtube.com/playlist?list=PLG7te9eYUi7sq701GghpoSKe-jbkx9NIF)
* [ьХИыУЬыбЬьЭ┤ыУЬ эФДыбЬъ╖╕ыЮШы░Н ъ│аъ╕Й](https://www.youtube.com/playlist?list=PL9mhQYIlKEhcXoTW9RwEf_7UTMcAJaink) (T ьХДь╣┤ыН░ып╕)
* [ьХИыУЬыбЬьЭ┤ыУЬ эФДыбЬъ╖╕ыЮШы░Н ьЭСьЪй](https://www.youtube.com/playlist?list=PL9mhQYIlKEhd0NndsEQc0in36Oegm3ldE) (T ьХДь╣┤ыН░ып╕)
* [ьХИыУЬыбЬьЭ┤ыУЬ эФДыбЬъ╖╕ыЮШы░Н ьдСъ╕Й](https://www.youtube.com/playlist?list=PL9mhQYIlKEhc7o2HHixQi0PU2sQVerRW2) (T ьХДь╣┤ыН░ып╕)
* [ьХИыУЬыбЬьЭ┤ыУЬ эФДыбЬъ╖╕ыЮШы░Н ь┤Иъ╕Й](https://www.youtube.com/playlist?list=PL9mhQYIlKEhcAHpIweCixdDrPoXv5bXGx) (T ьХДь╣┤ыН░ып╕)
* [Do it! ьХИыУЬыбЬьЭ┤ыУЬ ьХ▒ эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PLG7te9eYUi7sq701GghpoSKe-jbkx9NIF)
### Arduino
@@ -70,22 +71,24 @@
### C/C++
* [(ъ░ЬьаХэМР) C ьЦ╕ьЦ┤ ь┤Иы│┤ ъ░ХьЭШ](https://www.youtube.com/playlist?list=PLMsa_0kAjjreuGLbwYdkrCTXxfJIrmmA6) - ыВШыПДь╜ФыФй
* [ыСРыУдыВЩьДЬьЭШ C/C++ ъ░ХьвМ](https://www.youtube.com/playlist?list=PLlJhQXcLQBJqywc5dweQ75GBRubzPxhAk)
* [ы░ХьаХып╝ьЭШ C ьЦ╕ьЦ┤ы│╕ьГЙ](https://www.youtube.com/playlist?list=PL7mmuO705dG3Z4iSqwzztuPHF3YE8mlbw)
* [ьФ╣ьЦ┤ыи╣ыКФ C](https://modoocode.com/231) - ьЭ┤ьЮмы▓Ф
* [ьФ╣ьЦ┤ыи╣ыКФ C++](https://modoocode.com/135) - ьЭ┤ьЮмы▓Ф
* [ь╡ЬэШ╕ьД▒ьЭШ C эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PLXvgR_grOs1BiznAEkzQdA9tlcA06qx75)
* [C ьЦ╕ьЦ┤ ь┤Иы│┤ ъ░ХьЭШ](https://www.youtube.com/playlist?list=PLMsa_0kAjjrdiwQykI8eb3H4IRxLTqCnP) - ыВШыПДь╜ФыФй
* [CьЦ╕ьЦ┤ ъ╕░ь┤И эФДыбЬъ╖╕ыЮШы░Н ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdDNHeulKC6JM25MmZVS_3nT)
* [CьЦ╕ьЦ┤ ь╜ФыФйыПДьЮе](https://dojang.io/course/view.php?id=2)
### <a id="csharp"></a>C#
### <a id="csharp"></a>C\#
* [ыИИьЬ╝ыбЬ ы│┤ыКФ C# эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PLTFRwWXfOIYBmr3fK17E0VhKPyYrGy75z) - ыИИь╜ФыФй
* [ьШИьаЬыбЬ ы░░ьЪ░ыКФ C# ъ░ХьвМ](https://www.youtube.com/playlist?list=PL4PkN2EXiuVF3Xl0HNVMdY-_kMM3oyBds)
* [C# ъ╕░ь┤И - ьШИьаЬыбЬ ы░░ьЪ░ыКФ C# эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PLiNvMfa_Y5hfgpgd3hgXdHACCZuIEozjL) - csharpstudy
* [C# ьдСъ╕Й - ьШИьаЬыбЬ ы░░ьЪ░ыКФ C# эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PLiNvMfa_Y5hdz3Pitggrisaam_35ZqdtE) - csharpstudy
### Circuit
* [ыЕ╝ыжмэЪМыбЬ](http://socw.skku.edu/Lectures/Regular/Detail.do) (ьД▒ъ╖аъ┤АыМА ъ╣Аым╕эШД)
### Deep Learning
@@ -102,15 +105,8 @@
* [Flutter ьдСъ╕Й](https://www.youtube.com/playlist?list=PLxTmPHxRH3VWLY-eyQuV1C_IbIQlCXEhe) - ьШдьдАьДЭьЭШ ьГЭьб┤ь╜ФыФй
### Generative AI
* [ь┤Иы│┤ьЮРые╝ ьЬДэХЬ Generative AI .NET - ъ░ХьвМ](https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/translations/ko) - Microsoft (GitHub)
### Git
* [12ъ░АьзА ыкЕыа╣ьЦ┤ыбЬ ы░░ьЪ░ыКФ Git](https://www.youtube.com/playlist?list=PLcqDmjxt30RvjqpIBi4mtkK5LkzYtXluF) - ZeroCho TV
* [ьЬаэКЬы╕МыбЬ ы░░ьЪ░ыКФ ь╜ФыФй Git ъ░ХьвМ](https://www.youtube.com/playlist?list=PLHF1wYTaCuixewA1hAn8u6hzx5mNenAGM) - ьШБьЪ▒ ьКдэКЬыФФьШд
* [GIT1](https://www.opentutorials.org/course/3837) - ьГЭэЩЬь╜ФыФй
@@ -120,24 +116,35 @@
* [ь╗┤ыз╣ьЭД ьЬДэХЬ эФДыбЬъ╖╕ыЮШы░Н ъ╕░ь┤И ъ░ХьвМ](https://www.youtube.com/playlist?list=PLy-g2fnSzUTAaDcLW7hpq0e8Jlt7Zfgd6)
### Haskell
* [эХШьКдь╝И эФДыбЬъ╖╕ыЮШы░Н: эФДыбЬъ╖╕ыЮШы░Нъ│╝ ьЬаэШХ ьЭ┤ыба(Type Theory)](https://www.youtube.com/playlist?list=PL5aSjzJqCaPaoi8yC2w549FsVgvXW5xFW) - Gyesik Lee ┬лliga nega┬╗
### Introduction
* [ь╗┤эУиэД░ эФДыбЬъ╖╕ыЮШы░Н](http://www.kocw.net/home/search/kemView.do?kemId=1322410)
* [ь╗┤эУиэД░ъ│╡эХЩ ьЮЕым╕](http://www.kocw.net/home/search/kemView.do?kemId=1323143)
### iOS
* [iPhone эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PL9mhQYIlKEhdQ8viJACIwxIcUiXU2lMLX) - TьХДь╣┤ыН░ып╕
* [iPhone эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PL9mhQYIlKEhdQ8viJACIwxIcUiXU2lMLX) (T ьХДь╣┤ыН░ып╕)
### Java
* [Do it! Java эФДыбЬъ╖╕ыЮШы░Н ьЮЕым╕](https://www.youtube.com/playlist?list=PLG7te9eYUi7typZrH4fqXvs4E22ZFn1Nj) - ьЭ┤ьзАьКдэН╝ы╕ФыжмьЛ▒
* [Java ъ╕░ь┤И эФДыбЬъ╖╕ыЮШы░Н ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdBjfCADjCc41aD4G0bmdl4R) - ыПЩы╣ИыВШ
* [Java ыжмыУмъ▓МьЮД ызМыУдъ╕░ ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdDySO3wDqMYGKMVH4Qa4QhR) - ыПЩы╣ИыВШ
* [Java ьЮЕым╕ьИШьЧЕ](https://www.opentutorials.org/course/3930) - ьГЭэЩЬь╜ФыФй
* [Java with ьЭ╕эБмыаИэММьКд](https://www.youtube.com/playlist?list=PLa4r6B21Ny5ld_PTqzzqDMxxoj7l0z7Xp) - ьЭ╕эБмыаИэММьКдьЬ╡эХйSWъ╡РьЬбьД╝эД░
* [Do it! Java эФДыбЬъ╖╕ыЮШы░Н ьЮЕым╕](https://www.youtube.com/playlist?list=PLG7te9eYUi7typZrH4fqXvs4E22ZFn1Nj)
* [Java ъ╕░ь┤И эФДыбЬъ╖╕ыЮШы░Н ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdBjfCADjCc41aD4G0bmdl4R)
* [Java ыжмыУмъ▓МьЮД ызМыУдъ╕░ ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdDySO3wDqMYGKMVH4Qa4QhR)
* [Java ьЮЕым╕ьИШьЧЕ](https://www.opentutorials.org/course/3930) (ьГЭэЩЬь╜ФыФй)
* [Java with ьЭ╕эБмыаИэММьКд](https://www.youtube.com/playlist?list=PLa4r6B21Ny5ld_PTqzzqDMxxoj7l0z7Xp)
### JavaScript
* [JavaScript ьЮЕым╕ ьИШьЧЕ (2014)](https://www.youtube.com/playlist?list=PLuHgQVnccGMA4uSig3hCjl7wTDeyIeZVU) - ьГЭэЩЬь╜ФыФй
* [JavaScript for Web Browser (2014)](https://www.youtube.com/playlist?list=PLuHgQVnccGMDTAQ0S_FYxXOi1ZJz4ikaX) - ьГЭэЩЬь╜ФыФй
* [JavaScript ьЮЕым╕ ьИШьЧЕ](https://www.youtube.com/playlist?list=PLuHgQVnccGMA4uSig3hCjl7wTDeyIeZVU) (ьГЭэЩЬь╜ФыФй)
* [JavaScript for Web Browser](https://www.youtube.com/playlist?list=PLuHgQVnccGMDTAQ0S_FYxXOi1ZJz4ikaX) (ьГЭэЩЬь╜ФыФй)
#### AngularJS
@@ -147,70 +154,63 @@
#### React.js
* [React.js ъ░ХьвМ](https://www.youtube.com/playlist?list=PL9FpF_z-xR_GMujql3S_XGV2SpdfDBkeC) - Minjun Kim
* [React.js ьЭ┤ыбаы╢АэД░ ьЛдьаДъ╣МьзА](https://www.youtube.com/playlist?list=PLRx0vPvlEmdCED62ZIWCbI-6G_jcwmuFB) - ыПЩы╣ИыВШ
#### Svelte
* [Svelte.js ьЮЕым╕ ъ░АьЭ┤ыУЬ](https://www.inflearn.com/course/%EC%8A%A4%EB%B2%A8%ED%8A%B8-%EC%9E%85%EB%AC%B8-%EA%B0%80%EC%9D%B4%EB%93%9C/dashboard) - HEROPY (Inflearn)
* [SvelteKit(ьКды▓иэК╕эВ╖) эКЬэЖаыжмьЦ╝ Part.1](https://www.youtube.com/playlist?list=PL2Y878eUwQK4ZhfQfVdxS9yYdQlnfDInm) - ь╜ФыФйьЕАыЯм
* [SvelteKit(ьКды▓иэК╕эВ╖) эКЬэЖаыжмьЦ╝ Part.2](https://www.youtube.com/playlist?list=PL2Y878eUwQK6XN8emWcHFStBy-28bg_pM) - ь╜ФыФйьЕАыЯм
* [React.js ъ░ХьвМ](https://www.youtube.com/playlist?list=PL9FpF_z-xR_GMujql3S_XGV2SpdfDBkeC)
* [React.js ьЭ┤ыбаы╢АэД░ ьЛдьаДъ╣МьзА](https://www.youtube.com/playlist?list=PLRx0vPvlEmdCED62ZIWCbI-6G_jcwmuFB)
### Kotlin
* [ыФФыкиьЭШ Kotlin ъ░ХьвМ](https://www.youtube.com/playlist?list=PLQdnHjXZyYadiw5aV3p6DwUdXV2bZuhlN) - эЕМэБмъ│╝эХЩ! DiMo
* [ьХИыУЬыбЬьЭ┤ыУЬ ь╜ФэЛАыж░ ъ╕░ь┤И ъ░ХьвМ](https://www.youtube.com/playlist?list=PLva6rQOdsvQU7QJIg2RHM9wcT11X1S0pj) - ьД╝ь╣ШэХЬ ъ░Ьы░ЬьЮР
### Linux
* [ыжмыИЕьКд ы░П ь╗дыДР эФДыбЬъ╖╕ыЮШы░Н](http://www.kocw.net/home/search/kemView.do?kemId=1266434) - ь╡ЬэГЬьШБ
* [ыжмыИЕьКд ы░П ь╗дыДР эФДыбЬъ╖╕ыЮШы░Н](http://www.kocw.net/home/search/kemView.do?kemId=1266434) (ъ╕ИьШдъ│╡ыМА ь╡ЬэГЬьШБ)
### Machine Learning
* [ыи╕ьЛаыЯмыЛЭ/ыФеыЯмыЛЭ ьЛдьаД ьЮЕым╕](https://www.youtube.com/playlist?list=PLBXuLgInP-5m_vn9ycXHRl7hlsd1huqmS) - ьЬдьЭ╕ьД▒
* [ыи╕ьЛаыЯмыЛЭ/ыФеыЯмыЛЭ ьЮЕым╕ youtube playlist](https://www.youtube.com/playlist?list=PLBXuLgInP-5m_vn9ycXHRl7hlsd1huqmS) - ьЬдьЭ╕ьД▒
* [ыкиыСРые╝ ьЬДэХЬ ыи╕ьЛаыЯмыЛЭ/ыФеыЯмыЛЭ ъ░ХьЭШ](https://hunkim.github.io/ml/) - Sung Kim
* [эММьЭ┤эЖаь╣Ш(PyTorch) эКЬэЖаыжмьЦ╝ эХЬъ╡ньЦ┤ ы▓ИьЧн](https://tutorials.pytorch.kr) (HTML) *( :construction: in process - ы▓ИьЧн ьзДэЦЙ ьдС)*
* [эММьЭ┤эЖаь╣Ш(PyTorch) эКЬэЖаыжмьЦ╝ эХЬъ╡ньЦ┤ ы▓ИьЧн](https://tutorials.pytorch.kr) (HTML) (:construction: *in process* - *ы▓ИьЧн ьзДэЦЙ ьдС*)
* [эММьЭ┤эЖаь╣ШыбЬ ьЛЬьЮСэХШыКФ ыФеыЯмыЛЭ ъ╕░ь┤И](https://www.boostcourse.org/ai214) - boostcourse
* [Python tensorflow & ыи╕ьЛаыЯмыЛЭ ъ╕░ь┤И ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdAbnmLH9yh03cw9UQU_o7PO) - ыПЩы╣ИыВШ
* [Python tensorflow & ыи╕ьЛаыЯмыЛЭ ъ╕░ь┤И ъ░ХьвМ](https://www.youtube.com/playlist?list=PLRx0vPvlEmdAbnmLH9yh03cw9UQU_o7PO) (ыПЩы╣ИыВШ)
### Mathematics
* [2013 2эХЩъ╕░ ьДаэШХыМАьИШ](https://www.youtube.com/playlist?list=PLSN_PltQeOyjDGSghAf92VhdMBeaLZWR3) - ьЭ┤ьГБэЩФ
* [ьИШь╣ШэХ┤ьДЭ](http://www.kocw.net/home/search/kemView.do?kemId=1297704) - ъ╣АьГБь▓а
* [2013 2эХЩъ╕░ ьДаэШХыМАьИШ](https://www.youtube.com/playlist?list=PLSN_PltQeOyjDGSghAf92VhdMBeaLZWR3) - (ьЭ┤ьГБэЩФ ъ╡РьИШ)
* [ьИШь╣ШэХ┤ьДЭ](http://www.kocw.net/home/search/kemView.do?kemId=1297704) (ъ╡нып╝ыМА ъ╣АьГБь▓а)
* [ьИШь╣ШэХ┤ьДЭ ъ░ХьЭШ ыПЩьШБьГБ](https://youtube.com/playlist?list=PLczEhXyH_pUfKl9SPn-9j3K7olfBj5cpl) - ыВ┤ъ░А ьЭ┤эХ┤эХЬ ъ╕░ъ│Дъ│╡эХЩ (WIU of Mech)
* [ьаДьВ░ьИШэХЩ1](http://www.kocw.net/home/search/kemView.do?kemId=1296081) - ьг╝ьЮмъ▒╕
* [ьаДьВ░ьИШэХЩ1](http://www.kocw.net/home/search/kemView.do?kemId=1296081) (ъ│аыадыМА ьг╝ьЮмъ▒╕)
### MySQL
* [DATABASE2-MySQL](https://www.youtube.com/playlist?list=PLuHgQVnccGMCgrP_9HL3dAcvdt8qOZxjW) - ьГЭэЩЬь╜ФыФй
* [DATABASE2-MySQL](https://www.youtube.com/playlist?list=PLuHgQVnccGMCgrP_9HL3dAcvdt8qOZxjW) (ьГЭэЩЬь╜ФыФй)
### Network
* [ь╗┤эУиэД░ ыДдэК╕ьЫМэБм](http://www.kocw.net/home/search/kemView.do?kemId=1319674) - ъ╣АьвЕыНХ
* [ь╗┤эУиэД░ ыДдэК╕ьЫМэБм](http://www.kocw.net/home/search/kemView.do?kemId=1312397) - ьЭ┤ьДЭы│╡
* [ь╗┤эУиэД░ ыДдэК╕ьЫМэБм](http://www.kocw.net/home/search/kemView.do?kemId=1319674) (ы╢АьВ░ыМА ъ╣АьвЕыНХ)
* [ь╗┤эУиэД░ ыДдэК╕ьЫМэБм](http://www.kocw.net/home/search/kemView.do?kemId=1312397) (эХЬьЦСыМА ьЭ┤ьДЭы│╡)
### Operation System
* [ьЪ┤ьШБь▓┤ьаЬ](http://ocw.kookmin.ac.kr/?course=15329) - ьЭ┤ьЛЬьЬд
* [ьЪ┤ьШБь▓┤ьаЬ](http://ocw.kookmin.ac.kr/?course=15329) (ъ╡нып╝ыМА ьЭ┤ьЛЬьЬд)
* [ьЪ┤ьШБь▓┤ьаЬ](http://www.kocw.net/home/search/kemView.do?kemId=1194929) (ъ│аыадыМА ь╡Ьыж░)
* [ьЪ┤ьШБь▓┤ьаЬыба](http://socw.skku.edu/Lectures/Regular/Detail.do) (ьД▒ъ╖аъ┤АыМА ьЧДьШБьЭ╡)
### PHP
* [PHP](https://youtube.com/playlist?list=PLuHgQVnccGMDzq8zAwEY5lvwDWXWTZjB6) - ьГЭэЩЬь╜ФыФй
* [PHP эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PLYNsYgev6U96jzS7AjBn5p7i_owJHqfyW) - ьаХы│┤ы░ХьВмь╗┤эУиэД░ьЮРъ▓йьжЭ
* [PHP эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PLYNsYgev6U96jzS7AjBn5p7i_owJHqfyW)
### Python
* [эММьЭ┤ьНм ьЛдьаД эФДыбЬьаЭэК╕](https://www.youtube.com/playlist?list=PLMsa_0kAjjrdqJ1rJba9MFWYv-GHluK4_) - ыВШыПДь╜ФыФй
* [эММьЭ┤ьНм ь╜ФыФй ыПДьЮе](https://dojang.io/course/view.php?id=7)
* [MOOC: Python](https://www.youtube.com/playlist?list=PLBHVuYlKEkUJvRVv9_je9j3BpHwGHSZHz)
* [Python ьЮЕым╕ьЮРьЪй ь┤Иъ╕Й](https://www.youtube.com/playlist?list=PLRx0vPvlEmdD8u2rzxmQ-L97jHTHiiDdy)
@@ -238,7 +238,7 @@
### Ruby
* [Python & Ruby](https://www.opentutorials.org/course/1750) - ьГЭэЩЬь╜ФыФй
* [Python & Ruby](https://www.opentutorials.org/course/1750) (ьГЭэЩЬь╜ФыФй)
* [Ruby coin](https://www.youtube.com/playlist?list=PLEBQPmkNcLCIE9ERi4k_nUkGgJoBizx6s)
@@ -252,34 +252,32 @@
### Spring
* [ьКдэФДызБ ьЮЕым╕ - ь╜ФыУЬыбЬ ы░░ьЪ░ыКФ ьКдэФДызБ ы╢АэК╕, ьЫ╣ MVC, DB ьаСъ╖╝ ъ╕░ьИа](https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%EC%9E%85%EB%AC%B8-%EC%8A%A4%ED%94%84%EB%A7%81%EB%B6%80%ED%8A%B8) - ъ╣АьШБэХЬ (Inflearn)
* [ьКдэФДызБ ьЮЕым╕ - ь╜ФыУЬыбЬ ы░░ьЪ░ыКФ ьКдэФДызБ ы╢АэК╕, ьЫ╣ MVC, DB ьаСъ╖╝ ъ╕░ьИа](https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%EC%9E%85%EB%AC%B8-%EC%8A%A4%ED%94%84%EB%A7%81%EB%B6%80%ED%8A%B8) (ъ╣АьШБэХЬ)
### Swift
* [Swift эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PL9mhQYIlKEheAkAxX53qlTjjWK93Xd2pf) - T ьХДь╣┤ыН░ып╕
* [Swift эФДыбЬъ╖╕ыЮШы░Н](https://www.youtube.com/playlist?list=PL9mhQYIlKEheAkAxX53qlTjjWK93Xd2pf) (T ьХДь╣┤ыН░ып╕)
### Unity
### Unreal Engine
* [ьЬаыЛИэЛ░ ъ░ХьвМ (ь┤Иъ╕Й)](https://www.youtube.com/playlist?list=PLC2Tit6NyViewOPACJai5zNAfZuUW8aYq) - ъ│аы░ХьВмьЭШ ьЬаыЛИэЛ░ ыЕ╕эК╕
* [ьЬаыЛИэЛ░ ъ╕░ь┤И ъ░ХьвМ](https://www.youtube.com/playlist?list=PLO-mt5Iu5TeYI4dbYwWP8JqZMC9iuUIW2) - ъ│иыУЬыйФыЛм
* [ьЬаыЛИэЛ░ ь┤Иы│┤ ъ░ХьЭШ + ьЛдьаД эФДыбЬьаЭэК╕](https://www.youtube.com/playlist?list=PLMsa_0kAjjrdcdM4RcpGni9OLv-xy8FiB) - ыВШыПДь╜ФыФй
* [ьЛдьаД ъ▓МьЮД ьаЬьЮСьЬ╝ыбЬ ы░░ьЪ░ыКФ ьЦ╕ыжмьЦ╝ьЧФьзД](https://www.youtube.com/playlist?list=PL9kzervdzKxyTPMBHt26wkaAvCv6JkHQV)
### Web Development
* [ьЫ╣ эФДыбЬъ╖╕ыЮШы░Н](http://www.kocw.net/home/search/kemView.do?kemId=1323070)
* [HTML5&CSS3 ъ╕░ь┤И](https://www.youtube.com/playlist?list=PL9mhQYIlKEhdTdvqzohqVs3RTVHzWPu79) - T ьХДь╣┤ыН░ып╕
* [Web1-HTML](https://www.opentutorials.org/course/3084) - ьГЭэЩЬь╜ФыФй
* [Web2-CSS](https://www.opentutorials.org/course/3086) - ьГЭэЩЬь╜ФыФй
* [Web2-Domain name system](https://www.opentutorials.org/course/3276) - ьГЭэЩЬь╜ФыФй
* [Web2-Home server](https://www.opentutorials.org/course/3265) - ьГЭэЩЬь╜ФыФй
* [Web2-JavaScript](https://www.opentutorials.org/course/3085) - ьГЭэЩЬь╜ФыФй
* [Web2-nodejs](https://www.opentutorials.org/course/3332) - ьГЭэЩЬь╜ФыФй
* [Web2-PHP](https://www.opentutorials.org/course/3130) - ьГЭэЩЬь╜ФыФй
* [Web2-Python](https://www.opentutorials.org/course/3256) - ьГЭэЩЬь╜ФыФй
* [Web3-PHP & MySQL](https://www.youtube.com/playlist?list=PLuHgQVnccGMA5836CvWfieEQy0T0ov6Jh) - ьГЭэЩЬь╜ФыФй
* [HTML5&CSS3 ъ╕░ь┤И](https://www.youtube.com/playlist?list=PL9mhQYIlKEhdTdvqzohqVs3RTVHzWPu79) (T ьХДь╣┤ыН░ып╕)
* [Web1-HTML](https://www.opentutorials.org/course/3084) (ьГЭэЩЬь╜ФыФй)
* [Web2-CSS](https://www.opentutorials.org/course/3086) (ьГЭэЩЬь╜ФыФй)
* [Web2-Domain name system](https://www.opentutorials.org/course/3276) (ьГЭэЩЬь╜ФыФй)
* [Web2-Home server](https://www.opentutorials.org/course/3265) (ьГЭэЩЬь╜ФыФй)
* [Web2-JavaScript](https://www.opentutorials.org/course/3085) (ьГЭэЩЬь╜ФыФй)
* [Web2-nodejs](https://www.opentutorials.org/course/3332) (ьГЭэЩЬь╜ФыФй)
* [Web2-PHP](https://www.opentutorials.org/course/3130) (ьГЭэЩЬь╜ФыФй)
* [Web2-Python](https://www.opentutorials.org/course/3256) (ьГЭэЩЬь╜ФыФй)
* [Web3-PHP & MySQL](https://www.youtube.com/playlist?list=PLuHgQVnccGMA5836CvWfieEQy0T0ov6Jh) (ьГЭэЩЬь╜ФыФй)
### WebRTC
+5 -20
View File
@@ -12,7 +12,6 @@
* [Flutter](#flutter)
* [Game Development](#game-development)
* [Git](#git)
* [Go](#go)
* [HTML and CSS](#html-and-css)
* [Bootstrap](#bootstrap)
* [Java](#java)
@@ -96,7 +95,7 @@
### Game Development
* [Game development challenge tutorial series](https://www.youtube.com/playlist?list=PLY-ecO2csVHegnXkm4aLAZTRF_3nTMJMW) - Brototype Malayalam
* [Game Development Tutorial Malayalam \| Godot](https://www.youtube.com/playlist?list=PLcP4K64TKma33Vz9AhPvJpVJuO5jRbcyw) - Spotix
* [Game Development Tutorial Malayalam | Godot](https://www.youtube.com/playlist?list=PLcP4K64TKma33Vz9AhPvJpVJuO5jRbcyw) - Spotix
### Git
@@ -106,16 +105,10 @@
* [Git Tutorial - Malayalam](https://www.youtube.com/playlist?list=PLQzJEzrRmXOW7pKbwpicijzUdxZmDgqNL) - Code Malayalam
### Go
* [Golang: Complete Tutorial in р┤ор┤▓р┤пр┤╛р┤│р┤В for Beginners](https://www.youtube.com/watch?v=S7Dfsky1bZ4) - CodeEase with Anu
### HTML and CSS
* [CSS Malayalam Tutorial Full Course](https://youtube.com/playlist?list=PL1JrLEBAapUVvE-oCkKD5QhGG8nb0hhZk) - Yes Tech Media
* [CSS malayalam tutorial](https://youtube.com/playlist?list=PL4KwFGqvN4ntbMZdiSS0nFXo49KZCCcdw) - Debug Media
* [HTML and CSS Malayalam Tutorial](https://www.youtube.com/playlist?list=PLPvjxHx5Kob1pE-M4p2x82xclElJFLFIC) - Wezlon
* [html malayalam tutorial](https://youtube.com/playlist?list=PL4KwFGqvN4nupwUNXQs2Dn0za5a8ijVPH) - Debug Media
* [HTML Tutorial Malayalam Full](https://youtube.com/playlist?list=PL1JrLEBAapUVyMVQp6SmpytH1HPeCiNPH) - Yes Tech Media
* [Learn CSS by doing the projects](https://www.youtube.com/playlist?list=PLCOzHVsG8mkp3ZrXMzgLusYQpCdMbpLcj) - Web Diary
@@ -140,7 +133,6 @@
* [JavaScript Malayalam Tutorial](https://www.youtube.com/watch?v=3mjwtu4_0uk) - Yes Tech Media
* [JavaScript Malayalam Tutorials For Beginners](https://www.youtube.com/playlist?list=PLQzHWfiB9fWdQ6qcl5Vo4JPOA3kxpCJ3A) - Learn Programming In Malayalam
* [javascript tutorial in malayalam](https://youtube.com/playlist?list=PLBKJGko2JEdF4irCbI5BdHIEfxEdfMNqA) - Tintu Vlogger
* [javaScript tutorial for beginners malayalam](https://www.youtube.com/playlist?list=PLPvjxHx5Kob2xn4eANiHRPSJmfqj3DMeo) - Wezlon
#### Angular
@@ -157,7 +149,6 @@
#### Next.JS
* [Next JS For Beginners](https://www.youtube.com/playlist?list=PLCOzHVsG8mkoY7JQC44AkhsIQnN_f_-aS) - Web diary
* [Next.js Material UI Malayalam Tutorial](https://www.youtube.com/playlist?list=PL5Y_OOpi0rh0VAfV9Lz7gTdxhPTkmNxeC) - Tutorial Hut
@@ -179,7 +170,7 @@
### Kotlin
* [Kotlin / Android App Development](https://www.youtube.com/playlist?list=PLefF9wgiOa4WFRP4IvRCZre7xLjRkJdlQ) - Nikin Sk
* [Kotlin Malayalam \| Kotlin programming Tutorials for android malayalam](https://www.youtube.com/playlist?list=PLaP7lUdqAGYPpEutAk6o1jKC08Rc5xMXs) - CODEAVIAL
* [Kotlin Malayalam | Kotlin programming Tutorials for android malayalam](https://www.youtube.com/playlist?list=PLaP7lUdqAGYPpEutAk6o1jKC08Rc5xMXs) - CODEAVIAL
### Linux
@@ -203,10 +194,9 @@
### PHP
* [Learn PHP programming in malayalam](https://www.youtube.com/playlist?list=PL-Z1WBeTYPOoO9mJxVveZ1VgZPVXmyhFL) - Aks Programming
* [PHP Programming Course Malayalam](https://www.youtube.com/playlist?list=PLefF9wgiOa4WeDSpmKb6gRS-UJKn2FRnN) - Nikin Sk
* [PHP Programming Malayalam Tutorial for Beginners](https://www.youtube.com/watch?v=nFYWCouZ1UA) - Yes Tech Media
* [php tutorial in malayalam](https://youtube.com/playlist?list=PLBKJGko2JEdH_T2ki6ty4xGV19qB7Hpmm) - Tintu Vlogger
* [Learn PHP programming in malayalam](https://www.youtube.com/playlist?list=PL-Z1WBeTYPOoO9mJxVveZ1VgZPVXmyhFL) - Aks Programming
#### Laravel
@@ -218,13 +208,9 @@
### Python
* [OpenCV-Python Computer Vision](https://www.youtube.com/playlist?list=PL1JrLEBAapUWeV2O_wVIrX4BdWvJpepz7) - Yes Tech Media
* [Python](https://www.youtube.com/playlist?list=PLwe8bwPXjlLveEHvTbKMXJOPkFdXnu4xi) - Learn CSE Malayalam
* [Python Numpy Malayalam Tutorial](https://www.youtube.com/playlist?list=PL1JrLEBAapUVkjt4Q1R_ZFFRT_80WBCyx) - Yes Tech Media
* [Python Programming Malayalam Tutorial](https://www.youtube.com/watch?v=ihnWXGPxNEk) - Yes Tech Media
* [Python Tutorial Malayalam \| Best Malayalam Python Programming Tutorial](https://youtube.com/playlist?list=PLY-ecO2csVHfbpOmWamlb8Mujjdnl1jks) - Brototype Malayalam
* [Python Tutorial Malayalam \| Full videos Playlist](https://youtube.com/playlist?list=PLd_rdeTABMgQgZj2g9IyWqA2bnkHDUyof&feature=shared) - Safeonnet
* [Python FastAPI Tutorial Malayalam](https://youtube.com/playlist?list=PL1pQFrHyimJTUk2w27AU1n3jzxJjycZFc&si=64k_-OQrN000-_I9) - by Build From Zero
* [Python Tutorial Malayalam \| Best Malayalam Python Programming Tutorial](https://youtube.com/playlist?list=PLY-ecO2csVHfbpOmWamlb8Mujjdnl1jks) - Brototype Malayalam
#### Django
@@ -243,5 +229,4 @@
### Security
* [Cyber Security Tutorial Malayalam \| Ethical Hacking Courses for IT Career](https://www.youtube.com/playlist?list=PLR2UNjW_Pkm8LUpryeuiLMpEf4KgCDeBu) - RootSaid - Robotics, Technology & Cyber Security
* [Ethical Hacking](https://www.youtube.com/playlist?list=PLLPuX9XQz1lU_ZNcTWcMn9CZOhgT6yjyZ) - Scratch Media
* [Security Fundamentals](https://www.youtube.com/playlist?list=PLEhpnavDYfVhGnYA4l8btphQG8i2zO4cI) - Cyber Security Malayalam
+1
View File
@@ -63,6 +63,7 @@
* [CSS Tutorial In Marathi](https://youtube.com/playlist?list=PLWkJQ8CSXYd4wee103RY961OdWXwnHsBo) - SA Infolines
* [HTML \| HTML For Beginners \| Krushna Pise \| Marathi Programmer](https://youtube.com/playlist?list=PLWSZr_wlNWaw8_iFhKvrPKp1Uh2S1dXHk) - MaRaTHi ProGrammer
* [HTML & CSS In Marathi Tutorials](https://youtube.com/playlist?list=PLU1bHMETQ0vzRyMVH2Wp6sA8bMUuVl5S2) - Programming By Yogesh
### Java
+10 -36
View File
@@ -1,47 +1,19 @@
### Index
* [C](#c)
* [C++](#cpp)
* [Flutter](#flutter)
* [Java](#java)
* [JavaScript](#javascript)
* [Node.js](#nodejs)
* [React](#react)
* [Python](#python)
* [Flutter](#flutter)
* [SQL](#sql)
* [C](#c)
* [WordPress](#wordpress)
* [Web Development](#web_development)
### C
* [C Programming 1 Year Engineering (complete course)](https://www.youtube.com/playlist?list=PLyTjtAH-y1X-18oDItO59hvDTq1IDTM5I) - Nepali Education
* [C Programming Full Course In Nepali - New Course](https://www.youtube.com/watch?v=7WH8C48UNDU&list=PL2OJkQtHPRicxyldFGNJRRG4WwNe0Kjqe&index=3) - Technology Channel
### <a id="cpp"></a>C++
* [OOP Lecture@ IOE PCAMPUS](https://www.youtube.com/playlist?list=PLDdqAl5wWxmQk2RbqSsBrJAr7YUezu_sZ) - BKL Lectures
### Flutter
* [Complete Flutter Tutorial In Nepali](https://www.youtube.com/playlist?list=PLHVfxywAyZ5KAO618EKdGTJ4zJAGFeIYh) - PossibleTechs
### Java
* [Java Full Course In Nepali - New Course](https://www.youtube.com/watch?v=56Cc-DT66Bc&t=2626s) - Technology Channel
* [Java Programming \| Tutorial \| Nepali](https://www.youtube.com/playlist?list=PLmZYUigljiyc-tf7oMmM-s832ibhGxTpT) - BigData IT
### JavaScript
* [1 Month Long Free JavaScript Session.](https://www.youtube.com/playlist?list=PLckS_N3kOwFEpcaJ8FZ0dsEkmxg6NXd7A) - EverydayKarma ЁЯЗ│ЁЯЗ╡
* [Java Programming - Tutorial - Nepali](https://www.youtube.com/playlist?list=PLmZYUigljiyc-tf7oMmM-s832ibhGxTpT) - BigData IT
* [JavaScript](https://www.youtube.com/playlist?list=PLckS_N3kOwFH-GCqCd6i-vPo-Z75DcOnc) - EverydayKarma ЁЯЗ│ЁЯЗ╡
* [JavaScript for Absolute beginner in Nepali](https://www.youtube.com/playlist?list=PLXbNCt66dIJFk9gGB49ldr6XpzLLhpt-V) - Code with Bhurtel
* [JavaScript for Absolute Beginners (Nepali)](https://www.youtube.com/playlist?list=PLUYR0rHgTK0XygpL3f1-9srFNoxcJA7J8) - Programming with Rajan
#### Node.js
@@ -51,13 +23,12 @@
#### React
* [React Js](https://www.youtube.com/playlist?list=PLckS_N3kOwFHhFEmcRs8jvX7xFaRFI4H1) - EverydayKarma ЁЯЗ│ЁЯЗ╡
* [React.js](https://www.youtube.com/playlist?list=PLckS_N3kOwFHhFEmcRs8jvX7xFaRFI4H1) - EverydayKarma ЁЯЗ│ЁЯЗ╡
#### Python
#### Flutter
* [Python For Everyone (Nepali) \| Python Tutorial in Nepali](https://www.youtube.com/playlist?list=PLdotwI6PELzxZYpFoQEM6ZD3Zm5LpZMYd) - Nepal Learns Code
* [Python Programming for Beginners](https://www.youtube.com/playlist?list=PL5JWhQjeWNq2_NJSM-9QdtCU8U--liTdO) - Code Guru Nepal
* [Flutter Complete Tutorial In Nepali](https://www.youtube.com/watch?v=N0cDdu32IaA&list=PL2OJkQtHPRicxyldFGNJRRG4WwNe0Kjqe&index=1) - Technology Channel
#### SQL
@@ -65,6 +36,11 @@
* [SQL Full Course In Nepali](https://www.youtube.com/watch?v=Lt52pYaoSR8&list=PL2OJkQtHPRicxyldFGNJRRG4WwNe0Kjqe&index=2) - Technology Channel
#### C
* [C Programming Full Course In Nepali](https://www.youtube.com/watch?v=7WH8C48UNDU&list=PL2OJkQtHPRicxyldFGNJRRG4WwNe0Kjqe&index=3) - Technology Channel
#### WordPress
* [WordPress Complete Tutorial In Nepali](https://www.youtube.com/playlist?list=PL2OJkQtHPRie2xyBApANdVp_LUz4v7xIG) - Technology Channel
@@ -72,7 +48,5 @@
### Web Development
* [Web Development Complete Course - Beginners to Advanced](https://www.youtube.com/playlist?list=PL6wQiTZpOuaAqyL_RI-o9M6o2JO0jh_5R) - DEV Community Nepal
* [WEB Development Complete Series In Nepali](https://www.youtube.com/playlist?list=PL2OJkQtHPRiejkQq4IX6Vf0NXbeEiQGIt) - Technology Channel
-9
View File
@@ -1,9 +0,0 @@
### Index
* [C](#c)
### C
* [C рикрйНри░рйЛриЧри░ри╛риори┐рй░риЧ рикрй░риЬри╛римрйА ри╡ри┐рй▒риЪ,C Programming Language in Punjabi](https://www.youtube.com/playlist?list=PLV_K8gHBuQuL8KAMgJZtBaEWUhpHVDsc4) - CJ Singh
+3 -11
View File
@@ -7,7 +7,6 @@
* [C](#c)
* [C#](#csharp)
* [C++](#cpp)
* [Embedded](#embedded)
* [HTML and CSS](#html-and-css)
* [Java](#java)
* [JavaScript](#javascript)
@@ -55,26 +54,20 @@
* [PROGRAMOWANIE W C++. KURS OD PODSTAW, DLA KA┼╗DEGO (VIDEO)](https://www.youtube.com/playlist?list=PLOYHgt8dIdoxx0Y5wzs7CFpmBzb40PaDo) - Miros┼Вaw Zelent, Damian Stelmach
### Embedded
* [Kurs Arduino, poziom II](https://www.forbot.pl/blog/kurs-arduino-ii-wstep-spis-tresci-id15494) - Damian (Treker) Szyma┼Дski
* [Kurs podstaw Arduino](https://www.forbot.pl/blog/kurs-arduino-podstawy-programowania-spis-tresci-kursu-id5290)
* [Kurs STM32L4](https://www.forbot.pl/blog/kurs-stm32-l4-wstep-spis-tresci-dla-kogo-jest-ten-kurs-id48575)
### HTML and CSS
* [Kurs CSS](http://www.kurshtmlcss.pl/kurs-css) (Netido Interactive Agency)
* [Kurs CSS. Wygl─Еd strony www - kaskadowe arkusze styl├│w - Pasja informatyki (VIDEO)](https://www.youtube.com/playlist?list=PLOYHgt8dIdow6b2Qm3aTJbKT2BPo5iybv) - Miros┼Вaw Zelent, Damian Stelmach
* [Kurs HTML](http://www.kurshtmlcss.pl/kurs-html) (Netido Interactive Agency)
* [Kurs HTML](https://www.youtube.com/playlist?list=PLpwxuvBp359NntV2cLO5LaH6tmd6efmHH) - Marcin Filczy┼Дski
* [Kurs HTML - od zera do Webmastera](https://www.youtube.com/playlist?list=PL0zYPqHK5yJWsIn3PIproSyxO3nchPd99)
* [Kurs html i css](https://www.youtube.com/playlist?list=PLs8Otihb6zvfosmWesJ_lkJS_HzL58gSS)
* [Kurs HTML. Tworzenie zawarto┼Ыci stron internetowych](https://www.youtube.com/playlist?list=PLOYHgt8dIdox9Qq3X9iAdSVekS_5Vcp5r) - Miros┼Вaw Zelent, Damian Stelmach
### Java
* [Darmowe kursy z Javy dla pocz─Еtkuj─Еcych](https://web.archive.org/web/20220326010054/http://programowaniejava.pl/edukacja/darmowe-szkolenia.html) *( :card_file_box: archived)*
* [Darmowe kursy z Javy dla pocz─Еtkuj─Еcych](https://web.archive.org/web/20220326010054/http://programowaniejava.pl/edukacja/darmowe-szkolenia.html) *(:card_file_box: archived)*
* [JAVA FX-wprowadzenie](https://www.youtube.com/playlist?list=PL-ikpm9wGd1HkA9PvGTYWZHtO-Xq_i_Mw)
* [Java GUI: programowanie Graficznego Interfejsu U┼╝ytkownika](https://www.youtube.com/playlist?list=PL3298E3EB8CFDE9BA)
* [Kurs JavaFX od podstaw](https://www.youtube.com/playlist?list=PLpzwMkmxJDUwQuQR7Rezut5UE_8UGDxkU)
@@ -85,14 +78,13 @@
### JavaScript
* [Kurs Javascript: Modu┼В 1: Poczatkujacy](https://youtube.com/playlist?list=PLaRAejmsc8gGAs-Ml8aa4eLCkm6ESvdnN) - Kacper Szarkiewicz
* [Kurs JavaScript. Programowanie frontendowe (VIDEO)](https://www.youtube.com/playlist?list=PLOYHgt8dIdoxTUYuHS9ZYNlcJq5R3jBsC) - Miros┼Вaw Zelent, Damian Stelmach
* [Programowanie w JavaScript od podstaw w 1 miesi─Еc](https://www.youtube.com/playlist?list=PLTs20Q-BTEMPRSzhrlAuu7yus1BuOLVrS)
#### Vue.js
* [FrontAndBack.pl - Kurs Vue w praktyce](https://web.archive.org/web/20221004101108/https://frontandback.pl/tags/kurs-vue-w-praktyce/) *( :card_file_box: archived)*
* [FrontAndBack.pl - Kurs Vue w praktyce](https://frontandback.pl/tags/kurs-vue-w-praktyce/)
### MySQL
+2 -162
View File
@@ -17,7 +17,6 @@
* [Haskell](#haskell)
* [HTML and CSS](#html-and-css)
* [IDE and editors](#ide-and-editors)
* [Intelig├кncia Artificial](#intelig├кncia-artificial)
* [Ionic](#ionic)
* [Java](#java)
* [JavaScript](#javascript)
@@ -33,23 +32,17 @@
* [Networking](#networking)
* [Node.js](#nodejs)
* [PHP](#php)
* [Postgres](#postgres)
* [Programa├з├гo](#programa├з├гo)
* [Python](#python)
* [Django](#django)
* [FastAPI](#fastapi)
* [Flask](#flask)
* [R](#r)
* [Raspberry Pi](#raspberry-pi)
* [React Native](#react-native)
* [Ruby](#ruby)
* [Rust](#rust)
* [Sass](#sass)
* [Seguran├зa da Informa├з├гo](#seguran├зa-da-informa├з├гo)
* [SEO](#seo)
* [Shell](#shell)
* [Sistemas Embarcados](#sistemas-embarcados)
* [Smalltalk](#smalltalk)
* [Swift](#swift)
* [TypeScript](#typescript)
* [Angular](#angular)
@@ -116,16 +109,6 @@
* [Curso de Docker Completo](https://www.youtube.com/playlist?list=PLg7nVxv7fa6dxsV1ftKI8FAm4YD6iZuI4) - Robert Silva
* [Curso de Docker para iniciantes - aprenda Docker em 1 hora](https://www.youtube.com/watch?v=np_vyd7QlXk) - Matheus Battisti
* [Curso de Introdu├з├гo ao Docker](https://www.youtube.com/playlist?list=PLXzx948cNtr8N5zLNJNVYrvIG6hk0Kxl-) - Insight Lab
* [Curso Gratuito de Docker](https://www.youtube.com/playlist?list=PLNCSWIsR6ADKRq-XBvAcRd4XtqLj3f_mf) - Fernanda Kipper
* [Descomplicando o Docker](https://www.youtube.com/playlist?list=PLf-O3X2-mxDn1VpyU2q3fuI6YYeIWp5rR) - LINUXtips
* [Docker](https://www.youtube.com/playlist?list=PLZfrXScDmaiNw3k2-TdfML9GhpsmOlhM3) - Fabricio Veronez
* [Docker](https://www.youtube.com/playlist?list=PL5aY_NrL1rjsvaRqv_0HOFA_91lqJGRWe) - Full Cycle
* [Docker](https://www.youtube.com/playlist?list=PLZTjHbp2Y78013IcGa-vCAcqQUwGt_MW6) - AlgaWorks
* [Docker](https://www.youtube.com/playlist?list=PLZfrXScDmaiPb8hegiJTqKI8aDUJpo-IJ) - Fabricio Veronez
* [Docker Essencial: Primeiros Passos](https://www.youtube.com/playlist?list=PLViOsriojeLrdw5VByn96gphHFxqH3O_N) - TechEduca
* [Docker na pr├бtica](https://www.youtube.com/playlist?list=PLR8JXremim5BWiO-MCaAffQYwFZrD11-j) - Thiago Veigah
* [Minicurso Docker](https://www.youtube.com/playlist?list=PLPqoPgWuohm6eTyf2_yczUDN0wpHpsjf1) - Iago Ferreira TI - Aprenda Cloud e DevOps do ZERO
### Elixir
@@ -147,12 +130,7 @@
* [Curso de Git](https://www.youtube.com/playlist?list=PLucm8g_ezqNq0dOgug6paAkH0AQSJPlIe) - B├│son Treinamentos
* [Curso de Git e GitHub: gr├бtis, pr├бtico e sem usar comandos no terminal](https://www.youtube.com/playlist?list=PLHz_AreHm4dm7ZULPAmadvNhH6vk9oNZA) - Gustavo Guanabara
* [Curso de Versionamento com Git](https://www.youtube.com/playlist?list=PLDqnSpzNKDvkfF_ZMfukmOG3MtGKfXlfJ) - Angelo Luz
* [Curso Git e Github 2024](https://www.youtube.com/playlist?list=PLHbGjxRVA_FmFRF1-OqWaWwqhIiS9Cg0w) - Carlos Uchoa
* [Curso gratuito Git e GitHub](https://www.youtube.com/playlist?list=PLcoYAcR89n-qbO7YAVj5S0alABLis_QVU) - Tiago Matos
* [Git](https://www.youtube.com/playlist?list=PL85ITvJ7FLoh-1TFRDe7bHzAWY4DlIRtk) - Rocketseat
* [Git e contribui├з├╡es para projetos Open Source](https://www.udemy.com/course/git-e-github/) - Bruno Orlandi (Udemy)
* [Git e Github na Vida Real](https://www.youtube.com/playlist?list=PLlAbYrWSYTiNqugqFFWWsgONJsmc3eMpg) - Willian Justen
* [Git e Github para iniciantes](https://www.udemy.com/git-e-github-para-iniciantes/) - Willian Justen de Vasconcellos (Udemy)
* [Git para iniciantes](https://www.udemy.com/git-para-iniciantes/) - Ricardo Netto (Udemy)
@@ -160,18 +138,11 @@
### Go
* [Aprenda Go / Golang (Curso Tutorial de Programa├з├гo)](https://www.youtube.com/playlist?list=PLUbb2i4BuuzCX8CLeArvx663_0a_hSguW) - NBK Mundo Tech
* [Aprenda Go ЁЯЗзЁЯЗ╖](https://www.youtube.com/playlist?list=PLCKpcjBB_VlBsxJ9IseNxFllf-UFEXOdg) - Aprenda Go
* [Aprendendo Go](https://www.youtube.com/playlist?list=PLcF8UVYja9nacMX3sXbOV1Kqyc-GdaJTu) - Lais Lima
* [Aprendendo GoLang](https://www.youtube.com/playlist?list=PLm-xZWCprwYSlEHjZDvhaq9izo3AVbiRO) - HunCoding
* [Curso de Introdu├з├гo a Linguagem Go (Golang)](https://www.youtube.com/playlist?list=PLXFk6ROPeWoAvLMyJ_PPfu8oF0-N_NgEI) - EuProgramador
* [Curso Golang](https://www.youtube.com/playlist?list=PL3IMfVHTpXw14FL_TRIdHfeYTeOet1GS9) - Universo Mainframe
* [Estruturas de Dados em GoLang (DSA in Go)](https://www.youtube.com/playlist?list=PLm-xZWCprwYTEKad8bM1H0kxHxDMlzXeO) - HunCoding
* [Estruturas de Dados em Go](https://www.youtube.com/playlist?list=PLHPgIIn9ls69DRXLaYHu4pKYDB_8H_05i) - Tiago Temporin
* [Go - Aprenda a Programar (Curso)](https://www.youtube.com/playlist?list=PLCKpcjBB_VlBsxJ9IseNxFllf-UFEXOdg) - Ellen K├╢rbes
* [Go 101 (Curso)](https://www.youtube.com/playlist?list=PLHPgIIn9ls6-1l7h8RUClMKPHi4NoKeQF) - Tiago Temporin
* [Golang do Zero](https://www.youtube.com/playlist?list=PL5aY_NrL1rjucQqO21QH8KclsLDYu1BIg) - Full Cycle
* [Golang do Zero](https://www.youtube.com/playlist?list=PLIIX-IKjIiwOpAr_kyvpxTVyvUoxXqGEQ) - Stephanie Cardoso
* [Meu Primeiro CRUD em GoLang](https://www.youtube.com/playlist?list=PLm-xZWCprwYQ3gyCxJ8TR1L2ZnUOPvOpr) - HunCoding
### Gulp
@@ -203,12 +174,6 @@
* [Produtividade m├бxima com o VS Code (Visual Studio Code)](https://www.udemy.com/course/truques-vscode/) - Diego Martins de Pinho (Udemy)
### Intelig├кncia Artificial
* [Curso Gr├бtis de Intelig├кncia Artificial](https://www.youtube.com/playlist?list=PLHz_AreHm4dm24MhlWJYiR_Rm7TFtvs6S) - Gustavo Guanabara (Curso em V├нdeo)
* [IA Generativa para Iniciantes .NET - Um Curso](https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/translations/pt) - Microsoft (GitHub)
### Ionic
* [Curso IONIC 6 ЁЯЪА - De 0 a PRO](https://www.youtube.com/playlist?list=PLsngLoGbAagFEG-jwlpPhGsLzMSQ0tadP) - Randy Varela
@@ -218,46 +183,29 @@
### Java
* [Aul├╡es Spring Boot](https://www.youtube.com/playlist?list=PLiFLtuN04BS2yfbo3HYLNq_O1zDq9RRQi) - Giuliana Bezerra
* [Curso de Java B├бsico](https://loiane.training/curso/java-basico) - Loiane Groner
* [Curso de Java Intermedi├бrio](https://loiane.training/curso/java-intermediario) - Loiane Groner
* [Curso de Java para Iniciantes - Gr├бtis, Completo e com Certificado](https://www.youtube.com/playlist?list=PLHz_AreHm4dkI2ZdjTwZA4mPMxWTfNSpR) - Gustavo Guanabara
* [Curso de Java, Spring COMPLETO e GRATUITO](https://www.youtube.com/playlist?list=PLNCSWIsR6ADI_wMAx9F-Iu8Hs9HHxj4sb) - Fernanda Kipper
* [Curso de Programa├з├гo Orientada a Objetos em Java - Gr├бtis, Completo e com Certificado](https://www.youtube.com/playlist?list=PLHz_AreHm4dkqe2aR0tQK74m8SFe-aGsY) - Gustavo Guanabara
* [Curso de Spring Boot - Criando um blog com Spring Boot e deploy na AWS Elastic Beanstalk](https://www.youtube.com/playlist?list=PL8iIphQOyG-AdKMQWtt1bqdVm8QUnX7_S) - Michelli Brito
* [Demos Spring](https://www.youtube.com/playlist?list=PLiFLtuN04BS3_4VvGYqcyTUI6xRasK_QF) - Giuliana Bezerra
* [Desenvolvedor Funcional com Java 8](https://www.udemy.com/desenvolvedor-funcional-com-java-8/) - Fernando Franzini (Udemy)
* [Desenvolvimento ├Бgil com Java Avan├зado](https://www.coursera.org/learn/desenvolvimento-agil-com-java-avancado) - Eduardo Guerra, Clovis Fernandes - ITA (Coursera)
* [Desenvolvimento ├Бgil com Padr├╡es de Projeto](https://www.coursera.org/learn/desenvolvimento-agil-com-padroes-de-projeto) - Eduardo Guerra e Clovis Fernandes - ITA (Coursera)
* [Estrutura de Dados com Java](https://loiane.training/curso/estrutura-de-dados) - Loiane Groner
* [Estrutura de Dados com Java](https://www.youtube.com/playlist?list=PLCUSYmPGwekcXnzf6_UtgRM0OsOEGoiG_) - Matheus Leandro Ferreira
* [Fundamentos do Java para Iniciantes](https://www.youtube.com/playlist?list=PLiFLtuN04BS2GSi8Q-haYkRy8KEv6Grvf) - Giuliana Bezerra
* [Introdu├з├гo ├а Interfaces Gr├бficas em Java com o NetBeans](https://www.udemy.com/introducao-a-interface-grafica-em-java-com-o-netbeans/) - Cezar Augusto Crummenauer (Udemy)
* [Introdu├з├гo a Programa├з├гo Linguagem Java](https://www.youtube.com/playlist?list=PLCUSYmPGwekfDhQHllAkUZ30vOsxhVfhM) - Matheus Leandro Ferreira
* [Introdu├з├гo ao Java e Orienta├з├гo a Objetos](https://www.udemy.com/introducao-ao-java-e-orientacao-a-objetos/) - Helder Guimaraes Aragao (Udemy)
* [Java Avan├зado](https://www.youtube.com/playlist?list=PLiFLtuN04BS2bWB9UcIrun35kV080KoKU) - Giuliana Bezerra
* [Introdu├з├гo ao Java e Orienta├з├гo a objetos](https://www.udemy.com/introducao-ao-java-e-orientacao-a-objetos/) - Helder Guimaraes Aragao (Udemy)
* [Java SE - Polimorfismo](https://www.udemy.com/java-se-polimorfismo/) - Fernando Franzini (Udemy)
* [Maratona Java Virado no Jiraya](https://www.youtube.com/playlist?list=PL62G310vn6nFIsOCC0H-C2infYgwm8SWW) - DevDojo
* [MicroServices com Java Spring](https://www.youtube.com/playlist?list=PL8iIphQOyG-Dp037UnFG0x8aduelvZZWE) - Michelli Brito
* [Microsservi├зos](https://www.youtube.com/playlist?list=PLiFLtuN04BS2pgvdO2W7s6HEGhNojtk0F) - Giuliana Bezerra
* [Orienta├з├гo a Objetos com Java](https://www.coursera.org/learn/orientacao-a-objetos-com-java) - Eduardo Guerra e Clovis Fernandes - ITA (Coursera)
* [Princ├нpios de Desenvolvimento ├Бgil de Software](https://www.coursera.org/learn/principios-de-desenvolvimento-agil-de-software) - Eduardo Guerra e Clovis Fernandes - ITA (Coursera)
* [Produtos Java - Especifica├з├╡es versus Propriet├бrios](https://www.udemy.com/produtos-java-especificacoes-versus-proprietarios/) - Fernando Franzini (Udemy)
* [Programa├з├гo Orientada a Objetos](https://www.youtube.com/playlist?list=PLCUSYmPGwekfNNbgSBsepDqAk1fktpgpf) - Matheus Leandro Ferreira
* [Spring Boot](https://www.youtube.com/playlist?list=PLiFLtuN04BS0ENOAIL2NiqNNV0FmUKZH-) - Giuliana Bezerra
* [Spring Boot](https://www.youtube.com/playlist?list=PL3HEMC6Di0YwaP7p4G2CVkU9pGtmr47--) - Daniele Le├гo
* [Spring Cloud](https://www.youtube.com/playlist?list=PLiFLtuN04BS1rAjaXCPIytXBHDP2h3Vk3) - Giuliana Bezerra
* [TDD тАУ Desenvolvimento de software guiado por testes](https://www.coursera.org/learn/tdd-desenvolvimento-de-software-guiado-por-testes) - Eduardo Guerra e Clovis Fernandes - ITA (Coursera)
* [Testes unit├бrios com Java utilizando o Junit](https://www.udemy.com/testes-unidade-automaticos-software-junit/) - Gustavo Farias (Udemy)
* [Tutoriais Spring](https://www.youtube.com/playlist?list=PLiFLtuN04BS1pObTFjm5g2TwgBIBfEyze) - Giuliana Bezerra
* [Tutoriais Spring Batch](https://www.youtube.com/playlist?list=PLiFLtuN04BS07Yw7rnoz1ytWCLu8yteVv) - Giuliana Bezerra
### JavaScript
* [Curso de Javascript Completo](https://www.youtube.com/playlist?list=PL2Fdisxwzt_d590u3uad46W-kHA0PTjjw) - Programa├з├гo Web
* [Curso Gr├бtis de JavaScript e ECMAScript para Iniciantes](https://www.youtube.com/playlist?list=PLHz_AreHm4dlsK3Nr9GVvXCbpQyHQl1o1) - Gustavo Guanabara (Curso em V├нdeo)
* [Curso Javacript do Zero](https://www.youtube.com/playlist?list=PLNCSWIsR6ADLpv3kir5rOX07nE3LXAPya) - Fernanda Kipper
* [Curso Javascript Completo 2023 [Iniciantes] + 14 Mini-Projetos](https://www.youtube.com/watch?v=i6Oi-YtXnAU) - Jhonatan de Souza
* [Fast & Furious](https://www.youtube.com/playlist?list=PLy5T05I_eQYOoUz2TtAqq35RLCc-xBZCe) - Codecasts
* [Kubernetes para Devs Javascript](https://www.youtube.com/playlist?list=PLqFwRPueWb5ccEFVx5vOvrKlYT_uQ3aQw) - Erick Wendel, Lucas Santos
@@ -268,22 +216,14 @@
* [Aprenda Next.js,GraphQL e Leaflet na pr├бtica!](https://www.youtube.com/playlist?list=PLR8OzKI52ppWoTRvAmB_FQPPlHS0otV7V) - Willian Justen
* [Bootcamp da Brainn de React](https://www.youtube.com/playlist?list=PLF7Mi9HNzvVmzOyDyl--xQVdi60jxduU1) - Canal Brainn Co.
* [Curso de React](https://www.youtube.com/playlist?list=PLx4x_zx8csUh752BVDGZkxYpY9lS40fyC) - CFBCursos
* [Curso de React](https://www.youtube.com/playlist?list=PLnDvRpP8BneyVA0SZ2okm-QBojomniQVO) - Matheus Battisti
* [Curso de React Next JS](https://www.youtube.com/playlist?list=PLx4x_zx8csUhxQHo-w0xAIMrmt8WgAowL) - CFBCursos
* [Curso Intensivo de Next.js & React](https://www.cod3r.com.br/courses/curso-intensivo-next-react) - Leonardo Leit├гo (Cod3r)
* [Next.js 13.4 Masterclass Pr├бtico c/ Stripe e Shadcn-ui](https://www.youtube.com/playlist?list=PLR8OzKI52ppWoTRvAmB_FQPPlHS0otV7V) - DeveloperDeck101
* [React & Node.js](https://www.youtube.com/playlist?list=PLm-VCNNTu3LlQ3APFZeUn-9JztCM4_c28) - Felipe Rocha
* [ReactJS - API GitHub](https://cursos.devsamurai.com.br/React%20-%20API%20Github.zip) - Dev Samurai
* [ReactJS - B├бsico](https://www.youtube.com/playlist?list=PLWXw8Gu52TRK1W0emFvUl3ozgV2JW3_8p) - Ralf Lima
* [ReactJS - Fundamentos](https://cursos.devsamurai.com.br/React%20-%20Fundamentos.zip) - Dev Samurai
* [Next js 13.4 Masterclass Pr├бtico c/ Stripe e Shadcn-ui](https://www.youtube.com/playlist?list=PLR8OzKI52ppWoTRvAmB_FQPPlHS0otV7V) - DeveloperDeck101
#### Vue.js
* [Aplica├з├гo Desktop com JavaScript, Electron JS e Vue JS](https://www.udemy.com/course/aplicacao-desktop-com-javascript-electron-js-e-vue-js/) - Leonardo Moura Leitao, Cod3r (Udemy)
* [Curso completo e gratuito de Vue.js 3 do iniciante ao avan├зado](https://igorhalfeld.teachable.com/p/treinamento-completo-e-gratuito-de-vue-js-3-do-iniciante-ao-avancado) - Igor Halfeld, Vue.js Brasil (Teachable)
* [Curso de Vue 3](https://www.youtube.com/playlist?list=PLnDvRpP8BnezDglaAvtWgQXzsOmXUuRHL) - Matheus Battisti - Hora de Codar
* [Introdu├з├гo ao Vue JS](https://www.udemy.com/course/introducao-ao-vue-js/) - Rafael Rend (Udemy)
* [Minicurso: Vue.js - O basic├гo](https://evolutio.io/curso/minicurso_vuejs) - Tony L├вmpada (Evolutio)
@@ -304,22 +244,11 @@
### Kubernetes
* [Curso Completo de Kubernetes](https://www.youtube.com/playlist?list=PL9wKVHxY5DoNy-D4errvry9sVktl9YNcA) - Marcones Nunes
* [Curso Completo de Kubernetes Para Devs](https://www.youtube.com/playlist?list=PLnOICPAPShyTwuLit7vP6In9kETQ0BSnQ) - Lucas Santos
* [Curso De Introdu├з├гo ao Kubernetes](https://www.youtube.com/playlist?list=PLXzx948cNtr8XI5JBemHT9OWuYSPNUtXs) - Insight Lab
* [Descomplicando o Kubernetes](https://www.youtube.com/playlist?list=PLf-O3X2-mxDmXQU-mJVgeaSL7Rtejvv0S) - LinuxTips
* [Kubernetes](https://www.youtube.com/playlist?list=PL9wKVHxY5DoN9MfK7_iJcLDI75POJoRUL) - Marcones Nunes
* [Kubernetes (K8s): Minicurso Gratuito](https://www.youtube.com/playlist?list=PL18bbNo7xuh8pIU-odMSjd_r8TyD7_jb7) - Erudito
* [Kubernetes Dicas e Truques Para O Dia A Dia](https://www.youtube.com/playlist?list=PLAbYWcQD84aPfGZNaf8Pa35eGy_ywcR7V) - Canal dotNet
* [Kubernetes Em Drops](https://www.youtube.com/playlist?list=PLZfrXScDmaiPF9EH1Uyh8kZdZ612h5eSz) - Fabricio Veronez
* [Kubernetes Geral](https://www.youtube.com/playlist?list=PLf-O3X2-mxDm9d-RJSpjut6qDuGqRMsY2) - LinuxTips
* [Maratona Kubernetes](https://www.youtube.com/playlist?list=PLB1hpnUGshULerdlzMknMLrHI810xIBJv&origin=CursosErickWendel) - Microsoft Brasil
* [Mutir├гo Kubernetes](https://www.youtube.com/playlist?list=PLf-O3X2-mxDli3suNEnRquFyKYdrFLm3t) - LinuxTips
### Linux
* [Curso de Linux](https://www.youtube.com/playlist?list=PLnDvRpP8BnezDTtL8lm6C-UOJZn-xzALH) - Matheus Battisti
* [Curso de Linux - Primeiros Passos](https://www.youtube.com/playlist?list=PLHz_AreHm4dlIXleu20uwPWFOSswqLYbV) - Gustavo Guanabara
* [Introdu├з├гo ao Sistema Operacional Linux](https://www.udemy.com/course/linux-ubuntu/) - Diego Mariano (Udemy)
* [Terminal Linux](https://www.udemy.com/course/terminal-de-comandos-linux/) - Diego Mariano (Udemy)
@@ -334,7 +263,6 @@
### Machine Learning
* [Curso Data Science e Machine Learning](https://youtube.com/playlist?list=PLFE-LjWAAP9R4G0WOXWuha4P5cCvw7hGB) - Data ICMC
* [Curso de Machine Learning](https://www.youtube.com/playlist?list=PLFE-LjWAAP9QEC8KhIBWxM_tquU8UmuYW) - Data ICMC
* [Curso Deep Learning](https://www.youtube.com/playlist?list=PLSZEVLiOtIgF19_cPrvhJC2bWn-dUh1zB) - Deep Learning Brasil
* [Machine Learning e Data Science: O Guia para Iniciantes](https://www.udemy.com/course/guia-iniciantes-machine-learning-data-science/) - Jones Granatyr (Udemy)
* [Neural Networks e Deep Learning para Leigos: Sem Mist├йrios!](https://www.udemy.com/course/neural-networks-e-deep-learnig-para-leigos/) - Fernando Amaral (Udemy)
@@ -343,7 +271,6 @@
### Markdown
* [Aprenda Markdown](https://www.udemy.com/aprenda-markdown/) - Roberto Achar (Udemy)
* [Guia da Linguagem Markdown](https://www.youtube.com/watch?v=LntSB-gl-ZI) - Curso em V├нdeo
### Networking
@@ -357,13 +284,8 @@
* [Criando APIs com NodeJs](https://www.youtube.com/playlist?list=PLHlHvK2lnJndvvycjBqQAbgEDqXxKLoqn) - Balta.io
* [Curso de Node](https://www.youtube.com/watch?v=XN705pQeoyU&list=PLx4x_zx8csUjFC41ev2qX5dnr-0ThpoXE) - Bruno CFBCursos
* [Curso de Node.js](https://www.youtube.com/playlist?list=PLJ_KhUnlXUPtbtLwaxxUxHqvcNQndmI4B) - Victor Lima Guia do Programador
* [Curso de Node.js](https://www.youtube.com/playlist?list=PLmY5AEiqDWwAY8AyeNy1zv-n4LEdGz1iE) - Celke
* [Do Zero A Produ├з├гo: Aprenda A Construir Uma API Node.Js Com Typescript](https://www.youtube.com/playlist?list=PLz_YTBuxtxt6_Zf1h-qzNsvVt46H8ziKh) - Waldemar Neto Dev Lab
* [Imers├гo em desenvolvimento de APIs com Node.js](https://erickwendel.teachable.com/p/node-js-para-iniciantes-nodebr) - Erick Wendel (Teachable)
* [Minicurso de NodeJS](https://www.youtube.com/playlist?list=PLpdAy0tYrnKxtfd_aI9ZGmnHfZHveudsh) - Hashtag Programa├з├гo
* [Node](https://www.youtube.com/playlist?list=PLsFVybaG4mOARbjw1gfUKiYMYh3PsxDFp) - DevClub Programa├з├гo
* [NodeJS](https://www.youtube.com/playlist?list=PLbIBj8vQhvm39CsidhA5SJBBu7-hPbuwy) - Ot├бvio Miranda
* [NodeJS/Express](https://www.youtube.com/playlist?list=PLDqnSpzNKDvkgJdaBT14ll07yXCbuMucM) - Angelo Luz
* [RESTful com Node.js e Restify](https://www.youtube.com/playlist?list=PLy5T05I_eQYO5Y3S3kVqBxQzkUNllPazF) - Codecasts
* [Serie API NodeJS](https://www.youtube.com/playlist?list=PL85ITvJ7FLoiXVwHXeOsOuVppGbBzo2dp) - Diego Fernandes (Rocketseat)
* [Testes no NodeJS aplicando TDD com Jest](https://www.youtube.com/watch?v=2G_mWfG0DZE&list=PL85ITvJ7FLoh7QBmTVzuNYvZaYPYwDmei) - Diego Fernandes (Rocketseat)
@@ -372,10 +294,8 @@
### PHP
* [Boas pr├бticas em PHP](https://www.udemy.com/boas-praticas-em-php/) - Diego Mariano (Udemy)
* [Criando e consumindo API RESTful](https://academy.satellasoft.com/course/php-criando-e-consumindo-api-restful) - Gunnar Correa (SatellaSoftware)
* [Curso B├бsico de Bootstrap 4 , PHP e MySQL](https://www.udemy.com/curso-basico-de-bootstrap-4-php-e-mysql-gratis/) - Ricardo Milbrath Gon├зalves (Udemy)
* [Curso de CodeIgniter para iniciantes](https://www.youtube.com/playlist?list=PLInBAd9OZCzz2vtRFDwum0OyUmJg8UqDV) - RBtech
* [Curso de PHP Moderno](https://www.youtube.com/playlist?list=PLHz_AreHm4dlFPrCXCmd5g92860x_Pbr_) - Gustavo Guanabara (Curso em V├нdeo)
* [Curso de PHP para Iniciantes](https://www.youtube.com/playlist?list=PLHz_AreHm4dm4beCCCmW4xwpmLf6EHY9k) - Gustavo Guanabara (Curso em V├нdeo)
* [Curso Introdu├з├гo ao Laravel 8](https://academy.especializati.com.br/curso/introducao-ao-laravel-8) - Carlos Ferreira (Especializati academy)
* [Introdu├з├гo ├а Cria├з├гo de Sites Din├вmicos com PHP](https://www.udemy.com/criacao-de-paginas-de-internet-dinamicas-com-php-basico/) - Diego Mariano (Udemy)
@@ -385,27 +305,12 @@
* [PDO para quem n├гo sabe PDO](https://www.udemy.com/pdo-para-quem-nao-sabe-pdo/) - Alexandre Cardoso (Udemy)
* [PHP 7 do B├бsico ao Intermedi├бrio](https://www.udemy.com/php-do-basico-ao-intermediario/) - Gunnar Correa (Udemy)
* [PHP para quem entende PHP](https://www.udemy.com/php-para-quem-entende-php/) - Alexandre Cardoso (Udemy)
* [PHP PDO](https://www.youtube.com/playlist?list=PLYGFJHWj9BYqSXzSfHGd46yipCrkjC8AD) - Miriam (Miriam TechCod)
### Postgres
* [Dominando o Postgres](https://cursos.devsamurai.com.br/Backend%20-%20Dominando%20o%20Postgres.zip) - Dev Samurai
### Programa├з├гo
* [Algoritmos de Ordena├з├гo](https://www.youtube.com/playlist?list=PLzZut2slkqywtFxqTY8AQwIG65h_2oMBL) - Bruno Ribas
* [Como Computadores Funcionam?](https://www.youtube.com/playlist?list=PLdsnXVqbHDUcQIuiH9b-i9A85H3A2ZW5W) - Fabio Akita
* [Conceitos de Programa├з├гo](https://www.youtube.com/playlist?list=PLdsnXVqbHDUcrE56CH8sXaPF3TTqoBP2z) - Fabio Akita
* [Curso L├│gica de Programa├з├гo Completo 2023 [Iniciantes] + Desafios + Muita pr├бtica](https://www.youtube.com/watch?v=iF2MdbrTiBM) - Jonathan de Souza
* [Curso Programa├з├гo Web Completo](https://www.youtube.com/playlist?list=PL2Fdisxwzt_ebZYgPFL8KeWqBhkF1Q8oe) - Programa├з├гo Web
* [Frontend para Iniciantes](https://www.youtube.com/playlist?list=PLsGmTzb4NxK2sGY3KqKmg1UTxNTcPPK1Z) - LuizTools
* [Intelig├кncia Artificial](https://www.youtube.com/playlist?list=PLdsnXVqbHDUeowsAO0sChHDY4D65T5s1U) - Fabio Akita
* [Programa├з├гo para Iniciantes](https://www.youtube.com/playlist?list=PLdsnXVqbHDUc7htGFobbZoNen3r_wm3ki) - Fabio Akita
* [Programa├з├гo para Iniciantes](https://www.youtube.com/playlist?list=PLsGmTzb4NxK3r0_sMLyHKaYX97tPN2QPm) - LuizTools
* [Scrum para Iniciantes](https://www.youtube.com/playlist?list=PLsGmTzb4NxK0DmRwEO4IBRjuCRyRZ8FnQ) - LuizTools
* [Sistemas Operacionais](https://www.youtube.com/playlist?list=PLdsnXVqbHDUd17xLINVEXhJ32RxbzCEWV) - Fabio Akita
### Python
@@ -416,11 +321,9 @@
* [Construindo API's robustas utilizando Python](https://github.com/luizalabs/tutorial-python-brasil) - C├бssio Botaro, et al.
* [Curso de Programa├з├гo em Python](https://www.youtube.com/playlist?list=PLFKhhNd35zq_INvuX9YzXIbtpo_LGDzYK) - Prime Cursos do Brasil
* [Curso de Python](https://www.youtube.com/playlist?list=PLesCEcYj003QxPQ4vTXkt22-E11aQvoVj) - Cl├бudio Rog├йrio Carvalho Filho (eXcript)
* [Curso de Python](https://www.youtube.com/playlist?list=PLbIBj8vQhvm0ayQsrhEf-7-8JAj-MwmPr) - Ot├бvio Miranda
* [Curso de Python 3 - Mundo 1: Fundamentos](https://www.youtube.com/playlist?list=PLHz_AreHm4dlKP6QQCekuIPky1CiwmdI6) - Gustavo Guanabara (Curso em V├нdeo)
* [Curso de Python 3 - Mundo 2: Estruturas de Controle](https://www.youtube.com/playlist?list=PLHz_AreHm4dk_nZHmxxf_J0WRAqy5Czye) - Gustavo Guanabara (Curso em V├нdeo)
* [Curso de Python 3 - Mundo 3: Estruturas Compostas](https://www.youtube.com/playlist?list=PLHz_AreHm4dksnH2jVTIVNviIMBVYyFnH) - Gustavo Guanabara (Curso em V├нdeo)
* [Curso de Type Hints no Python do B├бsico](https://www.youtube.com/playlist?list=PLbIBj8vQhvm04EuddtleOAoEmfU9vwQlN) - Ot├бvio Miranda
* [Curso em v├нdeo - Python](https://www.youtube.com/playlist?list=PLvE-ZAFRgX8hnECDn1v9HNTI71veL3oW0) - Gustavo Guanabara, Joao Pedro Araujo (Curso em V├нdeo)
* [Data Science: Visualiza├з├гo de Dados com Python](https://www.udemy.com/visualizacao-de-dados-com-python/) - Diego Mariano (Udemy)
* [Django 2.0 - Aprendendo os conceitos fundamentais](https://www.udemy.com/django-20-aprendendo-os-conceitos-fundamentais/) - Gregory Pacheco (Udemy)
@@ -432,44 +335,17 @@
* [Introdu├з├гo ├а Ci├кncia da Computa├з├гo com Python - Parte 2](https://pt.coursera.org/learn/ciencia-computacao-python-conceitos-2) - USP (Coursera)
* [Introdu├з├гo a linguagem de programa├з├гo python](https://www.udemy.com/introducao-programacaopython/) - Abra├гo Passos de Oliveira (Udemy)
* [Introdu├з├гo ├а linguagem Python](https://www.udemy.com/intro_python/) - Diego Mariano (Udemy)
* [Logging no Python](https://www.youtube.com/playlist?list=PLbIBj8vQhvm28qR-yvWP3JELGelWxsxaI) - Ot├бvio Miranda
* [Matem├бtica com Python](https://www.youtube.com/playlist?list=PLucm8g_ezqNrCFUZ3vPIKs41hveecygsm) - Ot├бvio Miranda
* [Orienta├з├гo a Objetos](https://www.youtube.com/playlist?list=PLucm8g_ezqNqj--UUSn16yfDp3xcZi40t) - Ot├бvio Miranda
* [Programa├з├гo em Python](https://www.youtube.com/playlist?list=PLucm8g_ezqNrrtduPx7s4BM8phepMn9I2) - B├│son Treinamentos
* [Programa├з├гo em Python: O Guia para Iniciantes](https://www.udemy.com/course/programacao-python-guia-para-iniciantes/) - Jones Granatyr (Udemy)
* [Python 3 na Pr├бtica](https://www.udemy.com/python-3-na-pratica/) - Jo├гo Batista (Udemy)
* [Python 3 na Web com Django (B├бsico e Intermedi├бrio)](https://www.udemy.com/python-3-na-web-com-django-basico-intermediario/) - Gileno Alves Santa Cruz Filho (Udemy)
* [Python B├бsico](https://solyd.com.br/treinamentos/python-basico) - Guilherme Junqueira (Solyd Offensive Security)
* [Python Com Bancos de Dados](https://www.youtube.com/playlist?list=PLucm8g_ezqNp7ECP-fidzdgeVDufBTYDV) - B├│son Treinamentos
* [Python Fundamentos para An├бlise de Dados](https://www.datascienceacademy.com.br/course?courseid=python-fundamentos) - Data Science Academy
* [Python Orientado a Objetos Python POO](https://www.youtube.com/playlist?list=PLbIBj8vQhvm34qAAEEH_PdL2tMG9rz-P7) - Ot├бvio Miranda
* [Python para Competi├з├╡es de Programa├з├гo](https://www.youtube.com/playlist?list=PLMxflQ9_eOd9CY6Id5gfs3Edqt8vLC47p) - Adorilson
* [Python para Iniciantes](https://www.udemy.com/python-para-iniciantes/) - Tiago Miguel (Udemy)
* [Selenium com Python](https://www.youtube.com/playlist?list=PLOQgLBuj2-3LqnMYKZZgzeC7CKCPF375B) - Eduardo Mendes
#### Django
* [Curso de Django 2](https://www.youtube.com/playlist?list=PLnDvRpP8BnewqnMzRnBT5LeTpld5bMvsj) - Matheus Battisti
* [Curso de Django Aprenda a Desenvolver Aplica├з├╡es Web Do Zero](https://www.youtube.com/playlist?list=PLLVddSbilcumgeyk0z6ko5U_FYPfbRO2C) - Jefferson Lobato
* [Curso de Django To-Do-List](https://www.youtube.com/playlist?list=PLLVddSbilcunGg0IJ4zP05Z91yrEaIiQh) - Jefferson Lobato
* [Django](https://www.youtube.com/playlist?list=PL3gEA6Xsr_el-1m_ew_kwPVGgDiG1nwY-) - Pythonando
#### FastAPI
* [Criando uma API com FastAPI](https://www.youtube.com/playlist?list=PLJHVw_wMqnI-eX95g9U_W941l_yWsIDIL) - Anderson Rocha
* [Curso de FastAPI 2025](https://www.youtube.com/playlist?list=PLOQgLBuj2-3KT9ZWvPmaGFQ0KjIez0403) - Eduardo Mendes
* [Curso de FastAPI Rest API com Python ](https://www.youtube.com/playlist?list=PLpdAy0tYrnKy3TvpCT-x7kGqMQ5grk1Xq) - HashTag Programa├з├гo
* [Curso de FastAPI Sincrono](https://www.youtube.com/playlist?list=PLOQgLBuj2-3IuFbt-wJw2p2NiV9WTRzIP) - Eduardo Mendes
#### Flask
* [Curso de Flask](https://www.youtube.com/playlist?list=PLWhiA_CuQkbBhvPojHOPY81BmDt2eSfgI) - Filipe Morelli Developer
* [Flask](https://www.youtube.com/playlist?list=PLyOx5V4KUjDf3-flamHYkJ2ygYmdRDdE9) - Lan Code
### R
* [Curso de R com R Studio](https://www.youtube.com/playlist?list=PLzWDDw1w8cTS4i_B49WOWtjngjcMqTruG) - Escola de Intelig├кncia Artificial
@@ -478,14 +354,12 @@
### Raspberry Pi
* [Curso de Raspberry Pi](https://www.youtube.com/playlist?list=PLx4x_zx8csUj1PvvXekoDwuUyL0pljiU1) - CFBCursos
* [Curso de Raspberry Pi: primeiros passos](https://www.youtube.com/playlist?list=PLHz_AreHm4dnGZ_nudmN4rvyLk2fHFRzy) - Gustavo Guanabara
### React Native
* [Aprenda React Native](https://www.youtube.com/playlist?list=PL8fIRnD1uUSnRqz3E2caAWDqbtIFXmNtW) - Canal Geek Dev
* [Curso base de React Native 2025](https://www.youtube.com/playlist?list=PL29TaWXah3ibI0ewWkI7xMI952wHEaFTK) - Lucas Souza Dev
* [Curso React Native (aprendiz)](https://www.youtube.com/playlist?list=PLdDT8if5attEd4sRnZBIkNihR-_tE612_) - One Bit Code
@@ -498,18 +372,8 @@
* [Tutorial Rails Girls](http://guides.railsgirls.com/guides-ptbr/)
### Rust
* [Aprenda Rust](https://www.youtube.com/playlist?list=PLjSf4DcGBdiGCNOrCoFgtj0KrUq1MRUME) - CodeShow
* [Curso Rust B├бsico](https://www.youtube.com/playlist?list=PLGtFJAmtESz-V5p-svTX34bGQvNuXEpHE) - Linguagem Rust
* [Programando do 0 ao avan├зado na linguagem de programa├з├гo Rust](https://www.youtube.com/playlist?list=PLWmXJQDlXOHX6UdAmXv6euoqDPUtMLpJf) - Lanby 0xff3 ╬╗
### Sass
* [Curso de Sass](https://www.youtube.com/playlist?list=PLMy95_4XE08OmaSd_GOLKNkqhoJFvg7w7) - Vida FullStack
* [Curso de SASS](https://www.youtube.com/playlist?list=PLEBYKM1xzmIPGBtBRU7aTqMZFbj2H3xqo) - BUSSOLA DEV
* [Curso Sass](https://www.youtube.com/playlist?list=PL97KElaimHeGRtfkksKwxg6IGVZi_cR7J) - Amanda Vilela
* [Sass placeholders: o jeito certo](https://www.udemy.com/course/sass-placeholders-o-jeito-certo/) - T├бrcio Zemel (Udemy)
@@ -517,7 +381,6 @@
* [Conceitos de Programa├з├гo em Shell Script](https://www.udemy.com/conceitos-de-programacao-em-shell-script/) - TemWeb (Udemy)
* [Curso de Shell Scripting - Programa├з├гo no Linux](https://www.youtube.com/playlist?list=PLucm8g_ezqNrYgjXC8_CgbvHbvI7dDfhs) - B├│son Treinamentos
* [Curso intensivo de programa├з├гo em Bash](https://www.youtube.com/playlist?list=PLXoSGejyuQGr53w4IzUzbPCqR4HPOHjAI) - debxp
* [Curso Shell GNU](https://www.youtube.com/playlist?list=PLXoSGejyuQGqJEEyo2fY3SA-QCKlF2rxO) - debxp
@@ -526,26 +389,14 @@
* [Fundamentos de Sistemas Embarcados](https://www.youtube.com/playlist?list=PLqvo6YdcIqXXGY1dLbf_xA-JLMBumTyzG) - Renato Sampaio
### Smalltalk
* [Conhecendo o SmallTalk](https://www.researchgate.net/publication/262882317_Conhecendo_o_Smalltalk_-_Todos_os_Detalhes_da_Melhor_Linguagem_de_Programacao_Orientada_a_Objetos) - Daniel Duarte Abdala, Aldo von Wangenheim (PDF)
* [Introdu├з├гo ├а Programa├з├гo Orientada a Objetos com Smalltalk](https://dcc.ufrj.br/~jonathan/smalltalk/Introd-a-POO-com-Smalltalk-1994.pdf) - Miguel Jonathan (PDF)
### Swift
* [Aprendendo Swift do Iniciante ao Avan├зado. (Mac e Windows)](https://www.udemy.com/aprendendoswift3/) - Lucas Alencar (Udemy)
* [Curso de introdu├з├гo ao desenvolvimento iOS](https://www.youtube.com/playlist?list=PLprgbdnzrDkHjUr2mFq0ypg-v6RNChKA8) Attekita Dev
* [Curso de Swift - Programa├з├гo](https://www.youtube.com/playlist?list=PLJ0AcghBBWShgIH122uw7H9T9-NIaFpP-) - Tiago Aguiar
* [Curso de Swift B├бsico](https://www.youtube.com/playlist?list=PLTl7hsEfhCWVx6os_oOHpJF_YrJmRnIQk) - Novos Neg├│cios em TIC
* [Curso gr├бtis Swift e SwiftUI](https://www.youtube.com/playlist?list=PLMdYygf53DP46rneFgJ7Ab6fJPcMvr8gC) - Filipe Deschamps
### TypeScript
* [Curso completo de Typescript](https://www.youtube.com/playlist?list=PL9tY_tDo_Q0DOAzTaPnWYsryfNLsz1K6U) - Rincko Dev
* [Curso de React com Typescript](https://www.youtube.com/playlist?list=PL29TaWXah3iZktD5o1IHbc7JDqG_80iOm) - Lucas Souza Dev
* [Curso de Typescript](https://www.youtube.com/playlist?list=PLx4x_zx8csUhtPMrkiGvFJVE5LX8Qat5s) - CFBCursos
* [Mini-curso de TypeScript](https://www.youtube.com/playlist?list=PLlAbYrWSYTiPanrzauGa7vMuve7_vnXG_) - Willian Justen Curso
* [TypeScript - Aprendendo Junto](https://www.youtube.com/playlist?list=PL62G310vn6nGg5OzjxE8FbYDzCs_UqrUs) - DevDojo
* [Typescript - Zero to Hero](https://github.com/glaucia86/curso-typescript-zero-to-hero) - Glaucia Lemos
@@ -554,31 +405,21 @@
#### Angular
* [Angular](https://www.youtube.com/playlist?list=PLnDvRpP8Bnex2GQEN0768_AxZg_RaIGmw) - Matheus Battisti
* [Angular 17 - 2024](https://www.youtube.com/playlist?list=PLWXw8Gu52TRKj3tFWHlkheh8rLQRqQ1__) - Ralf Lima
* [Aprenda Angular Do Zero - primeiro passos](https://www.youtube.com/live/OmkmeBOAg44) - Fernanda Kipper
* [Come├зando com Angular](https://balta.io/cursos/comecando-com-angular) - Andre Baltieri (balta.io)
* [Curso Angular 17](https://www.youtube.com/playlist?list=PLXEUJjGpEX7zwdFSAzIPiSf9p0tOeI1Yu) - Code Dimension
* [Curso Angular 19 na pr├бtica](https://www.youtube.com/playlist?list=PLAHPGKIfQVuIff8XNEhEN9-EJbwiQykCC) - O Dev Lucas
* [Curso Angular 9](https://www.youtube.com/playlist?list=PLdPPE0hUkt0rPyAkdhHIIquKbwrGUkvw3) - Cod3r
* [Curso de Angular](https://loiane.training/curso/angular/) - Loiane Groner
* [Curso gratuito de Angular](https://www.youtube.com/playlist?list=PLhna1crYw0SOFqiss05ybqJCc6fvGn6BF) - Caf├й com Bug
### WordPress
* [Curso de Loja Virtual: WooCommerce + WordPress](https://www.youtube.com/playlist?list=PLHz_AreHm4dkZNE5PAYc0h4iVkqBCgBZR) - Gustavo Guanabara (Curso em V├нdeo)
* [Curso de WordPress 2022 Gr├бtis e Completo](https://www.youtube.com/playlist?list=PLltHgIJnfTsAnyA8KPXC6ohTYzGEreVEa) - CursoB Cursos Online
* [Curso de WordPress 2025](https://www.youtube.com/playlist?list=PLa3bnULYnrpGrgUyQUXwrIUXk75_jO-n2) - Descomplicando Sites
* [Curso de WordPress 2025: Como Criar um do zero](https://www.youtube.com/playlist?list=PLR9X8pL__UdiA1wMB02jndrD1d2kffu1o) - Curso WordPress Definitivo
* [Curso de WordPress: Criando um site do zero](https://www.youtube.com/playlist?list=PLHz_AreHm4dmDP_RWdiKekjTEmCuq_MW2) - Gustavo Guanabara (Curso em V├нdeo)
* [Curso WordPress na pr├бtica](https://www.youtube.com/playlist?list=PLSAqMrdVsnTabS-6FQPcr3LcF-UzEA7Co) - HostGator Brasil
### Seguran├зa da Informa├з├гo
* [Boas Pr├бticas de Seguran├зa da Informa├з├гo para Sua Empresa](https://www.udemy.com/course/empresa-mais-segura/) - Afonso da Silva E. (Udemy)
* [Curso de Seguran├зa com Pr├бtica](https://www.youtube.com/playlist?list=PLAp37wMSBouB70jGTeT0JjW_LNC_JBHCo) - Hardware Redes Brasil
* [Curso de Seguran├зa da Informa├з├гo](https://www.youtube.com/playlist?list=PLHz_AreHm4dkYS6J9KeYgCCVpo5OXkvgE) - Gustavo Guanabara, (Curso em Video)
* [Seguran├зa da Informa├з├гo: Por onde iniciar sua carreira](https://www.udemy.com/course/seguranca-da-informacao-por-onde-iniciar-sua-carreira/) - Alexandro Silva (Udemy)
@@ -586,5 +427,4 @@
### SEO
* [Curso de SEO - M├гo na massa](https://www.youtube.com/playlist?list=PLVPIs-7SxXA_O-fUH5PbKhEHdTPnYKMiE) - Flavio Klens (Ag├кncia Klens)
* [Curso de SEO (Iniciante)](https://www.youtube.com/playlist?list=PLqDfVio-YDgtfPuoYe1Ps_y9Ds1RU444_) - Caio Rodrigues
* [Curso pr├бtico de SEO](https://www.youtube.com/playlist?list=PLHz_AreHm4dm4pBTRvBFMpSXvEoymoa90) - Gustavo Guanabara (Curso em Video)
-28
View File
@@ -1,28 +0,0 @@
### Index
* [Algoritmi ╚Щi Structuri de Date](#algoritmi-structuri-date)
* [C++](#cpp)
* [Javascript](#javascript)
* [Python](#python)
### <a id="algoritmi-structuri-date"></a>Algoritmi ╚Щi Structuri de Date
* [Structuri de Date ╚Щi Algoritmi](https://lectii.utm.md/courses/structuri-de-date-si-algoritmi/) - Universitatea Tehnic─Г a Moldovei
### <a id="cpp"></a>C++
* [Programarea calculatoarelor](https://lectii.utm.md/courses/programarea-calculatoarelor/) - Universitatea Tehnic─Г a Moldovei
* [Programarea Orientat─Г pe Obiecte](https://lectii.utm.md/courses/programarea-orientata-pe-obiecte/) - Universitatea Tehnic─Г a Moldovei
### Javascript
* [Curs JavaScript ├оn limba rom├вn─Г pentru ├оncep─Гtori](https://www.youtube.com/playlist?list=PL7aWL1nkGk0ytE-fV1pApIdKI2ZwIyw-5) - DevSchool
### Python
* [Bazele program─Гrii calculatoarelor](https://lectii.utm.md/courses/bazele-programarii-calculatoarelor/) - Universitatea Tehnic─Г a Moldovei
+3 -10
View File
@@ -21,7 +21,6 @@
* [Python](#python)
* [R](#r)
* [Ruby](#ruby)
* [Rust](#rust)
### ╨г╤А╨╛╨▓╨╜╨╕
@@ -59,14 +58,13 @@ ADV - ╨Я╤А╨╛╨┤╨▓╨╕╨╜╤Г╤В╤Л╨╣. ╨в╨╛╨╜╨║╨╛╤Б╤В╨╕.
### Dart
* [╨Ю╤Б╨╜╨╛╨▓╤Л ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╤П ╨╜╨░ Dart](https://stepik.org/course/109361) - Stepik (BEG)
* [╨Ю╤Б╨╜╨╛╨▓╤Л Dart](https://stepik.org/course/92982) - ╨Р╨╜╨╜╨░ ╨Ь╤Г╨╖╤Л╨║╨╕╨╜╨░ (Stepik) (BEG)
* [╨Ю╤Б╨╜╨╛╨▓╤Л Dart](https://stepik.org/course/97479) - ╨б╤В╨░╨╜╨╕╤Б╨╗╨░╨▓ ╨з╨╡╤А╨╜╤Л╤И╨╡╨▓ (Stepik) (BEG)
### Elixir
* [╨п╨╖╤Л╨║ ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╤П ╨н╨╗╨╕╨║╤Б╨╕╤А](https://github.com/yzh44yzh/elixir_course) - Yuri Zhloba
* [Elixir - ╤Д╤Г╨╜╨║╤Ж╨╕╨╛╨╜╨░╨╗╤М╨╜╨░╤П ╤А╨░╨╖╤А╨░╨▒╨╛╤В╨║╨░](https://www.youtube.com/playlist?list=PLWlFXymvoaJ_SWXOOm2JSqv86ZBkQ9-zo) - Ilya Krukowski (BEG)
### Go
@@ -106,7 +104,6 @@ ADV - ╨Я╤А╨╛╨┤╨▓╨╕╨╜╤Г╤В╤Л╨╣. ╨в╨╛╨╜╨║╨╛╤Б╤В╨╕.
* [╨Ю╤Б╨╜╨╛╨▓╤Л JavaScript](https://ru.hexlet.io/courses/js-basics) - Hexlet (BEG)
* [╨Я╨░╤А╨░╨┤╨╕╨│╨╝╤Л ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╤П](https://github.com/HowProgrammingWorks/Index/blob/master/Courses/Paradigms.md) - ╨в╨╕╨╝╤Г╤А ╨и╨╡╨╝╤Б╨╡╨┤╨╕╨╜╨╛╨▓ (INT)
* [╨Я╨░╤А╨░╨╗╨╗╨╡╨╗╤М╨╜╨╛╨╡ ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╨╡](https://github.com/HowProgrammingWorks/Index/blob/master/Courses/Parallel.md) - ╨в╨╕╨╝╤Г╤А ╨и╨╡╨╝╤Б╨╡╨┤╨╕╨╜╨╛╨▓ (INT)
* [╨Я╨╛╨│╤А╤Г╨╢╨╡╨╜╨╕╨╡ ╨▓ JavaScript: ╨┤╨╗╤П ╨╜╨░╤З╨╕╨╜╨░╤О╤Й╨╕╤Е](https://stepik.org/course/180784) - Stepik (BEG)
* [╨б╨╛╨▓╤А╨╡╨╝╨╡╨╜╨╜╤Л╨╣ ╤Г╤З╨╡╨▒╨╜╨╕╨║ JavaScript](https://learn.javascript.ru) - ╨Ш╨╗╤М╤П ╨Ъ╨░╨╜╤В╨╛╤А (INT)
* [╨в╨╡╤Е╨╜╨╛╨╗╨╛╨│╨╕╤З╨╡╤Б╨║╨╕╨╣ ╤Б╤В╨╡╨║ NodeJS](https://github.com/HowProgrammingWorks/Index/blob/master/Courses/NodeJS.md) - ╨в╨╕╨╝╤Г╤А ╨и╨╡╨╝╤Б╨╡╨┤╨╕╨╜╨╛╨▓ (INT)
* [╨д╤Г╨╜╨║╤Ж╨╕╨╛╨╜╨░╨╗╤М╨╜╨╛╨╡ ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╨╡](https://github.com/HowProgrammingWorks/Index/blob/master/Courses/Functional.md) - ╨в╨╕╨╝╤Г╤А ╨и╨╡╨╝╤Б╨╡╨┤╨╕╨╜╨╛╨▓ (INT)
@@ -137,7 +134,6 @@ ADV - ╨Я╤А╨╛╨┤╨▓╨╕╨╜╤Г╤В╤Л╨╣. ╨в╨╛╨╜╨║╨╛╤Б╤В╨╕.
* [╨Т╨▓╨╡╨┤╨╡╨╜╨╕╨╡ ╨▓ Kotlin JVM](https://stepik.org/course/5448) - Stepik (BEG)
* [╨а╨░╨╖╤А╨░╨▒╨╛╤В╨║╨░ Android-╨┐╤А╨╕╨╗╨╛╨╢╨╡╨╜╨╕╨╣ ╨╜╨░ Kotlin](https://stepik.org/course/4792) - Stepik (BEG)
* [╨а╤Г╨║╨╛╨▓╨╛╨┤╤Б╤В╨▓╨╛ ╨┐╨╛ ╤П╨╖╤Л╨║╤Г Kotlin](https://metanit.com/kotlin/tutorial/) - Metanit (BEG/INT)
* [PRO Kotlin. ╨Ю╤Б╨╜╨╛╨▓╤Л ╨┐╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╤П](https://stepik.org/course/131507) - Stepik (BEG)
### Perl
@@ -172,6 +168,7 @@ ADV - ╨Я╤А╨╛╨┤╨▓╨╕╨╜╤Г╤В╤Л╨╣. ╨в╨╛╨╜╨║╨╛╤Б╤В╨╕.
* [╨Я╤А╨╛╨│╤А╨░╨╝╨╝╨╕╤А╨╛╨▓╨░╨╜╨╕╨╡ ╨╜╨░ Python](https://stepik.org/course/67) - ╨в╨╕╨╝╨╛╤Д╨╡╨╣ ╨С╨╛╨╜╨┤╨░╤А╨╡╨▓, ╨Я╨░╨▓╨╡╨╗ ╨д╨╡╨┤╨╛╤В╨╛╨▓ (Stepik) (BEG)
* [Python: ╨▒╤Л╤Б╤В╤А╤Л╨╣ ╤Б╤В╨░╤А╤В](http://dfedorov.spb.ru/python3) - ╨Ф╨╝╨╕╤В╤А╨╕╨╣ ╨д╤С╨┤╨╛╤А╨╛╨▓ (BEG)
* [Python ╨┤╨╗╤П ╨╜╨░╤З╨╕╨╜╨░╤О╤Й╨╕╤Е](https://ru.code-basics.com/languages/python) - Code-basics (BEG)
* [Python ╨┤╨╗╤П ╤В╨╡╤Е, ╤Г ╨║╨╛╨│╨╛ ╨╗╨░╨┐╨║╨╕](https://stepik.org/course/85388) - ╨Ь╨░╤А╨╕╤П ╨з╨░╨║╤З╤Г╤А╨╕╨╜╨░, ╨Ф╨╝╨╕╤В╤А╨╕╨╣ ╨Ъ╨╛╨╗╨╛╤Б╨╛╨▓ (Stepik) (INT)
* [Python: ╨╛╤Б╨╜╨╛╨▓╤Л ╨╕ ╨┐╤А╨╕╨╝╨╡╨╜╨╡╨╜╨╕╨╡](https://stepik.org/course/512) - ╨Ъ╨╛╨╜╤Б╤В╨░╨╜╤В╨╕╨╜ ╨Ч╨░╨╣╤Ж╨╡╨▓, ╨Р╨╜╤В╨╛╨╜ ╨У╨░╤А╨┤╨╡╤А (Stepik) (INT)
@@ -185,11 +182,7 @@ ADV - ╨Я╤А╨╛╨┤╨▓╨╕╨╜╤Г╤В╤Л╨╣. ╨в╨╛╨╜╨║╨╛╤Б╤В╨╕.
### Ruby
* [╨С╨╡╤Б╨┐╨╗╨░╤В╨╜╤Л╨╣ ╨╛╨╜╨╗╨░╨╣╨╜ ╨║╤Г╤А╤Б ╨┐╨╛ ╨╛╤Б╨╜╨╛╨▓╨░╨╝ Ruby](https://code-basics.com/ru/languages/ruby) - Code-basics (BEG)
* [╨Т╨▓╨╡╨┤╨╡╨╜╨╕╨╡ ╨▓ Ruby](https://ru.hexlet.io/courses/ruby) - Hexlet (BEG)
* [╨Я╤Г╤В╤М Rubyrush](https://rubyrush.ru/steps) (BEG)
* [Ruby - ╨┐╨╡╤А╨▓╨╛╨╡ ╨╖╨╜╨░╨║╨╛╨╝╤Б╤В╨▓╨╛](https://stepik.org/course/87996) - Stepik (BEG)
### Rust
* [╨Т╨▓╨╡╨┤╨╡╨╜╨╕╨╡ ╨▓ Rust](https://stepik.org/course/228001) - Stepik (BEG)
* [Rust: ╨Э╨░╤З╨░╨╗╤М╨╜╤Л╨╣ ╤Г╤А╨╛╨▓╨╡╨╜╤М](https://stepik.org/course/195449) - Stepik (BEG)
+1 -1
View File
@@ -83,7 +83,7 @@
### Python
* [Python Sinhala](https://youtube.com/playlist?list=PLXNgqM9ig24fNnzfhOUXduubQW-zfb9eV&feature=shared) - Udith Sanjaya
* [Python Programming Tutorial \| Sinhala](https://www.youtube.com/playlist?list=PL495mke12zYC-ZUbzd1Z0Y6WteuvsMf7Z) - CodePRO LK
* [Python Programming Tutorial | Sinhala](https://www.youtube.com/playlist?list=PL495mke12zYC-ZUbzd1Z0Y6WteuvsMf7Z) - CodePRO LK
### React
-75
View File
@@ -1,15 +1,9 @@
### Index
* [AI](#ai)
* [Android](#android)
* [Bash and Shell](#bash-and-shell)
* [C](#c)
* [C#](#csharp)
* [C++](#cpp)
* [Cloud Computing](#cloud-computing)
* [Computer Organisation & Architecture](#computer-organisation--architecture)
* [Cryptography & Network Security](#cryptography--network-security)
* [Data Science](#data-science)
* [Data Structures and Algorithms](#dsa)
* [Express JS](#express-js)
* [Flutter](#flutter)
@@ -30,12 +24,6 @@
* [Swift](#swift)
### AI
* [AI Tutorials in Tamil](https://www.youtube.com/playlist?list=PLLHRrAfRqTbPbodOKyV6QeEOMx8KaBiSm) - Endless Knowledge
* [Artificial Intelligence Course for Beginners in Tamil](https://www.youtube.com/playlist?list=PLMn73l82HB5B9oMtKeAexWVdXLRL_BChV) - Hope Artificial Intelligence
### Android
* [Android In Tamil 2019](https://youtube.com/playlist?list=PL4unWLKFsZfcGBja19mrwodNm6AyzZk2B) - Tutor Joe's Stanley
@@ -45,31 +33,12 @@
### Bash and Shell
* [Bash scripting in Tamil](https://youtube.com/playlist?list=PLgWpUXNR_WCeWiXmsYf5HUe7E4I29zTJr) - Payilagam
* [Complete Bash Shell Scripting for beginners in Tamil \| Linux \| Redhat \| Bash \| Shell Scripting Tamil](https://www.youtube.com/watch?v=7vvigzYvapA) - Tamil Tut Era
* [Linux Shell Scripting - Tamil](https://www.youtube.com/playlist?list=PLe61-EtQTlGsMT6fLm0ONaAycUuNK1TeF) - Skill Up With Stan
### C
* [C Programming for Beginners in Tamil \| Complete Course \| code io - Tamil](https://www.youtube.com/watch?v=fmSnLiAv-zc) - code io - Tamil
* [C Programming in Tamil](https://www.youtube.com/playlist?list=PLAJng2Pkr-8wB0CcJ73mrCrE96FrB_XHO) - Kai Naatu
* [C Programming in Tamil \| Complete C Programming course (2023) \| C tutorial - родрооро┐ро┤рпН](https://www.youtube.com/watch?v=JAy56OH58Y4) - Logic First Tamil
* [C Programming Tutorial - Tamil](https://www.youtube.com/playlist?list=PL2j991kByVOVKWsOxB-CQV-nISLn9ZcvV) - CONQUER VICTORY
* [C Tutorial in Tamil](https://youtube.com/playlist?list=PLBQXOA5OR76rq-sU8mNsUmj2Z9kQXz7oD) - Tamil Pro Techniques
* [CS25C01- Computer Programming C in Tamil -Anna university regulation-2025](https://www.youtube.com/playlist?list=PLwheXbz_XBtlRkGvQVJ34RkDl5mg1ndND) - Murugan Tech World
* [Fundamentals of C programming in Tamil](https://youtube.com/playlist?list=PLmjuBlzAWCzxTdRxTtMSj1NFe_GvFlvFw) - Collectiva Knowledge Academy
* [Types Of Pointers IN C Programming Tutorial For Beginners In TAMIL](https://www.youtube.com/playlist?list=PL1BEqtXLfK1o2xyxLO95R6Fo9PV7mGoXf) - Programming Tutor Tamil
### <a id="csharp"></a>C#
* [C# Course in Tamil](https://www.youtube.com/playlist?list=PLN00Qh4gtjNv_MSn3_Nl6GqGYxyd_LIQM) - Programming Line
* [C# tutorial in Tamil - Full Course for Beginners \| родрооро┐ро┤рпН](https://www.youtube.com/watch?v=wEv8QiCyeSE) - Anto sujesh
* [Learn C# in 8 Hours - Full Course \| C# Tutorial for beginners in Tamil](https://www.youtube.com/watch?v=74b1tdaf5MM&t=16s) - BTree Systems
* [Learn C# in Tamil](https://www.youtube.com/playlist?list=PLiHeZHTmVuddLE9IW6vqUqwr12U1WzK3g) - Kaalaratham Tamil Tholaikaatchi
* [Selenium Automation Testing (C# cucumber BDD) \| specflow BDD courset](https://www.youtube.com/playlist?list=PLjuPgqaza-gpvva4T9FxIxO7Iyqk4sKTU) - Learn Technology in Tamil
* [Tamil - C# / .Net Basics For Beginner to Expert](https://www.youtube.com/watch?v=ciFCKxjuirM) - CodeWithKarthik
* [Unity C# Scripting Basics in Tamil](https://www.youtube.com/playlist?list=PLvRASKtKbYeRV8GGS-Xxu0hQJOW4Yxviq) - AJAY AJ - GAME DEV
### <a id="cpp"></a>C++
@@ -78,42 +47,9 @@
* [C++ Programming in Tamil](https://www.youtube.com/playlist?list=PLYM2_EX_xVvUppW1kS91ZNEI20k1V1liI) - Logic First Tamil
### Cloud Computing
* [AWS Full Course for beginners in Tamil \| Free Crash Course \| Ultimate AWS Tutorial in Tamil](https://www.youtube.com/watch?v=eZeNIakuqbc) - The Madras Programmer
* [AWS Tutorial In Tamil \| AWS Cloud Computing For Beginners Tamil \| AWS Tamil Cloud](https://www.youtube.com/watch?v=DaSt-5tTmG4) - BTree Systems
* [Cloud Computing In Tamil](https://www.youtube.com/playlist?list=PL3WUjOOQCEw08GWGuKvuZdrb7Bfkn3oxh) - Ganapathy Tech Tips
* [Data Engineering](https://www.youtube.com/playlist?list=PLLa_h7BriLH3gVIwDBamEFCbqPW8SqAqU) - Google Cloud Tamil
### Computer Organisation & Architecture
* [Computer Architecture](https://www.youtube.com/playlist?list=PLs5kvWTDBVQx4Wy1Si8N5Kv2XOViASmPd) - TAMIL KANINI
* [Computer Architecture in Tamil \| TRB \| Engineering](https://www.youtube.com/playlist?list=PLBMNl-szJPPc2ZAJeA1Va1qGDL8F7l9Dq) - Terrace Out
* [Digital Principles and Computer Organization in Tamil CS3351 Anna University Syllabus](https://www.youtube.com/playlist?list=PLOmHrZkA584-oWxuXJGv1y9C9knOEW_ti) - 4G Silver Academy родрооро┐ро┤рпН
### Cryptography & Network Security
* [CB3491 - Cryptography and Cyber Security \| Anna University Regulation 2021 in Tamil](https://www.youtube.com/playlist?list=PLfNKAsmI385JgHfEw32fM9-4qT3fYiTFu) - PK Educational Institute
* [CB3491-Cryptography and cyber security](https://www.youtube.com/playlist?list=PLwheXbz_XBtlAu-T0wq489qojaVqwxnlv) - Murugan Tech World
* [Cryptography & Network security](https://www.youtube.com/playlist?list=PLmAmHQ-_5ySx_dXmOwSuGGGyE8XsbYT0n) - Trouble- Free
* [Cryptography & Network security](https://www.youtube.com/playlist?list=PL1eBtGPYeYXXVme45jaTpG3RiRYyPbGoT) - Won the ARREARS
* [Cryptography and Cyber Security in Tamil \| CB3491 Lectures in Tamil \| Anna University Syllabus](https://www.youtube.com/playlist?list=PLOmHrZkA584-moxtJEbgIgswpjSB6jkgl) - 4G Silver Academy родрооро┐ро┤рпН
* [Cryptography and Network Security \| Tamil](https://www.youtube.com/playlist?list=PLBMNl-szJPPePpMWV3GNIgI3rvSwo3Yav) - Terrace Out
* [Cryptography and Network Security(CB3491)](https://www.youtube.com/playlist?list=PLR4Rlu17MDY5PP5MO6y3AehtPIBmN6ajX) - BECAUSE
### Data Science
* [Data Science Full Course in Tamil](https://www.youtube.com/playlist?list=PL-M5l4dLK9TVOoqZXW6cSYKcSjKzuLbOl) - KaaShiv InfoTech
* [Data Science Full Course in Tamil 2024 \| Data Science Tutorial for Beginners in Tamil](https://www.youtube.com/watch?v=hNCd_BM4T3M) - BTree Systems
### <a id="dsa"></a>Data Structures and Algorithms
* [родрооро┐ро┤ро┐ро▓рпН Data Structures and Algorithms](https://youtube.com/playlist?list=PL_UqaR55i1797oG0BL0wtxdPpa_NYNFLz) - CSE Tamila by Eezytutorials
* [Data Structures & Algorithms Python](https://www.youtube.com/playlist?list=PLVkDztYhxUGH9AubH9hLy_JYam8EZ9VKs) - Code Meal
* [Data Structures and Algorithms in Java](https://www.youtube.com/playlist?list=PLYM2_EX_xVvX7_AmNY-Deacp3rT3MIXnE) - Logic First Tamil
@@ -158,26 +94,16 @@
### Machine Learning
* [Artificial Intelligence and Machine Learning (CS3491)](https://www.youtube.com/playlist?list=PLR4Rlu17MDY5jGC5tO_6kJsSDELOzmveh) - BECAUSE
* [Introduction to Machine Learning(Tamil)](https://www.youtube.com/playlist?list=PLyqSpQzTE6M-9thAeyB2mRFYvvW8AWxXX) - IIT Madras NPTEL
* [Machine Learning In Tamil](https://www.youtube.com/playlist?list=PLorkqpg7qgkw8xqc-RmuCgfCWRWCRnN-u) - Chill and Grow
* [Machine Learning In Tamil](https://www.youtube.com/playlist?list=PL3uLubnzL2TnWzEtapD1w5ypl8tMR9N08) - Shriram Vasudevan
* [Machine Learning in Tamil](https://www.youtube.com/playlist?list=PLJtSFa-YIedYu2QfQaHJJBLT096RxtMHD) - Majaa Matrix
* [Machine Learning in Tamil](https://www.youtube.com/playlist?list=PLOmHrZkA584-YEDX_2CMGnY2Xvj6B4Lf-) - 4G Silver Academy родрооро┐ро┤рпН
* [Machine Learning in Tamil](https://youtube.com/playlist?list=PL5itdT07Pm8wxRaPWljPntnBmnOs4ExDM) - Nithya Duraisamy
* [Machine Learning Tamil Lecture Series Part #1 Data Preprocessing](https://www.youtube.com/playlist?list=PL18h92UN0f0bm1Aw9_Tgk1Nrp9rOzV63N) - LWM - родрооро┐ро┤рпН
* [Machine Learning with Python and R](https://www.youtube.com/playlist?list=PL-1QQC56x1gEgj8C4L2hw5orryqgdnuoP) - Data Science Alive
### MongoDB
* [Mongo DB](https://www.youtube.com/playlist?list=PLhP5RsB7fhE3Tprm1_WyiToWM80SXw-UN) - code io - Tamil
* [Mongo DB Tutorial In Tamil](https://www.youtube.com/playlist?list=PLoM4uAkd4g69r07VTpVNIZ7wmC_Lkqd0H) - BTree Systems
* [MongoDB Complete Course in Tamil \| 3 Hours](https://www.youtube.com/watch?v=0zwYbudzaJc) - CodeWithKarthik
* [MongoDB Complete Tutorial \| MongoDB in Tamil \| Tutor Joe's](https://www.youtube.com/watch?v=KD-2vh9v1co) - Tutor Joe's Stanley
* [MongoDB Course in Tamil](https://www.youtube.com/playlist?list=PL7BQ4lqtgECRiWoThupyKXRQoDuEV2zy5) - JVL Code
* [MongoDB Tamil Tutorial for Beginners](https://www.youtube.com/playlist?list=PLfD4W8QfMd5DhXKriTHyHjNzNSe_1I7g1) - MaanavaN Learn Code
* [MongoDB Tutorial for beginners in Tamil 2025 \| Full Course for Beginners](https://www.youtube.com/watch?v=CKaywM2qXpo) - Balachandra
### Next JS
@@ -242,7 +168,6 @@
### SQL
* [Oracle SQL - родрооро┐ро┤ро┐ро▓рпН](https://www.youtube.com/playlist?list=PLsphD3EpR7F-u4Jjp_3fYgLSsKwPPTEH4) - NIC IT Academy
* [SQL For Beginners - Tamil](https://www.youtube.com/playlist?list=PLVkDztYhxUGEP7Yrw2voVWhcxILiLCwOt) - Code Meal
* [SQL in Tamil (родрооро┐ро┤ро┐ро▓рпН SQL)](https://www.youtube.com/playlist?list=PLgWpUXNR_WCd-oMh-n6LhRYyNZjiiPVGm) - Payilagam
* [SQL in Tamil for Beginners](https://www.youtube.com/playlist?list=PLYM2_EX_xVvUBh28ZT2i-jH7kBkTfB_W2) - Logic First Tamil
+20 -43
View File
@@ -13,11 +13,9 @@
* [Data Science](#data-science)
* [Data Structures and Algorithms](#data-structures-and-algorithms)
* [Database Management Systems](#database-management-systems)
* [Docker](#docker)
* [Ethical Hacking](#ethical-hacking)
* [Flutter](#flutter)
* [HTML and CSS](#html-and-css)
* [Java](#java)
* [HTML and CSS](#html-and-css)* [Java](#java)
* [Javascript](#javascript)
* [ExpressJS](#expressjs)
* [NextJS](#nextjs)
@@ -40,7 +38,7 @@
### Angular
* [Angular In Telugu \| ANGULAR 10 IN TELUGU \| angular in telugu \| ANGULAR INTRODUCTION FOR BEGINNERS(2021)](https://www.youtube.com/watch?v=9MxS8oNlnMM) - TeluguTechSteps
* [Angular In Telugu | ANGULAR 10 IN TELUGU |angular in telugu|ANGULAR INTRODUCTION FOR BEGINNERS(2021)](https://www.youtube.com/watch?v=9MxS8oNlnMM) - TeluguTechSteps
* [Angular In Telugu](https://www.youtube.com/playlist?list=PLO7Oa5iXf4QhtPXkaNX05qhGQSKFsvAF7) - TeluguTechSteps
@@ -60,7 +58,7 @@
### Bash and Shell
* [Bash Scripting in Telugu](https://www.youtube.com/playlist?list=PLd8alL65M1GYJOLGK312G1qDv-Tv9aBbs) - Trie Tree Technologies
* [Shell Scripting full course In Telugu by 7Hills \| Linux In Telugu \| Bash scripting \| programming](https://www.youtube.com/watch?v=Duq5MtBEChc) - 7 Hills
* [Shell Scripting full course In Telugu by 7Hills | Linux In Telugu | Bash scripting | programming](https://www.youtube.com/watch?v=Duq5MtBEChc) - 7 Hills
### Bootstrap
@@ -74,15 +72,11 @@
* [C Language in Telugu - Complete Tutorial in 12 Hours](https://www.youtube.com/watch?v=HdvRHC5TiwE) - Telugu Computer World
* [C Language Tutorial](https://www.youtube.com/playlist?list=PL3KKfF5A0sSKZutcrUiTCQDX0hn7Tw61E) - Telugu Scit Tutorials
* [C Language Tutorials](https://www.youtube.com/playlist?list=PLC2mgeYbYNm-n8Iz-_3MuNsJFzr0UlGUu) - Telugu Computer World
* [C Language Full Course in Telugu](https://www.youtube.com/playlist?list=PLD7HLs2NCdoUiJir3Kqdqs6OX07oFdcgT) - College Coders
* [C Programming](https://www.youtube.com/playlist?list=PLS8lzSv6JRJ0naiWKSsE15A2sPNufLat1) - Swaroop Talks
* [C language in Telugu](https://www.youtube.com/playlist?list=PLNgoFk5SYUgn5L4ocsA6FTvqKLSzp_8wF) - Vamsi Bhavani
### <a id="cpp"></a>C++
* [C++ Complete Tutorial](https://www.youtube.com/watch?v=uZBXKmQH5u8) - Telugu Computer World
* [C++ Course in Telugu : 25 Days Challenge](https://www.youtube.com/playlist?list=PLNgoFk5SYUglsFq6H2WkQODuzsQyyRrPl) - Vamsi Bhavani
* [C++ Language Tutorials](https://www.youtube.com/playlist?list=PLC2mgeYbYNm9keJjsA95jKa4EUVLd7mQP) - Telugu Computer World
* [C++ Programming in Telugu - Complete Tutorial in 14 Hours](https://www.youtube.com/playlist?list=PLC2mgeYbYNm9keJjsA95jKa4EUVLd7mQP) - Telugu Computer World
@@ -101,7 +95,7 @@
### Database Management Systems
* [Data Base Management System In Telugu in 7hrs \| DBMS in telugu \| MySql Full Course](https://www.youtube.com/watch?v=nVgLiJOI2U8) - Believer 01
* [Data Base Management System In Telugu in 7hrs | DBMS in telugu | MySql Full Course](https://www.youtube.com/watch?v=nVgLiJOI2U8) - Believer 01
* [DBMS Tutorial](https://www.youtube.com/playlist?list=PL3KKfF5A0sSLnIMTfr7bBw_wRW2vCm3T6) - Telugu Scit Tutorials
@@ -113,36 +107,27 @@
### Data Structures and Algorithms
* [Data Structures in Telugu in 7hrs \| Full Course \| Learn Data Structures](https://www.youtube.com/watch?v=pm_ugbO2FlY) - Believer 01
* [Data Structures in Telugu in 7hrs | Full Course | Learn Data Structures](https://www.youtube.com/watch?v=pm_ugbO2FlY) - Believer 01
* [Data Structures](https://www.youtube.com/playlist?list=PLJSrGkRNEDAgmq4kKkPuh8aFJs-zxVbWK) - Lab Mug
* [Java + DSA Course From scratch in Telugu](https://www.youtube.com/playlist?list=PLjzLBp9HHZWhVXBSPS1VqxXXDoVk07gd9) - engineering animuthyam
* [PYTHON + DSA in Telugu For Free](https://www.youtube.com/playlist?list=PLjzLBp9HHZWiJrhfJzTAEbwdpQIfUXtwP) - engineering animuthyam
### Docker
* [Docker Complete Course in Telugu](https://www.youtube.com/playlist?list=PLFoX_td1iTj-ATh48yU4qudcsLPi2kzv0) - NextOps Videos
### Ethical Hacking
* [Complete Ethical Hacking Course in Telugu \|\| Tech Cookie](https://www.youtube.com/watch?v=96_znX8_4Mg) - Tech Cookie
* [Ethical Hacking Tutorial in Telugu \| Ethical Hacking Course \| Edureka Telugu](https://www.youtube.com/watch?v=C5ig8YxRHUM) - edureka! Telugu
* [Ethical Hacking and Cybersecurity](https://www.youtube.com/playlist?list=PLEeX7rNQmSN1SVzjuNcMWYLmKidFfqC0r) - ACEP Tech in Telugu
* [Complete Ethical Hacking Course in Telugu || Tech Cookie](https://www.youtube.com/watch?v=96_znX8_4Mg) - Tech Cookie
* [Ethical Hacking Tutorial in Telugu | Ethical Hacking Course | Edureka Telugu](https://www.youtube.com/watch?v=C5ig8YxRHUM) - edureka! Telugu
### HTML and CSS
* [HTML Tutorials in Telugu \|\| with in "3:30 Hours" \|\| Computersadda.com](https://www.youtube.com/watch?v=cS0TG1iksLM) - Computers adda
* [HTML in Telugu \|\| HTML in Telugu by Kotha Abhishek](https://www.youtube.com/playlist?list=PLv_sM9ZH4RUWkdiiILVHnNZUsOr2DBS7S) - Chintu Tutorials
* [CSS Tutorial for Beginners in Telugu \| Best CSS tutorial for beginners \| CSS3 Tutorial \| TechEnlgiht](https://www.youtube.com/watch?v=z7_gt7x6XAM) - TECH ENLIGHT
* [CSS Tutorials in telugu \|\| CSS in Telugu by Kotha Abhishek](https://www.youtube.com/playlist?list=PLv_sM9ZH4RUVjmxTl5PysFSxJ6VQbdnRc) - Chintu Tutorials
* [CSS Course](https://www.youtube.com/playlist?list=PLMVcNCMUfcCHbRJwgH4VdEIAosKVLxJ1p) - PurnaChandra Bandaru
* [HTML Tutorials in Telugu || with in "3:30 Hours" || Computersadda.com](https://www.youtube.com/watch?v=cS0TG1iksLM) - Computers adda
* [HTML in Telugu || HTML in Telugu by Kotha Abhishek](https://www.youtube.com/playlist?list=PLv_sM9ZH4RUWkdiiILVHnNZUsOr2DBS7S) - Chintu Tutorials
* [CSS Tutorial for Beginners in Telugu | Best CSS tutorial for beginners | CSS3 Tutorial | TechEnlgiht](https://www.youtube.com/watch?v=z7_gt7x6XAM) - TECH ENLIGHT
* [CSS Tutorials in telugu || CSS in Telugu by Kotha Abhishek](https://www.youtube.com/playlist?list=PLv_sM9ZH4RUVjmxTl5PysFSxJ6VQbdnRc) - Chintu Tutorials
### <a id="ds"></a>Data Structures
* [Stacks and Queues in Telugu \|\| Data Structures in Telugu](https://www.youtube.com/playlist?list=PLXj4XH7LcRfBJVCGguyIFbyj__hDSSBm9) - Sudhakar Atchala
* [Stacks and Queues in Telugu || Data Structures in Telugu](https://www.youtube.com/playlist?list=PLXj4XH7LcRfBJVCGguyIFbyj__hDSSBm9) - Sudhakar Atchala
### Flutter
@@ -156,8 +141,6 @@
* [Core Java in Telugu Language](https://www.youtube.com/playlist?list=PLacgMXFs7kl8wrP2mPyJgsWVk-FP31qq1) - H Y R Tutorials
* [Full Java Tutorials in Telugu - Telugu Web Guru](https://www.youtube.com/playlist?list=PLh6Yk2rpZu2Lyt9-2hhRj37otchec1OJL) - telugu web guru
* [JAVA Programming](https://www.youtube.com/playlist?list=PLKZ1dSitnT22IpIQJ2kgfyLeQJ7ySPBol) - Trending Technology
* [Java Course in Telugu : 30 Days Challenge](https://www.youtube.com/playlist?list=PLNgoFk5SYUgmv-wv3aOupxr82c53KJDOB) - Vamsi Bhavani
* [Java 8 Hours Course in Telugu](https://www.youtube.com/watch?v=AzJEnN2pK_I) - Python Life
* [Java in Telugu - Complete Tutorial in 13 Hours](https://www.youtube.com/watch?v=wXfmWSGE2ok) - Telugu Computer World
@@ -166,28 +149,26 @@
* [Full Java Script Tutorials in Telugu - Telugu Web Guru](https://www.youtube.com/playlist?list=PLh6Yk2rpZu2KqDjTuU_qHr-tI_CHOkIsN) - telugu web guru
* [JavaScript Complete Tutorials In Telugu by Kotha Abhishek](https://www.youtube.com/watch?v=GuahuUTSUKI) - Chintu Tutorials
* [JAVA SCRIPT FOR BEGINNERS IN 7 HOURS \|\| LEARN JAVA SCRIPT IN 7 HOURS \|\| JAVA SCRIPT](https://www.youtube.com/watch?v=BTuCzffKh8E) - Sundeep Saradhi Kanthety
* [JavaScript in Telugu \|\| JavaScript in Telugu by Kotha Abhishek](https://www.youtube.com/playlist?list=PLv_sM9ZH4RUW_Pgz-6B0Q-YTfWvC7RVFN) - Chintu Tutorials
* [Javascript Full Course In Telugu For Beginners To Pro](https://www.youtube.com/playlist?list=PLpp0qTynBRqlfMUd_-A65HQ8gAZ-evWLR) - Deekshitha Tech Talks
* [JavaScript Full Course In Telugu](https://www.youtube.com/playlist?list=PLD7HLs2NCdoU7aqlOpVrkBOU8EEzkMEnE) - College Coders
* [JAVA SCRIPT FOR BEGINNERS IN 7 HOURS || LEARN JAVA SCRIPT IN 7 HOURS || JAVA SCRIPT](https://www.youtube.com/watch?v=BTuCzffKh8E) - Sundeep Saradhi Kanthety
* [JavaScript in Telugu || JavaScript in Telugu by Kotha Abhishek](https://www.youtube.com/playlist?list=PLv_sM9ZH4RUW_Pgz-6B0Q-YTfWvC7RVFN) - Chintu Tutorials
#### ExpressJS
* [Express JS In Telugu](https://www.youtube.com/playlist?list=PLxS8q3V3GDdzobKWCoXVYFsXlb5kyq4_N) - WhatsMySugesstion
* [Express JS in Telugu \| express.js Tutorial for Beginners in Telugu](https://www.youtube.com/watch?v=_jgN80P6YII) - Telugu Skillhub
* [Express JS in Telugu | express.js Tutorial for Beginners in Telugu](https://www.youtube.com/watch?v=_jgN80P6YII) - Telugu Skillhub
#### NextJS
* [1 What is Next js In Telugu \| next js \| btech in telugu](https://www.youtube.com/watch?v=9jcX6w1xHJY) - B TECH IN TELUGU
* [Next.js Crash Course in Telugu \| Next.js in Telugu](https://www.youtube.com/watch?v=yqJlmkgroik) - Telugu Skillhub
* [1 What is Next js In Telugu | next js | btech in telugu](https://www.youtube.com/watch?v=9jcX6w1xHJY) - B TECH IN TELUGU
* [Next.js Crash Course in Telugu | Next.js in Telugu](https://www.youtube.com/watch?v=yqJlmkgroik) - Telugu Skillhub
#### NodeJS
* [NodeJS Tutorial](https://www.youtube.com/watch?v=MY2Vxtfn5Tw) - Telugu Skillhub
* [Node JS in Telugu \| Node.js Tutorial for Beginners in Telugu](https://www.youtube.com/playlist?list=PLYnehuuSeAHtu27M2By66v6kJpF_oDR5I) - Know something!!!
* [Node JS in Telugu | Node.js Tutorial for Beginners in Telugu](https://www.youtube.com/playlist?list=PLYnehuuSeAHtu27M2By66v6kJpF_oDR5I) - Know something!!!
#### ReactJS
@@ -195,7 +176,6 @@
* [React JS In Telugu](https://www.youtube.com/watch?v=1r79Eqw6tfg) - Telugu Skillhub
* [React JS In Telugu (Playlist)](https://www.youtube.com/playlist?list=PLWnZ0qt0PImVaDkDbF96dnRGO0_lXVLKf) - Telugu Skillhub
* [React Js Tutorials in Telugu](https://www.youtube.com/playlist?list=PLzdWZT-ZJD0-806wl_diOtzcMS8SYTzq3) - CS World Telugu
* [React - Full Course Telugu](https://www.youtube.com/playlist?list=PLW_lUetpZclcrR9JGkAJ3hjhix0UoLFz7) - TechZoom Media
#### VueJS
@@ -207,7 +187,7 @@
### Laravel
* [Laravel](https://www.youtube.com/playlist?list=PLYnehuuSeAHvBW7ruB1sPomY1SK_3fvx0) - Know something!!!
* [#1 How to install laravel \| Telugu Tutorial](https://www.youtube.com/watch?v=pXB8MuQmeWA) - Know something!!!
* [#1 How to install laravel | Telugu Tutorial](https://www.youtube.com/watch?v=pXB8MuQmeWA) - Know something!!!
### MongoDB
@@ -226,13 +206,11 @@
### Python
* [Free Programming Fundamentals Tutorial - programming р░мр░┐р░Чр░┐р░ир░░р▒Нр░╕р▒Н р░кр▒Нр░░р▒Лр░Чр▒Нр░░р░╛р░ор░┐р░Вр░Чр▒Н in telugu р░др▒Жр░▓р▒Бр░Чр▒Б python - Udemy](https://www.udemy.com/course/programming-for-kids-in-telugu) - Saarvani R (Udemy)
* [Full Python Tutorial in Telugu \| Telugu Web Guru](https://www.youtube.com/playlist?list=PLh6Yk2rpZu2JgeekeyLRQcwZsfLNbW8zQ) - Telugu Web Guru
* [Full Python Tutorial in Telugu | Telugu Web Guru](https://www.youtube.com/playlist?list=PLh6Yk2rpZu2JgeekeyLRQcwZsfLNbW8zQ) - Telugu Web Guru
* [Object oriented programming with python- Telugu Web Guru](https://www.youtube.com/playlist?list=PLh6Yk2rpZu2JgeekeyLRQcwZsfLNbW8zQ) -Telugu Web Guru
* [Python in Telugu - Step by Step Tutorials](https://www.youtube.com/playlist?list=PLC2mgeYbYNm-3aTUq98pbmrA3P1_m-aJR) - Telugu Computer World
* [Python in Telugu For Beginners - Complete Tutorial in 10 Hours](https://www.youtube.com/watch?v=fP9IvI4qu80) - Telugu Computer World
* [Python in Telugu - Step by Step Tutorials](https://www.youtube.com/playlist?list=PLC2mgeYbYNm-3aTUq98pbmrA3P1_m-aJR) - Telugu Computer World
* [Python Course in Telugu: 30 days challenge](https://www.youtube.com/playlist?list=PLNgoFk5SYUglQOaXSY8lAlPXmK6tQBHaw) - Vamsi Bhavani
* [Python Full Course in Telugu with Notes](https://www.youtube.com/playlist?list=PL2Kd-KQLppEF2rENam5gUQnslbfpRyLxR) - Dodagatta Nihar
### R
@@ -246,4 +224,3 @@
* [SQL commands and PL/SQL programs complete in telugu - Oracle SQL-PL/SQL in telugu](https://www.youtube.com/watch?v=2XB5CddzEaM) - Edusoft Learning Systems - Learning Simplified
* [SQL Tutorial for beginners in Telugu](https://www.youtube.com/playlist?list=PLANRDZaL1nlsfBLayvMb_y9k__o_8kt24) - Telugu Programmer
* [Sql tutorials in telugu - sql video tutorials - sql tutorials for beginners telugu](https://www.youtube.com/playlist?list=PLXx2-0oYp1LPUXvjjriVMaMWALucsitR1) - VLR Training
* [SQL Full Course in Telugu](https://www.youtube.com/playlist?list=PLpp0qTynBRqljESSL111GPBRK-_xXLuYL) - Deekshitha Tech Talks
-1
View File
@@ -25,7 +25,6 @@
### Artificial Intelligence
* [Natural Language Processing 2023](https://www.youtube.com/playlist?list=PLyyEwPZh6aHpCAaG6dot5xXrlEK73oF4J) - р╕нр╕гр╕гр╕Цр╕Юр╕е р╕Шр╕│р╕гр╕Зр╕гр╕▒р╕Хр╕Щр╕др╕Чр╕Шр╕┤р╣М
* [NLP 2021](https://youtube.com/playlist?list=PLcBOyD1N1T-PIYnPZ9_iHtug9e-BcHIob) - EkapolC
* [Pattern 2022](https://youtube.com/playlist?list=PLcBOyD1N1T-MnWcKQZqE8FXrgoiiVdXvI) - EkapolC
-9
View File
@@ -9,7 +9,6 @@
* [JavaScript](#javascript)
* [Python](#python)
* [React](#react)
* [SQL](#sql)
* [Temel programlama](#temel-programlama)
* [Version Control Systems](#version-control-systems)
@@ -17,7 +16,6 @@
### Algoritmalar
* [Algoritma Analizi](https://www.youtube.com/playlist?list=PLh9ECzBB8tJPTWIUbZjHZMMGuZcpHUv5h) - BilgisayarKavramlari
* [Algoritmalar ve Veri Yap─▒lar─▒](https://www.youtube.com/playlist?list=PLMQXT_yvb6DUV3usqrNYMfAXoYGXtpmSq) - Berat Ersar─▒
* [Algoritmalara giri┼Я](https://acikders.tuba.gov.tr/course/view.php?id=133) - Charles Leiserson / Erik Demaine (├Зev. Ali Yaz─▒c─▒ - Haluk Ar)
* [Algoritmalar─▒ Anlamak](https://www.youtube.com/playlist?list=PLR_3k5Bkz0SBA9PoV6DrxpghD7pqPScGJ) - Fatih ├Цzkaynak
* [On Derste Algoritma ve Programlama](https://www.youtube.com/playlist?list=PLKnjBHu2xXNNiJdlhiEl_RMkK0PbJ1_DB) - Murat Y├╝ceda─Я
@@ -43,7 +41,6 @@
* [HTML E─Яitim Serisi](https://youtube.com/playlist?list=PLGrTHqyRDvx7aP99nDNRKDi70bLFr_kX-) - Hakan Yal├з─▒nkaya \| Kodluyoruz
* [HTML+CSS ├Ц─Яreniyoruz](https://www.youtube.com/playlist?list=PLadt0EaV4m3Ae9mBaQNylUKUaFK38F4EB) - Adem Ilter
* [S─▒f─▒rdan CSS E─Яitim](https://www.youtube.com/playlist?list=PLadt0EaV4m3BX9JaZbKS9B8076bruv93Y) - Adem Ilter
* [XHTML(HTML) ve CSS Dersleri](https://www.youtube.com/playlist?list=PLWctyKyPphPjm1jnFNsQfOIDgR3wf-prc) - Erol Mesut G├╝n (Yak─▒n Kamp├╝s)
### IDE and editors
@@ -84,12 +81,6 @@
* [Yeni Ba┼Яlayanlar ─░├зin React](https://www.youtube.com/playlist?list=PL-Hkw4CrSVq_eyixSZ4sVI1x6d7akLpsy) - Arin Yazilim
### SQL
* [Her Y├╢n├╝yle SQL Server](https://www.btkakademi.gov.tr/portal/course/her-yonuyle-sql-server-9007) - ├Цmer Faruk ├Зolako─Яlu
* [Uygulamalarla SQL ├Ц─Яreniyorum](https://www.btkakademi.gov.tr/portal/course/uygulamalarla-sql-ogreniyorum-8249) - ├Цmer Faruk ├Зolako─Яlu
### Temel programlama
* [Bilgisayar programlama I](https://acikders.ankara.edu.tr/course/view.php?id=8750) - Semra G├╝nd├╝├з
+1 -7
View File
@@ -1,7 +1,6 @@
### Index
* [C++](#cpp)
* [Go](#go)
* [Java](#java)
* [PHP](#php)
* [Python](#python)
@@ -19,11 +18,6 @@ ADV - ╨Я╤А╨╛╤Б╤Г╨╜╤Г╤В╨╕╨╣. ╨в╨╛╨╜╨║╨╛╤Й╤Ц.
* [╨Ь╨╛╨▓╨░ ╨┐╤А╨╛╨│╤А╨░╨╝╤Г╨▓╨░╨╜╨╜╤П C++](https://stepik.org/course/67114) - ╨Р╨╗╨╡╨║╤Б╨░╨╜╨┤╤А ╨а╤Г╨┤╨╡╨╜╨║╨╛ (Stepik) (BEG)
### Go
* [Go (Golang) - ╨┐╨╡╤А╤И╨╡ ╨╖╨╜╨░╨╣╨╛╨╝╤Б╤В╨▓╨╛ (╤Г╨║╤А╨░╤Ч╨╜╤Б╤М╨║╨╛╤О)](https://stepik.org/course/171599) - ╨Ж╨│╨╛╤А ╨Ы╤О╤В╨╕╨╣ (Stepik) (BEG)
### Java
* [╨Ю╤Б╨╜╨╛╨▓╨╕ ╨┐╤А╨╛╨│╤А╨░╨╝╤Г╨▓╨░╨╜╨╜╤П ╨╜╨░ Java](https://courses.prometheus.org.ua/courses/EPAM/JAVA101/2016_T2/about)
@@ -39,5 +33,5 @@ ADV - ╨Я╤А╨╛╤Б╤Г╨╜╤Г╤В╨╕╨╣. ╨в╨╛╨╜╨║╨╛╤Й╤Ц.
* [Python 2: ╨Ъ╤Г╤А╤Б ╨Ь╨╛╨╗╨╛╨┤╨╛╨│╨╛ ╨С╤Ц╨╣╤Ж╤П](http://www.vitaliypodoba.com/tutorials/python2-beginners-course/) - ╨Т╤Ц╤В╨░╨╗╤Ц╨╣ ╨Я╨╛╨┤╨╛╨▒╨░
* [╨Ь╨╛╨▓╨░ ╨┐╤А╨╛╨│╤А╨░╨╝╤Г╨▓╨░╨╜╨╜╤П Python](https://stepik.org/course/101696) - ╨Р╨╗╨╡╨║╤Б╨░╨╜╨┤╤А ╨а╤Г╨┤╨╡╨╜╨║╨╛ (Stepik) (BEG)
* [╨Ю╤Б╨╜╨╛╨▓╨╕ ╨┐╤А╨╛╨│╤А╨░╨╝╤Г╨▓╨░╨╜╨╜╤П ╨╜╨░ Python](https://courses.prometheus.org.ua/courses/KPI/Programming101/2015_T1/about) - ╨Э╤Ц╨║╤Ц╤В╨░ ╨Я╨░╨▓╨╗╤О╤З╨╡╨╜╨║╨╛ (email address *required*, phone number *required*)
* [╨Я╤А╨╛╨│╤А╨░╨╝╤Г╨▓╨░╨╜╨╜╤П ╨╜╨░ ╨╝╨╛╨▓╤Ц Python (3.x). ╨Я╨╛╤З╨░╤В╨║╨╛╨▓╨╕╨╣ ╨║╤Г╤А╤Б](http://web.archive.org/web/20201026152235/https://sites.google.com/site/pythonukr/vstup) *( :card_file_box: archived)*
* [╨Я╤А╨╛╨│╤А╨░╨╝╤Г╨▓╨░╨╜╨╜╤П ╨╜╨░ ╨╝╨╛╨▓╤Ц Python (3.x). ╨Я╨╛╤З╨░╤В╨║╨╛╨▓╨╕╨╣ ╨║╤Г╤А╤Б](https://sites.google.com/site/pythonukr/vstup)
* [╨Ю╤Б╨╜╨╛╨▓╨╕ ╨┐╤А╨╛╨│╤А╨░╨╝╤Г╨▓╨░╨╜╨╜╤П. Python. ╨з╨░╤Б╤В╨╕╨╜╨░ 1 - ╨Ъ╨Я╨Ж](https://ela.kpi.ua/handle/123456789/25111) - ╨Р.╨Т. ╨п╨║╨╛╨▓╨╡╨╜╨║╨╛
+19 -43
View File
@@ -2,80 +2,56 @@
* [Algorithms](#algorithms)
* [Android](#android)
* [Assembly](#assembly)
* [C](#c)
* [C++](#cplusplus)
* [C#](#csharp)
* [Figma](#figma)
* [HTML and CSS](#html-and-css)
* [Java](#java)
* [Next.js](#nextjs)
* [Python](#python)
### Algorithms
### <a id="algorithms"></a>Algorithms
* [Data Structures and Algorithms Analysis Complete Course in Hindi/Urdu \| Data structures by Fahad Hussain \| data structures and algorithms tutorial](https://www.youtube.com/playlist?list=PLtCBuHKmdxOfPNlAKWxBqdznCcXV4iWCz) - Fahad Hussain&rlm;
* [Data Structures and Algorithms Analysis Complete Course in Hindi/Urdu \| Data structures by Fahad Hussain \| data structures and algorithms tutorial](https://www.youtube.com/playlist?list=PLtCBuHKmdxOfPNlAKWxBqdznCcXV4iWCz) - Fahad Hussain
### Android
### <a id="android"></a>Android
* [Flutter App Development](https://www.youtube.com/playlist?list=PLlvhNpz1tBvH4Wn8rMjtscK3l2pXnC9aN) - Code With Dhruv&rlm;
* [The complete Android Application Development Course in Hindi/Urdu \| Android Development for Beginners in Hindi - Urdu \| Android tutorial in Urdu](https://www.youtube.com/playlist?list=PLtCBuHKmdxOe8IWZnA515lGPKaWx5WNOE) - Fahad Hussain&rlm;
* [Mobile App Development Tutorial Series using React Native in Urdu / Hindi](https://www.youtube.com/playlist?list=PL9fcHFJHtFaZ6DuInqORqFUaKiZO1XCmb) - Perfect Web Solutions&rlm;
* [Flutter App Development Tutorial in Urdu / Hindi](https://www.youtube.com/playlist?list=PLFyjjoCMAPtxq8V9fuVmgsYKLNIKqSEV4) - The Tech Brothers&rlm;
* [Flutter App Development](https://www.youtube.com/playlist?list=PLlvhNpz1tBvH4Wn8rMjtscK3l2pXnC9aN) - Code With Dhruv
* [The complete Android Application Development Course in Hindi/Urdu \| Android Development for Beginners in Hindi - Urdu \| Android tutorial in Urdu](https://www.youtube.com/playlist?list=PLtCBuHKmdxOe8IWZnA515lGPKaWx5WNOE) - Fahad Hussain
* [Mobile App Development Tutorial Series using React Native in Urdu / Hindi](https://www.youtube.com/playlist?list=PL9fcHFJHtFaZ6DuInqORqFUaKiZO1XCmb) - Perfect Web Solutions
### Assembly
### <a id="c"></a>C
* [Assembly Language Programming Tutorials in Urdu / Hindi](https://www.youtube.com/playlist?list=PLR2FqYUVaFJpHPw1ExSVJZFNlXzJYGAT1) - Programology&rlm;
### C
* [C Language Tutorials (Urdu/Hindi)](https://www.youtube.com/playlist?list=PL0yiR-15Ytq8ro6SA-0JWkdyihxxVc_cB) - AssadUllahCh
* [C language tutorial for beginners Urdu/Hindi](https://www.youtube.com/playlist?list=PLtCBuHKmdxOfDo1cChVR3jYEzLtNpGjXa) - Fahad Hussain
* [C Programming for Beginners Urdu/Hindi](https://www.youtube.com/playlist?list=PLezGSay-CjmxobCUsJnIelVG5kM12qKY_) - Super Learning
### <a id="cplusplus"></a>C++
* [C++ Course Series for Beginner in Urdu/Hindi](https://www.youtube.com/playlist?list=PLuuQCKO44unsLwJMkR8_koVG6vDPjMYmH) - Learning Point&rlm;
* [C++ Free Course for Beginners in (Urdu /Hindi)](https://www.youtube.com/playlist?list=PLt4rWC_3rBbWnDrIv4IeC4Vm7PN1wvrNg) - CodeMite&rlm;
* [Object Oriented Programming (OOP) Using C++ [Full Course]](https://www.youtube.com/playlist?list=PLduM7bkxBdOekXfkEqIBAivzG99V2LrAS) - Safdar Dogar&rlm;
* [Object Oriented Programming with C++ (Urdu)](https://www.youtube.com/playlist?list=PLnd7R4Mcw3rJicg4QtoI8gFkoefyCLvEq) - Recluze&rlm;
* [Programming Fundamentals With C++ Complete Course In urdu \| Hindi](https://www.youtube.com/playlist?list=PL4QkPoTgwFULciDFVJEHEwOKMtf9Q_Aqh) - Kacs Learnings&rlm;
* [C++ Course Series for Beginner in Urdu/Hindi](https://www.youtube.com/playlist?list=PLuuQCKO44unsLwJMkR8_koVG6vDPjMYmH) - Learning Point
* [C++ Free Course for Beginners in (Urdu /Hindi)](https://www.youtube.com/playlist?list=PLt4rWC_3rBbWnDrIv4IeC4Vm7PN1wvrNg) - CodeMite
* [Programming Fundamentals With C++ Complete Course In urdu | Hindi](https://www.youtube.com/playlist?list=PL4QkPoTgwFULciDFVJEHEwOKMtf9Q_Aqh) - Kacs Learnings
### <a id="csharp"></a>C#&lrm;
* [C# Tutorial For Beginners in Hindi/Urdu](https://www.youtube.com/playlist?list=PLtCBuHKmdxOfLseCtdZg1a3XBsDFbRVfd) - Fahad Hussain&rlm;
* [C# Tutorials In Urdu/Hindi](https://youtube.com/playlist?list=PLUyYwyJA_WfQd5zeCU890TDFQAqboekyc) - ProgramInUrdu&rlm;
### Figma
* [Figma Design Complete Course in Urdu | Hindi](https://youtube.com/playlist?list=PLspW40rZgNekDbMeeuV8VLt3JoCMg8pQt&si=_J8tYEL3W0YFiHNh) - Tutorials Town&rlm;
* [C# Tutorial For Beginners in Hindi/Urdu](https://www.youtube.com/playlist?list=PLtCBuHKmdxOfLseCtdZg1a3XBsDFbRVfd) - Fahad Hussain
* [C# Tutorials In Urdu/Hindi](https://youtube.com/playlist?list=PLUyYwyJA_WfQd5zeCU890TDFQAqboekyc) - ProgramInUrdu
### <a id="html-and-css"></a>HTML and CSS
* [HTML5 & CSS3 Tutorials In Urdu and Hindi](https://youtube.com/playlist?list=PLUyYwyJA_WfTr3YWWJ41_V7TrRZoq6cBT) - ProgramInUrdu&rlm;
* [HTML5 & CSS3 Tutorials in Urdu/Hindi](https://www.youtube.com/playlist?list=PLU4yvac0MJbJrUWqGQbtFxOYR3gRvXxMs) - OnlineUstaad&rlm;
* [HTML5 & CSS3 Tutorials In Urdu and Hindi](https://youtube.com/playlist?list=PLUyYwyJA_WfTr3YWWJ41_V7TrRZoq6cBT) - ProgramInUrdu
* [HTML5 & CSS3 Tutorials in Urdu/Hindi](https://www.youtube.com/playlist?list=PLU4yvac0MJbJrUWqGQbtFxOYR3gRvXxMs) - OnlineUstaad
### Java
### <a id="java"></a>Java
* [Java Programming in Urdu/Hindi](https://www.youtube.com/playlist?list=PLU4yvac0MJbKs78u32MyVgYFg9d-6DYGL) - OnlineUstaad&rlm;
* [Java Programming in Urdu/Hindi](https://www.youtube.com/playlist?list=PLU4yvac0MJbKs78u32MyVgYFg9d-6DYGL) - OnlineUstaad
### Next.js
### <a id="python"></a>Python
* [Master Next JS 14: Complete Next JS 14 Tutorial from Basics to Advanced in Hindi/Urdu with Projects & Interview Prep](https://www.youtube.com/playlist?list=PL5OhSdfH4uDu6YJcHhmQLkwx4hPWyppos) - The Techzeen&rlm;
### Python
* [Python](https://www.youtube.com/playlist?list=PL-vQNozaqIxuPzFUVEIrYDvd6ieUshJTw) - Kawish - Urdu&rlm;
* [Python_ka_chilla (python in 40 days in urdu/Hindi)](https://www.youtube.com/playlist?list=PL9XvIvvVL50HVsu-Ao8NBr0UJSO8O6lBI) - Codeanics&rlm;
* [Python Tutorial For Beginners](https://www.youtube.com/playlist?list=PLejKBGxF74J7pEMNf4hAJkssDSef73H7c) - Cyber Warriors - Urdu&rlm;
* [Python_ka_chilla (python in 40 days in urdu/Hindi)](https://www.youtube.com/playlist?list=PL9XvIvvVL50HVsu-Ao8NBr0UJSO8O6lBI) - Codeanics
+6 -338
View File
@@ -3,17 +3,13 @@
* [AJAX](#ajax)
* [Android](#android)
* [ASP.NET](#asp)
* [Assembly](#assembly)
* [AutoIt](#autoit)
* [Bash](#bash)
* [Blazor](#blazor)
* [Bootstrap](#bootstrap)
* [C](#c)
* [C#](#csharp)
* [C++](#cpp)
* [Cс║еu tr├║c dс╗п liс╗Зu v├а Giс║гi thuс║нt](#cс║еu-tr├║c-dс╗п-liс╗Зu-v├а-giс║гi-thuс║нt)
* [Dart](#dart)
* [ExpressJS](#expressjs)
* [Cс║еu tr├║c dс╗п liс╗Зu v├а Giс║гi thuс║нt](#cautrucdulieuvagiaithuat)
* [Flutter](#flutter)
* [Git](#git)
* [Go](#go)
@@ -23,24 +19,16 @@
* [AngularJS](#angularjs)
* [jQuery](#jquery)
* [Vue.js](#vuejs)
* [Kotlin](#kotlin)
* [Machine-Learning](#machine-learning)
* [MongoDB](#mongodb)
* [MySQL](#mysql)
* [Next.js](#nextjs)
* [NodeJS](#nodejs)
* [Objective-C](#objective-c)
* [PHP](#php)
* [PostgreSQL](#postgresql)
* [Python](#python)
* [R](#r)
* [React](#react)
* [Ruby](#ruby)
* [Rust](#rust)
* [Sass](#sass)
* [Security](#security)
* [SQL](#sql)
* [SQL Server](#sql-server)
* [Swift](#swift)
* [TypeScript](#typescript)
* [Angular](#angular)
@@ -57,69 +45,30 @@
### Android
* [Android app b├бn h├аng online](https://www.youtube.com/playlist?list=PLbhheUORMqP2_2bdQ3QYnkst8TFldm3p3) - NH Android
* [Android C╞б Bс║гn](https://www.youtube.com/playlist?list=PLE1qPKuGSJaAeaWy8eRkuDjrqm4Rhm-cx) - th├вn triс╗Зu
* [Android vс╗Ыi kolin cho ng╞░с╗Эi mс╗Ыi](https://www.youtube.com/playlist?list=PLPt6-BtUI22qf3KE1V1PyAm1v8M2qqwL5) - G├а Lс║бi Lс║нp Tr├мnh
* [Hс╗Нc Android + Kotlin c╞б bс║гn](https://www.youtube.com/playlist?list=PLpgD-OxlvlqFNyyaFlan2-WTtSaBkWllm) - Xin ch├аo, m├мnh l├а Sс╗пa
* [Lс║нp tr├мnh Android - Android Studio](https://www.youtube.com/playlist?list=PLwJr0JSP7i8AU_esH4BC0NDz_m_yLV4PW) - XuanThuLab
* [Lс║нp tr├мnh Android - Android Widgets - C├бc ─Сiс╗Бu khiс╗Гn](https://www.youtube.com/playlist?list=PLv6GftO355At6jjYThbMn-5r164GJ5Vyb) - ZendVN
* [Lс║нp tr├мnh Android - Menu - Context Menu - Dialog](https://www.youtube.com/playlist?list=PLv6GftO355Avjf5iuNbEUsIZbltzDEuIU) - ZendVN
* [Lс║нp tr├мnh Android - X├вy dс╗▒ng bс╗С cс╗еc giao diс╗Зn vс╗Ыi Android Layout](https://www.youtube.com/playlist?list=PLv6GftO355AtfPQx7M3dkWgi9KPUB9S0V) - ZendVN
* [Lс║нp tr├мnh Android A-Z](https://www.youtube.com/playlist?list=PL5uqQAwS_KDjAgLGiaCakwJV1f4vRnTLS) - Khoa Phс║бm
* [Lс║нp tr├мnh Android c╞б bс║гn](https://www.youtube.com/playlist?list=PL33lvabfss1wDeQMvegg_OZQfaXcbqOQh) - Kteam
* [Lс║нp tr├мnh Android c╞б bс║гn - v2022](https://www.youtube.com/playlist?list=PLn9lhDYvf_3FDMIcSTSuXZIAB1NJuPuaS) - Anh Nguyen Ngoc
* [Lс║нp Tr├мnh Android Rest API](https://www.youtube.com/playlist?list=PLFPekWzEN9zMPU_se3HtbdmPDvXnX7V80) - Nam Nguyen Poly Lab
* [Lс║нp tr├мnh Android vс╗Ыi Kotlin](https://www.youtube.com/playlist?list=PLzrVYRai0riRFcvx8VYTF7fx4hXbd_nhU) - Khoa Phс║бm
* [Lс║нp tr├мnh Android vс╗Ыi new Firebase](https://www.youtube.com/playlist?list=PLzrVYRai0riTLPLclyGuByHvZ8_tDZZIr) - Khoa Phс║бm
* [Tс╗▒ hс╗Нc Lс║нp Tr├мnh Android tс╗л A ─Сс║┐n Z](https://www.youtube.com/playlist?list=PL6aoXCbsHwIayYCo9aDuzZ3dMC9oShs1u) - K├кnh C├┤ng nghс╗З
### ASP
* [ASP.NET Core Web API](https://www.youtube.com/playlist?list=PLE5Bje814fYbhdwSHiHN9rlwJlwJ2YD3t) - HIENLTH Channel
* [C.51 - .NET Core - Angular 12 - Quс║гn L├╜ Nh├а H├аng](https://www.youtube.com/playlist?list=PLiNjao7yG415y_J0G21QUc40akV2vRntP) - Code l├а Ghiс╗Бn
* [Hс╗Нc lс║нp tr├мnh web vс╗Ыi ASP.NET](https://www.youtube.com/playlist?list=PLRLJQuuRRcFnwlQxGeVSVv-z_5tFwAh0j) - Nam .NET
* [L├аm dс╗▒ ├бn vс╗Ыi ASP.NET Core 3.1](https://tedu.com.vn/khoa-hoc/lam-du-an-voi-aspnet-core-31-34.html) - TEDU
* [L├аm dс╗▒ ├бn vс╗Ыi ASP.NET Core 3.1](https://www.youtube.com/playlist?list=PLRhlTlpDUWsyN_FiVQrDWMtHix_E2A_UD) - TEDU
* [Lс║нp tr├мnh ASP.NET Core tс╗л c─Гn bс║гn ─Сс║┐n n├вng cao](https://tedu.com.vn/khoa-hoc/lap-trinh-aspnet-core-tu-co-ban-den-nang-cao-33.html) - TEDU
* [Lс║нp tr├мnh ASP.NET MVC Core](https://www.youtube.com/playlist?list=PLwJr0JSP7i8DXGzj8NgnhOApBMRhWD4J-) - XuanThuLab
* [Lс║нp tr├мnh ASP.NET MVC Core c╞б bс║гn](https://www.youtube.com/playlist?list=PLRhlTlpDUWsxSup77UnO2pWEkr4ahTohJ) - TEDU
* [Lс║нp tr├мnh dс╗▒ ├бn Website b├бn h├аng ASP.NET MVC 4](https://tedu.com.vn/khoa-hoc/lap-trinh-du-an-website-ban-hang-aspnet-mvc-4-1.html) - TEDU
* [Web b├бn h├аng ASP.NET Core 6 to 8 EF MVC](https://www.youtube.com/playlist?list=PLWTu87GngvNzYGOXJnXQwlkdhV6_RWs1b) - Hiс║┐u Tutorial with live project
* [Website Th╞░╞бng mс║бi ─Рiс╗Зn tс╗н vс╗Ыi ASP.NET Core MVC](https://www.youtube.com/playlist?list=PLE5Bje814fYbtRxvDgmWJ6fUpIZXtbNrb) - HIENLTH Channel
* [Xa╠Вy du╠Ы╠гng Backend u╠Ы╠Бng du╠гng chu╠Ы╠Бng khoa╠Бn vo╠Ы╠Бi ASP .NET Core 7 Api va╠А Websocket](https://www.youtube.com/watch?v=hNoCIW4iM10) - Nguyen Duc Hoang
* [X├вy dс╗▒ng с╗йng dс╗еng web vс╗Ыi ASP.NET Core](https://www.youtube.com/playlist?list=PLRhlTlpDUWsyP9PB1yrhNAYI7LC6yr4tZ) - TEDU
### Assembly
* [Asembly, lс║нp tr├мnh hс╗гp ngс╗п tr├кn emu 8086](https://www.youtube.com/playlist?list=PLDYXQL9eThN7o1fsQIEn40eTiJCZTFVoc) - Huy Init
* [Assembly - Lс║нp tr├мnh hс╗гp ngс╗п](https://www.youtube.com/playlist?list=PLqNgXeR4XrjBgFcjPV46Nb2k4D23alTK_) - KienThucTin
* [Lс║нp Tr├мnh ARM Assembly](https://www.youtube.com/playlist?list=PLGZ_RWetU5HJLQmSNExog6Wiws-tCDxh0) - Lс║нp Tr├мnh Nh├║ng A-Z
* [Lс║нp tr├мnh Assembly](https://www.youtube.com/playlist?list=PL_5qWES7xEtCt5z3Fi4rKh71xBKSXzNzv) - Ky Nguyen IoT
* [Lс║нp Tr├мnh ASSEMBLY ARM](https://www.youtube.com/playlist?list=PLE9xJNSB3lTFBf2zj0Mp4gBhGqSDJxj0z) - HuLa Embedded
* [Lс║нp tr├мnh hс╗гp ngс╗п](https://www.youtube.com/playlist?list=PL9sn2M__GrF--BchVjp9msnEniq3hWw1k) - K.Huynh.
* [Lс║нp tr├мnh hс╗гp ngс╗п Assembly 8051](https://www.youtube.com/playlist?list=PLBlxAM4UiXxQ2Vz7C-z1voTjDmsRqEEd1) - V┼й Minh ─Рс╗йc
* [Lс║нp Tr├мnh x86 Assembly](https://www.youtube.com/playlist?list=PLGZ_RWetU5HInf6eYocQXXAaikHbvZI81) - Lс║нp Tr├мnh Nh├║ng A-Z
### AutoIt
* [Auto Game Tutorial](https://www.youtube.com/playlist?list=PLlhlxkw8o0Ga8Vg3Sw5iXHubFxoOvV6aq) - Tool By Autoit
* [AutoIT - C├бch l├аm Auto Chuс╗Щt v├а B├аn Ph├нm](https://www.youtube.com/playlist?list=PLNeDQQ_ukvRpn7NfdLvtQ9PgVJfkNEsAr) - LeeSai
* [Hс╗Нc AutoIT](https://www.youtube.com/playlist?list=PLYi1bpA-AvSC7cGGZTTwLXP4azlMaUVKN) - nghс╗Лch m├бy t├нnh
* [Hс╗Нc AutoIT - Auto game BoomOnline](https://www.youtube.com/playlist?list=PLMz2PqxT4j96uqILfWfypxsUPz9UiZZOM) - Triс╗Гn IS Official
* [Hс╗Нc Cheat Engine vс╗Ыi AutoIT](https://www.youtube.com/playlist?list=PLNeDQQ_ukvRrPcOXOQW47aalcFM9T8wIw) - LeeSai
* [Hс╗Нc lс║нp tr├мnh Auto game bс║▒ng AutoIT](https://www.youtube.com/playlist?list=PLAFIcN_lkOfDP78ug2IhgO0heMJ9N2Kxl) - LongHai Auto
* [Hс╗Нc lс║нp tr├мnh AutoIt](https://j2team.teachable.com/p/hoc-lap-trinh-autoit) - J2TEAM *y├кu cс║зu ─С─Гng k├╜*
* [Hс╗Нc lс║нp tr├мnh AutoIt tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLRqrlsp_0RPWgxqRv5vlXFFpa3s4VA7zZ) - J2TEAM
### Bash
* [Kh├│a hс╗Нc Bash Shell c╞б bс║гn cho ng╞░с╗Эi mс╗Ыi](https://nguyenvanhieu.vn/hoc-bash-shell-co-ban)
* [Lс║нp tr├мnh Bash Shell Script c╞б bс║гn](https://www.youtube.com/playlist?list=PLcW6QFb7l0G7ukw6LBcPJbvxbFhgfX9-S) - Curry
* [SHELL/BASH](https://www.youtube.com/playlist?list=PL1HxRSJMOMPKOJhefnyfYLICczYTiUGaK) - Toan Nguyen
### Blazor
@@ -137,21 +86,11 @@
* [B├аi to├бn kinh ─Сiс╗Гn trong lс║нp tr├мnh C++](https://www.youtube.com/playlist?list=PL33lvabfss1zRuwxONgKLc_BBsZ-Y2B6b) - K team
* [C++](https://www.youtube.com/playlist?list=PLyiioioEJSxHVTaeL-ELYy6Io-I8diIVZ) - Dс║бy Nhau Hс╗Нc
* [C++ Cс║еu tr├║c dс╗п liс╗Зu](https://www.youtube.com/playlist?list=PLyiioioEJSxHr-4yQvc6biuGsiYqPq35F) - Dс║бy Nhau Hс╗Нc
* [Hс╗Нc lс║нp tr├мnh C](https://www.youtube.com/playlist?list=PLE1qPKuGSJaBq4VFzTYrhzCiPvCoI8JDv) - th├вn triс╗Зu
* [Hс╗Нc lс║нp tr├мnh C cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu (2019)](https://www.youtube.com/playlist?list=PLh91SaQgRYnpj1GqVmVMq4acSAHtSKKwR) - Lс║нp Tr├мnh Kh├┤ng Kh├│
* [Hс╗Нc lс║нp tr├мnh C c╞б bс║гn](https://www.youtube.com/playlist?list=PLZEIt444jqpAEl0D3W17WDS3ZtGbHIxF3) - Son Nguyen
* [Hс╗Нc lс║нp tr├мnh C++ cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu](https://www.youtube.com/playlist?list=PLh91SaQgRYnp-NC3WnFDMWQV40a6m61Hr) - Lс║нp Tr├мnh Kh├┤ng Kh├│
* [Lс║нp tr├мnh C](https://www.youtube.com/playlist?list=PLyxSzL3F7487Nh-ib25lcLEzhL5mgZkFJ) - TITV
* [Lс║нp Tr├мnh C | X├вu K├╜ Tс╗▒ | Chuс╗Чi](https://www.youtube.com/playlist?list=PLux-_phi0Rz3XyMk0JHqeN2DM69XDAyyo) - 28tech
* [Lс║нp tr├мnh C cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu hс╗Нc lс║нp tr├мnh](https://www.youtube.com/playlist?list=PLzQuu4-Qxlh7lfDpA2lhuBHMNMskLE2QZ) - Hс╗Нc C├┤ng Nghс╗З
* [Lс║нp Tr├мnh C Tс╗л C╞б Bс║гn ─Рс║┐n N├вng Cao](https://www.youtube.com/playlist?list=PL6h8VcmH2PuJzGN8UFhMAoAsPcHg2uepd) - Full House
* [Lс║нp tr├мnh C++ c╞б bс║гn - HowKteam](https://www.youtube.com/playlist?list=PL33lvabfss1xagFyyQPRcppjFKMQ7lvJM) - K team
* [Ng├┤n Ngс╗п Lс║нp Tr├мnh C](https://www.youtube.com/playlist?list=PLyiioioEJSxHr5X8RNY3QXUGcjzeZeI7l) - Dс║бy Nhau Hс╗Нc
* [Ng├┤n Ngс╗п Lс║нp Tr├мnh C](https://www.youtube.com/playlist?list=PLux-_phi0Rz2TB5D16sJzy3MgOht3IlND) - 28tech
* [Ng├┤n Ngс╗п Lс║нp Tr├мnh C |IUH](https://www.youtube.com/playlist?list=PLOWHQCkFdTueoPoil-FTma3-q-_uxsvhR) - Jerry Thс║пng
* [Ng├┤n ngс╗п lс║нp tr├мnh C-GV. Nguyс╗Еn V─Гn Ph├║c](https://www.youtube.com/playlist?list=PLdgLBTCcFWkfWhf3qSPX-pNGyLOj8IA3w) - CCE- eLEARN
* [Nhс║нp m├┤n lс║нp tr├мnh C c╞б bс║гn](https://www.youtube.com/playlist?list=PLQj93CJe0N72nRYDYEdVpV3ZzGHMJvgqt) - ─Рс╗Ч Ph├║c Hс║гo
* [Nhс║нp m├┤n Lс║мP TR├МNH C─ВN Bс║вN vс╗Ыi C](https://www.youtube.com/playlist?list=PLayYhLZuuO9t9F8tIKR5RE7HQbDwNtnSV) - gi├бo.l├аng
* [Series Con trс╗П trong C](http://diendan.congdongcviet.com/threads/t42977::tim-hieu-ban-chat-cua-con-tro-tu-co-ban-den-nang-cao.cpp) - Cс╗Щng ─Сс╗Уng C Viс╗Зt
@@ -159,13 +98,8 @@
* [C# C─Гn Bс║гn](https://www.youtube.com/playlist?list=PL33lvabfss1wUj15ea6W0A-TtDOrWWSRK) - Kteam
* [C# N├вng Cao](https://www.youtube.com/playlist?list=PL33lvabfss1y5jmklzilr2W2LZiltk6bU) - Kteam
* [Hс╗Нc Lс║нp Tr├мnh .NET c╞б bс║гn](https://www.youtube.com/playlist?list=PLRLJQuuRRcFlaITD5F6XKQJxOt8QgCNAg) - Nam .NET
* [Hс╗Нc Lс║нp Tr├мnh C# C╞б Bс║гn](https://www.youtube.com/playlist?list=PLE1qPKuGSJaANYwZJweIuzceWHCJI8mnE) - th├вn triс╗Зu
* [HttpRequest - Crawl data tс╗л website](https://www.youtube.com/playlist?list=PL33lvabfss1w4-G4wujhFVZGTlFkooCck) - K team
* [H╞░с╗Ыng dс║лn code Game Server Basic & Game Client](https://www.youtube.com/playlist?list=PLm5N2Ku5IP9eZPS20m8AEpdzYNB-lQ7Dp) - Code Phс╗зi
* [Lс║нp tr├мnh C# - NET Core](https://www.youtube.com/playlist?list=PLwJr0JSP7i8BERdErX9Ird67xTflZkxb-) - XuanThuLab
* [Lс║нp tr├мnh C# cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu](https://tedu.com.vn/khoa-hoc/lap-trinh-c-toan-tap-cho-nguoi-moi-bat-dau-46.html) - TEDU
* [Lс║нp tr├мnh C# c╞б bс║гn](https://www.youtube.com/playlist?list=PL33lvabfss1wUj15ea6W0A-TtDOrWWSRK) - K team
* [Lс║нp tr├мnh C# Winform c╞б bс║гn](https://www.youtube.com/playlist?list=PL33lvabfss1y2T7yK--YZJHCsU7LZVzBS) - Kteam
* [Lс║нp tr├мnh game Caro vс╗Ыi C# Winform](https://www.youtube.com/playlist?list=PL33lvabfss1yCEzvLavt8jD4daqpejzwN) - Kteam
* [Lс║нp tr├мnh h╞░с╗Ыng ─Сс╗Сi t╞░с╗гng trong C#](https://www.youtube.com/playlist?list=PL33lvabfss1zRgaWBcC__Bnt5AOSRfU71) - Kteam
@@ -173,87 +107,30 @@
* [Lс║нp tr├мnh phс║зn mс╗Бm Quс║гn L├╜ Qu├бn Cafe vс╗Ыi C# Winform](https://www.youtube.com/playlist?list=PL33lvabfss1xnPhBJHjM0A8TEBBcGCTsf) - Kteam
* [Lс║нp tr├мnh Selenium vс╗Ыi C# - WPF](https://www.youtube.com/playlist?list=PL33lvabfss1ys_UxBqlKvdm6mVs1sL9T2) - Kteam
* [Lс║нp tr├мnh с╗йng dс╗еng Lс║нp Lс╗Лch vс╗Ыi C# Winform](https://www.youtube.com/playlist?list=PL33lvabfss1zfGzpSGQN7CUoHKS6OQbJc) - Kteam
* [Lс║нp tr├мnh WPF c╞б bс║гn](https://www.youtube.com/playlist?list=PL33lvabfss1ywgHcDF2aB8YBxwtj1_Rjk) - K team
### <a id="cpp"></a>C++
* [Hс╗Нc C++ c╞б bс║гn | Hс╗Нc lс║нp tr├мnh C++ c╞б bс║гn](https://www.youtube.com/playlist?list=PLZEIt444jqpD6NUtMg5X6Y3T4lYqcudO9) - Son Nguyen
* [Hс╗Нc lс║нp tr├мnh C++ (C┼и Cmnr)](https://www.youtube.com/playlist?list=PLE1qPKuGSJaB3x2P8vAob9V1BIEp9VYwp) - th├вn triс╗Зu
* [Hс╗Нc lс║нp tr├мnh C++ cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu](https://www.youtube.com/playlist?list=PLh91SaQgRYnp-NC3WnFDMWQV40a6m61Hr) - Lс║нp Tr├мnh Kh├┤ng Kh├│
* [Kho├б hс╗Нc lс║нp tr├мnh C++ tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLE1qPKuGSJaD7sejCSC8ivSueeesNFyov) - th├вn triс╗Зu
* [Kh├│a hс╗Нc Lс║нp tr├мnh C++ tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLzQuu4-Qxlh6xm5_uswCkfkudKs00dsNK) - Hс╗Нc C├┤ng Nghс╗З
* [Lс║нp tr├мnh C++ c╞б bс║гn - HowKteam](https://www.youtube.com/playlist?list=PL33lvabfss1xagFyyQPRcppjFKMQ7lvJM) - K team
* [Lс║нp tr├мnh C++ c╞б bс║гn 2023 | Tс╗▒ hс╗Нc lс║нp tr├мnh C++ si├кu dс╗Е hiс╗Гu cho ng╞░с╗Эi mс╗Ыi](https://www.youtube.com/playlist?list=PLPt6-BtUI22rZ-lB276VBY85mUNeIFJf5) - G├а Lс║бi Lс║нp Tr├мnh
* [Lс║мP TR├МNH C++ Tс╗к C╞а Bс║вN ─Рс║╛N N├ВNG CAO](https://www.youtube.com/playlist?list=PLqfkD788zZGCmOyQaymJv4G-au94QqBLj) - Tс╗Э Mс╗Э S├бng hс╗Нc Lс║нp tr├мnh
* [Lс║нp tr├мnh C++ tс╗л c╞б bс║гn tс╗Ыi n├вng cao](https://www.youtube.com/playlist?list=PL_-VfJajZj0Uo72G_6tSY4NRLpmffeXSA) - F8 Official
* [Lс║нp tr├мnh C++ tс╗л c╞б bс║гn tс╗Ыi n├вng cao](https://www.youtube.com/playlist?list=PLjnaYcKy3HzOq4SkNVvXQ1FaXk9QlEkaq) - Minh Quang
* [Lс║нp tr├мnh c─Гn bс║гn C/C++](https://www.youtube.com/playlist?list=PLimFJKGsbn1lG2-vNW57FyESDlT-_F2QQ) - Thien Tam Nguyen
* [Lс║нp Tr├мnh Game C++ SDL](https://www.youtube.com/playlist?list=PLR7NDiX0QsfQQ2iFXsXepwH46wf3D4Y4C) - Ph├бt Triс╗Гn Phс║зn Mс╗Бm 123A-Z
* [Ng├┤n Ngс╗п Lс║нp tr├мnh C++](https://www.youtube.com/playlist?list=PLux-_phi0Rz0Hq9fDP4TlOulBl8APKp79) - 28tech
### Cс║еu tr├║c dс╗п liс╗Зu v├а Giс║гi thuс║нt
* [Cс║еu tr├║c dс╗п liс╗Зu v├а Giс║гi thuс║нt](https://www.youtube.com/playlist?list=PLoaAbmGPgTSNMAzkKBHkh2mLuBk54II5L) - ├Фng Dev
* [Danh s├бch nhс╗пng t├аi liс╗Зu hay vс╗Б Thuс║нt to├бn v├а Lс║нp tr├мnh thi ─Сс║еu](https://github.com/tmsanghoclaptrinh/tmsang-hoc-thuat-toan) - Tс╗Э Mс╗Э S├бng hс╗Нc Lс║нp tr├мnh
### Dart
* [Lс║нp tr├мnh Dart](https://www.youtube.com/playlist?list=PLRoAKls-7kksChE3OhiE2iAeCa7h1kk5k) - Migolab
* [Lс║нp tr├мnh Dart](https://www.youtube.com/playlist?list=PLanHRxSQZoQEs0ApO55id4KGyXUjPReQA) - Coder Studio
* [Lс║нp tr├мnh ng├┤n ngс╗п Dart | Flutter c╞б bс║гn](https://www.youtube.com/playlist?list=PLRnNjVSYDePhLyD_bKgQnEGyL6R2-fKU1) - T├╣ng Sugar
### ExpressJS
* [[FULL STACK] MERN PRO тАв Hс╗Нc lс║нp tr├мnh Front-end + Back-end | L├аm dс╗▒ ├бn thс╗▒c tс║┐ Trello k├йo thс║г](https://www.youtube.com/playlist?list=PLP6tw4Zpj-RJP2-YrhtkWqObMQ-AA4TDy) - TrungQuanDev
* [ExpressJS & NodeJS - X├вy dс╗▒ng hс╗З thс╗Сng server chuс║йn RESTFUL, x├бc thс╗▒c ph├вn quyс╗Бn l├аm blog c├б nh├вn](https://www.youtube.com/playlist?list=PLodO7Gi1F7R1GMefX_44suLAaXnaNYMyC) - Nodemy
* [Hс╗Нc Nodejs c├╣ng F8](https://www.youtube.com/playlist?list=PLwJIrGynFq9BZto5VvKw7OEDNxN6plq_3) - Tech Mely
* [Kh├│a hс╗Нc Fullstack SERN (SQL, Express.js, React.js, Node.js)](https://www.youtube.com/playlist?list=PLncHg6Kn2JT6E38Z3kit9Hnif1xC_9VqI) - Hс╗Пi D├вn IT
* [Kh├│a hс╗Нc X├вy dс╗▒ng Rest API vс╗Ыi Nodejs, Express v├а MongoDB](https://www.youtube.com/playlist?list=PLRhlTlpDUWsz4IwOpkEmtgwAom3Puw8rx) - TEDU
* [MERN Stack (MongoDB, Express, React, Node.js)- Lс║нp tr├мnh web b├бn h├аng fullstack](https://www.youtube.com/playlist?list=PL_QEvEi9neNSOGrmYOZSYFk9DpYr-Zd9p) - Lс║нp tr├мnh thс║нt dс╗Е
* [NodeJS & ExpressJS](https://www.youtube.com/playlist?list=PL_-VfJajZj0VatBpaXkEHK_UPHL7dW6I3) - F8 Official
* [React Native EventHub Fullstack vс╗Ыi NodeJS ExpressJS MongoDB](https://www.youtube.com/playlist?list=PLwRuTV6YR6x1_CzgvKEDEPH1Czl6Mmu6h) - ─Р├аo Quang
* [UDEMY - Backend RESTFul Server vс╗Ыi Node.JS v├а Express (SQL/MongoDB)](https://www.youtube.com/playlist?list=PLncHg6Kn2JT734qFpgJeSfFR0mMOklC_3) - Hс╗Пi D├вn IT
### Flutter
* [Flutter c─Гn bс║гn](https://tedu.com.vn/khoa-hoc/xay-dung-ung-dung-mobile-voi-flutter-can-ban-31.html) - TEDU
* [Flutter Tutorial 2021 for Beginners: English App | Flutter Lab](https://www.youtube.com/playlist?list=PLFcgubjtcw5U-Y6z1gpR02ebF-jyLoyga) - 200Lab
* [Flutter Tс╗л C╞б Bс║гn ─Рс║┐n N├вng Cao 2024 - 2025](https://www.youtube.com/playlist?list=PLE1qPKuGSJaAmSo-tC02ugcyttOcsK7C9) - th├вn triс╗Зu
* [Lс║нp tr├мnh di ─Сс╗Щng Flutter (Mobile Development Flutter)](https://www.youtube.com/playlist?list=PLZqHbMxF8mzbcMAjOtClkRcEIkhvV3ZtL) - Dummy Fresher
* [Lс║нp tr├мnh di ─Сс╗Щng vс╗Ыi Flutter](https://www.youtube.com/playlist?list=PLv6GftO355AsxyLjGVkpOmN8DUbcPdIBv) - ZendVN - Hс╗Нc Lс║нp Tr├мnh Online
* [Lс║нp tr├мnh di ─Сс╗Щng vс╗Ыi Flutter c─Гn bс║гn](https://www.youtube.com/playlist?list=PLRhlTlpDUWsxWhGA4jTr0oGeNs7xYyDPW) - TEDU
* [Lс║нp tr├мnh Flutter - thiс║┐t bс╗Л di ─Сс╗Щng](https://www.youtube.com/playlist?list=PLyxSzL3F7484qhNw1K08o8kDn8ecCpA_j) - TITV
* [Tс╗▒ hс╗Нc Flutter 2020](https://www.youtube.com/playlist?list=PLWBrqglnjNl3DzS2RHds5KlanGqQ1uLNQ) - Nguyen Duc Hoang
* [Tс╗▒ hс╗Нc lс║нp tr├мnh Flutter 2023](https://www.youtube.com/playlist?list=PL3Ob3F0T-08brnWfs8np2ROjICeT-Pr6T) - TinCoder
* [X├вy dс╗▒ng с╗йng dс╗еng Flutter thс╗▒c tс║┐.](https://www.youtube.com/playlist?list=PLFDupNa8166hj4TEZcq3_za4GirSiawzN) - Ch├аng Dev Mobile
### Git
* [C├бch sс╗н dс╗еng Git trong THс╗░C Tс║╛ \| Github](https://www.youtube.com/watch?v=O5uT6p6VWjY) - ├Фng Dev
* [Git - from Zero to Hero](https://www.youtube.com/playlist?list=PLkY6Xj8Sg8-viFVtaVps_h_Emi2wQyE7q) - CodersX
* [Git Si├кu C─Гn Bс║гn Cho Ng╞░с╗Эi Mс╗Ыi Bс║пt ─Рс║зu Tс╗л Z ─Рс║┐n A vс╗Ыi Hс╗Пi D├вn IT](https://www.youtube.com/playlist?list=PLncHg6Kn2JT6nWS9MRjSnt6Z-9Rj0pAlo) - Hс╗Пi D├вn IT
* [Hс╗Нc Git v├а Github](https://www.youtube.com/playlist?list=PLyxSzL3F7485Xgn7novgNxnou8QU6i485) - TITV
* [Quс║гn l├╜ source code trong dс╗▒ ├бn vс╗Ыi GIT](https://tedu.com.vn/khoa-hoc/quan-ly-source-code-trong-du-an-voi-git-8.html) - TEDU
* [Tс╗л g├а tс╗Ыi pro Git v├а Github trong 20 ph├║t - Tс╗▒ hс╗Нc Git si├кu tс╗Сc](https://www.youtube.com/watch?v=1JuYQgpbrW0) - Phс║бm Huy Ho├аng (toidicodedao)
### Go
* [Course - Go Backend Architecture](https://www.youtube.com/playlist?list=PLw0w5s5b9NK6qiL9Xzki-mGbq_V8dBQkY) - Tips Javascript
* [Go - Con ─С╞░с╗Эng lс║нp tr├мnh](https://www.youtube.com/playlist?list=PL0Pnqmz-onB5Xk2o46BpvGHa-c8Toe0YP) - Tips Golang
* [Go Language Advanced Programming](https://github.com/zalopay-oss/go-advanced) - Zalopay
* [Golang c╞б bс║гn - Playlist](https://www.youtube.com/playlist?list=PLw-L1SGSvTEco7QvKTEd39wrMoTCPNUuN) - Yuh lс║нp tr├мnh vi├кn
* [Golang thс╗▒c chiс║┐n cho ng╞░с╗Эi mс╗Ыi](https://www.youtube.com/playlist?list=PLVDJsRQrTUz4bQDHCElBG2AsJzCwonqKs) - Code4Func
* [Kh├│a hс╗Нc lс║нp tr├мnh Golang Tс╗л C╞б Bс║гn ─Рс║┐n N├вng Cao тАУ Lс║нp Tr├мnh Go Cho Ng╞░с╗Эi Mс╗Ыi [FULL COURSE A - Z]](https://www.youtube.com/playlist?list=PLTasIXUHepx0tYvXfFsbEl69VbMCZDH1i) - Code With Tuan
* [Lс║нp tr├мnh Go c╞б bс║гn](https://www.youtube.com/playlist?list=PLOsM_3jFFQRnzp7jWU3WLmQ1sF4IX45zr) - Viс╗Зt Trс║зn
* [Lс║нp tr├мnh Golang](https://www.youtube.com/playlist?list=PLVDJsRQrTUz5icsxSfKdymhghOtLNFn-k) - Code4Func
* [Lс║нp Tr├мnh REST API c╞б bс║гn vс╗Ыi Golang](https://www.youtube.com/playlist?list=PLOsM_3jFFQRl3tAqDVU-nPJOHBfXJVnaM) - Viс╗Зt Trс║зn
* [Master RESTful API vс╗Ыi Golang v├а Gin: Kh├│a Hс╗Нc Lс║нp Tr├мnh Thс╗▒c Chiс║┐n X├вy Dс╗▒ng Backend [FULL COURSE A - Z]](https://www.youtube.com/playlist?list=PLTasIXUHepx1hPkFeN9OXa2bcuILAqiJM) - Code With Tuan
* [Tс╗▒ hс╗Нc Golang trong 5 giс╗Э. Hс╗Нc xong kiс║┐m l╞░╞бng ng├аn ─С├┤!](https://www.youtube.com/playlist?list=PLC4c48H3oDRwlxVzOv2L8CXF7tZmtPHkn) - The Funzy Dev
### HTML and CSS
@@ -264,50 +141,21 @@
* [HTML](https://www.codehub.com.vn/HTML) - Codehub
* [HTML C╞б Bс║гn](https://www.codehub.com.vn/HTML-Co-Ban) - Codehub
* [HTML C╞б Bс║гn](https://www.youtube.com/playlist?list=PLl4nkmb3a8w135_M4YRPzYD9_6tERz3ce) - Thс║бch Phс║бm
* [HTML, CSS c╞б bс║гn dс╗Е hiс╗Гu- hс╗Нc lс║нp tr├мnh online miс╗Еn ph├н](https://www.youtube.com/playlist?list=PLPt6-BtUI22oveeGAyckbAXRSmTBGLZP4) - G├а Lс║бi Lс║нp Tr├мnh
* [HTML, CSS tс╗л Zero Tс╗Ыi Hero](https://www.youtube.com/playlist?list=PL_-VfJajZj0U9nEXa4qyfB4U5ZIYCMPlz) - F8 Official
* [HTML D├аnh Cho Lс║нp Tr├мnh Vi├кn Web](https://zendvn.com/mien-phi-html-danh-cho-lap-trinh-vien-web-68) - Nguyen Van Linh (ZendVN)
* [Tс╗▒ Hс╗Нc Thiс║┐t Kс║┐ Website vс╗Ыi HTML v├а CSS](https://www.codehub.com.vn/Tu-Hoc-Thiet-Ke-Website-voi-HTML-va-CSS) - Codehub
### Java
* [Hс╗Нc Lс║нp Tr├мnh Java C╞б Bс║гn](https://www.youtube.com/playlist?list=PLE1qPKuGSJaB4DMiP4wYbLjfszqKg89lL) - Th├вn Triс╗Зu
* [Hс╗Нc Lс║нp tr├мnh Java vс╗Ыi Netbeans IDE](https://www.youtube.com/playlist?list=PLE1qPKuGSJaA6-6So-knCgNNq3vNbCRD6) - th├вn triс╗Зu
* [Kh├│a hс╗Нc Java Core](https://www.youtube.com/playlist?list=PLmGP0M1IXtjXnqg-GdVmLZcinnt6aXvW3) - L├к V┼й Nguy├кn Vlog
* [Kh├│a Hс╗Нc Java C╞б Bс║гn](https://www.youtube.com/playlist?list=PLsfLgp1K1xQ4ukX-Y7w5i76eJkApL641w) - JMaster IO
* [Kho├б Hс╗Нc Java N├вng Cao](https://www.youtube.com/playlist?list=PLMPBVRu4TjAxXA5KuqKFU7gwGiucyif_r) - Trс║зn V─Гn ─Рiс╗Зp Official
* [Kh├│a hс╗Нc Java N├вng Cao (Java EE)](https://www.youtube.com/playlist?list=PLsfLgp1K1xQ51TV6pCyS9yNQvstVk_le_) - JMaster IO
* [Kh├│a hс╗Нc Java Web Servlet/Jsp](https://www.youtube.com/playlist?list=PLsfLgp1K1xQ53rzo7vo2dKamBu0bj7lkv) - JMaster IO
* [Kh├│a hс╗Нc lс║нp tr├мnh Backend Java Spring(28tech)](https://www.youtube.com/playlist?list=PLPCCr-MyxGncORR0AX73cVlz_WGQhKn4e) - khangmoihocit
* [Kh├│a hс╗Нc lс║нp tr├мnh Java c╞б bс║гn ─Сс║┐n h╞░с╗Ыng ─Сс╗Сi t╞░с╗гng](https://www.youtube.com/playlist?list=PL33lvabfss1yGrOutFR03OZoqm91TSsvs) - K team
* [Kh├│a hс╗Нc lс║нp tr├мnh Java Spring boot 3 miс╗Еn ph├н cho ng╞░с╗Эi mс╗Ыi (2024)](https://www.youtube.com/playlist?list=PL2xsxmVse9IaxzE8Mght4CFltGOqcG6FC) - Devteria
* [Kh├│a hс╗Нc lс║нp tr├мnh JavaFX](https://www.youtube.com/playlist?list=PL33lvabfss1yRgFCgFXjtYaGAuDJjjH-j) - Kteam
* [Lс║нp tr├мnh Java](https://www.youtube.com/playlist?list=PLyxSzL3F748401hWFgJ8gKMnN6MM8QQ7F) - TITV
* [Lс║нp tr├мnh java | Tс╗▒ hс╗Нc java si├кu tс╗Сc](https://www.youtube.com/playlist?list=PLPt6-BtUI22rxpe6PZc5H6XAgPusA6fDQ) - G├а Lс║бi Lс║нp Tr├мnh
* [Lс║нp tr├мnh Java c─Гn bс║гn](https://tedu.com.vn/video/bai-1-gioi-thieu-tong-quan-ve-java-520.html) - TEDU
* [Tс╗▒ hс╗Нc Java cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu 2025](https://www.youtube.com/playlist?list=PLAv1wIkQKlEt3RIZuS50MKOZwxLrSyR-c) - Tс║нp L├аm Mentor
* [Tс╗▒ Hс╗Нc Java Core Tс╗л A tс╗Ыi Z D├аnh cho Beginners](https://www.youtube.com/playlist?list=PLncHg6Kn2JT5EVkhKoJmzOytHY39Mrf_o) - Hс╗Пi D├вn IT
* [Tс╗▒ hс╗Нc Lс║нp tr├мnh JAVA](https://www.youtube.com/playlist?list=PLv6GftO355Av6u60DTCvrUe6aXror_bdE) - ZendVN
### JavaScript
* [ЁЯФе Javascript cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu ЁЯЪА](https://www.youtube.com/playlist?list=PLeS7aZkL6GOtpuqMKVTfS37RNTlkolLCk) - Easy Frontend
* [Cafedev - Series tс╗▒ hс╗Нc Javascript tс╗л c╞б bс║гn tс╗Ыi n├вng cao](https://www.youtube.com/playlist?list=PLq3KxntIWWrJ-YMciMrAqgXWjZIJyje1b) - cafedev
* [Hс╗Нc JavaScript](https://www.youtube.com/playlist?list=PLqQ6Lvascx2tbLuhCg3E1nC1qcHrckpue) - HoleTex
* [Hс╗Нc JavaScript](https://www.youtube.com/playlist?list=PLE1qPKuGSJaDd2AiY_FkSJ2TVyuDal_k8) - th├вn triс╗Зu
* [Hс╗Нc Javascript c├╣ng F8](https://www.youtube.com/playlist?list=PLwJIrGynFq9APduetgi3l9xehOCZCTZEG) - Tech Mely
* [JavaScript A-Z 2020](https://www.youtube.com/playlist?list=PLkY6Xj8Sg8-uPZnTdScfuH0xD-O6Kb-V-) - CodersX
* [JavaScript Advanced 2020](https://www.youtube.com/playlist?list=PLkY6Xj8Sg8-tVbSFcv-p1yOaHiG8fo0kP) - CodersX
* [JavaScript C╞б Bс║гn](https://www.codehub.com.vn/JavaScript-Co-Ban) - Codehub
* [Javascript C╞б Bс║гn](https://www.youtube.com/playlist?list=PL_-VfJajZj0VgpFpEVFzS5Z-lkXtBe-x5) - F8 Official
* [JavaScript si├кu tс╗Сc - Kh├│a hс╗Нc lс║нp tr├мnh JavaScript tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLPt6-BtUI22pYwpfmkP4EuJkf6GRe63KU) - G├а Lс║бi Lс║нp Tr├мnh
* [Kh├│a hс╗Нc Javascript si├кu dс╗Е 2023 - Lс║нp tr├мnh thс║нt dс╗Е](https://www.youtube.com/playlist?list=PL_QEvEi9neNS1rdD8jeQR0xP0EZEiSELT) - Lс║нp tr├мnh thс║нt dс╗Е
* [Tutorial hс╗Нc Javascript c╞б bс║гn th├┤ng qua dс╗▒ ├бn](https://www.youtube.com/playlist?list=PLZdbOLxIxNPCw1ljJRlpBTEFtbNPpvKsP) - Thс║зy Ho├аng JS (phecode)
* [Tс╗▒ hс╗Нc Javascript - Lс║нp tr├мnh Javascript](https://www.youtube.com/playlist?list=PLv6GftO355AvAl13CUVcVvWu0hOZnpfW8) - ZendVN
* [Tс╗▒ Hс╗Нc Javascript C╞б Bс║гn Tс╗л A ─Сс║┐n Z Cho Ng╞░с╗Эi Mс╗Ыi Bс║пt ─Рс║зu vс╗Ыi Hс╗Пi D├вn IT](https://www.youtube.com/playlist?list=PLncHg6Kn2JT5dfQqpVtfNYvv3EBVHHVKo) - Hс╗Пi D├вn IT
* [Tс╗▒ Hс╗Нc JavaScript N├вng Cao - Modern JavaScript Tс╗л A ─Сс║┐n Z Cho Beginners](https://www.youtube.com/playlist?list=PLncHg6Kn2JT4eGJ__iQv6BrvL_YnZLHyX) - Hс╗Пi D├вn IT
* [Tс╗▒ Hс╗Нc Thiс║┐t Kс║┐ Website vс╗Ыi HTML, CSS v├а JavaScript](https://www.codehub.com.vn/Tu-Hoc-Thiet-Ke-Website-voi-HTML-CSS-va-JavaScript/Tao-Hieu-Ung-Accordion) - Codehub
@@ -322,98 +170,36 @@
#### jQuery
* [Hс╗Нc Jquery](https://www.youtube.com/playlist?list=PLJz8fm2GRwfX6F-Ed8BFH7NH5K5Z4b02f) - Tiс║┐n Nguyс╗Еn
* [Hс╗Нc jQuery c╞б bс║гn](https://www.youtube.com/playlist?list=PL75xdq9Y-GaQly0pFP2pFO8xYYfLQXjtG) - CiOne eLearning
* [Hс╗Нc jQuery tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLuEp4OGUFN9s2Lw4msL-5xevemYEPcLCS) - Hс╗Нc online
* [Hс╗Нc jQuery tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLjjB_k3ljmLRu_Xvtq7pxOEhgikS6xonm) - Ngс╗Нc Ho├аng IT
* [jQuery C╞б Bс║гn](https://www.codehub.com.vn/jQuery-Co-Ban) - Codehub
* [Kh├│a Hс╗Нc Lс║нp Tr├мnh Jquery Vс╗Ыi Project Thс╗▒c Tс║┐](https://www.youtube.com/playlist?list=PLttNL2ipMblsb9w03TUDAInwnH-bXaTft) - Coding Is Life
* [Lс║нp tr├мnh jQuery tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLRhlTlpDUWsyAGY7FDGSndEhOD3F2Ruhm) - TEDU
* [Tс╗▒ Hс╗Нc JQuery](https://www.youtube.com/playlist?list=PLepCFdNQOPNfY15_XAp-cRN3XrKYCvT-h) - T.A.N
* [Tс╗▒ hс╗Нc Jquery](https://www.youtube.com/playlist?list=PLJz8fm2GRwfX7ZbZGuOSpsdQ1BBdzsPeN) - Tiс║┐n Nguyс╗Еn
#### Vue.js
* [Demo Dс╗▒ ├бn Vue JS 3!](https://www.youtube.com/playlist?list=PL7akNQhSmpsYTQsV6jqZmmlLEu37IWA7f) - Tips Web Hay
* [Hс╗Нc Vue JS 2 c╞б bс║гn](https://www.youtube.com/playlist?list=PLU4OBh9yHE95G_Y1cUVY-5Mc9P-rQBY3F) - RHP Team
* [Hс╗Нc Vue js trong mс╗Щt video duy nhс║еt](https://www.youtube.com/watch?v=j97QtHf0CHY) - Lс║нp tr├мnh vi├кn TV (B├╣i V─Гn Nguyс╗Зn)
* [Kho├б hс╗Нc Vuejs tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLwJIrGynFq9B_BQJZJi-ikWDDkYKVUpM5) - Tech Mely
* [Lс║нp tr├мnh VueJS](https://www.youtube.com/playlist?list=PLv6GftO355AtDjStqeyXvhA1oRLuhvJWf) - ZendVN - Hс╗Нc Lс║нp Tr├мnh Online
* [Series Tс╗▒ hс╗Нc Vuejs 3 A - Z](https://www.youtube.com/playlist?list=PLieV0Y7g-FFy_hVCs3lf973Yo8_rsRGc0) - Tс╗▒ hс╗Нc lс║нp tr├мnh tс╗л A ─Сс║┐n Z
* [Vue js 3 C╞б Bс║гn](https://www.youtube.com/playlist?list=PL7akNQhSmpsZUB7aP-ttyYVHHaKjn0W7P) - Tips Web Hay
* [Vue JS c╞б bс║гn](https://www.youtube.com/playlist?list=PLU4OBh9yHE95G_Y1cUVY-5Mc9P-rQBY3F) - RHP Team
* [VueJS D├аnh Cho Ng╞░с╗Эi Mс╗Ыi Bс║пt ─Рс║зu 2024](https://www.youtube.com/playlist?list=PLnRJxWEhhmzrtVhPAzNCv4DbQk1R7_fS4) - Ninedev
### Kotlin
* [Android vс╗Ыi kolin cho ng╞░с╗Эi mс╗Ыi](https://www.youtube.com/playlist?list=PLPt6-BtUI22qf3KE1V1PyAm1v8M2qqwL5) - G├а Lс║бi Lс║нp Tr├мnh
* [Hс╗Нc Android + Kotlin c╞б bс║гn](https://www.youtube.com/playlist?list=PLpgD-OxlvlqFNyyaFlan2-WTtSaBkWllm) - Xin ch├аo, m├мnh l├а Sс╗пa
* [Lс║нp tr├мnh Android vс╗Ыi Kotlin full tс║бi Khoa Phс║бm](https://www.youtube.com/playlist?list=PLzrVYRai0riRFcvx8VYTF7fx4hXbd_nhU) - Khoa Phс║бm
* [Lс║нp tr├мnh Kotlin tс╗л c╞б bс║гn ─Сс║┐n n├вng cao](https://www.youtube.com/playlist?list=PLn9lhDYvf_3E_5JZ-1jlk67o9101Lu9N6) - Anh Nguyen Ngoc
### Machine-Learning
* [Kh├│a tс╗▒ hс╗Нc machine learning c╞б bс║гn](https://www.youtube.com/playlist?list=PLZEIt444jqpBPoqtW2ARJp9ICnF3c7vJC) - Son Nguyen
* [L├в╠гp tri╠Аnh Machine learning c╞б ba╠Йn v╞б╠Бi Python](https://www.youtube.com/playlist?list=PL33lvabfss1zLDVHXW_YUJxhxBFap-vm_) - K team
* [Machine learing c╞б bс║гn](https://machinelearningcoban.com) - V┼й Hс╗пu Tiс╗Зp *( :construction: in process)*
* [Machine Learning](https://www.youtube.com/playlist?list=PLsWjY--3QXFWE1Nk6erXuTSf3QLC161pm) - Son Tran
* [Machine Learning C╞б Bс║гn](https://www.youtube.com/playlist?list=PLu-LVHS6JzYjoUuPAwcE9sff2NMrEH6KD) - Hс╗Нc Lс║нp Tr├мnh c├╣ng Ph├бt
* [Machine learning c╞б bс║гn (Hс╗Нc m├бy thс╗Сng k├к)](https://www.youtube.com/playlist?list=PLpDNYPX7w1RYeDSr3q0EJA978jjuMz4TX) - B├аi Hс╗Нc 10 Ph├║t
* [Machine learning vietsub](https://www.youtube.com/playlist?list=PLDpRz2wA0qZzTcDLeXP5PSCfmQ96l9-Qr) - L├вn с╗Я ─Рс╗йc
* [Tс╗▒ hс╗Нc Machine Learning](https://www.youtube.com/playlist?list=PLaKukjQCR56ZRh2cAkweftiZCF2sTg11_) - Th├вn Quang Kho├бt
* [Machine learing c╞б bс║гn](https://machinelearningcoban.com) - V┼й Hс╗пu Tiс╗Зp (:construction: *in process*)
### MongoDB
* [Gi├бo tr├мnh tс╗▒ hс╗Нc NoSQL - MongoDB](https://www.youtube.com/playlist?list=PLv6GftO355Aug0rwKfb6v96mlYrwOw7XV) - ZendVN
* [Hс╗Нc lс║нp tr├мnh Web BackEnd NodeJS v├а MongoDB thс╗▒c chiс║┐n](https://www.youtube.com/playlist?list=PLimFJKGsbn1lQlDQW3A5yb2CdVJ8MqqG8) - Thien Tam Nguyen
* [Hс╗Нc MongoDB trс╗Нn vс║╣n trong 1 giс╗Э 30 ph├║t](https://www.youtube.com/watch?v=8Nx7cdwT86c) - Trс║зn Quс╗Сc Huy
* [Kh├│a hс╗Нc lс║нp tr├мnh backend Nodejs v├а MongoDB](https://www.youtube.com/playlist?list=PLEnECmpTzvQO-1tEWazRmPNV02vkUhU0R) - K├кnh Tс╗Хng Hс╗гp Source Code Website
* [Mongo DB c╞б bс║гn](https://www.youtube.com/playlist?list=PLU4OBh9yHE94QAav7qIuaTtH9-pq39We8) - RHP Team
* [MongoDB 2020](https://www.youtube.com/playlist?list=PLkY6Xj8Sg8-vgHI_wNWPHKdiRwlgQXaTR) - CodersX
* [Thс╗▒c chiс║┐n Back-end NodeJS + MongoDB](https://www.youtube.com/playlist?list=PLP6tw4Zpj-RIMgUPYxhLBVCpaBs94D73V) - TrungQuanDev
### MySQL
* [Hiс╗Гu to├аn bс╗Щ MySQL Database trong 1 giс╗Э 42 ph├║t](https://www.youtube.com/watch?v=TslBGnENTFw) - Trс║зn Quс╗Сc Huy
* [Hс╗Нc MySQL, hс╗Нc Database](https://www.youtube.com/playlist?list=PLoI3zgRgTJKbmTPE2em22aqed3412CO17) - Nguyс╗Еn Danh T├║
* [Hс╗Нc nhanh c╞б sс╗Я dс╗п liс╗Зu (tr├кn Mysql Workbench)](https://www.youtube.com/playlist?list=PLDYXQL9eThN4fvrP8J0ASHnxSKJFtkU-Q) - Huy Init
* [Hс╗Нc SQL (sс╗н dс╗еng MySQL)](https://www.youtube.com/playlist?list=PLyxSzL3F7487f2BrlHKg87WlUEennWOKu) - TITV
* [Hс╗Нc SQL C╞б Bс║гn](https://www.youtube.com/playlist?list=PLE1qPKuGSJaDkQQB5vK7t7-PRIVjtqeHB) - th├вn triс╗Зu
* [Kh├│a hс╗Нc c╞б sс╗Я dс╗п liс╗Зu Mysql](https://www.youtube.com/playlist?list=PLmGP0M1IXtjULXD1KUAf7Snkq9O0RMsYT) - L├к V┼й Nguy├кn Vlog
* [Kho├б hс╗Нc PHP & MYSQL b├аi bс║гn tс╗л A-Z](https://www.youtube.com/playlist?list=PL88QwC-jiH9ByYqO0mVStNEHB6QT24yx1) - Hienu
* [Tс╗▒ Hс╗Нc SQL c├╣ng Vс╗Лt - Kh├│a C╞б Bс║гn cho Ng╞░с╗Эi Mс╗Ыi Bс║пt ─Рс║зu](https://www.youtube.com/playlist?list=PL01fPqVNMdrmtcb_Yui_Oh23X_3laoZoO) - Vс╗Лt l├аm Data
### Next.js
* [[2024] Hс╗Нc Next.js 14 miс╗Еn ph├н | Kh├│a hс╗Нc NextJs TypeScript si├кu chi tiс║┐t | ─Р╞░с╗гc Dev](https://www.youtube.com/playlist?list=PLFfVmM19UNqn1ZIWvxn1artfz-C6dgAFb) - ─Р╞░с╗гc Dev
* [Lс║нp tr├мnh NextJS](https://www.youtube.com/playlist?list=PLv6GftO355AvWAQv4or-RE2RAFFXaI3Jz) - ZendVN - Hс╗Нc Lс║нp Tr├мnh Online
* [NextJS c╞б bс║гn ЁЯОЙ](https://www.youtube.com/playlist?list=PLeS7aZkL6GOuMvDYcyW9VVLCvKnNhm4It) - Easy Frontend
* [Tс╗▒ Hс╗Нc Next.JS C╞б Bс║гn (vс╗Ыi React v├а TypeScript) | Hс╗Пi D├вn IT](https://www.youtube.com/playlist?list=PLncHg6Kn2JT6zw4JiFOE1z90ghnyrFl5B) - Hс╗Пi D├вn IT
### NodeJS
* [Course - Node.js Backend Architecture](https://www.youtube.com/playlist?list=PLw0w5s5b9NK4ucXizOF-eKAXKvn9ruCw8) - Tips Javascript
* [Hс╗Нc Nodejs c├╣ng F8](https://www.youtube.com/playlist?list=PLwJIrGynFq9BZto5VvKw7OEDNxN6plq_3) - Tech Mely
* [Kh├│a hс╗Нc Fullstack SERN (SQL, Express.js, React.js, Node.js) Web Developer](https://www.youtube.com/playlist?list=PLncHg6Kn2JT6E38Z3kit9Hnif1xC_9VqI) - Hс╗Пi D├вn IT
* [Kh├│a hс╗Нc NodeJS c─Гn bс║гn](https://tedu.com.vn/khoa-hoc/khoa-hoc-nodejs-can-ban-20.html) - TEDU
* [Kh├│a hс╗Нc NodeJs trс╗Нn bс╗Щ](https://www.youtube.com/playlist?list=PLqnlyu33Xy-6g7IqU5-3BXOfewcJKoL08) - TK Vlogs
* [Lс║нp Tr├мnh Nodejs C╞б Bс║гn Tс║бi Khoa Phс║бm](https://www.youtube.com/playlist?list=PLzrVYRai0riQXAXJL9rg62tBvwD0ltJn-) - Trung T├вm ─Р├аo Tс║бo Tin Hс╗Нc Khoa Phс║бm
* [NodeJS & ExpressJS](https://www.youtube.com/playlist?list=PL_-VfJajZj0VatBpaXkEHK_UPHL7dW6I3) - F8 Official
* [NodeJS C╞б Bс║гn](https://www.youtube.com/playlist?list=PLU4OBh9yHE950LJR6uH_MqcgUC0-NCV2k) - RHP Team
* [NodeJS C╞б Bс║гn](https://www.youtube.com/playlist?list=PL4VEtQ6PTTQEZp2kLIC7OE0E8OsObv0k8) - Ide Academy
* [NodeJS Mс╗Ыi Nhс║еt 2024](https://www.youtube.com/playlist?list=PLnRJxWEhhmzrN03mUHESraIva5Ppi1FaG) - Ninedev
* [NodeJS Web Server Sс╗н Dс╗еng Express 2020](https://www.youtube.com/playlist?list=PLkY6Xj8Sg8-s-m-qFBQFoeNSfpCTBiwMU) - CodersX
* [Thс╗▒c chiс║┐n Back-end NodeJS + MongoDB](https://www.youtube.com/playlist?list=PLP6tw4Zpj-RIMgUPYxhLBVCpaBs94D73V) - TrungQuanDev
* [Tс╗▒ Hс╗Нc Node.JS C╞б Bс║гn Tс╗л A ─Рс║┐n Z Cho Ng╞░с╗Эi Mс╗Ыi Bс║пt ─Рс║зu](https://www.youtube.com/playlist?list=PLncHg6Kn2JT4smWdJceM0bDg4YUF3yqLu) - Hс╗Пi D├вn IT
* [UDEMY - Backend RESTFul Server vс╗Ыi Node.JS v├а Express (SQL/MongoDB)](https://www.youtube.com/playlist?list=PLncHg6Kn2JT734qFpgJeSfFR0mMOklC_3) - Hс╗Пi D├вn IT
* [X├вy dс╗▒ng Backend с╗йng dс╗еng ShopApp vс╗Ыi NodeJS, MySQL, Google Firebase](https://www.youtube.com/playlist?list=PLWBrqglnjNl271vpuIiKZtn-xrAZcX92a) - Nguyen Duc Hoang
### Objective-C
@@ -424,55 +210,21 @@
### PHP
* [Hс╗Нc Lс║нp Tr├мnh PHP + Mysql](https://www.youtube.com/playlist?list=PLaevEBkXyvnXEMoe6ZHFJGjPDb_eCCVNc) - Ho├аng Th╞░╞бng Official
* [Hс╗Нc PHP qua c├бc h├аm th├┤ng dс╗еng](https://www.codehub.com.vn/PHP) - Codehub
* [Hс╗Нc php tс╗л c╞б bс║гn ─Сс║┐n n├вng cao - web b├бn h├аng](https://www.youtube.com/playlist?list=PLSMUwja5VsJWoq5VmD5cW2Xoy52FILBV3) - gv cybersoft
* [Kho├б hс╗Нc PHP & MYSQL b├аi bс║гn tс╗л A-Z](https://www.youtube.com/playlist?list=PL88QwC-jiH9ByYqO0mVStNEHB6QT24yx1) - Hс╗Нc Lс║нp Tr├мnh - Hienu
* [Lс║нp tr├мnh PHP1 - SU22](https://www.youtube.com/playlist?list=PLieAxB9_noZlWuur0Hxw7BIYVbGJ-hS0N) - Thс║зy Hс╗Щ Fpoly
* [Lс║нp Tr├мnh Website Vс╗Ыi PHP v├а MySQL](https://www.codehub.com.vn/Lap-Trinh-Website-Voi-PHP-va-MySQL) - Codehub
* [PHP C╞б Bс║гn](https://www.codehub.com.vn/PHP-Co-Ban) - Codehub
* [PHP C╞б Bс║гn](https://www.youtube.com/playlist?list=PLU4OBh9yHE940f_T2IyAWHAjXhMxYFZky) - RHP Team
* [Tс╗▒ Hс╗Нc Lс║нp tr├мnh PHP](https://www.youtube.com/playlist?list=PLv6GftO355AsZFXlWLKob6tMsWZa4VCY1) - ZendVN - Hс╗Нc Lс║нp Tr├мnh Online
* [Tс╗▒ hс╗Нc PHP - C├бc ─Сс╗Сi t╞░с╗гng kh├бc trong PHP](https://www.youtube.com/playlist?list=PLv6GftO355Av7YIhRHajDEWCHq1viEKEy) - ZendVN
* [Tс╗▒ hс╗Нc PHP - C─Гn Bс║гn](https://www.youtube.com/playlist?list=PLv6GftO355AulVlaWLp41kieNB9dTG1_l) - ZendVN
* [Tс╗▒ hс╗Нc PHP - L├аm viс╗Зc vс╗Ыi ASNT](https://www.youtube.com/playlist?list=PLv6GftO355At4rfAAqGCtokc3W1uDnv28) - ZendVN
* [Tс╗▒ hс╗Нc PHP Laravel Framework cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu](https://www.youtube.com/playlist?list=PLsVJaIeVT78qJEPWJ9rIwgPCcmuVI-r4k) - ─Рс║╖ng Kim Thi
### PostgreSQL
* [Hiс╗Гu to├аn bс╗Щ PostgreSQL trong 1h30p - 2023](https://www.youtube.com/watch?v=OUlLQK_gN8k) - Trс║зn Quс╗Сc Huy
* [Hс╗Нc PostgreSQL qua v├н dс╗е || PostgreSQL Tutorial](https://www.youtube.com/playlist?list=PLMbuMydSxMKxfg0OeJJoNsdRTnTIEcqmg) - Lс║нp Tr├мnh B2A
* [Postgresql c╞б bс║гn](https://www.youtube.com/playlist?list=PLRoAKls-7kksI-BbBn_ihFB9sRjSrDrs4) - Migolab
### Python
* [Kh├│a hс╗Нc Lс║нp tr├мnh Game vс╗Ыi Python](https://www.youtube.com/playlist?list=PLzQuu4-Qxlh47gX_HnqKSJIycFNekP79m) - Hс╗Нc C├┤ng Nghс╗З
* [Kh├│a hс╗Нc Lс║нp tr├мnh Python c╞б bс║гn cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu](https://youtu.be/cZQ6m3W4OU4?si=p0sZRZfvW-YygFrp) - Tс╗Э Mс╗Э S├бng hс╗Нc Lс║нp tr├мnh
* [Kh├│a hс╗Нc Lс║нp tr├мnh Python tс╗л C╞б bс║гn ─Сс║┐n N├вng cao](https://www.youtube.com/playlist?list=PLzQuu4-Qxlh44nsjdQH2quvfKePtAaI3_) - Hс╗Нc C├┤ng Nghс╗З
* [Kh├│a hс╗Нc Python c╞б bс║гn v├а n├вng cao](https://www.youtube.com/playlist?list=PLSpCQre3PzmWlodvqNcr0lg_10Bil8oF7) - Lс║нp tr├мnh Python
* [Lс║нp Tr├мnh Python](https://www.youtube.com/playlist?list=PLKzXIbeO5pQ0J2boMB4btE7VDs7gP8vdl) - D┼йng Lс║бi Lс║нp Tr├мnh
* [Lс║мP TR├МNH PYTHON C╞а Bс║вN](https://www.youtube.com/playlist?list=PLqfkD788zZGDjIctPlbff9doS_KTXOyDc) - Tс╗Э Mс╗Э S├бng hс╗Нc Lс║нp tr├мnh
* [Lс║нp tr├мnh Python c╞б bс║гn cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu](https://www.youtube.com/playlist?list=PLyxSzL3F7486SaHaQayPdKJUScVFh1UwA) - TITV
* [Lс║мP TR├МNH PYTHON Tс╗к C╞а Bс║вN Tс╗ЪI N├ВNG CAO](https://www.youtube.com/playlist?list=PLux-_phi0Rz0Ngc01o_GYe0JUGjL1yIAm) - 28tech
* [Lс║нp tr├мnh website vс╗Ыi Python Django](https://www.youtube.com/playlist?list=PL33lvabfss1z8GYxjyMulCnhcYGk5ah8P) - Kteam
* [Python C╞б Bс║гn](https://www.codehub.com.vn/Python-Co-Ban) - Codehub
* [Python C╞б Bс║гn](https://www.youtube.com/playlist?list=PLyiioioEJSxEh_S_XFvG0d2xKRMSWLfN_) - Dс║бy Nhau Hс╗Нc
* [Python C╞б Bс║гn](https://www.youtube.com/playlist?list=PL33lvabfss1xczCv2BA0SaNJHu_VXsFtg) - Kteam
* [Tс╗▒ hс╗Нc lс║нp tr├мnh python](https://www.youtube.com/playlist?list=PLPt6-BtUI22oGqQwAEF6xwrFL6aOjtHWl) - G├а Lс║бi Lс║нp Tr├мnh
* [Tс╗▒ hс╗Нc python c╞б bс║гn](https://www.youtube.com/playlist?list=PLUocOGc7RDEJAH2152KaiY9H8S-C8TvT-) - G├а Python
### R
* [B├аi giс║гng vс╗Б ng├┤n ngс╗п R](https://www.youtube.com/playlist?list=PLbRKZL7ww3qj1f1FjDE7Wl6tkZebPPrf2) - Nguyс╗Еn V─Гn Tuс║еn
* [Hс╗МC R SI├КU NHANH QUA CASE STUDY | R CRASH COURSE](https://www.youtube.com/playlist?list=PLCKFKYBfLgPV07MhYMoOMlazOSS7KwKuA) - DUC NGUYEN
* [H╞░с╗Ыng dс║лn hс╗Нc R](https://www.youtube.com/playlist?list=PLMIaO-u3S5-jO2rMt8r8HD5ifiZv_Sd9O) - SciEco
* [H╞░с╗Ыng dс║лn phс║зn mс╗Бm thс╗Сng k├к R v├а R-studio](https://www.youtube.com/playlist?list=PLpDNYPX7w1RYuBxWT0blVTrmxyb9KfJMg) - B├аi Hс╗Нc 10 Ph├║t
* [H╞пс╗ЪNG Dс║кN Sс╗м Dс╗дNG R ─Рс╗В Xс╗м L├Э Dс╗о LIс╗ЖU](https://www.youtube.com/playlist?list=PLCKFKYBfLgPU4mSgJ-5MhGDcki2UTBr2H) - DUC NGUYEN
* [Ph├вn t├нch dс╗п liс╗Зu bс║▒ng ng├┤n ngс╗п R](https://www.youtube.com/playlist?list=PLteVqnBNrrGWr8qmCJienB1ySL93aiIpW) - Chiс║┐n Ti├кn Nh├вn
* [Thс╗Сng k├к trong R-Studio](https://www.youtube.com/playlist?list=PL9XZJEFXvG9E9HJn2n1Gu_TLAsVPc1MkJ) - Hс╗Нc mс╗Щt ch├║t
### React
@@ -492,110 +244,47 @@
### Ruby
* [Hс╗Нc Ruby on Rails C─Гn Bс║гn](https://www.udemy.com/course/hoc-ruby-on-rails-can-ban) - Udemy
* [Hс╗Нc Ruby on Rails C─Гn Bс║гn](https://www.youtube.com/playlist?list=PLFoXG6w6FhAp8WtQ7GicFWfILjdegaNET) - Lu├вn Nguyс╗Еn Th├аnh
* [Tс╗л ruby tс╗Ыi rails 2022](https://www.youtube.com/playlist?list=PL2hl9DVcc5u1f2uhSYko6Ea3bdaI_BGeB) - Lupca
### Rust
* [Lс║нp tr├мnh c╞б bс║гn Rust](https://www.youtube.com/playlist?list=PLOB8_oGJl40SPgVOMJ6ivoEgmSvTiSdNQ) - Nguyen Tuan Dung
* [Lс║мP TR├МNH RUST](https://www.youtube.com/playlist?list=PLFnEYduGTiXE2ejxmzTIraP2feI-pmeuw) - Jayden Dang
* [Rust](https://www.youtube.com/playlist?list=PLbVzvoeVj6gTQvZq46tqqvDQ8d5WZbBPT) - Nс╗бm
* [Rust Back-End - Microservices | Server High Performance](https://www.youtube.com/playlist?list=PLFnEYduGTiXEPQ1pVCcg5zxgBS4RwM6wd) - Jayden Dang
### Sass
* [Kh├│a hс╗Нc lс║нp tr├мnh CSS v├а SASS n├вng cao cho website Landing Page 2019](https://www.youtube.com/playlist?list=PL33lvabfss1wstoZNI8szds9s0ESVbuqs) - K team
* [Kh├│a Hс╗Нc Lс║нp Tr├мnh SASS](https://www.youtube.com/playlist?list=PLIRbquK6vGyf7sCUAGAYFOrS-kgbBc-O1) - IT News
* [Kh├│a Hс╗Нc Lс║нp Tr├мnh SCSS Tс╗л C─Гn Bс║гn ─Рс║┐n N├вng Cao](https://www.youtube.com/playlist?list=PLJ5qtRQovuEMWzLVs3iuwcNsWeElizTwF) - Nghiep Phan
* [SASS](https://www.youtube.com/playlist?list=PLw_erwgZq4-EGs9VEEKROpDbjCuzgx01W) - ZenDvn
* [Sass C╞б Bс║гn](https://www.youtube.com/playlist?list=PLzrVYRai0riSWPPRE6Ib99zd5fV4YYH0Q) - Khoa Phс║бm
* [Tс╗▒ Hс╗Нc Sass](https://www.youtube.com/playlist?list=PLv6GftO355AtWld1EE7SBAH-OkKKt23Bb) - ZendVN
### Security
* [AN NINH Mс║аNG CHO NG╞пс╗ЬI Mс╗ЪI](https://www.youtube.com/playlist?list=PLLHcUwF4MJE2nZhxQtXCk2bpYi4ZtCZIg) - Trung t├вm ─С├аo tс║бo an ninh mс║бng - Cybersecurity
* [Cyber Security](https://www.youtube.com/playlist?list=PLLHcUwF4MJE1xHr5tuBvyLUxu09dGInRm) - Trung t├вm ─С├аo tс║бo an ninh mс║бng - Cybersecurity
* [Giс║гi th├нch lс╗Ч hс╗Хng Web phс╗Х biс║┐n v├а c├бch khai th├бc](https://www.youtube.com/playlist?list=PLu9yx0lLtsRhWd2ZQsaM881HXbxZ0dgkS) - Cookie Han Hoan
* [Hс╗МC Bс║вO Mс║мT C├ЩNG CYBERJUTSU](https://www.youtube.com/playlist?list=PLijX7E_0LDO-UFu2KluCfxbFZE-NS3TQ_) - CyberJutsuTV
* [H╞░с╗Ыng dс║лn Bug Bounty cho ng╞░с╗Эi mс╗Ыi](https://www.youtube.com/playlist?list=PLu9yx0lLtsRgpVspJJeZ_CfcsDY-onsCo) - Cookie Han Hoan
* [Introduction to Web Application Security](https://www.youtube.com/playlist?list=PLu9yx0lLtsRiWkLUlOyQg-U4Gu0VTPMe_) - Cookie Han Hoan
* [Kho├б hс╗Нc an ninh mс║бng cс╗зa Cisco vс╗Б CyberSecurity](https://www.youtube.com/playlist?list=PLRSnr8eajoQyUdyywoUOvDRd9FLoovfg3) - VQT Network
* [Kh├│a Hс╗Нc Hacker M┼й Trс║пng-AEH](https://www.youtube.com/playlist?list=PLSzZlHir9jJSSygXLtqkhPQNIYkYqGTAU) - Trung Tam Athena
* [Kh├│a Hс╗Нc Hacker M┼й Trс║пng V├а Bс║гo Mс║нt Th├┤ng Tin](https://www.youtube.com/playlist?list=PLggwtzPh_8VkV50VGVpvybnnqCdgIBCVb) - Nguyс╗Еn Thс║┐ Lс╗гi
* [NHс║мP M├ФN AN TO├АN TH├ФNG TIN](https://www.youtube.com/playlist?list=PLijX7E_0LDO_-v_UhGNujj_NBTysTwzkC) - CyberJutsuTV
* [OWASP Top 10 Vulnerabilities](https://www.youtube.com/playlist?list=PLu9yx0lLtsRiaeIQ-yn0huBD3YKgJ6wzC) - Cookie Han Hoan
* [Quс║гn trс╗Л An ninh mс║бng Cisco CCNA Security](https://www.youtube.com/playlist?list=PLOBQKf6CISRQK4laM3VLug8wweoMv0iz4) - Giai Phap Mang H3T
* [Quс║гn trс╗Л mс║бng m├бy t├нnh Cisco CCNA](https://www.youtube.com/playlist?list=PLFJBtgskuhZYoOqwnRNLbUvFadA6ApqjH) - An ninh mс║бng
* [T├мm kiс║┐m lс╗Ч hс╗Хng Web](https://www.youtube.com/playlist?list=PLu9yx0lLtsRhM3QN-R6tzMbLr7gBmD6c-) - Cookie Han Hoan
* [Web Hacking Techniques](https://www.youtube.com/playlist?list=PLu9yx0lLtsRi3rG11n0fl0H_-3jkSBZk3) - Cookie Han Hoan
### SQL
* [Hiс╗Гu to├аn bс╗Щ MySQL Database trong 1 giс╗Э 42 ph├║t](https://www.youtube.com/watch?v=TslBGnENTFw) - Trс║зn Quс╗Сc Huy
* [Hс╗Нc SQL C╞б Bс║гn](https://www.youtube.com/playlist?list=PLE1qPKuGSJaDkQQB5vK7t7-PRIVjtqeHB) - Th├вn Triс╗Зu
* [Hс╗Нc SQL C╞б Bс║гn](https://www.codehub.com.vn/Hoc-SQL) - Codehub
* [Lс║нp tr├мnh SQL Server c─Гn bс║гn](https://tedu.com.vn/khoa-hoc/lap-trinh-sql-server-can-ban-6.html) - TEDU
* [SQL](https://www.youtube.com/playlist?list=PLiyVagO7GfBEOReFCMbcffzkgfWaGl-AN) - J2Team
* [SQL C╞б Bс║гn](https://www.youtube.com/playlist?list=PL33lvabfss1xnFpWQF6YH11kMTS1HmLsw) - Kteam
* [Tс╗▒ hс╗Нc SQL - Ng├┤n ngс╗п SQL](https://www.youtube.com/playlist?list=PLv6GftO355AtXdxv1WLgxmorw3OMesoS7) - ZendVN
* [Tс╗▒ Hс╗Нc SQL C╞б Bс║гn ─Рс║┐n N├вng Cao](https://www.youtube.com/playlist?list=PLavGKPtOxApM2hfcLdIU3mVWIo5G2ZX2a) - Test Mentor
* [Tс╗▒ Hс╗Нc SQL c├╣ng Vс╗Лt - Kh├│a C╞б Bс║гn cho Ng╞░с╗Эi Mс╗Ыi Bс║пt ─Рс║зu](https://www.youtube.com/playlist?list=PL01fPqVNMdrmtcb_Yui_Oh23X_3laoZoO) - Vс╗Лt l├аm Data
### SQL Server
* [[SQL Server] Kh├│a hс╗Нc sс╗н dс╗еng SQL server](https://www.youtube.com/playlist?list=PL33lvabfss1xnFpWQF6YH11kMTS1HmLsw) - K team
* [Hс╗Нc SQL Server trong 60 ph├║t - 2023](https://www.youtube.com/watch?v=alqEF4I23nw) - Trс║зn Quс╗Сc Huy
* [Kh├│a hс╗Нc SQL Server cho ng╞░с╗Эi mс╗Ыi (2023)](https://www.youtube.com/playlist?list=PLyxSzL3F7484deka_j1czssCiHygV6oF-) - TITV
* [Tс╗▒ hс╗Нc Microsoft SQL Server](https://www.youtube.com/playlist?list=PLNJklplv9g14lsZqtDd879kdyrs02NlBx) - 1Click2beDBA
* [Tс╗▒ Hс╗Нc SQL Server C╞б Bс║гn](https://www.youtube.com/playlist?list=PLyOUYAtDpqrfVUnjw5h0kG5a2-b9sHNKd) - Hс╗Нc Viс╗Зn C├┤ng nghс╗З MCI
### Swift
* [H╞░с╗Ыng dс║лn l├аm app bс║гn ─Сс╗У vс╗Ыi MapKit](https://www.youtube.com/playlist?list=PL4VEtQ6PTTQGCgMhgVx7zbyVj6HIC8aPH) - Ide Academy
* [H╞░с╗Ыng dс║лn lс║нp tr├мnh Swift iOS tс╗л A ─Сс║┐n Z](https://www.youtube.com/playlist?list=PLRb-vAn1juPSOsB7sUhs6QYLkMg1mYawl) - Thс║бch Phс║бm Dev
* [Kс╗╣ thuс║нt l├аm app camera scan QR code](https://www.youtube.com/playlist?list=PL4VEtQ6PTTQGKBD6EVZXqPZr_YUbxXBMM) - Ide Academy
* [Lс║нp tr├мnh iOS - Swift](https://www.youtube.com/playlist?list=PLBgIyLVk3GlT07wf1UPCDg6duV2iDKVbu) - laptrinh0kho
* [Lс║нp tr├мnh iOS c╞б bс║гn vс╗Ыi Swift 3 v├а Xcode 8](https://www.youtube.com/playlist?list=PLzrVYRai0riSlAocQR3BvHCtEhcKa204E) - Khoa Phс║бm
* [Lс║нp tr├мnh iOS vс╗Ыi SwiftUI](https://www.youtube.com/playlist?list=PLBgIyLVk3GlSGQ68t3Qvfqg_x_RacLXje) - laptrinh0kho
* [Swift - Tс╗Хng quan](https://www.youtube.com/playlist?list=PLR1-CgtL7hK6bbuXUSgAKZveZsKa2tehl) - Dev Step by Step
* [Swift 3 C─Гn Bс║гn](https://www.youtube.com/playlist?list=PL4VEtQ6PTTQFCBxdxUIS3h6h7wSTEHrPu) - Ide Academy
* [Swift C─Гn Bс║гn](https://www.youtube.com/playlist?list=PLq6u-dSlAr2QBxCn8pbcCK2cE8PMdbar8) - Gramy
* [Tс╗Хng hс╗гp c├бc vс║еn ─Сс╗Б mс╗Ыi v├а h├│c b├║a trong Swift](https://www.youtube.com/playlist?list=PL4VEtQ6PTTQGMYPnBh-2MqKhvWcPg9oNk) - Ide Academy
* [Tс╗Хng hс╗гp kс╗╣ thuс║нt l├аm app vс╗Ыi Swift 3.x v├а XCode 8](https://www.youtube.com/playlist?list=PL4VEtQ6PTTQEsxWUwqkwbjZfXGTdMpb6T) - Ide Academy
* [Tс╗▒ Hс╗Нc Swift iOS](https://www.youtube.com/playlist?list=PLOxRl_MBrBg9plgHWtA2R62CRzRPW7Pvq) - Hс╗Нc Lс║нp Tr├мnh Cho Ng╞░с╗Эi Mс╗Ыi
* [Tс╗▒ hс╗Нc v├а x├вy dс╗▒ng 10 с╗йng dс╗еng IOS vс╗Ыi SWIFT](https://www.youtube.com/playlist?list=PLw0_ti13tferyQFB7pJpqbk5mFOjJsyU9) - Th├нch Code
### TypeScript
* [ES6 & TypeScript cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu](https://www.youtube.com/playlist?list=PLRhlTlpDUWswObIX8HNCSHWOpgvjMiMe2) - TEDU
* [ReactJS v├а Typescript Cho Ng╞░с╗Эi Mс╗Ыi Bс║пt ─Рс║зu](https://www.youtube.com/playlist?list=PLnRJxWEhhmzpneEcZIZY_fs18OANMlxhA) - Ninedev
* [Tс╗▒ Hс╗Нc Fullstack Next.js/Nest.js (TypeScript)](https://www.youtube.com/playlist?list=PLncHg6Kn2JT5009M5nlo_un6wlIHM-0HS) - Hс╗Пi D├вn IT
* [Tс╗▒ hс╗Нc TypeScript 2021](https://www.youtube.com/playlist?list=PLkY6Xj8Sg8-vTdKt2QdlCqoIKEFrWHx9l) - CodersX
* [Tс╗▒ Hс╗Нc TypeScript C╞б Bс║гn Tс╗л A ─Сс║┐n Z Cho Ng╞░с╗Эi Mс╗Ыi Bс║пt ─Рс║зu](https://www.youtube.com/playlist?list=PLncHg6Kn2JT5emvXmG6kgeGkrQjRqxsb4) - Hс╗Пi D├вn IT
* [TypeScript c─Гn bс║гn](https://www.youtube.com/playlist?list=PLv6GftO355AsQtYp_YrsqEihOCiNlZkCb) - ZendVN
* [TypeScript c─Гn bс║гn (ES6)](https://tedu.com.vn/khoa-hoc/khoa-hoc-su-dung-typescript-can-ban-9.html) - TEDU
* [Typescript c╞б bс║гn](https://www.youtube.com/playlist?list=PLeS7aZkL6GOtUGTQ81kfm3iGlRTycKjrZ) - Easy Frontend
#### Angular
> :information_source: See also &#8230; [AngularJS](#angularjs)
* [100 Days Of Angular (from Angular Vietnam)](https://www.youtube.com/playlist?list=PLMTyi4Bfd5pW73uXw-6jgRxDwdPYqwk0r) - Angular Vietnam
* [Angular 12 - H╞░с╗Ыng dс║лn tс╗л c─Гn bс║гn](https://www.youtube.com/playlist?list=PLiNjao7yG417iy0SwSuaGDZ7GBJs654ME) - Code l├а Ghiс╗Бn
* [Angular 16 - 2023](https://www.youtube.com/playlist?list=PLFWDoeAHRLTYaOhywzqEOwYk9sCVbIBB-) - Lс╗нng Code
* [Angular 2 c─Гn bс║гn](https://tedu.com.vn/khoa-hoc/khoa-hoc-angular-2-can-ban-10.html) - TEDU
* [Angular 2 C╞б Bс║гn](https://tedu.com.vn/khoa-hoc/khoa-hoc-angular2-can-ban-10.html) - TEDU
* [Angular 4 C╞б Bс║гn](https://www.youtube.com/playlist?list=PLzrVYRai0riTA1m7Dasg8eraBr6R9nFgC) - Khoa Phс║бm
* [Angular c─Гn bс║гn 2023](https://www.youtube.com/playlist?list=PLRhlTlpDUWswOJnLxzotd7MgqaRrBlZOG) - TEDU
* [Hс╗Нc Angular 8+ qua c├бc v├н dс╗е thс╗▒c tс║┐](https://www.youtube.com/playlist?list=PLlahAO-uyDzJ2tRFJ8hFkiPf6xuSg9IQa) - TechMaster Vietnam
* [Kh├│a hс╗Нc Angular Mс╗Ыi Nhс║еt 2024](https://www.youtube.com/playlist?list=PLnRJxWEhhmzrta5bu4gJsZX_kdDff3Y4R) - Ninedev
* [L├аm dс╗▒ ├бn thс╗▒c tс║┐ vс╗Ыi Angular 2+ Web API](https://tedu.com.vn/khoa-hoc/lam-du-an-thuc-te-voi-angular-2-web-api-13.html) - TEDU
* [Tс╗▒ hс╗Нc Angular 2020](https://www.youtube.com/playlist?list=PLkY6Xj8Sg8-uBQaBU8wMLo2CrFkE-9VIZ) - CodersX
* [Tс╗▒ hс╗Нc Angular 5](https://www.youtube.com/playlist?list=PLWBrqglnjNl1qQw2nH5O1A8W_DVC3xo-V) - Nguyen Duc Hoang
@@ -603,15 +292,7 @@
### Unity
* [C0: C╞б bс║гn Unity C#](https://www.youtube.com/playlist?list=PL9YFzEkTXjbMlVFT3AtHiaARHoZgAP8sm) - Sai Game
* [C2: C╞б bс║гn Unity 3D](https://www.youtube.com/playlist?list=PL9YFzEkTXjbM7gq3QVkb5rC4dO8JdIsdj) - Sai Game
* [C3: Hс╗Нc L├аm Game Unity2D](https://www.youtube.com/playlist?list=PL9YFzEkTXjbOUFE0wCrSa4SAjJN7Nz6yq) - Sai Game
* [C4 - C╞б bс║гn Unity 3D C#](https://www.youtube.com/playlist?list=PL9YFzEkTXjbNa2vGgWFCBkNaNCzAFRSQ1) - Sai Game
* [Free Unity - Zitga](https://www.youtube.com/playlist?list=PLE5Rxh1l0Qs5zorOJMa777FzSYoTNreJH) - Unity3d Viс╗Зt Nam
* [G1: H╞░с╗Ыng Dс║лn Unity 3D - City Building](https://www.youtube.com/playlist?list=PL9YFzEkTXjbPJLYHlMQ4oxrqdXYVc8t9G) - Sai Game
* [G2: C├бch l├аm Game 2D v├а Tower Defense](https://www.youtube.com/playlist?list=PL9YFzEkTXjbMkbjtjdxHFySO5rhPN1uMx) - Sai Game
* [G3: C├бch l├аm game thс║╗ b├аi - Game Card](https://www.youtube.com/playlist?list=PL9YFzEkTXjbP7XXmElG-bRc5R84Hxifes) - Sai Game
* [Hс╗Нc l├аm game 2D tr├кn Unity](https://www.youtube.com/playlist?list=PLw2nfWzUTIAkZGD8r2jPjVw-sSCIIV1wa) - Tech Lap
* [Hс╗Нc Lс║нp Tr├мnh Game Unity3D - C╞б Bс║гn](https://www.youtube.com/playlist?list=PL33lvabfss1wO1v5j9J5PHsbkQRlmo7KD) - K team
* [Hс╗Нc Lс║нp Tr├мnh Game Unity3D - C╞б Bс║гn](https://www.youtube.com/playlist?list=PLzrVYRai0riS2khouy_siPTcR0ajoS8a6) - Khoa Phс║бm
* [Hс╗Нc Lс║нp Tr├мnh Game Unity3D - Cс╗Э Vua 3D](https://www.youtube.com/playlist?list=PLqLksqdSk4b2VcB_yvIkqRPCymXE-q48e) - The Brown Box
* [Hс╗Нc Lс║нp Tr├мnh Game Unity3D - Doge Game](https://www.youtube.com/playlist?list=PL33lvabfss1xyYt5jGWqGlITZQCrNwHd6) - K team
@@ -619,10 +300,7 @@
* [Hс╗Нc Lс║нp Tr├мnh Game Unity3D - Flappy Bird](https://www.youtube.com/playlist?list=PL33lvabfss1x9P0eiUcr8f-3g2mG-PNTz) - K team
* [Hс╗Нc Lс║нp Tr├мnh Game Unity3D - Game Sprider Cave](https://www.youtube.com/playlist?list=PLzrVYRai0riT-fZ_Wgi_NrELvqzbASetQ) - Khoa Phс║бm
* [Hс╗Нc Lс║нp Tr├мnh Game Unity3D - Zombie Hunter](https://www.youtube.com/playlist?list=PL33lvabfss1zGxMf1P-ReSoOoFN7L_jo0) - K team
* [Kh├│a hс╗Нc lс║нp tr├мnh Game Unity](https://www.youtube.com/playlist?list=PL4voWW1tQT6qfAR8XTD6VcYglb8Kvdw5F) - CodeGym
* [Lс║нp Tr├мnh Game 2D Tr├кn Unity3D](https://www.youtube.com/playlist?list=PLl-dkipSQUGcQQgvh9j8a75Sz4zx9vWo8) - U DEV
* [Unity 3D](https://www.youtube.com/playlist?list=PL33lvabfss1wO1v5j9J5PHsbkQRlmo7KD) - K team
* [Unity Azure Cloud Game](https://www.youtube.com/playlist?list=PLRz-2ltlXLUKYiFcSG1ME0G5-ukGCHtc_) - Coding Reshape Future
### Web Development
@@ -630,22 +308,12 @@
* [─Рс╗У ├бn Web m├┤i giс╗Ыi](https://www.youtube.com/playlist?list=PLiyVagO7GfBE1j4vjp-QLc1KHR1LPIl3G) - J2Team
* [Lс║нp Tr├мnh Web Chuy├кn S├вu](https://www.youtube.com/playlist?list=PLiyVagO7GfBE1l9XIGemSpy8bnm7QDmsY) - J2Team
* [Lс║нp Tr├мnh Web C╞б Bс║гn](https://www.youtube.com/playlist?list=PLiyVagO7GfBE3_b-4lJEVk7iq1pHQ-xcM) - J2Team
* [MERN PRO тАв Hс╗Нc lс║нp tr├мnh Front-end + Back-end | L├аm dс╗▒ ├бn thс╗▒c tс║┐ Trello k├йo thс║г](https://www.youtube.com/playlist?list=PLP6tw4Zpj-RJP2-YrhtkWqObMQ-AA4TDy) - TrungQuanDev - Mс╗Щt Lс║нp Tr├мnh Vi├кn
### Wordpress
* [Hс╗Нc thiс║┐t kс║┐ web bс║▒ng wordpress](https://www.youtube.com/playlist?list=PLSYhjar46cY7AAFWKqXfilAHfhdizCoAQ) - Richard Quang
* [Hс╗Нc thiс║┐t kс║┐ Website Wordpress tс╗л A ─Сс║┐n Z](https://www.youtube.com/playlist?list=PLFsfDLNKS58x01diBZc-jrRWukDdSWI4z) - Hс╗Нc WordPress
* [Hс╗Нc WordPress 4 c╞б bс║гn (2015)](https://www.youtube.com/playlist?list=PLl4nkmb3a8w3EEFbxkPjd6snE11eAPh5e) - Thс║бch Phс║бm
* [Hс╗Нc WordPress c╞б bс║гn cho ng╞░с╗Эi mс╗Ыi bс║пt ─Сс║зu tс╗▒ l├аm website](https://www.youtube.com/playlist?list=PL8tBvUxXM0tww5FCbQcCuKVlDxEjlyiau) - Digital Marketing IMTA
* [Lс║нp tr├мnh WordPress 2023](https://www.youtube.com/playlist?list=PL0-Cg8lpmCm3lBsQ6dciJGU4e7oNs-S5w) - Quс║гng Trс╗Л Coder
* [Tс╗▒ hс╗Нc l├аm website WordPress 2023 (Module nс╗Бn tс║гng + l├аm blog c├б nh├вn)](https://www.youtube.com/playlist?list=PLoNIfk8yyjz6Z-r6s8oksoB0xo4NUsMQN) - V├╡ Thanh Duy
* [Tс╗▒ hс╗Нc Wordpress](https://www.youtube.com/playlist?list=PLyxSzL3F7487-LYICz9nzlbQ5XJxFQPoI) - TITV
* [Tс╗▒ hс╗Нc WordPress Online - C├аi ─Сс║╖t v├а sс╗н dс╗еng WordPress CMS](https://www.youtube.com/playlist?list=PLv6GftO355As7yY0I6-fDZOHKatBjq9jI) - ZendVN
* [WordPress C╞б Bс║гn](https://www.youtube.com/playlist?list=PLl4nkmb3a8w3qzoFaXLsPohofWUMTOHBU) - Thс║бch Phс║бm
* [WordPress N├вng Cao](https://www.youtube.com/playlist?list=PLl4nkmb3a8w3qzoFaXLsPohofWUMTOHBU) - Thс║бch Phс║бm
* [WordPress Tinh Gс╗Нn 2024](https://www.youtube.com/playlist?list=PLl4nkmb3a8w2Z_sEJv_0xoXIHWMfhEw76) - Thс║бch Phс║бm
* [X├вy dс╗▒ng Plugin Wordpress c─Гn bс║гn](https://www.youtube.com/playlist?list=PLv6GftO355AucJ4Td8_6h007nQuVJQsPN) - ZendVN
-22
View File
@@ -1,11 +1,8 @@
### Index
* [0 - MOOC](#0---mooc)
* [AI](#ai)
* [Flutter](#flutter)
* [Linux](#linux)
* [OS](#os)
* [Python](#python)
### 0 - MOOC
@@ -13,13 +10,6 @@
* [freeCodeCamp](https://chinese.freecodecamp.org)
### AI
* [хИЭхнжшАЕчЪДчФЯцИРх╝П AI .NET - ф╕АщЧишп╛чиЛ](https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/translations/zh) - Microsoft (GitHub)
* [хКицЙЛхнжц╖▒х║жхнжф╣а](https://zh.d2l.ai/index.html) - d2lzh
* [цЬ║хЩихнжф╣ащАЯцИРшп╛чиЛ](https://developers.google.com/machine-learning/crash-course/prereqs-and-prework?hl=zh-cn) - ш░╖цнМхЗ║хУБ
### Flutter
* [Flutter ф╗┐х╛оф┐бцЬЛхПЛхЬИ](https://www.youtube.com/playlist?v=7lZRWWELIaA&list=PL274L1n86T80VQcJb76zcXcPpF-S-fFV-) - ducafecat
@@ -28,15 +18,3 @@
### Linux
* [Linux ца╕х┐ГшиншиИ](https://youtube.com/playlist?list=PL6S9AqLQkFpongEA75M15_BlQBC9rTdd8) - jserv
* [Linux цХЩчиЛ CentOS ф╗ОхЕещЧихИ░ч▓╛щАЪ](https://www.youtube.com/playlist?list=PL9nxfq1tlKKlImsI9_iDguCUOhLFGamKI) - Jomy King
### OS
* [цУНф╜Ьч│╗ч╗ЯхОЯчРЖ](https://www.youtube.com/playlist?list=PLkl2qqmYigA66rJ4FgmZan4YIVRgNFLQx) - ф╗О0х╝АхзЛцХ░
* [цУНф╜Ьч│╗ч╗ЯхОЯчРЖ ц╕ЕхНОхдзхнж](https://www.youtube.com/playlist?list=PLgSjsxruwagoYuFuMnUY-lMzTfQR7ugw9) - шЗкцИСхнжф╣аEvan
### Python
* [цЬАцЦ░Pythonч╝ЦчиЛцХЩчиЛ19хдйф╗ОхЕещЧихИ░ч▓╛щАЪ](https://www.youtube.com/playlist?list=PLVyDH2ns1F75k1hvD2apA0DwI3XMiSDqp) - чЯечЯешпЖцФ╣хПШхС╜ш┐Р
-10
View File
@@ -1,10 +0,0 @@
### Index
* [AI](#ai)
### AI
* [хИЭхн╕шАЕчЪДчФЯцИРх╝П AI .NET шк▓чиЛ](https://github.com/microsoft/Generative-AI-for-beginners-dotnet/tree/main/translations/tw) - Microsoft (GitHub)
* [чФЯцИРх╝Пф║║х╖ецЩ║цЕзшИЗцйЯхЩихн╕ч┐Тх░ОшлЦ 2025](https://www.youtube.com/playlist?list=PLJV_el3uVTsMMGi5kbnKP5DrDHZpTX0jT) - Hung-yi Lee
* [чФЯцИРх╝ПAIцЩВф╗гф╕ЛчЪДцйЯхЩихн╕ч┐Т](https://www.youtube.com/playlist?list=PLJV_el3uVTsNZEFAdQsDeOdzAaHTca2Gi) - Hung-yi Lee
+1 -1
View File
@@ -47,4 +47,4 @@ version 1.3.0, available at https://contributor-covenant.org/version/1/3/0/
[homepage]: https://contributor-covenant.org
[Translations](README.md#translations)
[Translations](README.md#nslations)
+2 -2
View File
@@ -15,7 +15,7 @@ Contoh perilaku partisipan yang tidak dapat diterima meliputi:
* Penggunaan bahasa atau citra seksual
* Serangan pribadi
* Trolling atau komentar yang bersifat menghina/menghujat
* Trolling atau komentar yang menghina/menghujat
* Pelecehan publik atau pribadi
* Memublikasikan informasi pribadi orang lain, seperti alamat fisik atau elektronik, tanpa izin eksplisit
* Perilaku tidak etis atau tidak profesional lainnya
@@ -45,4 +45,4 @@ versi 1.3.0, avaible at https://contributor-covenant.org/version/1/3/0/
[homepage]: https://contributor-covenant.org
[Terjemahan](README.md#translations)
[Terjemahan](README.md#nslations)
+2 -2
View File
@@ -39,8 +39,8 @@
хоИуВЙуБкуБСуВМуБ░уБкуВКуБ╛уБЫуВУуАВ
уБУуБошбМхЛХшжПчпДуБпуАБ[ш▓вчМошАЕшжПч┤Д][уГЫуГ╝уГауГЪуГ╝уВ╕]уБЛуВЙх╝ХчФиуБЧуБЯуВВуБоуБзуБЩуАБ
уГРуГ╝уВ╕уГзуГ│1.3.0(https://contributor-covenant.org/version/1/3/0/) уБЛуВЙх╝ХчФиуБЧуБЯуВВуБоуБзуБЩуАВ
уГРуГ╝уВ╕уГзуГ│1.3.0я╝Иhttps://contributor-covenant.org/version/1/3/0/я╝ЙуБЛуВЙх╝ХчФиуБЧуБЯуВВуБоуБзуБЩуАВ
[уГЫуГ╝уГауГЪуГ╝уВ╕]: https://contributor-covenant.org
[ч┐╗ши│](README.md#translations)
[ч┐╗ши│](README.md#translations)
-23
View File
@@ -1,23 +0,0 @@
р┤И р┤кр┤жр╡Нр┤зр┤др┤┐р┤пр╡Бр┤Яр╡Ж р┤╕р┤Вр┤нр┤╛р┤╡р┤Хр┤░р╡Бр┤В р┤кр┤░р┤┐р┤кр┤╛р┤▓р┤Хр┤░р╡Бр┤В р┤Ор┤ир╡Нр┤и р┤ир┤┐р┤▓р┤пр┤┐р┤▓р╡Бр┤В р┤Тр┤░р╡Б р┤др╡Бр┤▒р┤ир╡Нр┤ир┤др╡Бр┤В р┤╕р╡Нр┤╡р┤╛р┤Чр┤др┤В р┤Ър╡Жр┤пр╡Нр┤пр╡Бр┤ир╡Нр┤ир┤др╡Бр┤ор┤╛р┤п р┤Хр┤ор╡Нр┤ор╡Нр┤пр╡Вр┤гр┤┐р┤▒р╡Нр┤▒р┤┐ р┤╡р┤│р╡╝р┤др╡Нр┤др┤┐р┤пр╡Жр┤Яр╡Бр┤Хр╡Нр┤Хр╡Бр┤ир╡Нр┤ир┤др┤┐р┤ир┤╛р┤пр┤┐, р┤Юр┤Щр╡Нр┤Щр╡╛ р┤Зр┤╖р╡Нр┤пр╡Бр┤Хр╡╛ р┤▒р┤┐р┤кр╡Нр┤кр╡Лр╡╝р┤Яр╡Нр┤Яр╡Н р┤Ър╡Жр┤пр╡Нр┤пр╡Бр┤ир╡Нр┤ир┤др┤┐р┤▓р╡Вр┤Яр╡Ж, р┤лр╡Ар┤Ър╡Нр┤Ър╡╝ р┤Ер┤нр╡Нр┤пр╡╝р┤др╡Нр┤ер┤ир┤Хр╡╛ р┤кр╡Лр┤╕р╡Нр┤▒р╡Нр┤▒р╡Н р┤Ър╡Жр┤пр╡Нр┤пр╡Бр┤ир╡Нр┤ир┤др┤┐р┤▓р╡Вр┤Яр╡Ж, р┤бр╡Лр┤Хр╡Нр┤пр╡Бр┤ор╡Жр┤ир╡Нр┤▒р╡Зр┤╖р╡╗ р┤Ер┤кр╡Нр┤бр╡Зр┤▒р╡Нр┤▒р╡Н р┤Ър╡Жр┤пр╡Нр┤пр╡Бр┤ир╡Нр┤ир┤др┤┐р┤▓р╡Вр┤Яр╡Ж, р┤кр╡Бр┤│р╡Нр┤│р┤┐ р┤Ер┤нр╡Нр┤пр╡╝р┤др╡Нр┤ер┤ир┤Хр╡╛ р┤Ер┤▓р╡Нр┤▓р╡Жр┤Щр╡Нр┤Хр┤┐р╡╜ р┤кр┤╛р┤Ър╡Нр┤Ър╡Бр┤Хр╡╛ р┤╕р┤ор╡╝р┤кр╡Нр┤кр┤┐р┤Хр╡Нр┤Хр╡Бр┤ир╡Нр┤ир┤др┤┐р┤▓р╡Вр┤Яр╡Ж, р┤ор┤▒р╡Нр┤▒р╡Н р┤кр╡Нр┤░р┤╡р╡╝р┤др╡Нр┤др┤ир┤Щр╡Нр┤Щр╡╛ р┤Ор┤ир╡Нр┤ир┤┐р┤╡р┤пр┤┐р┤▓р╡Вр┤Яр╡Ж р┤╕р┤Вр┤нр┤╛р┤╡р┤и р┤ир╡╜р┤Хр╡Бр┤ир╡Нр┤и р┤Ор┤▓р╡Нр┤▓р┤╛ р┤Жр┤│р╡Бр┤Хр┤│р╡Жр┤пр╡Бр┤В р┤мр┤╣р╡Бр┤ор┤╛р┤ир┤┐р┤Хр╡Нр┤Хр┤╛р╡╗ р┤кр╡Нр┤░р┤др┤┐р┤Ьр╡Нр┤Юр┤пр╡Жр┤Яр╡Бр┤Хр╡Нр┤Хр╡Бр┤ир╡Нр┤ир╡Б.
р┤кр┤░р┤┐р┤Ър┤пр┤др╡Нр┤др┤┐р┤ир╡Нр┤▒р╡Ж р┤Ер┤│р┤╡р╡Н, р┤▓р┤┐р┤Вр┤Чр┤В, р┤▓р┤┐р┤Вр┤Ч р┤╕р╡Нр┤╡р┤др╡Нр┤╡р┤╡р╡Бр┤В р┤кр╡Нр┤░р┤Хр┤Яр┤┐р┤кр╡Нр┤кр┤┐р┤Хр╡Нр┤Хр┤▓р╡Бр┤В, р┤▓р╡Ир┤Вр┤Чр┤┐р┤Х р┤▒р╡Лр╡╛, р┤╡р╡Ир┤Хр┤▓р╡Нр┤пр┤В, р┤╡р╡Нр┤пр┤Хр╡Нр┤др┤┐р┤Чр┤д р┤░р╡Вр┤кр┤В, р┤╢р┤░р╡Ар┤░ р┤╡р┤▓р╡Бр┤кр╡Нр┤кр┤В, р┤╡р┤Вр┤╢р┤В, р┤╡р┤Вр┤╢р╡Ар┤пр┤д, р┤кр╡Нр┤░р┤╛р┤пр┤В, р┤ор┤др┤В, р┤Ер┤▓р╡Нр┤▓р╡Жр┤Щр╡Нр┤Хр┤┐р╡╜ р┤жр╡Зр┤╢р╡Ар┤пр┤д р┤Ор┤ир╡Нр┤ир┤┐р┤╡р┤пр╡НтАМр┤Хр╡Нр┤Хр╡Жр┤▓р╡Нр┤▓р┤╛р┤В р┤кр┤░р┤┐р┤Чр┤гр┤┐р┤Хр╡Нр┤Хр┤╛р┤др╡Ж р┤И р┤кр┤жр╡Нр┤зр┤др┤┐р┤пр┤┐р┤▓р╡Ж р┤кр┤Щр╡Нр┤Хр┤╛р┤│р┤┐р┤др╡Нр┤др┤В р┤Ор┤▓р╡Нр┤▓р┤╛р┤╡р╡╝р┤Хр╡Нр┤Хр╡Бр┤В р┤Жр┤Хр╡Нр┤░р┤ор┤гр┤░р┤╣р┤┐р┤др┤ор┤╛р┤Хр╡Нр┤Хр┤╛р╡╗ р┤Юр┤Щр╡Нр┤Щр╡╛ р┤кр╡Нр┤░р┤др┤┐р┤Ьр╡Нр┤Юр┤╛р┤мр┤жр╡Нр┤зр┤░р┤╛р┤гр╡Н.
р┤кр┤Щр╡Нр┤Хр┤╛р┤│р┤┐р┤Хр┤│р╡Бр┤Яр╡Ж р┤Ер┤╕р╡Нр┤╡р╡Ар┤Хр┤╛р┤░р╡Нр┤пр┤ор┤╛р┤п р┤кр╡Жр┤░р╡Бр┤ор┤╛р┤▒р╡Нр┤▒р┤др╡Нр┤др┤┐р┤ир╡Нр┤▒р╡Ж р┤Йр┤жр┤╛р┤╣р┤░р┤гр┤Щр╡Нр┤Щр┤│р┤┐р╡╜ р┤Зр┤╡ р┤Йр╡╛р┤кр╡Нр┤кр╡Жр┤Яр╡Бр┤ир╡Нр┤ир╡Б:
* р┤▓р╡Ир┤Вр┤Чр┤┐р┤Хр┤др┤пр╡Жр┤Хр╡Нр┤Хр╡Бр┤▒р┤┐р┤Ър╡Нр┤Ър╡Бр┤│р╡Нр┤│ р┤нр┤╛р┤╖р┤пр╡Бр┤Яр╡Жр┤пр╡Л р┤Ър┤┐р┤др╡Нр┤░р┤Щр╡Нр┤Щр┤│р╡Бр┤Яр╡Жр┤пр╡Л р┤Йр┤кр┤пр╡Лр┤Чр┤В
* р┤╡р╡Нр┤пр┤Хр╡Нр┤др┤┐р┤кр┤░р┤ор┤╛р┤п р┤Жр┤Хр╡Нр┤░р┤ор┤гр┤Щр╡Нр┤Щр╡╛
* р┤Яр╡Нр┤░р╡Лр┤│р┤┐р┤Вр┤Чр╡Н р┤Ер┤▓р╡Нр┤▓р╡Жр┤Щр╡Нр┤Хр┤┐р╡╜ р┤Ер┤кр┤ор┤╛р┤ир┤Хр┤░р┤ор┤╛р┤п/р┤Ер┤кр┤Хр╡Ар╡╝р┤др╡Нр┤др┤┐р┤Хр┤░р┤ор┤╛р┤п р┤Ер┤нр┤┐р┤кр╡Нр┤░р┤╛р┤пр┤Щр╡Нр┤Щр╡╛
* р┤кр╡Кр┤др╡Бр┤╡р┤╛р┤пр┤др╡Л р┤╕р╡Нр┤╡р┤Хр┤╛р┤░р╡Нр┤пр┤ор┤╛р┤пр┤др╡Л р┤Жр┤п р┤╢р┤▓р╡Нр┤пр┤кр╡Нр┤кр╡Жр┤Яр╡Бр┤др╡Нр┤др╡╜
* р┤╡р╡Нр┤пр┤Хр╡Нр┤др┤ор┤╛р┤п р┤Ер┤ир╡Бр┤ор┤др┤┐р┤пр┤┐р┤▓р╡Нр┤▓р┤╛р┤др╡Ж р┤ор┤▒р╡Нр┤▒р╡Бр┤│р╡Нр┤│р┤╡р┤░р╡Бр┤Яр╡Ж р┤╕р╡Нр┤╡р┤Хр┤╛р┤░р╡Нр┤п р┤╡р┤┐р┤╡р┤░р┤Щр╡Нр┤Щр╡╛, р┤Йр┤жр┤╛р┤╣р┤░р┤гр┤др╡Нр┤др┤┐р┤ир╡Н, р┤нр╡Чр┤др┤┐р┤Х р┤Ер┤▓р╡Нр┤▓р╡Жр┤Щр╡Нр┤Хр┤┐р╡╜ р┤Зр┤▓р┤Хр╡Нр┤Яр╡Нр┤░р╡Лр┤гр┤┐р┤Хр╡Н р┤╡р┤┐р┤▓р┤╛р┤╕р┤Щр╡Нр┤Щр╡╛ р┤кр╡Нр┤░р┤╕р┤┐р┤жр╡Нр┤зр╡Ар┤Хр┤░р┤┐р┤Хр╡Нр┤Хр╡Бр┤Х
* р┤ор┤▒р╡Нр┤▒р╡Н р┤Ер┤ир┤╛р┤╢р┤╛р┤╕р╡Нр┤пр┤ор╡Л р┤Ер┤ир┤╛р┤жр┤░р┤╡р╡Л р┤Жр┤п р┤кр╡Жр┤░р╡Бр┤ор┤╛р┤▒р╡Нр┤▒р┤В
р┤И р┤ир┤ЯродрпНродрпИр┤Ър╡Нр┤Ър┤Яр╡Нр┤Яр┤пр╡Бр┤ор┤╛р┤пр┤┐ р┤пр╡Лр┤Ьр┤┐р┤Хр╡Нр┤Хр┤╛р┤др╡Нр┤д р┤Ер┤нр┤┐р┤кр╡Нр┤░р┤╛р┤пр┤Щр╡Нр┤Щр┤│р╡Бр┤В, р┤Хр┤ор╡Нр┤ор┤┐р┤▒р╡Нр┤▒р╡Бр┤Хр┤│р╡Бр┤В, р┤Хр╡Лр┤бр╡Бр┤В, р┤╡р┤┐р┤Хр╡Нр┤Хр┤┐ р┤др┤┐р┤░р╡Бр┤др╡Нр┤др┤▓р╡Бр┤Хр┤│р╡Бр┤В, р┤кр╡Нр┤░р┤╢р╡НтАМр┤ир┤Щр╡Нр┤Щр┤│р╡Бр┤В, р┤ор┤▒р╡Нр┤▒р╡Н р┤╕р┤Вр┤нр┤╛р┤╡р┤ир┤Хр┤│р╡Бр┤В р┤ир╡Ар┤Хр╡Нр┤Хр┤В р┤Ър╡Жр┤пр╡Нр┤пр┤╛р┤ир╡Бр┤В р┤др┤┐р┤░р╡Бр┤др╡Нр┤др┤╛р┤ир╡Бр┤В р┤ир┤┐р┤░р┤╕р┤┐р┤Хр╡Нр┤Хр┤╛р┤ир╡Бр┤ор╡Бр┤│р╡Нр┤│ р┤Ер┤╡р┤Хр┤╛р┤╢р┤╡р╡Бр┤В р┤Йр┤др╡Нр┤др┤░р┤╡р┤╛р┤жр┤┐р┤др╡Нр┤др┤╡р╡Бр┤В р┤кр┤жр╡Нр┤зр┤др┤┐ р┤кр┤░р┤┐р┤кр┤╛р┤▓р┤Хр╡╝р┤Хр╡Нр┤Хр╡Бр┤гр╡Нр┤Яр╡Н, р┤Ер┤▓р╡Нр┤▓р╡Жр┤Щр╡Нр┤Хр┤┐р╡╜ р┤Ер┤╡р╡╝ р┤Ер┤ир╡Бр┤Ър┤┐р┤др┤ор╡Л р┤нр╡Ар┤╖р┤гр┤┐р┤пр╡Л р┤Ер┤кр┤ор┤╛р┤ир┤Хр┤░р┤ор╡Л р┤жр╡Лр┤╖р┤Хр┤░р┤ор╡Л р┤Жр┤гр╡Жр┤ир╡Нр┤ир╡Н р┤Хр┤░р╡Бр┤др╡Бр┤ир╡Нр┤и р┤ор┤▒р╡Нр┤▒р╡Н р┤кр╡Жр┤░р╡Бр┤ор┤╛р┤▒р╡Нр┤▒р┤Щр╡Нр┤Щр╡╛р┤Хр╡Нр┤Хр┤╛р┤пр┤┐ р┤Пр┤др╡Жр┤Щр╡Нр┤Хр┤┐р┤▓р╡Бр┤В р┤╕р┤Вр┤нр┤╛р┤╡р┤Хр┤ир╡Ж р┤др┤╛р╡╜р┤Хр╡Нр┤Хр┤╛р┤▓р┤┐р┤Хр┤ор┤╛р┤пр╡Л р┤╕р╡Нр┤ер┤┐р┤░р┤ор┤╛р┤пр╡Л р┤ир┤┐р┤░р╡Лр┤зр┤┐р┤Хр╡Нр┤Хр╡Бр┤Х.
р┤И р┤ир┤ЯродрпНродрпИр┤Ър╡Нр┤Ър┤Яр╡Нр┤Яр┤В р┤╕р╡Нр┤╡р╡Ар┤Хр┤░р┤┐р┤Хр╡Нр┤Хр╡Бр┤ир╡Нр┤ир┤др┤┐р┤▓р╡Вр┤Яр╡Ж, р┤кр┤жр╡Нр┤зр┤др┤┐ р┤кр┤░р┤┐р┤кр┤╛р┤▓р┤Хр╡╝ р┤И р┤кр┤жр╡Нр┤зр┤др┤┐р┤пр╡Бр┤Яр╡Ж р┤Ор┤▓р╡Нр┤▓р┤╛ р┤╡р┤╢р┤Щр╡Нр┤Щр┤│р╡Бр┤В р┤ир┤┐р┤пр┤ир╡Нр┤др╡Нр┤░р┤┐р┤Хр╡Нр┤Хр╡Бр┤ир╡Нр┤ир┤др┤┐р┤ир╡Н р┤И р┤др┤др╡Нр┤╡р┤Щр╡Нр┤Щр╡╛ р┤ир╡Нр┤пр┤╛р┤пр┤ор┤╛р┤пр╡Бр┤В р┤Ер┤ир╡Бр┤╕р╡Нр┤пр╡Вр┤др┤ор┤╛р┤пр╡Бр┤В р┤кр╡Нр┤░р┤пр╡Лр┤Чр┤┐р┤Хр╡Нр┤Хр┤╛р╡╗ р┤кр╡Нр┤░р┤др┤┐р┤Ьр╡Нр┤Юр┤╛р┤мр┤жр╡Нр┤зр┤░р┤╛р┤Хр╡Бр┤ир╡Нр┤ир╡Б. р┤ир┤ЯродрпНродрпИр┤Ър╡Нр┤Ър┤Яр╡Нр┤Яр┤В р┤кр┤╛р┤▓р┤┐р┤Хр╡Нр┤Хр┤╛р┤др╡Нр┤д р┤Ер┤▓р╡Нр┤▓р╡Жр┤Щр╡Нр┤Хр┤┐р╡╜ р┤ир┤Яр┤кр╡Нр┤кр┤╛р┤Хр╡Нр┤Хр┤╛р┤др╡Нр┤д р┤кр┤жр╡Нр┤зр┤др┤┐ р┤кр┤░р┤┐р┤кр┤╛р┤▓р┤Хр┤░р╡Ж р┤кр┤жр╡Н
р┤И р┤ир┤пр┤╛р┤Чр┤гр┤В[Contributor Covenant][homepage], р┤кр┤др┤┐р┤кр╡Нр┤кр╡Н 1.3.0 р┤Ор┤ир╡Нр┤ир┤др┤┐р╡╜ р┤ир┤┐р╡╝р┤ор┤┐р┤Ър╡Нр┤Ър┤др┤╛р┤гр╡Н, https://contributor-covenant.org/version/1/3/0/ р┤▓р╡Зр┤Хр╡Нр┤Хр╡Н р┤▓р┤нр╡Нр┤пр┤ор┤╛р┤гр╡Н.
[homepage]: https://contributor-covenant.org
[р┤╡р┤╛р┤Ър┤ир┤В](README.md#translations)
-29
View File
@@ -1,29 +0,0 @@
# рдпреЛрдЧрджрд╛рдирдХрд░реНрддрд╛ рдЖрдЪрд░рдг рд╕рдВрд╣рд┐рддрд╛
рдпрд╛ рдкреНрд░рдХрд▓реНрдкрд╛рдЪреЗ рдпреЛрдЧрджрд╛рдирдХрд░реНрддреЗ рдЖрдгрд┐ рджреЗрдЦрд░реЗрдЦ рдХрд░рдгрд╛рд░реЗ рдореНрд╣рдгреВрди, рдЖрдгрд┐ рдЦреБрд▓реНрдпрд╛ рдЖрдгрд┐ рд╕реНрд╡рд╛рдЧрддрд╛рд░реНрд╣ рд╕рдореБрджрд╛рдпрд╛рд▓рд╛ рдЪрд╛рд▓рдирд╛ рджреЗрдгреНрдпрд╛рдЪреНрдпрд╛ рд╣рд┐рддрд╛рд╕рд╛рдареА, рдЖрдореНрд╣реА рд╕рдорд╕реНрдпрд╛рдВрдЪрд╛ рдЕрд╣рд╡рд╛рд▓ рджреЗрдгреЗ, рд╡реИрд╢рд┐рд╖реНрдЯреНрдп рд╡рд┐рдирдВрддреНрдпрд╛ рдкреЛрд╕реНрдЯ рдХрд░рдгреЗ, рджрд╕реНрддрдРрд╡рдЬ рдЕрджреНрдпрддрдирд┐рдд рдХрд░рдгреЗ, рдкреБрд▓ рд╡рд┐рдирдВрддреНрдпрд╛ рдХрд┐рдВрд╡рд╛ рдкреЕрдЪ рд╕рдмрдорд┐рдЯ рдХрд░рдгреЗ рдЖрдгрд┐ рдЗрддрд░ рдХреНрд░рд┐рдпрд╛рдХрд▓рд╛рдкрд╛рдВрджреНрд╡рд╛рд░реЗ рдпреЛрдЧрджрд╛рди рджреЗрдгрд╛рд▒реНрдпрд╛ рд╕рд░реНрд╡ рд▓реЛрдХрд╛рдВрдЪрд╛ рдЖрджрд░ рдХрд░рдгреНрдпрд╛рдЪреЗ рд╡рдЪрди рджреЗрддреЛ.
рдЕрдиреБрднрд╡рд╛рдЪреА рдкрд╛рддрд│реА, рд▓рд┐рдВрдЧ, рд▓рд┐рдВрдЧ рдУрд│рдЦ рдЖрдгрд┐ рдЕрднрд┐рд╡реНрдпрдХреНрддреА, рд▓реИрдВрдЧрд┐рдХ рдЕрднрд┐рдореБрдЦрддрд╛, рдЕрдкрдВрдЧрддреНрд╡, рд╡реИрдпрдХреНрддрд┐рдХ рд╕реНрд╡рд░реВрдк, рд╢рд░реАрд░рд╛рдЪрд╛ рдЖрдХрд╛рд░, рд╡рдВрд╢, рд╡рд╛рдВрд╢рд┐рдХрддрд╛, рд╡рдп, рдзрд░реНрдо, рдХрд┐рдВрд╡рд╛ рд░рд╛рд╖реНрдЯреНрд░реАрдпрддреНрд╡ рдпрд╛рдЪреА рдкрд░реНрд╡рд╛ рди рдХрд░рддрд╛ рдпрд╛ рдкреНрд░рдХрд▓реНрдкрд╛рддреАрд▓ рд╕рд╣рднрд╛рдЧ рд╣рд╛ рдкреНрд░рддреНрдпреЗрдХрд╛рд╕рд╛рдареА рдЫрд│рдореБрдХреНрдд рдЕрдиреБрднрд╡ рдмрдирд╡рдгреНрдпрд╛рд╕рд╛рдареА рдЖрдореНрд╣реА рд╡рдЪрдирдмрджреНрдз рдЖрд╣реЛрдд.
рд╕рд╣рднрд╛рдЧреАрдВрдЪреНрдпрд╛ рдЕрд╕реНрд╡реАрдХрд╛рд░реНрдп рд╡рд░реНрддрдирд╛рдЪреНрдпрд╛ рдЙрджрд╛рд╣рд░рдгрд╛рдВрдордзреНрдпреЗ рд╣реЗ рд╕рдорд╛рд╡рд┐рд╖реНрдЯ рдЖрд╣реЗ:
* рд▓реИрдВрдЧрд┐рдХ рднрд╛рд╖рд╛ рдХрд┐рдВрд╡рд╛ рдкреНрд░рддрд┐рдорд╛ рд╡рд╛рдкрд░рдгреЗ
* рд╡реИрдпрдХреНрддрд┐рдХ рд╣рд▓реНрд▓реЗ
* рдЯреНрд░реЛрд▓рд┐рдВрдЧ рдХрд┐рдВрд╡рд╛ рдЕрдкрдорд╛рдирд╛рд╕реНрдкрдж/рдорд╛рдирд╣рд╛рдиреАрдХрд╛рд░рдХ рдЯрд┐рдкреНрдкрдгреНрдпрд╛
* рд╕рд╛рд░реНрд╡рдЬрдирд┐рдХ рдХрд┐рдВрд╡рд╛ рдЦрд╛рдЬрдЧреА рдЫрд│
* рд╕реНрдкрд╖реНрдЯ рдкрд░рд╡рд╛рдирдЧреАрд╢рд┐рд╡рд╛рдп рдЗрддрд░рд╛рдВрдЪреА рдЦрд╛рдЬрдЧреА рдорд╛рд╣рд┐рддреА рдкреНрд░рдХрд╛рд╢рд┐рдд рдХрд░рдгреЗ, рдЬрд╕реЗ рдХреА рднреМрддрд┐рдХ рдХрд┐рдВрд╡рд╛ рдЗрд▓реЗрдХреНрдЯреНрд░реЙрдирд┐рдХ рдкрддреНрддреЗ
* рдЗрддрд░ рдЕрдиреИрддрд┐рдХ рдХрд┐рдВрд╡рд╛ рдЕрд╡реНрдпрд╛рд╡рд╕рд╛рдпрд┐рдХ рдЖрдЪрд░рдг
рдпрд╛ рдЖрдЪрд░рдгрд╕рдВрд╣рд┐рддреЗрд╢реА рд╕рдВрд░реЗрдЦрд┐рдд рдирд╕рд▓реЗрд▓реНрдпрд╛ рдЯрд┐рдкреНрдкрдгреНрдпрд╛, рдХрдорд┐рдЯ, рдХреЛрдб, рд╡рд┐рдХреА рд╕рдВрдкрд╛рджрдиреЗ, рдореБрджреНрджреЗ рдЖрдгрд┐ рдЗрддрд░ рдпреЛрдЧрджрд╛рди рдХрд╛рдвреВрди рдЯрд╛рдХрдгреНрдпрд╛рдЪрд╛, рд╕рдВрдкрд╛рджрд┐рдд рдХрд░рдгреНрдпрд╛рдЪрд╛ рдХрд┐рдВрд╡рд╛ рдирд╛рдХрд╛рд░рдгреНрдпрд╛рдЪрд╛ рдХрд┐рдВрд╡рд╛ рдЕрдиреБрдЪрд┐рдд, рдзрдордХреА рджреЗрдгрд╛рд░реЗ, рдЖрдХреНрд╖реЗрдкрд╛рд░реНрд╣, рд╣рд╛рдирд┐рдХрд╛рд░рдХ рд╡рд╛рдЯрдгрд╛рд▒реНрдпрд╛ рдЗрддрд░ рд╡рд░реНрддрдирд╛рдВрд╕рд╛рдареА рддрд╛рддреНрдкреБрд░рддреЗ рдХрд┐рдВрд╡рд╛ рдХрд╛рдпрдорд╕реНрд╡рд░реВрдкреА рдмрдВрджреА рдШрд╛рд▓рдгреНрдпрд╛рдЪрд╛ рдЕрдзрд┐рдХрд╛рд░ рдкреНрд░рдХрд▓реНрдк рджреЗрдЦрднрд╛рд▓рдХрд░реНрддреНрдпрд╛рдВрдирд╛ рдЖрд╣реЗ.
рдпрд╛ рдЖрдЪрд░рдгрд╕рдВрд╣рд┐рддреЗрдЪрд╛ рдЕрд╡рд▓рдВрдм рдХрд░реВрди, рдкреНрд░рдХрд▓реНрдк рджреЗрдЦрд░реЗрдЦ рдХрд░рдгрд╛рд░реЗ рдпрд╛ рдкреНрд░рдХрд▓реНрдкрд╛рдЪреЗ рд╡реНрдпрд╡рд╕реНрдерд╛рдкрди рдХрд░рдгреНрдпрд╛рдЪреНрдпрд╛ рдкреНрд░рддреНрдпреЗрдХ рдкреИрд▓реВрд╡рд░ рд╣реА рддрддреНрддреНрд╡реЗ рдирд┐рд╖реНрдкрдХреНрд╖ рдЖрдгрд┐ рд╕рд╛рддрддреНрдпрдкреВрд░реНрдгрдкрдгреЗ рд▓рд╛рдЧреВ рдХрд░рдгреНрдпрд╛рд╕рд╛рдареА рд╕реНрд╡рддрдГрд▓рд╛ рд╡рдЪрдирдмрджреНрдз рдХрд░рддрд╛рдд. рдЖрдЪрд░рдгрд╕рдВрд╣рд┐рддреЗрдЪреЗ рдкрд╛рд▓рди рди рдХрд░рдгрд╛рд░реНтАНрдпрд╛ рдХрд┐рдВрд╡рд╛ рддреНрдпрд╛рдВрдЪреА рдЕрдВрдорд▓рдмрдЬрд╛рд╡рдгреА рди рдХрд░рдгрд╛рд░реНтАНрдпрд╛ рдкреНрд░рдХрд▓реНрдк рджреЗрдЦрднрд╛рд▓ рдХрд░рдгрд╛рд░реНтАНрдпрд╛рдВрдирд╛ рдкреНрд░рдХрд▓реНрдк рдХрд╛рд░реНрдпрд╕рдВрдШрд╛рддреВрди рдХрд╛рдпрдордЪреЗ рдХрд╛рдвреВрди рдЯрд╛рдХрд▓реЗ рдЬрд╛рдК рд╢рдХрддреЗ.
рд╣реА рдЖрдЪрд░рдг рд╕рдВрд╣рд┐рддрд╛ рдкреНрд░рдХрд▓реНрдкрд╛рдЪреНрдпрд╛ рдЬрд╛рдЧреЗрдд рдЖрдгрд┐ рд╕рд╛рд░реНрд╡рдЬрдирд┐рдХ рдЬрд╛рдЧрд╛рдВрд╡рд░ рд▓рд╛рдЧреВ рд╣реЛрддреЗ рдЬреЗрд╡реНрд╣рд╛ рдПрдЦрд╛рджреА рд╡реНрдпрдХреНрддреА рдкреНрд░рдХрд▓реНрдкрд╛рдЪреЗ рдХрд┐рдВрд╡рд╛ рддреНрдпрд╛рдЪреНрдпрд╛ рд╕рдореБрджрд╛рдпрд╛рдЪреЗ рдкреНрд░рддрд┐рдирд┐рдзрд┐рддреНрд╡ рдХрд░рдд рдЕрд╕рддреЗ.
рдЕрдкрдорд╛рдирд╛рд╕реНрдкрдж, рддреНрд░рд╛рд╕рджрд╛рдпрдХ рдХрд┐рдВрд╡рд╛ рдЕрдиреНрдпрдерд╛ рдЕрд╕реНрд╡реАрдХрд╛рд░реНрдп рд╡рд░реНрддрдирд╛рдЪреА рдШрдЯрдирд╛ maintainer at victorfelder at gmail.com рд╡рд░ рдкреНрд░рдХрд▓реНрдк рджреЗрдЦрднрд╛рд▓рдХрд░реНрддреНрдпрд╛рд╢реА рд╕рдВрдкрд░реНрдХ рд╕рд╛рдзреВрди рдиреЛрдВрджрд╡рд▓реА рдЬрд╛рдК рд╢рдХрддреЗ. рд╕рд░реНрд╡ рддрдХреНрд░рд╛рд░реАрдВрдЪреЗ рдкреБрдирд░рд╛рд╡рд▓реЛрдХрди рдХреЗрд▓реЗ рдЬрд╛рдИрд▓ рдЖрдгрд┐ рддрдкрд╛рд╕рд▓реЗ рдЬрд╛рдИрд▓ рдЖрдгрд┐ рдкрд░рд┐рдгрд╛рдореА рдЖрд╡рд╢реНрдпрдХ рдЖрдгрд┐ рдкрд░рд┐рд╕реНрдерд┐рддреАрдиреБрд╕рд╛рд░ рдпреЛрдЧреНрдп рдЕрд╕рд╛ рдкреНрд░рддрд┐рд╕рд╛рдж рдорд┐рд│реЗрд▓. рдПрдЦрд╛рджреНрдпрд╛ рдШрдЯрдиреЗрдЪреНрдпрд╛ рд░рд┐рдкреЛрд░реНрдЯрд░рдЪреНрдпрд╛ рд╕рдВрджрд░реНрднрд╛рдд рдЧреЛрдкрдиреАрдпрддрд╛ рд░рд╛рдЦрдгреЗ рджреЗрдЦрднрд╛рд▓ рдХрд░рдгрд╛рд░реНтАНрдпрд╛рдВрдирд╛ рдмрдВрдзрдирдХрд╛рд░рдХ рдЖрд╣реЗ.
рд╣реА рдЖрдЪрд░рдг рд╕рдВрд╣рд┐рддрд╛ [Contributor Covenant][homepage] рд╡рд░реВрди рд╕реНрд╡реАрдХрд╛рд░рд▓реА рдЖрд╣реЗ, рдЖрд╡реГрддреНрддреА рез.рей.реж, https://contributor-covenant.org/version/1/3/0/ рд╡рд░ рдЙрдкрд▓рдмреНрдз рдЖрд╣реЗ.
[homepage]: https://contributor-covenant.org
[Translations](README.md#translations)
-28
View File
@@ -1,28 +0,0 @@
# рокроЩрпНроХро│ро┐рокрпНрокро╛ро│ро░рпН роироЯродрпНродрпИ роирпЖро▒ро┐роорпБро▒рпИроХро│рпН
роЗроирпНродродрпН родро┐роЯрпНроЯродрпНродро┐ройрпН рокроЩрпНроХро│ро┐рокрпНрокро╛ро│ро░рпНроХро│рпН рооро▒рпНро▒рпБроорпН рокро░ро╛рооро░ро┐рокрпНрокро╛ро│ро░рпНроХро│ро╛роХ, роТро░рпБ родро┐ро▒роирпНрод рооро▒рпНро▒рпБроорпН ро╡ро░ро╡рпЗро▒рпНроХродрпНродроХрпНроХ роЪроорпВроХродрпНродрпИ ро╡ро│ро░рпНроХрпНроХрпБроорпН роирпЛроХрпНроХродрпНродро┐ро▓рпН, роЪро┐роХрпНроХро▓рпНроХро│рпИрокрпН рокрпБроХро╛ро░ро│ро┐родрпНродро▓рпН, рокрпБродро┐роп роЕроорпНроЪроЩрпНроХро│рпИроХрпН роХрпЛро░рпБродро▓рпН, роЖро╡рогроЩрпНроХро│рпИрокрпН рокрпБродрпБрокрпНрокро┐родрпНродро▓рпН, pull request-роХро│рпН роЕро▓рпНро▓родрпБ patch-роХро│рпИроЪрпН роЪрооро░рпНрокрпНрокро┐родрпНродро▓рпН рооро▒рпНро▒рпБроорпН рокро┐ро▒ роЪрпЖропро▓рпНрокро╛роЯрпБроХро│рпН роорпВро▓роорпН рокроЩрпНроХро│ро┐роХрпНроХрпБроорпН роЕройрпИродрпНродрпБ роороХрпНроХро│рпИропрпБроорпН роородро┐роХрпНроХ роиро╛роЩрпНроХро│рпН роЙро▒рпБродро┐ропро│ро┐роХрпНроХро┐ро▒рпЛроорпН.
роЕройрпБрокро╡ роиро┐ро▓рпИ, рокро╛ро▓ро┐ройроорпН, рокро╛ро▓ро┐рой роЕроЯрпИропро╛ро│роорпН рооро▒рпНро▒рпБроорпН ро╡рпЖро│ро┐рокрпНрокро╛роЯрпБ, рокро╛ро▓ро┐ропро▓рпН роиро╛роЯрпНроЯроорпН, роЗропро▓ро╛роорпИ, родройро┐рокрпНрокроЯрпНроЯ родрпЛро▒рпНро▒роорпН, роЙроЯро▓рпН роЕро│ро╡рпБ, роЗройроорпН, рокрпВро░рпНро╡рпАроХроорпН, ро╡ропродрпБ, роородроорпН роЕро▓рпНро▓родрпБ родрпЗроЪро┐ропроорпН роЖроХро┐ропро╡ро▒рпНро▒рпИрокрпН рокрпКро░рпБроЯрпНрокроЯрпБродрпНродро╛рооро▓рпН, роЗроирпНродродрпН родро┐роЯрпНроЯродрпНродро┐ро▓рпН рокроЩрпНроХрпЗро▒рпНрокродрпИ роЕройрпИро╡ро░рпБроХрпНроХрпБроорпН родрпБройрпНрокрпБро▒рпБродрпНродро▓рпН роЗро▓рпНро▓ро╛род роЕройрпБрокро╡рооро╛роХ рооро╛ро▒рпНро▒рпБро╡родро▒рпНроХрпБ роиро╛роЩрпНроХро│рпН роХроЯроорпИрокрпНрокроЯрпНроЯрпБро│рпНро│рпЛроорпН.
рокроЩрпНроХрпЗро▒рпНрокро╛ро│ро░рпНроХро│ро┐ройрпН роПро▒рпНро▒рпБроХрпНроХрпКро│рпНро│ роорпБроЯро┐ропро╛род роироЯродрпНродрпИроХрпНроХро╛рой роОроЯрпБродрпНродрпБроХрпНроХро╛роЯрпНроЯрпБроХро│рпН:
* рокро╛ро▓ро┐ропро▓рпН роЪро╛ро░рпНроирпНрод роорпКро┤ро┐ роЕро▓рпНро▓родрпБ роЙро░рпБро╡рокрпН рокроЯроЩрпНроХро│рпИрокрпН рокропройрпНрокроЯрпБродрпНродрпБродро▓рпН
* родройро┐рокрпНрокроЯрпНроЯ родро╛роХрпНроХрпБродро▓рпНроХро│рпН
* роЯрпНро░рпЛро▓ро┐роЩрпН роЪрпЖропрпНро╡родрпБ роЕро▓рпНро▓родрпБ роЕро╡роородро┐роХрпНроХрпБроорпН/роЗро┤ро┐ро╡ро╛рой роХро░рпБродрпНродрпБроХрпНроХро│рпИ ро╡рпЖро│ро┐ропро┐роЯрпБро╡родрпБ
* рокрпКродрпБ роЕро▓рпНро▓родрпБ родройро┐рокрпНрокроЯрпНроЯ родрпБройрпНрокрпБро▒рпБродрпНродро▓рпН
* ро╡рпЖро│ро┐рокрпНрокроЯрпИропро╛рой роЕройрпБроородро┐ропро┐ройрпНро▒ро┐, рооро▒рпНро▒ро╡ро░рпНроХро│ро┐ройрпН родройро┐рокрпНрокроЯрпНроЯ родроХро╡ро▓рпНроХро│ро╛рой роЙроЯро▓рпН роЕро▓рпНро▓родрпБ рооро┐ройрпНройрогрпБ роорпБроХро╡ро░ро┐роХро│рпИ ро╡рпЖро│ро┐ропро┐роЯрпБродро▓рпН
* рокро┐ро▒ роирпЖро▒ро┐роорпБро▒рпИропро▒рпНро▒ роЕро▓рпНро▓родрпБ родрпКро┤ро┐ро▓рпНроорпБро▒рпИропро▒рпНро▒ роироЯродрпНродрпИ
родро┐роЯрпНроЯрокрпН рокро░ро╛рооро░ро┐рокрпНрокро╛ро│ро░рпНроХро│рпБроХрпНроХрпБ роЗроирпНрод роироЯродрпНродрпИ роирпЖро▒ро┐роорпБро▒рпИроХро│рпБроЯройрпН рокрпКро░рпБроирпНродро╛род роХро░рпБродрпНродрпБроХро│рпН, рооро╛ро▒рпНро▒роЩрпНроХро│рпН (commits), роХрпБро▒ро┐ропрпАроЯрпБроХро│рпН, wiki родро┐ро░рпБродрпНродроЩрпНроХро│рпН, роЪро┐роХрпНроХро▓рпНроХро│рпН (issues) рооро▒рпНро▒рпБроорпН рокро┐ро▒ роЪрооро░рпНрокрпНрокро┐рокрпНрокрпБроХро│рпИ роЕроХро▒рпНро▒рпБро╡родро▒рпНроХрпБроорпН, родро┐ро░рпБродрпНродрпБро╡родро▒рпНроХрпБроорпН роЕро▓рпНро▓родрпБ роиро┐ро░ро╛роХро░ро┐рокрпНрокродро▒рпНроХрпБроорпН роЙро░ро┐роорпИ рооро▒рпНро▒рпБроорпН рокрпКро▒рпБрокрпНрокрпБ роЙро│рпНро│родрпБ. роорпЗро▓рпБроорпН, роЕро╡ро░рпНроХро│рпН рокрпКро░рпБродрпНродрооро▒рпНро▒, роЕроЪрпНроЪрпБро▒рпБродрпНродрпБроорпН, рокрпБрогрпНрокроЯрпБродрпНродрпБроорпН роЕро▓рпНро▓родрпБ родрпАроЩрпНроХрпБ ро╡ро┐ро│рпИро╡ро┐роХрпНроХрпБроорпН роОройрпНро▒рпБ роХро░рпБродрпБроорпН рокро┐ро▒ роироЯродрпНродрпИроХро│рпБроХрпНроХро╛роХ роОроирпНродро╡рпКро░рпБ рокроЩрпНроХро│ро┐рокрпНрокро╛ро│ро░рпИропрпБроорпН родро▒рпНроХро╛ро▓ро┐роХрооро╛роХро╡рпЛ роЕро▓рпНро▓родрпБ роиро┐ро░роирпНродро░рооро╛роХро╡рпЛ родроЯрпИ роЪрпЖропрпНро╡родро▒рпНроХрпБроорпН роЙро░ро┐роорпИ роЙрогрпНроЯрпБ.
роЗроирпНрод роироЯродрпНродрпИ роирпЖро▒ро┐роорпБро▒рпИроХро│рпИ роПро▒рпНро▒рпБроХрпНроХрпКро│рпНро╡родройрпН роорпВро▓роорпН, родро┐роЯрпНроЯрокрпН рокро░ро╛рооро░ро┐рокрпНрокро╛ро│ро░рпНроХро│рпН роЗроирпНродродрпН родро┐роЯрпНроЯродрпНродрпИ роиро┐ро░рпНро╡роХро┐рокрпНрокродройрпН роТро╡рпНро╡рпКро░рпБ роЕроорпНроЪродрпНродро┐ро▓рпБроорпН роЗроирпНродроХрпН роХрпКро│рпНроХрпИроХро│рпИ роирпЗро░рпНроорпИропро╛роХро╡рпБроорпН роиро┐ро▓рпИропро╛роХро╡рпБроорпН рокропройрпНрокроЯрпБродрпНродрпБро╡родро▒рпНроХрпБродрпН родроЩрпНроХро│рпИ роЕро░рпНрокрпНрокрогро┐роХрпНроХро┐ройрпНро▒ройро░рпН. роироЯродрпНродрпИ роирпЖро▒ро┐роорпБро▒рпИроХро│рпИрокрпН рокро┐ройрпНрокро▒рпНро▒ро╛род роЕро▓рпНро▓родрпБ роЕрооро▓рпНрокроЯрпБродрпНродро╛род родро┐роЯрпНроЯрокрпН рокро░ро╛рооро░ро┐рокрпНрокро╛ро│ро░рпНроХро│рпН родро┐роЯрпНроЯроХрпН роХрпБро┤рпБро╡ро┐ро▓ро┐ро░рпБроирпНродрпБ роиро┐ро░роирпНродро░рооро╛роХ роирпАроХрпНроХрокрпНрокроЯро▓ро╛роорпН.
роТро░рпБ родройро┐роирокро░рпН родро┐роЯрпНроЯродрпНродрпИропрпЛ роЕро▓рпНро▓родрпБ роЕродройрпН роЪроорпВроХродрпНродрпИропрпЛ рокро┐ро░родро┐роиро┐родро┐родрпНродрпБро╡рокрпНрокроЯрпБродрпНродрпБроорпН рокрпЛродрпБ, роЗроирпНрод роироЯродрпНродрпИ роирпЖро▒ро┐роорпБро▒рпИроХро│рпН родро┐роЯрпНроЯ ро╡рпЖро│ро┐роХро│ро┐ро▓рпБроорпН рокрпКродрпБ ро╡рпЖро│ро┐роХро│ро┐ро▓рпБроорпН рокрпКро░рпБроирпНродрпБроорпН.
родро╡ро▒ро╛рой, родрпБройрпНрокрпБро▒рпБродрпНродрпБроорпН роЕро▓рпНро▓родрпБ роПро▒рпНро▒рпБроХрпНроХрпКро│рпНро│ роорпБроЯро┐ропро╛род роироЯродрпНродрпИроХро│рпН `victorfelder at gmail.com` роОройрпНро▒ роорпБроХро╡ро░ро┐ропро┐ро▓рпН роТро░рпБ родро┐роЯрпНроЯрокрпН рокро░ро╛рооро░ро┐рокрпНрокро╛ро│ро░рпИродрпН родрпКроЯро░рпНрокрпБроХрпКрогрпНроЯрпБ рокрпБроХро╛ро░ро│ро┐роХрпНроХрокрпНрокроЯро▓ро╛роорпН. роЕройрпИродрпНродрпБрокрпН рокрпБроХро╛ро░рпНроХро│рпБроорпН роородро┐рокрпНрокро╛ропрпНро╡рпБ роЪрпЖропрпНропрокрпНрокроЯрпНроЯрпБ ро╡ро┐роЪро╛ро░ро┐роХрпНроХрокрпНрокроЯрпБроорпН, роорпЗро▓рпБроорпН роЪрпВро┤рпНроиро┐ро▓рпИроХро│рпБроХрпНроХрпБродрпН родрпЗро╡рпИропро╛рой рооро▒рпНро▒рпБроорпН рокрпКро░рпБродрпНродрооро╛рой роТро░рпБ рокродро┐ро▓рпИ роЕродрпБ ро╡ро┐ро│рпИро╡ро┐роХрпНроХрпБроорпН. роТро░рпБ роЪроорпНрокро╡родрпНродрпИрокрпН рокрпБроХро╛ро░ро│ро┐рокрпНрокро╡ро░рпН родрпКроЯро░рпНрокро╛рой ро░роХроЪро┐ропродрпНродройрпНроорпИропрпИрокрпН рокро░ро╛рооро░ро┐роХрпНроХрокрпН рокро░ро╛рооро░ро┐рокрпНрокро╛ро│ро░рпНроХро│рпН роХроЯроорпИрокрпНрокроЯрпНроЯрпБро│рпНро│ройро░рпН.
роЗроирпНрод роироЯродрпНродрпИ роирпЖро▒ро┐роорпБро▒рпИроХро│рпН, [Contributor Covenant, рокродро┐рокрпНрокрпБ 1.3.0](https://contributor-covenant.org/version/1/3/0/)-роЗро▓ро┐ро░рпБроирпНродрпБ родро┤рпБро╡ро┐ роОроЯрпБроХрпНроХрокрпНрокроЯрпНроЯродрпБ.
[homepage]: https://contributor-covenant.org
[Translations](README.md#translations)

Some files were not shown because too many files have changed in this diff Show More