Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added a cpp subcategory under languages #1289

Merged
merged 9 commits into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export const sidebarData: ISidebar[] = [
url: '/c-programming',
resources: DB.CProgramming,
},
{ name: 'C++ Programming', url: '/cpp', resources: DB.cpp },
{ name: 'Java', url: '/java', resources: DB.java },
{ name: 'Kotlin', url: '/kotlin', resources: DB.kotlin },
{ name: 'Rust', url: '/rust', resources: DB.Rust },
Expand Down Expand Up @@ -116,7 +117,11 @@ export const sidebarData: ISidebar[] = [
{
category: 'machine learning',
subcategory: [
{ name: 'machine learning', url: '/machine-learning', resources: DB.machineLearning },
{
name: 'machine learning',
url: '/machine-learning',
resources: DB.machineLearning,
},
{ name: 'data science', url: '/data-science', resources: DB.dataScience },
{
name: 'deep learning',
Expand All @@ -128,8 +133,12 @@ export const sidebarData: ISidebar[] = [
{
category: 'artificial intelligence',
subcategory: [
{ name: 'Artificial Int.', url: '/artificial-intelligence', resources: DB.artificialIntelligence },
]
{
name: 'Artificial Int.',
url: '/artificial-intelligence',
resources: DB.artificialIntelligence,
},
],
},
{
category: 'resources',
Expand Down
1 change: 0 additions & 1 deletion database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,3 @@ export { default as devtools } from './other/devtools.json'
export { default as podcasts } from './other/podcasts.json'
export { default as otherResources } from './other/other-resources.json'
export { default as communities } from './other/communities.json'

9 changes: 8 additions & 1 deletion database/languages/c++.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,12 @@
"url": "https://www.youtube.com/watch?v=9Myk2vcK8s8&list=PL_c9BZzLwBRIwEnaRU2LC4GkqxUbD0Auc&index=2&ab_channel=CalebCurry",
"category": "languages",
"subcategory": "cpp-programming"
},
{
"name": "C++ Full Course | Apna College",
"description": "This is a full C++ programming course with concepts of Data Structures & Algorithm.",
"url": "https://www.youtube.com/playlist?list=PLfqMhTWNBTe0b2nM6JHVCnAkhQRGiZMSJ",
"category": "languages",
"subcategory": "cpp-programming"
}
]
]