feat: label un-audited challenges (#41002)

Co-authored-by: Nicholas Carrigan <nhcarrigan@gmail.com>
Co-authored-by: Mrugesh Mohapatra <me@raisedadead.com>
Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
Co-authored-by: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com>
This commit is contained in:
Oliver Eyton-Williams
2021-02-11 13:40:32 +01:00
committed by GitHub
parent c9de726d6a
commit 6c1f6bebed
20 changed files with 268 additions and 189 deletions

View File

@@ -5,7 +5,6 @@
const introSchema = {
'responsive-web-design': {
title: 'Responsive Web Design',
isTranslated: true,
intro: [
"In this Responsive Web Design Certification, you'll learn the languages that developers use to build webpages: HTML (Hypertext Markup Language) for content, and CSS (Cascading Style Sheets) for design.",
"First, you'll build a cat photo app to learn the basics of HTML and CSS. Later, you'll learn modern techniques like CSS variables by building a penguin, and best practices for accessibility by building a web form.",
@@ -84,7 +83,6 @@ const introSchema = {
},
'javascript-algorithms-and-data-structures': {
title: 'JavaScript Algorithms and Data Structures',
isTranslated: true,
intro: [
"While HTML and CSS control the content and styling of a page, JavaScript is used to make it interactive. In the JavaScript Algorithm and Data Structures Certification, you'll learn the fundamentals of JavaScript including variables, arrays, objects, loops, and functions.",
"Once you have the fundamentals down, you'll apply that knowledge by creating algorithms to manipulate strings, factorialize numbers, and even calculate the orbit of the International Space Station.",
@@ -179,7 +177,6 @@ const introSchema = {
},
'front-end-libraries': {
title: 'Front End Development Libraries',
isTranslated: true,
intro: [
"Now that you're familiar with HTML, CSS, and JavaScript, level up your skills by learning some of the most popular front end libraries in the industry.",
"In the Front End Libraries Certification, you'll learn how to style your site quickly with Bootstrap. You'll also learn how add logic to your CSS styles and extend them with Sass.",
@@ -242,7 +239,6 @@ const introSchema = {
},
'data-visualization': {
title: 'Data Visualization',
isTranslated: true,
intro: [
"Data is all around us, but it doesn't mean much without shape or context.",
"In the Data Visualization Certification, you'll build charts, graphs, and maps to present different types of data with the D3.js library.",
@@ -281,7 +277,6 @@ const introSchema = {
},
'apis-and-microservices': {
title: 'APIs and Microservices',
isTranslated: true,
intro: [
"Until this point, you've only used JavaScript on the front end to add interactivity to a page, solve algorithm challenges, or build an SPA. But JavaScript can also be used on the back end, or server, to build entire web applications.",
'Today, one of the popular ways to build applications is through microservices, which are small, modular applications that work together to form a larger whole.',
@@ -323,7 +318,6 @@ const introSchema = {
},
'quality-assurance': {
title: 'Quality Assurance',
isTranslated: true,
intro: [
"As your programs or web applications become more complex, you'll want to test them to make sure that new changes don't break their original functionality.",
"In the Quality Assurance Certification, you'll learn how to write to write tests with Chai to ensure your applications work the way you expect them to.",
@@ -357,7 +351,6 @@ const introSchema = {
},
'scientific-computing-with-python': {
title: 'Scientific Computing with Python',
isTranslated: true,
intro: [
'Python is one of the most popular, flexible programming languages today. You can use it for everything from basic scripting to machine learning.',
"In the Scientific Computing with Python Certification, you'll Python fundamentals like variables, loops, conditionals, and functions. Then you'll quickly ramp up to complex data structures, networking, relational databases, and data visualization."
@@ -380,7 +373,6 @@ const introSchema = {
},
'data-analysis-with-python': {
title: 'Data Analysis with Python',
isTranslated: true,
intro: [
'Data Analysis has been around for a long time. But up until a few years ago, developers practiced it using expensive, closed-source tools like Tableau. But recently, Python, SQL, and other open libraries have changed Data Analysis forever.',
"In the Data Analysis with Python Certification, you'll learn the fundamentals of data analysis with Python. By the end of this certification, you'll know how to read data from sources like CSVs and SQL, and how to use libraries like Numpy, Pandas, Matplotlib, and Seaborn to process and visualize data."
@@ -411,7 +403,6 @@ const introSchema = {
},
'information-security': {
title: 'Information Security',
isTranslated: true,
intro: [
"With everything we do online, there's a vast amount of sensitive information at risk: email addresses, passwords, phone numbers, and much more.",
"With the Information Security Certification, you'll build a secure web app with HelmetJS to learn the fundamentals of protecting people's information online.",
@@ -443,7 +434,6 @@ const introSchema = {
},
'machine-learning-with-python': {
title: 'Machine Learning with Python',
isTranslated: true,
intro: [
'Machine learning has many practical applications that you can use in your projects or on the job.',
"In the Machine Learning with Python Certification, you'll use the TensorFlow framework to build several neural networks. A you'll explore more advanced techniques like natural language processing and reinforcement learning.",
@@ -474,7 +464,6 @@ const introSchema = {
},
'coding-interview-prep': {
title: 'Coding Interview Prep',
isTranslated: true,
intro: [
"If you're looking for free coding exercises to prepare for your next job interview, we've got you covered.",
'This section contains hundreds of coding challenges that test your knowledge of algorithms, data structures, and mathematics. It also has a number of take-home projects you can use to strengthen your skills, or add to your portfolio.'
@@ -523,9 +512,7 @@ const introSchema = {
'Browse our other free certifications\n(we recommend doing these in order)',
courses: 'Courses',
expand: 'Expand',
collapse: 'Collapse',
'translation-banner': "We're still translating this certification.",
'translation-help': 'You can help here'
collapse: 'Collapse'
}
};
exports.introSchema = introSchema;