mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
chore(i18n,client): processed translations (#66052)
This commit is contained in:
committed by
GitHub
parent
0640350046
commit
cf3c22025d
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"responsive-web-design": {
|
||||
"title": "(舊版)響應式網頁設計挑戰",
|
||||
"title": "舊版響應式 Web 設計挑戰",
|
||||
"intro": [
|
||||
"在響應式網頁設計認證中,你將學習開發者用來編寫網頁的語言:HTML(超文本標記語言)用於創建內容,CSS(級聯樣式表)用於樣式設計。",
|
||||
"首先,你將通過創建一個展示貓咪圖片的應用,學習 HTML 和 CSS 的基本知識。 然後,通過創建企鵝學習像 CSS 變量這樣的現代技術,以及通過創建網頁表單學習無障礙的最佳實踐。",
|
||||
@@ -37,7 +37,7 @@
|
||||
]
|
||||
},
|
||||
"responsive-web-design-principles": {
|
||||
"title": "響應式網頁設計原則",
|
||||
"title": "響應式 Web 設計原則",
|
||||
"intro": [
|
||||
"人們可能通過形狀和大小不同的設備來訪問網頁。通過響應式網頁設計,你可以設計出能靈活適應不同屏幕大小、方向和分辨率的網頁。",
|
||||
"在這個課程中,你將學習如何使用 CSS 讓你的網頁在不同設備上看起來都不錯。"
|
||||
@@ -60,9 +60,9 @@
|
||||
}
|
||||
},
|
||||
"2022/responsive-web-design": {
|
||||
"title": "Legacy Responsive Web Design V8",
|
||||
"title": "舊版響應式 Web 設計 V8",
|
||||
"intro": [
|
||||
"在響應式網頁設計的認證課程中,你將學習用於構建網頁的語言: HTML(超文本標記語言)用於創建內容,CSS(級聯樣式表)用於樣式設計。",
|
||||
"在響應式 Web 設計的認證課程中,你將學習用於構建網頁的語言: HTML(超文本標記語言)用於創建內容,CSS(級聯樣式表)用於樣式設計。",
|
||||
"首先,你將通過創建一個展示貓咪圖片的應用學習 HTML 和 CSS 的基本知識。 然後,通過創建一隻企鵝來學習像 CSS 變量這樣的現代技術,並通過創建網頁表單學習無障礙的最佳實踐。",
|
||||
"最後,你將通過編寫 Twitter 卡片,學習如何使用 Flexbox 實現適應不同屏幕大小的網頁 ,以及如何用 CSS Grid 實現一個複雜的博客佈局。"
|
||||
],
|
||||
@@ -152,7 +152,7 @@
|
||||
]
|
||||
},
|
||||
"learn-responsive-web-design-by-building-a-piano": {
|
||||
"title": "通過創建鋼琴學習響應式網頁設計",
|
||||
"title": "通過創建鋼琴學習響應式 Web 設計",
|
||||
"intro": [
|
||||
"響應式設計使得你的網頁適應不同屏幕尺寸的顯示。",
|
||||
"In this course, you'll use CSS and responsive design to code a piano. You'll also learn more about media queries and pseudo selectors."
|
||||
@@ -996,6 +996,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "信息安全",
|
||||
"intro": [
|
||||
@@ -3235,6 +3309,12 @@
|
||||
"In this lesson, you will learn about fundamental data structures like graphs, trees, and their practical applications in computer science."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Understanding Functional Programming",
|
||||
"intro": [
|
||||
@@ -3740,6 +3820,12 @@
|
||||
"In these lessons, you will learn about numbers and mathematical operations in Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleans and Conditionals",
|
||||
"intro": [
|
||||
@@ -4951,9 +5037,9 @@
|
||||
"title": "Responsive Web Design Certification",
|
||||
"intro": [
|
||||
"This course teaches the fundamentals of HTML and CSS, including modern layout, design, accessibility, and responsive web development. You'll build practical projects and gain the skills to create professional, user-friendly webpages.",
|
||||
"To earn your Responsive Web Design Certification:",
|
||||
"要獲得你的響應式 Web 設計認證:",
|
||||
"- Complete the five required projects to qualify for the certification exam.",
|
||||
"- Pass the Responsive Web Design Certification exam."
|
||||
"- 通過響應式 Web 設計認證考試。"
|
||||
],
|
||||
"chapters": {
|
||||
"html": "HTML",
|
||||
@@ -5974,7 +6060,7 @@
|
||||
"title": "CSS Review",
|
||||
"intro": [
|
||||
"Before you take the CSS prep exam, you first need to review the concepts taught in the previous modules.",
|
||||
"Open up this page to review concepts around the basics of CSS, responsive web design, animations, accessibility and more."
|
||||
"打開此頁面以複習 CSS 基礎、響應式 Web 設計、動畫、可訪問性等概念。"
|
||||
]
|
||||
},
|
||||
"exam-responsive-web-design-certification": {
|
||||
@@ -7184,7 +7270,7 @@
|
||||
"lecture-best-practices-for-responsive-web-design": {
|
||||
"title": "Best Practices for Responsive Web Design",
|
||||
"intro": [
|
||||
"In these lessons, you will learn about the best practices for responsive web design, the roles concepts like grid, flexbox, media queries, and media breakpoints play in responsive design, and more."
|
||||
"在這些課程中,你將學習響應式 Web 設計的最佳實踐、網格、flexbox、媒體查詢與斷點在響應式設計中的作用等。"
|
||||
]
|
||||
},
|
||||
"workshop-piano": {
|
||||
@@ -7195,14 +7281,14 @@
|
||||
]
|
||||
},
|
||||
"review-responsive-web-design": {
|
||||
"title": "Responsive Web Design Review",
|
||||
"title": "響應式 Web 設計複習",
|
||||
"intro": [
|
||||
"Before you're quizzed on the fundamentals of responsive design, you should review what you've learned.",
|
||||
"Open up this page to review concepts like media queries, media breakpoints and mobile first approach design."
|
||||
]
|
||||
},
|
||||
"quiz-responsive-web-design": {
|
||||
"title": "Responsive Web Design Quiz",
|
||||
"title": "響應式 Web 設計測驗",
|
||||
"intro": [
|
||||
"Test what you've learned about making your webpages responsive with this quiz."
|
||||
]
|
||||
|
||||
@@ -1155,7 +1155,7 @@
|
||||
"issued": "發佈日期",
|
||||
"fulltext": "<0>特證明</0> <1>{{user}}</1> <2>已完成</2> <3>{{title}}</3> <4>開發者認證課程,日期爲 {{time}}</4>,<5>約 {{completionTime}} 課時</5>",
|
||||
"fulltextNoHours": "<0>特證明</0> <1>{{user}}</1> <2>已完成</2> <3>{{title}}</3> <4>開發者認證課程,日期爲 {{time}}</4>",
|
||||
"fulltextLanguageExam": "<0>This certifies that</0> <1>{{user}}</1> <2>has successfully passed the</2> <3>{{title}}</3> <4>exam on {{time}}</4> <5>demonstrating competence in grammar, listening, and reading portions of the CEFR standards for this level based on the content covered in the curriculum.</5>",
|
||||
"fulltextLanguageExam": "<0>特此證明</0> <1>{{user}}</1> <2>已於 {{time}}</2> <3>成功通過 {{title}}</3> <4>考試,</4><5>基於課程所涵蓋的內容,已達到 CEFR 相應等級在語法、聽力及閱讀方面的能力標準。</5>",
|
||||
"quincy-larson-signature": "Quincy Larson 的簽名",
|
||||
"julia-liuson-signature": "Julia Liuson 的簽名",
|
||||
"project": {
|
||||
@@ -1245,20 +1245,20 @@
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"responsive-web-design": "舊版響應式網頁設計 V8",
|
||||
"responsive-web-design-cert": "舊版響應式網頁設計 V8 認證",
|
||||
"responsive-web-design": "舊版響應式 Web 設計 V8",
|
||||
"responsive-web-design-cert": "舊版響應式 Web 設計 V8 認證",
|
||||
"javascript-algorithms-and-data-structures": "舊版 JavaScript 算法和數據結構 V7",
|
||||
"javascript-algorithms-and-data-structures-cert": "舊版 JavaScript 算法和數據結構 V7 認證",
|
||||
"javascript-algorithms-and-data-structures-v8": "舊版 JavaScript 算法和數據結構 V8",
|
||||
"javascript-algorithms-and-data-structures-v8-cert": "舊版 JavaScript 算法和數據結構 V8 認證",
|
||||
"front-end-development-libraries": "Front-End Development Libraries V8",
|
||||
"front-end-development-libraries-cert": "Front-End Development Libraries V8 Certification",
|
||||
"front-end-development-libraries": "前端開發庫 V8",
|
||||
"front-end-development-libraries-cert": "前端開發庫 V8 認證",
|
||||
"data-visualization": "數據可視化 V8",
|
||||
"data-visualization-cert": "數據可視化 V8 認證",
|
||||
"relational-database-v8": "關係數據庫 V8",
|
||||
"relational-database-v8-cert": "關係數據庫 V8 認證",
|
||||
"back-end-development-and-apis": "Back-End Development and APIs V8",
|
||||
"back-end-development-and-apis-cert": "Back-End Development and APIs V8 Certification",
|
||||
"back-end-development-and-apis": "後端開發和 API V8",
|
||||
"back-end-development-and-apis-cert": "後端開發和 API V8 認證",
|
||||
"quality-assurance-v7": "質量保證",
|
||||
"quality-assurance-v7-cert": "質量保證認證",
|
||||
"scientific-computing-with-python-v7": "Python 科學計算",
|
||||
@@ -1274,22 +1274,23 @@
|
||||
"foundational-c-sharp-with-microsoft": "微軟基礎 C#",
|
||||
"foundational-c-sharp-with-microsoft-cert": "微軟基礎 C# 認證",
|
||||
"learn-python-for-beginners": "學習 Python 基礎",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "開發者 A2 英語",
|
||||
"a2-english-for-developers-cert": "A2 開發者英語認證(測試版)",
|
||||
"b1-english-for-developers": "開發者 B1 英語",
|
||||
"b1-english-for-developers-cert": "開發者 B1 英語認證",
|
||||
"responsive-web-design-v9": "響應式網頁設計",
|
||||
"responsive-web-design-v9-cert": "響應式網頁設計認證",
|
||||
"responsive-web-design-v9": "響應式 Web 設計",
|
||||
"responsive-web-design-v9-cert": "響應式 Web 設計認證",
|
||||
"javascript-v9": "JavaScript",
|
||||
"javascript-v9-cert": "JavaScript 認證",
|
||||
"front-end-development-libraries-v9": "Front-End Development Libraries",
|
||||
"front-end-development-libraries-v9-cert": "Front-End Development Libraries Certification",
|
||||
"front-end-development-libraries-v9": "前端開發庫",
|
||||
"front-end-development-libraries-v9-cert": "前端開發庫認證",
|
||||
"python-v9": "Python",
|
||||
"python-v9-cert": "Python 認證",
|
||||
"relational-databases-v9": "關係數據庫",
|
||||
"relational-databases-v9-cert": "關係數據庫認證",
|
||||
"back-end-development-and-apis-v9": "Back-End Development and APIs",
|
||||
"back-end-development-and-apis-v9-cert": "Back-End Development and APIs Certification",
|
||||
"back-end-development-and-apis-v9": "後端開發和 API",
|
||||
"back-end-development-and-apis-v9-cert": "後端開發和 API 認證",
|
||||
"full-stack-developer-v9": "全棧開發者",
|
||||
"full-stack-developer-v9-cert": "全棧開發者認證",
|
||||
"a1-professional-spanish": "A1 專業西班牙語",
|
||||
@@ -1300,10 +1301,10 @@
|
||||
"a2-professional-chinese-cert": "A2 專業中文認證",
|
||||
"a1-professional-chinese": "A1 專業中文",
|
||||
"a1-professional-chinese-cert": "A1 專業中文認證",
|
||||
"legacy-front-end": "Legacy Front-End",
|
||||
"legacy-front-end-cert": "Legacy Front-End Certification",
|
||||
"legacy-back-end": "Legacy Back-End",
|
||||
"legacy-back-end-cert": "Legacy Back-End Certification",
|
||||
"legacy-front-end": "舊版前端",
|
||||
"legacy-front-end-cert": "舊版前端認證",
|
||||
"legacy-back-end": "舊版後端",
|
||||
"legacy-back-end-cert": "舊版後端認證",
|
||||
"legacy-data-visualization": "舊版數據可視化",
|
||||
"legacy-data-visualization-cert": "舊版數據可視化認證",
|
||||
"information-security-and-quality-assurance": "舊版信息安全和質量保證",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "API",
|
||||
"information-security": "信息安全",
|
||||
"computer-fundamentals": "計算機基礎"
|
||||
"computer-fundamentals": "計算機基礎",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"responsive-web-design": {
|
||||
"title": "(旧版)响应式网页设计挑战",
|
||||
"title": "旧版响应式 Web 设计挑战",
|
||||
"intro": [
|
||||
"在响应式网页设计认证中,你将学习开发者用来编写网页的语言:HTML(超文本标记语言)用于创建内容,CSS(级联样式表)用于样式设计。",
|
||||
"首先,你将通过创建一个展示猫咪图片的应用,学习 HTML 和 CSS 的基本知识。 然后,通过创建企鹅学习像 CSS 变量这样的现代技术,以及通过创建网页表单学习无障碍的最佳实践。",
|
||||
@@ -37,7 +37,7 @@
|
||||
]
|
||||
},
|
||||
"responsive-web-design-principles": {
|
||||
"title": "响应式网页设计原则",
|
||||
"title": "响应式 Web 设计原则",
|
||||
"intro": [
|
||||
"人们可能通过形状和大小不同的设备来访问网页。通过响应式网页设计,你可以设计出能灵活适应不同屏幕大小、方向和分辨率的网页。",
|
||||
"在这个课程中,你将学习如何使用 CSS 让你的网页在不同设备上看起来都不错。"
|
||||
@@ -60,9 +60,9 @@
|
||||
}
|
||||
},
|
||||
"2022/responsive-web-design": {
|
||||
"title": "Legacy Responsive Web Design V8",
|
||||
"title": "旧版响应式 Web 设计 V8",
|
||||
"intro": [
|
||||
"在响应式网页设计的认证课程中,你将学习用于构建网页的语言: HTML(超文本标记语言)用于创建内容,CSS(级联样式表)用于样式设计。",
|
||||
"在响应式 Web 设计的认证课程中,你将学习用于构建网页的语言: HTML(超文本标记语言)用于创建内容,CSS(级联样式表)用于样式设计。",
|
||||
"首先,你将通过创建一个展示猫咪图片的应用学习 HTML 和 CSS 的基本知识。 然后,通过创建一只企鹅来学习像 CSS 变量这样的现代技术,并通过创建网页表单学习无障碍的最佳实践。",
|
||||
"最后,你将通过编写 Twitter 卡片,学习如何使用 Flexbox 实现适应不同屏幕大小的网页 ,以及如何用 CSS Grid 实现一个复杂的博客布局。"
|
||||
],
|
||||
@@ -152,7 +152,7 @@
|
||||
]
|
||||
},
|
||||
"learn-responsive-web-design-by-building-a-piano": {
|
||||
"title": "通过创建钢琴学习响应式网页设计",
|
||||
"title": "通过创建钢琴学习响应式 Web 设计",
|
||||
"intro": [
|
||||
"响应式设计使得你的网页适应不同屏幕尺寸的显示。",
|
||||
"In this course, you'll use CSS and responsive design to code a piano. You'll also learn more about media queries and pseudo selectors."
|
||||
@@ -996,6 +996,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "信息安全",
|
||||
"intro": [
|
||||
@@ -3235,6 +3309,12 @@
|
||||
"In this lesson, you will learn about fundamental data structures like graphs, trees, and their practical applications in computer science."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Understanding Functional Programming",
|
||||
"intro": [
|
||||
@@ -3740,6 +3820,12 @@
|
||||
"In these lessons, you will learn about numbers and mathematical operations in Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleans and Conditionals",
|
||||
"intro": [
|
||||
@@ -4951,9 +5037,9 @@
|
||||
"title": "Responsive Web Design Certification",
|
||||
"intro": [
|
||||
"This course teaches the fundamentals of HTML and CSS, including modern layout, design, accessibility, and responsive web development. You'll build practical projects and gain the skills to create professional, user-friendly webpages.",
|
||||
"To earn your Responsive Web Design Certification:",
|
||||
"要获得你的响应式 Web 设计认证:",
|
||||
"- Complete the five required projects to qualify for the certification exam.",
|
||||
"- Pass the Responsive Web Design Certification exam."
|
||||
"- 通过响应式 Web 设计认证考试。"
|
||||
],
|
||||
"chapters": {
|
||||
"html": "HTML",
|
||||
@@ -5974,7 +6060,7 @@
|
||||
"title": "CSS Review",
|
||||
"intro": [
|
||||
"Before you take the CSS prep exam, you first need to review the concepts taught in the previous modules.",
|
||||
"Open up this page to review concepts around the basics of CSS, responsive web design, animations, accessibility and more."
|
||||
"打开此页面以复习 CSS 基础、响应式 Web 设计、动画、可访问性等概念。"
|
||||
]
|
||||
},
|
||||
"exam-responsive-web-design-certification": {
|
||||
@@ -7184,7 +7270,7 @@
|
||||
"lecture-best-practices-for-responsive-web-design": {
|
||||
"title": "Best Practices for Responsive Web Design",
|
||||
"intro": [
|
||||
"In these lessons, you will learn about the best practices for responsive web design, the roles concepts like grid, flexbox, media queries, and media breakpoints play in responsive design, and more."
|
||||
"在这些课程中,你将学习响应式 Web 设计的最佳实践、网格、flexbox、媒体查询与断点在响应式设计中的作用等。"
|
||||
]
|
||||
},
|
||||
"workshop-piano": {
|
||||
@@ -7195,14 +7281,14 @@
|
||||
]
|
||||
},
|
||||
"review-responsive-web-design": {
|
||||
"title": "Responsive Web Design Review",
|
||||
"title": "响应式 Web 设计复习",
|
||||
"intro": [
|
||||
"Before you're quizzed on the fundamentals of responsive design, you should review what you've learned.",
|
||||
"Open up this page to review concepts like media queries, media breakpoints and mobile first approach design."
|
||||
]
|
||||
},
|
||||
"quiz-responsive-web-design": {
|
||||
"title": "Responsive Web Design Quiz",
|
||||
"title": "响应式 Web 设计测验",
|
||||
"intro": [
|
||||
"Test what you've learned about making your webpages responsive with this quiz."
|
||||
]
|
||||
|
||||
@@ -1155,7 +1155,7 @@
|
||||
"issued": "发布日期",
|
||||
"fulltext": "<0>特证明</0> <1>{{user}}</1> <2>已完成</2> <3>{{title}}</3> <4>开发者认证课程,日期为 {{time}}</4>,<5>约 {{completionTime}} 课时</5>",
|
||||
"fulltextNoHours": "<0>特证明</0> <1>{{user}}</1> <2>已完成</2> <3>{{title}}</3> <4>开发者认证课程,日期为 {{time}}</4>",
|
||||
"fulltextLanguageExam": "<0>This certifies that</0> <1>{{user}}</1> <2>has successfully passed the</2> <3>{{title}}</3> <4>exam on {{time}}</4> <5>demonstrating competence in grammar, listening, and reading portions of the CEFR standards for this level based on the content covered in the curriculum.</5>",
|
||||
"fulltextLanguageExam": "<0>特此证明</0> <1>{{user}}</1> <2>已于 {{time}}</2> <3>成功通过 {{title}}</3> <4>考试,</4><5>基于课程所涵盖的内容,已达到 CEFR 相应等级在语法、听力及阅读方面的能力标准。</5>",
|
||||
"quincy-larson-signature": "Quincy Larson 的签名",
|
||||
"julia-liuson-signature": "Julia Liuson 的签名",
|
||||
"project": {
|
||||
@@ -1245,20 +1245,20 @@
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"responsive-web-design": "旧版响应式网页设计 V8",
|
||||
"responsive-web-design-cert": "旧版响应式网页设计 V8 认证",
|
||||
"responsive-web-design": "旧版响应式 Web 设计 V8",
|
||||
"responsive-web-design-cert": "旧版响应式 Web 设计 V8 认证",
|
||||
"javascript-algorithms-and-data-structures": "旧版 JavaScript 算法和数据结构 V7",
|
||||
"javascript-algorithms-and-data-structures-cert": "旧版 JavaScript 算法和数据结构 V7 认证",
|
||||
"javascript-algorithms-and-data-structures-v8": "旧版 JavaScript 算法和数据结构 V8",
|
||||
"javascript-algorithms-and-data-structures-v8-cert": "旧版 JavaScript 算法和数据结构 V8 认证",
|
||||
"front-end-development-libraries": "Front-End Development Libraries V8",
|
||||
"front-end-development-libraries-cert": "Front-End Development Libraries V8 Certification",
|
||||
"front-end-development-libraries": "前端开发库 V8",
|
||||
"front-end-development-libraries-cert": "前端开发库 V8 认证",
|
||||
"data-visualization": "数据可视化 V8",
|
||||
"data-visualization-cert": "数据可视化 V8 认证",
|
||||
"relational-database-v8": "关系数据库 V8",
|
||||
"relational-database-v8-cert": "关系数据库 V8 认证",
|
||||
"back-end-development-and-apis": "Back-End Development and APIs V8",
|
||||
"back-end-development-and-apis-cert": "Back-End Development and APIs V8 Certification",
|
||||
"back-end-development-and-apis": "后端开发和 API V8",
|
||||
"back-end-development-and-apis-cert": "后端开发和 API V8 认证",
|
||||
"quality-assurance-v7": "质量保证",
|
||||
"quality-assurance-v7-cert": "质量保证认证",
|
||||
"scientific-computing-with-python-v7": "Python 科学计算",
|
||||
@@ -1274,22 +1274,23 @@
|
||||
"foundational-c-sharp-with-microsoft": "微软基础 C#",
|
||||
"foundational-c-sharp-with-microsoft-cert": "微软基础 C# 认证",
|
||||
"learn-python-for-beginners": "学习 Python 基础",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "开发者 A2 英语",
|
||||
"a2-english-for-developers-cert": "A2 开发者英语认证(测试版)",
|
||||
"b1-english-for-developers": "开发者 B1 英语",
|
||||
"b1-english-for-developers-cert": "开发者 B1 英语认证",
|
||||
"responsive-web-design-v9": "响应式网页设计",
|
||||
"responsive-web-design-v9-cert": "响应式网页设计认证",
|
||||
"responsive-web-design-v9": "响应式 Web 设计",
|
||||
"responsive-web-design-v9-cert": "响应式 Web 设计认证",
|
||||
"javascript-v9": "JavaScript",
|
||||
"javascript-v9-cert": "JavaScript 认证",
|
||||
"front-end-development-libraries-v9": "Front-End Development Libraries",
|
||||
"front-end-development-libraries-v9-cert": "Front-End Development Libraries Certification",
|
||||
"front-end-development-libraries-v9": "前端开发库",
|
||||
"front-end-development-libraries-v9-cert": "前端开发库认证",
|
||||
"python-v9": "Python",
|
||||
"python-v9-cert": "Python 认证",
|
||||
"relational-databases-v9": "关系数据库",
|
||||
"relational-databases-v9-cert": "关系数据库认证",
|
||||
"back-end-development-and-apis-v9": "Back-End Development and APIs",
|
||||
"back-end-development-and-apis-v9-cert": "Back-End Development and APIs Certification",
|
||||
"back-end-development-and-apis-v9": "后端开发和 API",
|
||||
"back-end-development-and-apis-v9-cert": "后端开发和 API 认证",
|
||||
"full-stack-developer-v9": "全栈开发者",
|
||||
"full-stack-developer-v9-cert": "全栈开发者认证",
|
||||
"a1-professional-spanish": "A1 专业西班牙语",
|
||||
@@ -1300,10 +1301,10 @@
|
||||
"a2-professional-chinese-cert": "A2 专业中文认证",
|
||||
"a1-professional-chinese": "A1 专业中文",
|
||||
"a1-professional-chinese-cert": "A1 专业中文认证",
|
||||
"legacy-front-end": "Legacy Front-End",
|
||||
"legacy-front-end-cert": "Legacy Front-End Certification",
|
||||
"legacy-back-end": "Legacy Back-End",
|
||||
"legacy-back-end-cert": "Legacy Back-End Certification",
|
||||
"legacy-front-end": "旧版前端",
|
||||
"legacy-front-end-cert": "旧版前端认证",
|
||||
"legacy-back-end": "旧版后端",
|
||||
"legacy-back-end-cert": "旧版后端认证",
|
||||
"legacy-data-visualization": "旧版数据可视化",
|
||||
"legacy-data-visualization-cert": "旧版数据可视化认证",
|
||||
"information-security-and-quality-assurance": "旧版信息安全和质量保证",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "API",
|
||||
"information-security": "信息安全",
|
||||
"computer-fundamentals": "计算机基础"
|
||||
"computer-fundamentals": "计算机基础",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1002,6 +1002,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "Seguridad de la Información",
|
||||
"intro": [
|
||||
@@ -3263,6 +3337,12 @@
|
||||
"En esta lección, aprenderás sobre estructuras de datos fundamentales como grafos, árboles y sus aplicaciones prácticas en ciencias de la computación."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Entender la Programación Funcional",
|
||||
"intro": [
|
||||
@@ -3778,6 +3858,12 @@
|
||||
"En estas lecciones, aprenderás sobre números y operaciones matemáticas en Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleans y Condicionales",
|
||||
"intro": [
|
||||
|
||||
@@ -1274,6 +1274,7 @@
|
||||
"foundational-c-sharp-with-microsoft": "Fundamentos de C# con Microsoft",
|
||||
"foundational-c-sharp-with-microsoft-cert": "Fundamentos de C# con certificación de Microsoft",
|
||||
"learn-python-for-beginners": "Learn Python for Beginners",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "Inglés A2 para Desarrolladores",
|
||||
"a2-english-for-developers-cert": "Exámen de certificación (Beta) A2 de inglês para desarrolladores",
|
||||
"b1-english-for-developers": "B1 Inglés para Desarrolladores",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "APIs",
|
||||
"information-security": "Information Security",
|
||||
"computer-fundamentals": "Computer Fundamentals"
|
||||
"computer-fundamentals": "Computer Fundamentals",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1002,6 +1002,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "Informationssicherheit",
|
||||
"intro": [
|
||||
@@ -3249,6 +3323,12 @@
|
||||
"In this lesson, you will learn about fundamental data structures like graphs, trees, and their practical applications in computer science."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Understanding Functional Programming",
|
||||
"intro": [
|
||||
@@ -3754,6 +3834,12 @@
|
||||
"In these lessons, you will learn about numbers and mathematical operations in Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleans and Conditionals",
|
||||
"intro": [
|
||||
|
||||
@@ -1274,6 +1274,7 @@
|
||||
"foundational-c-sharp-with-microsoft": "Foundational C# with Microsoft",
|
||||
"foundational-c-sharp-with-microsoft-cert": "Foundational C# with Microsoft Certification",
|
||||
"learn-python-for-beginners": "Learn Python for Beginners",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "A2 English for Developers",
|
||||
"a2-english-for-developers-cert": "A2 English for Developers Certification (Beta)",
|
||||
"b1-english-for-developers": "B1 English for Developers",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "APIs",
|
||||
"information-security": "Information Security",
|
||||
"computer-fundamentals": "Computer Fundamentals"
|
||||
"computer-fundamentals": "Computer Fundamentals",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1002,6 +1002,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "Sicurezza dell'Informazione",
|
||||
"intro": [
|
||||
@@ -3249,6 +3323,12 @@
|
||||
"In this lesson, you will learn about fundamental data structures like graphs, trees, and their practical applications in computer science."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Understanding Functional Programming",
|
||||
"intro": [
|
||||
@@ -3754,6 +3834,12 @@
|
||||
"In these lessons, you will learn about numbers and mathematical operations in Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleans and Conditionals",
|
||||
"intro": [
|
||||
|
||||
@@ -1274,6 +1274,7 @@
|
||||
"foundational-c-sharp-with-microsoft": "Foundational C# with Microsoft",
|
||||
"foundational-c-sharp-with-microsoft-cert": "Foundational C# with Microsoft Certification",
|
||||
"learn-python-for-beginners": "Learn Python for Beginners",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "A2 English for Developers",
|
||||
"a2-english-for-developers-cert": "A2 English for Developers Certification (Beta)",
|
||||
"b1-english-for-developers": "B1 English for Developers",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "APIs",
|
||||
"information-security": "Information Security",
|
||||
"computer-fundamentals": "Computer Fundamentals"
|
||||
"computer-fundamentals": "Computer Fundamentals",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1002,6 +1002,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "情報セキュリティ",
|
||||
"intro": [
|
||||
@@ -3249,6 +3323,12 @@
|
||||
"In this lesson, you will learn about fundamental data structures like graphs, trees, and their practical applications in computer science."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Understanding Functional Programming",
|
||||
"intro": [
|
||||
@@ -3754,6 +3834,12 @@
|
||||
"In these lessons, you will learn about numbers and mathematical operations in Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleans and Conditionals",
|
||||
"intro": [
|
||||
|
||||
@@ -1274,6 +1274,7 @@
|
||||
"foundational-c-sharp-with-microsoft": "Microsoft 連携・基礎 C#",
|
||||
"foundational-c-sharp-with-microsoft-cert": "Microsoft 連携・基礎 C# 認定証",
|
||||
"learn-python-for-beginners": "Learn Python for Beginners",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "開発者のための A2 レベル英語",
|
||||
"a2-english-for-developers-cert": "A2 English for Developers Certification (Beta)",
|
||||
"b1-english-for-developers": "開発者のための B1 レベル英語",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "APIs",
|
||||
"information-security": "Information Security",
|
||||
"computer-fundamentals": "Computer Fundamentals"
|
||||
"computer-fundamentals": "Computer Fundamentals",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1002,6 +1002,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "Information Security",
|
||||
"intro": [
|
||||
@@ -3249,6 +3323,12 @@
|
||||
"In this lesson, you will learn about fundamental data structures like graphs, trees, and their practical applications in computer science."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Understanding Functional Programming",
|
||||
"intro": [
|
||||
@@ -3754,6 +3834,12 @@
|
||||
"In these lessons, you will learn about numbers and mathematical operations in Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleans and Conditionals",
|
||||
"intro": [
|
||||
|
||||
@@ -1274,6 +1274,7 @@
|
||||
"foundational-c-sharp-with-microsoft": "Foundational C# with Microsoft",
|
||||
"foundational-c-sharp-with-microsoft-cert": "Foundational C# with Microsoft Certification",
|
||||
"learn-python-for-beginners": "Learn Python for Beginners",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "A2 English for Developers",
|
||||
"a2-english-for-developers-cert": "A2 English for Developers Certification (Beta)",
|
||||
"b1-english-for-developers": "B1 English for Developers",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "APIs",
|
||||
"information-security": "Information Security",
|
||||
"computer-fundamentals": "Computer Fundamentals"
|
||||
"computer-fundamentals": "Computer Fundamentals",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1002,6 +1002,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "Segurança da informação",
|
||||
"intro": [
|
||||
@@ -3263,6 +3337,12 @@
|
||||
"Nesta lição, você aprenderá sobre estruturas de dados fundamentais como grafos, árvores e suas aplicações práticas em ciência da computação."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Compreendendo Programação Funcional ",
|
||||
"intro": [
|
||||
@@ -3778,6 +3858,12 @@
|
||||
"Nestas aulas, você aprenderá sobre números e operações matemáticas em Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleanos e condicionais",
|
||||
"intro": [
|
||||
|
||||
@@ -1274,6 +1274,7 @@
|
||||
"foundational-c-sharp-with-microsoft": "Fundamentos de C# com a Microsoft",
|
||||
"foundational-c-sharp-with-microsoft-cert": "Certificação de Fundamentos de C# com a Microsoft",
|
||||
"learn-python-for-beginners": "Learn Python for Beginners",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "A2 Inglês para Desenvolvedores",
|
||||
"a2-english-for-developers-cert": "Certificação de Inglês A2 para Desenvolvedores (Beta)",
|
||||
"b1-english-for-developers": "B1 Inglês para Desenvolvedores",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "APIs",
|
||||
"information-security": "Information Security",
|
||||
"computer-fundamentals": "Computer Fundamentals"
|
||||
"computer-fundamentals": "Computer Fundamentals",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1002,6 +1002,80 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"introduction-to-algorithms-and-data-structures": {
|
||||
"title": "Introduction to Algorithms and Data Structures",
|
||||
"summary": [
|
||||
"Learn about common algorithms and data structures in this introductory course."
|
||||
],
|
||||
"intro": [
|
||||
"Algorithms and Data Structures are the backbone of programming. So it's important to learn how to work with them.",
|
||||
"In this comprehensive course, you will learn about common sorting and searching algorithms including merge sort, quicksort and binary search.",
|
||||
"You will also learn how to work with common data structures including arrays and linked lists."
|
||||
],
|
||||
"note": "",
|
||||
"blocks": {
|
||||
"intro-dsa-searching-algorithms": {
|
||||
"title": "Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn what an algorithm is and learn how to work with the binary search and linear search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-time-complexity": {
|
||||
"title": "Time Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about time complexity and how it works with measuring efficiency of algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-algorithms-in-code": {
|
||||
"title": "Algorithms in Code",
|
||||
"intro": [
|
||||
"In these videos, you will write Python code for the linear and binary search algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-recursion-and-space-complexity": {
|
||||
"title": "Recursion and Space Complexity",
|
||||
"intro": [
|
||||
"In these videos, you will learn about recursion and space complexity for algorithms."
|
||||
]
|
||||
},
|
||||
"intro-dsa-arrays": {
|
||||
"title": "Introduction to Arrays",
|
||||
"intro": [
|
||||
"In these videos, you will learn how to work with arrays. You will learn about different operations including insert, delete and search."
|
||||
]
|
||||
},
|
||||
"intro-dsa-linked-lists": {
|
||||
"title": "Introduction to Linked Lists",
|
||||
"intro": [
|
||||
"In these videos, you will learn about linked lists. You will learn how to add nodes to a list as well as remove and search a list."
|
||||
]
|
||||
},
|
||||
"intro-dsa-merge-sort": {
|
||||
"title": "The Merge Sort Algorithm",
|
||||
"intro": [
|
||||
"In these videos, you will learn about the merge sort algorithm."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-linked-lists": {
|
||||
"title": "Sorting a Linked List",
|
||||
"intro": [
|
||||
"In these videos, you will learn more about how to sort linked lists."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-algorithms": {
|
||||
"title": "Sorting Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will learn about common sorting algorithms including selection sort and quicksort."
|
||||
]
|
||||
},
|
||||
"intro-dsa-sorting-searching-algorithms": {
|
||||
"title": "Searching Names using Sorting and Searching Algorithms",
|
||||
"intro": [
|
||||
"In these videos, you will practice searching for names using the binary and linear search algorithms and comparing the runtimes for them."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"information-security": {
|
||||
"title": "Information Security",
|
||||
"intro": [
|
||||
@@ -3249,6 +3323,12 @@
|
||||
"In this lesson, you will learn about fundamental data structures like graphs, trees, and their practical applications in computer science."
|
||||
]
|
||||
},
|
||||
"lab-adjacency-list-to-matrix-converter-js": {
|
||||
"title": "Build an Adjacency List to Matrix Converter",
|
||||
"intro": [
|
||||
"In this lab, you will implement a function that converts an adjacency list representation of a graph into an adjacency matrix representation."
|
||||
]
|
||||
},
|
||||
"lecture-understanding-functional-programming": {
|
||||
"title": "Understanding Functional Programming",
|
||||
"intro": [
|
||||
@@ -3754,6 +3834,12 @@
|
||||
"In these lessons, you will learn about numbers and mathematical operations in Python."
|
||||
]
|
||||
},
|
||||
"workshop-bill-splitter": {
|
||||
"title": "Build a Bill Splitter",
|
||||
"intro": [
|
||||
"In this workshop you will build a bill splitter to practice working with numbers and mathematical operations in Python"
|
||||
]
|
||||
},
|
||||
"lecture-booleans-and-conditionals": {
|
||||
"title": "Booleans and Conditionals",
|
||||
"intro": [
|
||||
|
||||
@@ -1274,6 +1274,7 @@
|
||||
"foundational-c-sharp-with-microsoft": "Foundational C# with Microsoft",
|
||||
"foundational-c-sharp-with-microsoft-cert": "Foundational C# with Microsoft Certification",
|
||||
"learn-python-for-beginners": "Learn Python for Beginners",
|
||||
"introduction-to-algorithms-and-data-structures": "Introduction to Algorithms and Data Structures",
|
||||
"a2-english-for-developers": "A2 English for Developers",
|
||||
"a2-english-for-developers-cert": "A2 English for Developers Certification (Beta)",
|
||||
"b1-english-for-developers": "B1 English for Developers",
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "APIs",
|
||||
"information-security": "Information Security",
|
||||
"computer-fundamentals": "Computer Fundamentals"
|
||||
"computer-fundamentals": "Computer Fundamentals",
|
||||
"computer-science": "Computer Science"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -533,7 +533,7 @@
|
||||
"download-results": "Завантажити результати",
|
||||
"percent-complete": "виконано {{percent}}%",
|
||||
"project-complete": "Виконано",
|
||||
"tried-rsa": "Якщо ви вже спробували метод <0>читати-шукати-питати</0>, то ви можете звернутися за допомогою на форум freeCodeCamp.",
|
||||
"tried-rsa": "Якщо ви вже спробували <0>читати-шукати-питати</0>, то можете звернутися за допомогою на форум freeCodeCamp.",
|
||||
"read-search-ask-checkbox": "Я спробував(-ла) метод <0>читати-шукати-питати</0>",
|
||||
"similar-questions-checkbox": "Я шукав(-ла) <0>схожі запитання на форумі, на які вже є відповідь</0>",
|
||||
"minimum-characters": "Будь ласка, додайте більше символів (принаймні {{characters}})",
|
||||
@@ -582,9 +582,9 @@
|
||||
"step-2": "Натисніть кнопку «Розпочати проєкт» внизу",
|
||||
"step-3": "На тій сторінці натисніть на кнопку «Створити»",
|
||||
"step-4": "Як тільки віртуальна машина Linux завантажиться, запустіть розширення CodeRoad:",
|
||||
"step-5": "натисніть на іконку «гамбургер» біля верхнього лівого кута вікна VSCode,",
|
||||
"step-6": "перейдіть до меню <0>View</0>,",
|
||||
"step-7": "натисніть на <0>Command Palette</0>,",
|
||||
"step-5": "натисніть на іконку «гамбургер» біля верхнього лівого кута вікна VSCode",
|
||||
"step-6": "перейдіть до меню <0>View</0>",
|
||||
"step-7": "натисніть на <0>Command Palette</0>",
|
||||
"step-8": "та виконайте команду <0>CodeRoad: Start</0>",
|
||||
"step-9": "Дотримуйтесь інструкцій в CodeRoad, щоб завершити курс",
|
||||
"continue-project": "Натиснувши на кнопку нижче, запуститься новий проєкт. Якщо ви вже працювали над курсом «{{title}}», то перейдіть на <0>цю сторінку</0>, щоб повернутись до попередньої роботи.",
|
||||
@@ -602,9 +602,9 @@
|
||||
"step-2": "Натисніть кнопку «Розпочати проєкт» внизу",
|
||||
"step-3": "У вікні, що відкриється, натисніть кнопку «Create»",
|
||||
"step-4": "Як тільки віртуальна машина Linux завантажиться, запустіть розширення CodeRoad:",
|
||||
"step-5": "натисніть на іконку «гамбургер» біля верхнього лівого кута вікна VSCode,",
|
||||
"step-6": "перейдіть до меню <0>View</0>,",
|
||||
"step-7": "натисніть на <0>Command Palette</0>,",
|
||||
"step-5": "натисніть на іконку «гамбургер» біля верхнього лівого кута вікна VSCode",
|
||||
"step-6": "перейдіть до меню <0>View</0>",
|
||||
"step-7": "натисніть на <0>Command Palette</0>",
|
||||
"step-8": "та виконайте команду <0>CodeRoad: Start</0>",
|
||||
"step-9": "Дотримуйтесь інструкцій в CodeRoad, щоб завершити курс",
|
||||
"continue-project": "Натиснувши на кнопку нижче, запуститься новий проєкт. Якщо ви вже працювали над курсом «{{course}}», то перейдіть на <0>панель Ona</0>, щоб продовжити.",
|
||||
@@ -631,10 +631,10 @@
|
||||
"step-3": "Відкрийте палітру команд у VS Code, перейшовши до меню «View» та натиснувши «Command Palette...», а потім введіть <0>Dev Containers: Rebuild and Reopen in Container</0>.",
|
||||
"step-4": "Після цього відкриється нове вікно VS Code і розпочнеться створення образу Docker (протягом першого запуску це займе пару хвилин).",
|
||||
"step-5": "Після завершення знову перейдіть до палітри команд і введіть <0>CodeRoad: Start</0>, щоб відкрити CodeRoad.",
|
||||
"step-6": "У вікні CodeRoad натисніть «Start New Tutorial», а потім — на вкладку «URL» зверху.",
|
||||
"step-7": "Скопіюйте посилання на курс нижче, вставте його в «URL» і натисніть «Load».",
|
||||
"step-6": "у вікні CodeRoad натисніть «Start New Tutorial», а потім — на вкладку «URL» зверху",
|
||||
"step-7": "скопіюйте посилання на курс нижче, вставте його в «URL» і натисніть «Load»",
|
||||
"copy-url": "Скопіювати посилання на курс",
|
||||
"step-8": "Натисніть «Start», щоб розпочати.",
|
||||
"step-8": "натисніть «Start», щоб розпочати",
|
||||
"step-9": "Дотримуйтесь інструкцій в CodeRoad, щоб завершити курс. Примітка: можливо, вам знадобиться перезапустити термінал, щоб застосувати його налаштування і тести були успішними.",
|
||||
"summary": "Локальне середовище"
|
||||
},
|
||||
@@ -1245,20 +1245,20 @@
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"responsive-web-design": "Застарілий адаптивний вебдизайн V8",
|
||||
"responsive-web-design-cert": "Сертифікація «Застарілий адаптивний вебдизайн V8»",
|
||||
"responsive-web-design": "Адаптивний вебдизайн V8 (стара версія)",
|
||||
"responsive-web-design-cert": "Сертифікація «Адаптивний вебдизайн V8 (стара версія)»",
|
||||
"javascript-algorithms-and-data-structures": "Алгоритми та структури даних JavaScript V7 (стара версія)",
|
||||
"javascript-algorithms-and-data-structures-cert": "Сертифікація «Алгоритми та структури даних JavaScript V7 (стара версія)»",
|
||||
"javascript-algorithms-and-data-structures-v8": "Алгоритми та структури даних JavaScript V8 (стара версія)",
|
||||
"javascript-algorithms-and-data-structures-v8-cert": "Сертифікація «Алгоритми та структури даних JavaScript V8 (стара версія)»",
|
||||
"front-end-development-libraries": "Front-End Development Libraries V8",
|
||||
"front-end-development-libraries-cert": "Front-End Development Libraries V8 Certification",
|
||||
"front-end-development-libraries": "Бібліотеки Front End V8",
|
||||
"front-end-development-libraries-cert": "Сертифікація «Бібліотеки Front End V8»",
|
||||
"data-visualization": "Візуалізація даних V8",
|
||||
"data-visualization-cert": "Сертифікація «Візуалізація даних V8»",
|
||||
"relational-database-v8": "Реляційні бази даних V8",
|
||||
"relational-database-v8-cert": "Сертифікація «Реляційні бази даних V8»",
|
||||
"back-end-development-and-apis": "Back-End Development and APIs V8",
|
||||
"back-end-development-and-apis-cert": "Back-End Development and APIs V8 Certification",
|
||||
"back-end-development-and-apis": "Back End та API V8",
|
||||
"back-end-development-and-apis-cert": "Сертифікація «Back End та API V8»",
|
||||
"quality-assurance-v7": "Забезпечення якості",
|
||||
"quality-assurance-v7-cert": "Сертифікація «Забезпечення якості»",
|
||||
"scientific-computing-with-python-v7": "Наукові обчислення з Python",
|
||||
@@ -1274,6 +1274,7 @@
|
||||
"foundational-c-sharp-with-microsoft": "Основи C# з Microsoft",
|
||||
"foundational-c-sharp-with-microsoft-cert": "Сертифікація «Основи C# з Microsoft»",
|
||||
"learn-python-for-beginners": "Python для початківців",
|
||||
"introduction-to-algorithms-and-data-structures": "Вступ до алгоритмів та структур даних",
|
||||
"a2-english-for-developers": "Англійська мова A2 для розробників",
|
||||
"a2-english-for-developers-cert": "Сертифікація «Англійська мова A2 для розробників (бета)»",
|
||||
"b1-english-for-developers": "Англійська мова B1 для розробників",
|
||||
@@ -1282,14 +1283,14 @@
|
||||
"responsive-web-design-v9-cert": "Сертифікація «Адаптивний вебдизайн»",
|
||||
"javascript-v9": "JavaScript",
|
||||
"javascript-v9-cert": "Сертифікація «JavaScript»",
|
||||
"front-end-development-libraries-v9": "Front-End Development Libraries",
|
||||
"front-end-development-libraries-v9-cert": "Front-End Development Libraries Certification",
|
||||
"front-end-development-libraries-v9": "Бібліотеки Front End",
|
||||
"front-end-development-libraries-v9-cert": "Сертифікація «Бібліотеки Front End»",
|
||||
"python-v9": "Python",
|
||||
"python-v9-cert": "Сертифікація «Python»",
|
||||
"relational-databases-v9": "Реляційні бази даних",
|
||||
"relational-databases-v9-cert": "Сертифікація «Реляційні бази даних»",
|
||||
"back-end-development-and-apis-v9": "Back-End Development and APIs",
|
||||
"back-end-development-and-apis-v9-cert": "Back-End Development and APIs Certification",
|
||||
"back-end-development-and-apis-v9": "Back End та API",
|
||||
"back-end-development-and-apis-v9-cert": "Сертифікація «Back End та API»",
|
||||
"full-stack-developer-v9": "Розробник Full Stack",
|
||||
"full-stack-developer-v9-cert": "Сертифікація «Розробник Full Stack»",
|
||||
"a1-professional-spanish": "Іспанська мова A1 для роботи",
|
||||
@@ -1300,14 +1301,14 @@
|
||||
"a2-professional-chinese-cert": "Сертифікація «Китайська мова A2 для роботи»",
|
||||
"a1-professional-chinese": "Китайська мова A1 для роботи",
|
||||
"a1-professional-chinese-cert": "Сертифікація «Китайська мова A1 для роботи»",
|
||||
"legacy-front-end": "Legacy Front-End",
|
||||
"legacy-front-end-cert": "Legacy Front-End Certification",
|
||||
"legacy-back-end": "Legacy Back-End",
|
||||
"legacy-back-end-cert": "Legacy Back-End Certification",
|
||||
"legacy-front-end": "Front End (стара версія)",
|
||||
"legacy-front-end-cert": "Сертифікація «Front End (стара версія)»",
|
||||
"legacy-back-end": "Back End (стара версія)",
|
||||
"legacy-back-end-cert": "Сертифікація «Back End (стара версія)»",
|
||||
"legacy-data-visualization": "Візуалізація даних (стара версія)",
|
||||
"legacy-data-visualization-cert": "Сертифікація «Візуалізація даних» (стара версія)",
|
||||
"legacy-data-visualization-cert": "Сертифікація «Візуалізація даних (стара версія)»",
|
||||
"information-security-and-quality-assurance": "Інформаційна безпека та забезпечення якості (стара версія)",
|
||||
"information-security-and-quality-assurance-cert": "Сертифікація «Інформаційна безпека та забезпечення якості» (стара версія)",
|
||||
"information-security-and-quality-assurance-cert": "Сертифікація «Інформаційна безпека та забезпечення якості (стара версія)»",
|
||||
"full-stack": "Full Stack (стара версія)",
|
||||
"full-stack-cert": "Сертифікація «Full Stack (стара версія)»"
|
||||
}
|
||||
@@ -1460,7 +1461,8 @@
|
||||
"d3": "D3",
|
||||
"api": "API",
|
||||
"information-security": "Інформаційна безпека",
|
||||
"computer-fundamentals": "Основи комп’ютера"
|
||||
"computer-fundamentals": "Основи комп’ютера",
|
||||
"computer-science": "Комп’ютерні науки"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user