1588 Commits

Author SHA1 Message Date
Tannu Choudhary
d488b56b98 Add Hindi YouTube Courses: OOP in C++ & Java, and DAA by KnowledgeGATE (#11923)
* Added oops in C++ and Java and Binary search courses

* Ensured Alphabetical Order and removed duplicate

* lint fixed

* Update courses/free-courses-hi.md

Co-authored-by: Eric Hellman <eric@hellman.net>

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2025-08-05 19:55:00 +02:00
Ramadan Yassin
1d2dc851d1 Update free-courses-ar.md add Rust Section Courses (#11883)
* Update free-courses-ar.md 

add 
Rust Section
- Rust للغلابة
- Rust and chill بالعربي

* Update free-courses-ar.md add &rlm; to Rust Section
2025-06-22 08:37:56 -04:00
Gabriele Ciccotelli
caa05be694 Add RTL/LTR Markdown linter for mixed-direction text consistency and PR annotation (#11877)
* Add RTL/LTR Markdown linter for mixed-direction text consistency and PR annotation

Introduce a Python-based linter (scripts/rtl_ltr_linter.py) to automatically detect and annotate issues related to mixed Right-To-Left (RTL) and Left-To-Right (LTR) text in Markdown files. The linter analyzes list items, book entries, and metadata for potential bidirectional text rendering problems, such as missing Unicode directionality markers (RLM/LRM) and improper handling of LTR keywords or symbols in RTL contexts.

Key features:
- Scans all Markdown files in the repository, with full logs saved as workflow artifacts.
- Annotates only changed or added lines in pull requests, providing targeted feedback in the GitHub Actions Job Summary.
- Detects common RTL/LTR issues, including:
  - Missing directionality markers after LTR keywords (e.g., "HTML") or symbols (e.g., "C#") in RTL text.
  - BIDI (bidirectional) mismatches that may affect text display.
  - Incorrect ordering of author names and metadata in RTL contexts.
- Configurable via rtl_linter_config.yml for keywords, symbols, and severity levels.
- Includes a GitHub Actions workflow (rtl-ltr-linter.yml) for automated checks on PRs.

* Add test cases for RTL/LTR linter in English and Arabic book lists

Add sample entries to free-programming-books-en.md and free-programming-books-ar.md to test the RTL/LTR Markdown linter.
These test cases include various combinations of RTL and LTR text, keywords, symbols, and metadata to verify that the linter correctly detects directionality issues and outputs the expected logs and annotations.

* Restore original book lists after RTL/LTR linter test cases

Revert test entries in free-programming-books-en.md and free-programming-books-ar.md, restoring the original book lists. This commit removes temporary test data used for validating the RTL/LTR Markdown linter, preparing the repository for merging the PR with a clean state.

No functional changes to the linter or configuration files; only test content has been removed.

* Update RTL/LTR linter workflow and script: run only on RTL file changes or "RTL" label, fail only on errors

The GitHub Actions workflow for the RTL/LTR Markdown linter now runs only if:
- The PR modifies .md files related to RTL languages (ar, he, fa, ur), or
- The PR has the "RTL" label.
The linter script has been updated to fail the check only if errors are found on changed lines, not for warnings.

* Only upload linter artifact if linter step runs

Prevent warning about missing artifact by uploading the linter output log only if the linter step was executed (success or failure). This avoids unnecessary warnings when the linter is skipped because no RTL files were changed and no RTL label is present.

* Test workflow: modify non-RTL markdown file

Modified free-programming-books-en.md to verify that the RTL/LTR linter workflow does not run when only non-RTL markdown files are changed and the "RTL" label is not present.

* Test workflow: modify RTL markdown file to trigger linter

Modified free-programming-books-ar.md to verify that the RTL/LTR linter workflow runs as expected when an RTL markdown file is changed.

* Fix RTL/LTR BIDI issues in some markdown files

Applied directional markers (&lrm;, &rlm;) and other formatting fixes to resolve BIDI (bidirectional text) errors and warnings reported by the linter in several .md files.

* Fix workflow: upload linter log only if linter step has not been skipped

Updated the workflow to upload the linter output artifact only when the linter step was actually executed (not skipped)

* Add debug step to check linter outcome in workflow

Added a debug step after the linter execution in the workflow to print the outcome and conclusion of the run_linter step.

* Set continue-on-error for linter step to allow artifact upload and debug

* Remove workflow debug step and update markdown file

Removed the debug step from the RTL/LTR linter workflow and applied further changes to a markdown file.

* Fix RTL/LTR BIDI issues in some markdown files

Applied directional markers (&lrm;, &rlm;) and other formatting fixes to resolve BIDI (bidirectional text) errors and warnings reported by the linter in several .md files. This commit is a second batch of corrections to improve RTL/LTR rendering and pass the linter checks.

* Fix RTL/LTR BIDI issues in some markdown files

Applied directional markers (&lrm;, &rlm;) and other formatting fixes to resolve BIDI (bidirectional text) errors and warnings reported by the linter in several .md files. This commit is a third batch of corrections to improve RTL/LTR rendering and pass the linter checks.

* Do not produce log file if no issues found

Updated the linter script to avoid creating the log file when no issues, warnings, or notices are found. If no issues are detected, the script now prints a "::notice ::No issues found"

* Always print annotation with number of errors and warnings found

Updated the linter script to always print an annotation indicating how many errors and warnings were found, even if there are none.

* Fix: always print summary annotation with number of issues found

* Add a missing newline character at end of file free-courses-he.md

* Update linter configuration and revert markdown files to pre-fix state

Updated the organization of keywords and symbols in the linter configuration file. Reverted all markdown files to their original state prior to the fixes.

* Update free-programming-books-he.md with fixes

* Update free-programming-books-he.md with further fixes

* Update free-programming-books-he.md with fixes

* Update free-programming-books-fa_IR.md with fixes

* Update free-programming-books-he.md with further fixes

* Update free-programming-books-ar.md with fixes

* Update free-programming-books-ar.md with further fixes

* Update free-podcasts-screencasts-ar.md with fixes

* Update free-podcasts-screencasts-fa_IR.md with fixes

* Update free-courses-he.md with fixes

* Update free-courses-he.md with further fixes

* Update free-courses-fa_IR.md with fixes

* Update free-courses-fa_IR.md with further fixes

* Update free-courses-ar.md with fixes

* Update free-courses-ar.md with further fixes

* Update free-courses-ar.md with further fixes

* Update free-courses-ur.md with fixes

* Update some markdown files with further improvements

* Fix alignment of nested lists in free-programming-books-fa_IR.md

* Update CONTRIBUTING.md and CONTRIBUTING-it.md with RTL/LTR linter error fixing guidelines

Added a section to CONTRIBUTING.md and CONTRIBUTING-it.md explaining how to fix RTL/LTR Markdown linter errors, including when to use &rlm; and &lrm; with practical examples for contributors working on files with mixed RTL and LTR text
2025-05-28 10:46:25 -04:00
Dao Hai Nam
1be7c48c60 Add 2 Vietnamese courses by Nam .NET (#11874)
* Add 2 Vietnamese courses by Nam .NET

* Fix alphabetical order

* Fix alphabetical order

* Fix alphabetical order

* Fix alphabetical order

* Fix alphabetical order

* Fix alphabetical order

* Update courses/free-courses-vi.md

Co-authored-by: Eric Hellman <eric@hellman.net>

* Update courses/free-courses-vi.md

Co-authored-by: Eric Hellman <eric@hellman.net>

* Fix alphabetical order

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2025-05-02 18:47:56 -04:00
Trần Minh Sáng
a2bffc3c2a Remove single videos shorter than 1 hour from the list of free courses in Vietnamese (#11869)
* Add Android courses to the list of free courses in Vietnamese

* Add ASP courses to the list of free courses in Vietnamese

* Add Assembly courses to the list of free courses in Vietnamese

* Add AutoIt courses to the list of free courses in Vietnamese

* Add Bash courses to the list of free courses in Vietnamese

* Add C courses to the list of free courses in Vietnamese

* Add C++ courses to the list of free courses in Vietnamese

* Add C++ index to the list of free courses in Vietnamese

* Add C# courses to the list of free courses in Vietnamese

* Add Cấu trúc dữ liệu và Giải thuật courses to the list of free courses in Vietnamese

* Add Dart courses to the list of free courses in Vietnamese

* Add ExpressJS courses to the list of free courses in Vietnamese

* Add Flutter courses to the list of free courses in Vietnamese

* Add Git courses to the list of free courses in Vietnamese

* Add Go courses to the list of free courses in Vietnamese

* Add HTML and CSS courses to the list of free courses in Vietnamese

* Add Java courses to the list of free courses in Vietnamese

* Add JavaScript courses to the list of free courses in Vietnamese

* Add jQuery courses to the list of free courses in Vietnamese

* Add Vue.js courses to the list of free courses in Vietnamese

* Add Kotlin courses to the list of free courses in Vietnamese

* Add Machine-Learning courses to the list of free courses in Vietnamese

* Add MongoDB courses to the list of free courses in Vietnamese

* Add MySQL courses to the list of free courses in Vietnamese

* Add Next.js courses to the list of free courses in Vietnamese

* Add NodeJS courses to the list of free courses in Vietnamese

* Add PHP courses to the list of free courses in Vietnamese

* Add PostgreSQL courses to the list of free courses in Vietnamese

* Add Python courses to the list of free courses in Vietnamese

* Add R courses to the list of free courses in Vietnamese

* Add React courses to the list of free courses in Vietnamese

* Add Ruby courses to the list of free courses in Vietnamese

* Add Rust courses to the list of free courses in Vietnamese

* Add Sass courses to the list of free courses in Vietnamese

* Add Security courses to the list of free courses in Vietnamese

* Add SQL courses to the list of free courses in Vietnamese

* Add SQL Server courses to the list of free courses in Vietnamese

* Add Swift courses to the list of free courses in Vietnamese

* Add TypeScript courses to the list of free courses in Vietnamese

* Add Angular courses to the list of free courses in Vietnamese

* Add Unity courses to the list of free courses in Vietnamese

* Add Wordpress courses to the list of free courses in Vietnamese

* fix: Put lists in alphabetical order

* Remove single videos shorter than 1 hour from the list of free courses in Vietnamese
2025-04-21 08:48:15 -04:00
Trần Minh Sáng
486c9cc690 Add a large number of free courses in Vietnamese (#11866)
* Add Android courses to the list of free courses in Vietnamese

* Add ASP courses to the list of free courses in Vietnamese

* Add Assembly courses to the list of free courses in Vietnamese

* Add AutoIt courses to the list of free courses in Vietnamese

* Add Bash courses to the list of free courses in Vietnamese

* Add C courses to the list of free courses in Vietnamese

* Add C++ courses to the list of free courses in Vietnamese

* Add C++ index to the list of free courses in Vietnamese

* Add C# courses to the list of free courses in Vietnamese

* Add Cấu trúc dữ liệu và Giải thuật courses to the list of free courses in Vietnamese

* Add Dart courses to the list of free courses in Vietnamese

* Add ExpressJS courses to the list of free courses in Vietnamese

* Add Flutter courses to the list of free courses in Vietnamese

* Add Git courses to the list of free courses in Vietnamese

* Add Go courses to the list of free courses in Vietnamese

* Add HTML and CSS courses to the list of free courses in Vietnamese

* Add Java courses to the list of free courses in Vietnamese

* Add JavaScript courses to the list of free courses in Vietnamese

* Add jQuery courses to the list of free courses in Vietnamese

* Add Vue.js courses to the list of free courses in Vietnamese

* Add Kotlin courses to the list of free courses in Vietnamese

* Add Machine-Learning courses to the list of free courses in Vietnamese

* Add MongoDB courses to the list of free courses in Vietnamese

* Add MySQL courses to the list of free courses in Vietnamese

* Add Next.js courses to the list of free courses in Vietnamese

* Add NodeJS courses to the list of free courses in Vietnamese

* Add PHP courses to the list of free courses in Vietnamese

* Add PostgreSQL courses to the list of free courses in Vietnamese

* Add Python courses to the list of free courses in Vietnamese

* Add R courses to the list of free courses in Vietnamese

* Add React courses to the list of free courses in Vietnamese

* Add Ruby courses to the list of free courses in Vietnamese

* Add Rust courses to the list of free courses in Vietnamese

* Add Sass courses to the list of free courses in Vietnamese

* Add Security courses to the list of free courses in Vietnamese

* Add SQL courses to the list of free courses in Vietnamese

* Add SQL Server courses to the list of free courses in Vietnamese

* Add Swift courses to the list of free courses in Vietnamese

* Add TypeScript courses to the list of free courses in Vietnamese

* Add Angular courses to the list of free courses in Vietnamese

* Add Unity courses to the list of free courses in Vietnamese

* Add Wordpress courses to the list of free courses in Vietnamese

* fix: Put lists in alphabetical order
2025-04-20 08:37:39 -04:00
Apexq
bbe22a051f Added new HTML and CSS Course (#11840)
* Update free-courses-tr.md

updated HTML and CSS courses

* Update free-courses-tr.md

* Update courses/free-courses-tr.md

Co-authored-by: Eric Hellman <eric@hellman.net>

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2025-03-06 16:28:02 -05:00
Omid Rajaei
2eb3095d9e add new free Persian courses to list (#11816) 2025-01-12 17:28:31 -05:00
Boriss Jerjomkin
0399282a5c Update Python Programming MOOC (#11811)
- 2023 -> 2025
2025-01-03 13:27:25 -05:00
Boriss Jerjomkin
4a4035e5d6 Update list of free finnish programming courses (#11810)
* Update free-courses-fi.md

- Add FITech courses
- Update University of Helsinki course

* Fix lint errors
2025-01-03 13:26:44 -05:00
Ajay Singh
dfe93ffef4 Added a javascript course in pl.md (#11798) 2024-12-20 14:48:53 -05:00
Ajay Singh
91573179d7 Update free-courses-en.md (#11797) 2024-12-20 14:47:59 -05:00
Ajay Singh
4042bb721a Removed React.js Course from React Native (#11796) 2024-12-20 14:46:08 -05:00
Ajay Singh
15dba316d5 Update free-courses-hi.md (#11780) 2024-12-06 10:02:18 -05:00
Godwin Odenigbo
8a0ccd9c2d Added building microservices with GO tutorial (#11753)
Co-authored-by: Godwin Odenigbo <godwintrav@gmail>
2024-11-08 09:18:44 -05:00
Godwin Odenigbo
08e0e6743c Added "Nest.js Crash Course Tutorial on Youtube By Net Ninja With Marius Espejo" (#11752)
* Added Netninjs Nest.js course

* updated ordering

---------

Co-authored-by: Godwin Odenigbo <godwintrav@gmail>
2024-11-08 09:17:47 -05:00
Ajay Singh
fa55eb0e61 Corrected the author of the course (#11747) 2024-11-06 08:37:28 -05:00
Akshat Gupta
f61603259f Added 5 more Next.js courses to free-courses-hi.md (#11736)
* Added 5 more Next.js courses to free-courses-hi.md

* Added 5 more Next.js courses to free-courses-hi.md

* Added 5 more Next.js courses to free-courses-hi.md

* Added 5 more Next.js courses to free-courses-hi.md

* Added 5 more Next.js courses to free-courses-hi.md

* Added 5 more Next.js courses to free-courses-hi.md

* Changes Requested

* Changes Requested

* Correction Done

* Correction Done
2024-11-01 08:41:12 -04:00
Mridul Mohta
e7276019c1 Added a free Course in free-courses-hi.md (#11729)
* Added a free Course in free-courses-hi.md

* Update courses/free-courses-hi.md

Co-authored-by: Eric Hellman <eric@hellman.net>

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-31 10:44:41 -04:00
Darpana Desai
fb7af61915 added ruby, ruby on rails and rust hindi tutorials (#11686)
Co-authored-by: DDD2308 <darpanadesai23@gmail.com>
2024-10-31 10:41:46 -04:00
Md. Maruf Sarker
43bf4d68a7 Feature: Add Backend Essentials Section with Workshops (#11731)
* Add: Assembly Language Course

* Add: C++ STL & Electron.js Course

* Fix: Linter Error

* Update free-courses-bn.md

* Update free-courses-bn.md

* Update free-courses-bn.md

* Update free-courses-bn.md

* Fix: URL Updates

* Add: Backend Essentials Topic

* Fix: Writing Changes
2024-10-30 20:54:23 -04:00
Isaac Miti
6bd1c39239 Update free-courses-en.md (#11722)
Add Intro to Claude AI and Learn Typescript courses by Shant Dashjian and Bob Ziroll
2024-10-29 17:50:33 -04:00
RishitP
ad5d4a3c7b Added a free Course in free-courses-hi.md (#11721)
* Added a C Programming Course in free-courses-hi.md

* Added a course in free-courses-hi.md

* Updated free-courses-hi.md

* Updated free-courses-hi.md
2024-10-29 17:48:44 -04:00
Isaac Miti
190b646314 Update free-courses-en.md (#11720)
Add beginner Kotlin and Intermediate swift courses from Codecademy.
2024-10-29 17:47:11 -04:00
Ratheshan Sathiyamoorthy
55a523eb58 Added new courses in Eng language for c# language (#11717)
* Added new courses in Eng language for c# language

* fixed Alphabetical ordering
2024-10-29 08:36:01 -04:00
Mateus Fernandes
e255efa97c Adding git course in PT-BR section (#11704)
* Adding git course in PT-BR section

* Change video link to playlist link

* Change video link to playlist link
2024-10-28 16:07:35 -04:00
Ratheshan Sathiyamoorthy
28a67e1432 Added two new tamil courses playlists (#11715)
* Added two new tamil courses playlists

* fixing alphabetical order issue

* fixing alphabetical ordering
2024-10-28 16:04:52 -04:00
Hridyanshu
86f0744365 fix: remove duplicate entry of Programming with Harry Django course in free-courses-en.md (#11714)
- Removed duplicate listing for "Programming with Harry" Django course in the Django section
- Renamed "Add Hyperskill free-courses-en.md" back to "free-courses-en.md" to maintain consistent file naming.

Co-authored-by: Hridyanshu7 <himank7794@gmail.com>
2024-10-28 16:01:52 -04:00
minatorak
a9fe221813 Add content thai nlp (#11713) 2024-10-28 15:59:23 -04:00
RishitP
bd6d27532e Added a free course in free-courses-hi.md (#11712)
* Added a C Programming Course in free-courses-hi.md

* Added a course in free-courses-hi.md

* Updated free-courses-hi.md
2024-10-28 09:29:44 -04:00
Isaac Miti
b50118e803 Update and rename free-courses-en.md to Add Hyperksill free-courses-en.md (#11711)
Hyperskill is an educational platform designed to help individuals learn programming and develop practical skills through real-world projects. Powered by JetBrains, Hyperskill offers a comprehensive, university-level education with a focus on hands-on learning. They offer free plans (Access to all courses) and premium plans (Access to everything including certificates and extra hands on projects)
2024-10-28 09:28:10 -04:00
Hridyanshu
94a70149b0 Added Complete NodeJS + ExpressJS + MongoDB Course by Complete Coding by Prashant Sir to free-courses-hi.md (#11695)
* Added Complete NodeJS + ExpressJS + MongoDB Course by Complete Coding by Prashant Sir to free-courses-hi.md

* fix: removed emjois from playlist title

* Update courses/free-courses-hi.md

Co-authored-by: Eric Hellman <eric@hellman.net>

---------

Co-authored-by: Hridyanshu7 <himank7794@gmail.com>
Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-28 09:20:06 -04:00
Md. Maruf Sarker
a097a491fb Add: Assembly Language Course (#11404)
* Add: Assembly Language Course

* Add: C++ STL & Electron.js Course

* Fix: Linter Error

* Update free-courses-bn.md

* Update free-courses-bn.md

* Update free-courses-bn.md

* Update free-courses-bn.md

* Fix: URL Updates
2024-10-28 09:16:52 -04:00
RishitP
0bc8e85b92 Added a course in free-courses-hi.md (#11706)
* Added a C Programming Course in free-courses-hi.md

* Added a course in free-courses-hi.md
2024-10-27 18:34:47 -04:00
Hridyanshu
1547c6338f Added Nextjs Resources in free-courses-ur.md (#11697)
* Added Nextjs Resources in free-courses-ur.md

* corrected spacing

* Update courses/free-courses-ur.md

Co-authored-by: Eric Hellman <eric@hellman.net>

---------

Co-authored-by: Hridyanshu7 <himank7794@gmail.com>
Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-27 13:16:43 -04:00
Hridyanshu
dde714a3a0 Added Design and Analysis of Algorithms course by THE GATEHUB to free-courses-hi.md (#11693)
* Added Design and Analysis of Algorithms course by THE GATEHUB to free-courses-hi.md

* Update courses/free-courses-hi.md

fixed all caps

Co-authored-by: Eric Hellman <eric@hellman.net>

---------

Co-authored-by: Hridyanshu7 <himank7794@gmail.com>
Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-27 13:04:46 -04:00
Hridyanshu
828a159369 Added Electron.js Resources in free-courses-hi.md (#11698)
* Added Electron.js Resources in free-courses-hi.md

* fixed: alphabetize-lists

---------

Co-authored-by: Hridyanshu7 <himank7794@gmail.com>
2024-10-27 12:57:12 -04:00
Srish Bansal
4e712ec099 Update free-courses-te.md (#11692)
* Update free-courses-te.md

Added a new full python course playlist which can be completed in 30 days

* Updated the link
2024-10-27 12:49:11 -04:00
Isaac Miti
f482dbf3c6 Add React courses from Scimba Update free-courses-en.md (#11694)
Add these Scrimba courses:
Learn Class Components in React by Bob Ziroll and Learn Styled Components in React by Ania Kubow.
2024-10-27 10:41:57 -04:00
Srish Bansal
1533064edf Update free-courses-ml.md (#11680)
* Update free-courses-ml.md

Added a new playlist with full course from beginner to intermediate in Python in malyalam

* added full name of playlist

* done the stated changes
2024-10-27 10:34:03 -04:00
Srish Bansal
682a63e257 Update free-courses-zh.md (#11674)
* Update free-courses-zh.md

Added new playlist for learning python in chinese

* corrected writing pattern

* changed the name of playlist and
added attribution
2024-10-26 13:38:36 -04:00
Srish Bansal
58cd147a5d Update free-courses-de.md (#11679)
* Update free-courses-de.md

Added a new HTML course

* Update courses/free-courses-de.md

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-26 13:36:45 -04:00
Ivan Oranciuc
d02f0b4f04 Updated links for ES (#11669) 2024-10-26 11:55:00 -04:00
Mukul Bansal
db18fd6e82 [Updated] Kotlin Course (#11650)
* Kotlin Course

* Update courses/free-courses-en.md

Co-authored-by: Eric Hellman <eric@hellman.net>

* Kotlin Course

* Kotlin Course

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-23 11:47:48 -04:00
Ivan Oranciuc
b6ec76625d Update for ded links - kn. and uk. (#11654) 2024-10-23 11:44:54 -04:00
Mukul Bansal
2f0ff27656 Salesforce video tutorial (#11648) 2024-10-22 14:55:31 -04:00
Dharmin Nagar
6ecdf0e87e Update free-courses-en.md (#11647) 2024-10-22 14:48:58 -04:00
Abhilash Sarangi
e42433de4b Update free-courses-hi.md (#11642)
* Update free-courses-hi.md

* Update free-courses-hi.md
2024-10-22 14:29:15 -04:00
Akash Singh
0ca0190818 Kubernetes 101 workshop - complete hands-on (#11613)
* Kubernetes 101 workshop - complete hands-on

* Update free-courses-en.md

* fixing lint issues
2024-10-21 09:51:19 -04:00
Harshaja Agnihotri
96167079f4 Add NestJS section and 2 free video courses (#11634)
* Wordpress development course

* added the lint

* swap the line.

* wordpress development course

* Added Nextjs course

* updated the creator

* Added the new list Nestjs with course resourses
2024-10-21 09:49:25 -04:00