Compare commits

...

9 Commits

Author SHA1 Message Date
David Ordás 3f2da90396
Merge 1b1b66e2ce into 0ca0190818 2024-10-21 13:51:30 +00: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
Ivan Oranciuc 60c61734b0
Updates for not actual links (#11638)
* Remove paid and deleted cources

* Remove paid and deleted cources

* Modified links for mr.md and pl.md

* Modified links for mr. and pl.
2024-10-21 09:46:36 -04:00
Dariusz Zbyrad 8065ef8538
Add new Arduino course in pl lang (#11606)
* add new Arduino course in pl lang

* fixed formatting

* added author of the Arduino, poziom II course
2024-10-21 09:24:12 -04:00
shantnu b30ffe71b3
Added Hindi Course on Maths, NLP and Flask (#11631)
* Added maths for ML

* added flask Course

* Added NLP Course

* changed alphabetical order

* Update free-courses-hi.md

* Resolve changes

* Update free-courses-hi.md

* Update free-courses-hi.md

removed invisible spaces

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-21 09:17:09 -04:00
David Ordás 1b1b66e2ce
spell: fix MD044/proper-names for BitBucket and Sass 2022-07-24 13:59:55 +02:00
David Ordás 048c02d90f
Add markdownlint config compatible with fpb-lint 2022-04-09 18:22:06 +02:00
David Ordás 558312a3a8
Add Visual Studio Code config 2022-04-09 18:20:30 +02:00
6 changed files with 346 additions and 4 deletions

286
.markdownlint.jsonc Normal file
View File

@ -0,0 +1,286 @@
//
// markdownlint config file.
//
// Each rule parameters are setted according to FBP-lint and EditorConfig values
//
/** To override them in a some file...
<!-- markdownlint-configure-file
{
"MD004": { "style": "consistent" },
"MD033": { "allowed_elements": [ "a", "abbr", "div", "span" ] },
"MD044": { "names": [
".github", ".gitlab", ".markdown", ".mega", ".html", ".css", ".sass", ".html", ".json", ".yaml",
"GitHub", "GitLab", "Bitbucket", "Pull Request", "PR",
"Google", "Google Drive", "YouTube", "Dropbox", "Mega", "Scribd", "Issuu", "Leanpub", "StackOverflow",
"Markdown", "HTML", "CSS", "Sass", "JavaScript", "JSON", "YAML"
] }
}
-->
**/
{
// Default state for all rules
"default": false,
// MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time
"MD001": true,
// MD002/first-heading-h1/first-header-h1 - First heading should be a top-level heading
"MD002": {
// Heading level
"level": 1
},
// MD003/heading-style/header-style - Heading style
// (sync with .fpb)
"MD003": {
// Heading style
"style": "atx"
},
// MD004/ul-style - Unordered list style
// (sync with .fpb)
"MD004": {
// List style
"style": "asterisk"
},
// MD005/list-indent - Inconsistent indentation for list items at the same level
"MD005": true,
// MD006/ul-start-left - Consider starting bulleted lists at the beginning of the line
"MD006": true,
// MD007/ul-indent - Unordered list indentation
"MD007": {
// Spaces for indent (sync with .editorconfig)
"indent": 4,
// Whether to indent the first level of the list
"start_indented": false
},
// MD009/no-trailing-spaces - Trailing spaces
"MD009": {
// Spaces for line break (sync with .editorconfig)
"br_spaces": 4,
// Allow spaces for empty lines in list items
"list_item_empty_lines": false,
// Include unnecessary breaks
"strict": false
},
// MD010/no-hard-tabs - Hard tabs
"MD010": {
// Include code blocks
"code_blocks": true,
// Number of spaces for each hard tab
"spaces_per_tab": 4
},
// MD011/no-reversed-links - Reversed link syntax
"MD011": true,
// MD012/no-multiple-blanks - Multiple consecutive blank lines
// (sync with fpb)
"MD012": {
// Consecutive blank lines
"maximum": 2
},
// MD014/commands-show-output - Dollar signs used before commands without showing output
"MD014": true,
// MD018/no-missing-space-atx - No space after hash on atx style heading
"MD018": true,
// MD019/no-multiple-space-atx - Multiple spaces after hash on atx style heading
"MD019": true,
// MD020/no-missing-space-closed-atx - No space inside hashes on closed atx style heading
"MD020": true,
// MD021/no-multiple-space-closed-atx - Multiple spaces inside hashes on closed atx style heading
"MD021": true,
// MD022/blanks-around-headings/blanks-around-headers - Headings should be surrounded by blank lines
// (sync with fpb)
"MD022": {
// Blank lines above heading
"lines_above": 2,
// Blank lines below heading
"lines_below": 1
},
// MD023/heading-start-left/header-start-left - Headings must start at the beginning of the line
// (sync with fpb)
"MD023": true,
// MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
// (sync with fpb)
"MD024": {
// Only check sibling headings
"allow_different_nesting": false,
// Only check sibling headings
"siblings_only": false
},
// MD025/single-title/single-h1 - Multiple top-level headings in the same document
// (sync with fpb)
"MD025": {
// Heading level
"level": 1,
// RegExp for matching title in front matter
"front_matter_title": "^\\s*title\\s*[:=]"
},
// MD026/no-trailing-punctuation - Trailing punctuation in heading
"MD026": {
// Punctuation characters
"punctuation": ".,;:!。,;:!"
},
// MD027/no-multiple-space-blockquote - Multiple spaces after blockquote symbol
"MD027": true,
// MD028/no-blanks-blockquote - Blank line inside blockquote
"MD028": true,
// MD029/ol-prefix - Ordered list item prefix
"MD029": {
// List style
"style": "one_or_ordered"
},
// MD030/list-marker-space - Spaces after list markers
"MD030": {
// Spaces for single-line unordered list items
"ul_single": 1,
// Spaces for single-line ordered list items
"ol_single": 1,
// Spaces for multi-line unordered list items
"ul_multi": 1,
// Spaces for multi-line ordered list items
"ol_multi": 1
},
// MD031/blanks-around-fences - Fenced code blocks should be surrounded by blank lines
"MD031": {
// Include list items
"list_items": true
},
// MD032/blanks-around-lists - Lists should be surrounded by blank lines
"MD032": true,
// MD033/no-inline-html - Inline HTML
"MD033": {
// Allowed elements
"allowed_elements": [
// for anchor alias
"a",
// for abbreviations (and acronyms)
"abbr",
// for RTL or aligned blocks
"div",
// for coloring
"span",
// for collapsed blocks
"details",
"summary"
]
},
// MD037/no-space-in-emphasis - Spaces inside emphasis markers
"MD037": true,
// MD038/no-space-in-code - Spaces inside code span elements
"MD038": true,
// MD039/no-space-in-links - Spaces inside link text
"MD039": true,
// MD040/fenced-code-language - Fenced code blocks should have a language specified
"MD040": true,
// MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading
"MD041": {
// Heading level
"level": 1,
// RegExp for matching title in front matter
"front_matter_title": "^\\s*title\\s*[:=]"
},
// MD042/no-empty-links - No empty links
"MD042": true,
// MD043/required-headings/required-headers - Required heading structure
"MD043": {
// List of headings. Array of string | null
"headings": null,
// List of headers. Array of string | null
"headers": null
},
// MD044/proper-names - Proper names should have the correct capitalization
"MD044": {
// List of proper names
"names": [
".github",
".gitlab",
".markdown",
".mega",
".html",
".css",
".sass",
".html",
".json",
".yaml",
"align=",
"dir=",
"markdown=",
"próximo",
"GitHub",
"GitLab",
"Bitbucket",
"Pull Request",
"PRÓXIMO",
"PR",
"Google",
"Google Drive",
"YouTube",
"Dropbox",
"Mega",
"Scribd",
"Issuu",
"Leanpub",
"StackOverflow",
"Markdown",
"HTML",
"CSS",
"Sass",
"JavaScript",
"JSON",
"YAML"
],
// Include code blocks
"code_blocks": true
},
// MD046/code-block-style - Code block style
"MD046": {
// Block style
"style": "fenced"
},
// MD047/single-trailing-newline - Files should end with a single newline character
// (sync with fpb & .editorconfig)
"MD047": true,
// MD048/code-fence-style - Code fence style
"MD048": {
// Code fence style
"style": "backtick"
}
}

46
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,46 @@
{
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"markdown.extension.list.indentationSize": "inherit",
"markdown.extension.orderedList.autoRenumber": true,
"markdown.extension.orderedList.marker": "ordered",
"markdown.extension.syntax.decorations": true,
"markdown.extension.tableFormatter.enabled": true,
"markdown.extension.toc.downcaseLink": true,
"markdown.extension.toc.levels": "1..4",
"markdown.extension.toc.omittedFromToc": {
"**": ["# Index", "## Index", "### Index"]
},
"markdown.extension.toc.plaintext": false,
"markdown.extension.toc.orderedList": false,
"markdown.extension.toc.slugifyMode": "github",
"markdown.extension.toc.unorderedList.marker": "*",
"markdown.extension.toc.updateOnSave": false,
"markdown-checkboxes.enable": true,
"markdown-checkboxes.label": true,
"markdown-pdf.highlightStyle": "github.css",
"markdown-pdf.includeDefaultStyles": true,
"markdown-preview-enhanced.breakOnSingleNewLine": true,
"markdown-preview-enhanced.codeBlockTheme": "github.css",
"markdown-preview-enhanced.enableEmojiSyntax": true,
"markdown-preview-enhanced.enableLinkify": true,
"markdown-preview-enhanced.enableScriptExecution": false,
"markdown-preview-enhanced.enableWikiLinkSyntax": true,
"markdown-preview-enhanced.mathRenderingOnlineService": "https://latex.codecogs.com/svg.latex",
"markdown-preview-enhanced.mathRenderingOption": "KaTeX",
"markdown-preview-enhanced.previewTheme": "github-light.css",
"markdown-preview-enhanced.scrollSync": true,
"markdown-preview-enhanced.singlePreview": true,
"markdown-preview-enhanced.useGitHubStylePipedLink": true,
"markdownShortcuts.bold.marker": "**",
"markdownShortcuts.bullets.marker": "*",
"markdownShortcuts.italics.marker": "*",
"github.preferedMergeMethod": "squash",
"githubIssues.issueBranchTitle": "${user}/${issueNumber}/${sanitizedIssueTitle}",
"githubIssues.useBranchForIssues": "on",
"githubPullRequests.defaultMergeMethod": "squash",
"githubIssues.workingIssueFormatScm": "${issueTitle}\n\nPatch over commit: ${sha}\nFixes #${issueNumber}\nCo-authored-by: octocat <octocat@github.com>",
"prettier.enable": false,
"prettier.requirePragma": true,
"prettier.useEditorConfig": true
}

View File

@ -58,6 +58,7 @@
* [Deno](#deno)
* [Electron](#electron)
* [jQuery](#jquery)
* [Nest.js](#nestjs)
* [Next.js](#nextjs)
* [NodeJS](#nodejs)
* [React](#react)
@ -1078,6 +1079,12 @@
* [jQuery Crash Course](https://www.youtube.com/playlist?list=PLillGF-RfqbYJVXBgZ_nA7FTAAEpp_IAc) - Brad Traversy, Traversy Media
### Nest.js
* [Learn NestJS Complete Course](https://www.youtube.com/watch?v=sFnAHC9lLaw) - freeCodeCamp
* [NestJs](https://www.youtube.com/playlist?list=PLlaDAvA2MhR2jb8zavu6I-w1BA878aHcB) - Marius Espejo
#### Next.js
* [Complete Next.js Course For Beginners](https://www.youtube.com/playlist?list=PLynWqC6VC9KOvExUuzhTFsWaxnpP_97BD) - Daily Tuition
@ -1258,6 +1265,7 @@
### Kubernetes
* [Fundamentals of Containers, Kubernetes, and Red Hat OpenShift](https://www.edx.org/course/fundamentals-of-containers-kubernetes-and-red-hat) - Zach Gutterman, Richard Allred (edX)
* [Kubernetes 101 workshop - complete hands-on](https://www.youtube.com/live/PN3VqbZqmD8?feature=shared) - Kubesimplify
* [Kubernetes Core Concepts](https://kube.academy/paths/kubernetes-core-concepts) - KubeAcademy (VMware)
* [Kubernetes Course](https://www.youtube.com/watch?v=d6WC5n9G_sM) - Bogdan Stashchuk (FreeCoodeCamp)
* [Kubernetes Full Course in 7 Hours](https://www.youtube.com/watch?v=0j-iIW3_sbg) - Edureka

View File

@ -596,7 +596,8 @@
* [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
* [Statistics And Probability](https://www.youtube.com/playlist?list=PLU6SqdYcYsfLRq3tu-g_hvkHDcorrtcBK) - Gajendra Purohit
* [Maths for Machine Learning](https://www.youtube.com/playlist?list=PLKnIA16_RmvbYFaaeLY28cWeqV-3vADST) - CampusX
* [Statistics And Probability](https://www.youtube.com/playlist?list=PLU6SqdYcYsfLRq3tu-g_hvkHDcorrtcBK) - Gajendra Purohit
### Matlab
@ -620,6 +621,7 @@
### 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
* [Playlist to Natural Language Processing [ Hindi ]](https://www.youtube.com/playlist?list=PLPIwNooIb9vimsumdWeKF3BRzs9tJ-_gy) - Perfect Computer Engineer
@ -717,6 +719,7 @@
* [[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)
* [Web Development Using Flask and Python](https://www.youtube.com/playlist?list=PLu0W_9lII9agAiWp6Y41ueUKx1VcTRxmf) - CodeWithHarry

View File

@ -63,7 +63,6 @@
* [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

View File

@ -57,6 +57,7 @@
### 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)
@ -67,7 +68,6 @@
* [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
@ -91,7 +91,7 @@
#### Vue.js
* [FrontAndBack.pl - Kurs Vue w praktyce](https://frontandback.pl/tags/kurs-vue-w-praktyce/)
* [FrontAndBack.pl - Kurs Vue w praktyce](https://web.archive.org/web/20221004101108/https://frontandback.pl/tags/kurs-vue-w-praktyce/) *(:card_file_box: archived)*
### MySQL