Skip to content

Commit

Permalink
chore: added new resources (#407)
Browse files Browse the repository at this point in the history
* Added resources for (Tensorflow for deep learning)

* Modified database/youtube/machine-learning.json

* Added 2 new links for machine-learning under youtube, Added new section 'react js' under frontend, Added a new section 'e-book' under resources
  • Loading branch information
DevyDhanish authored Apr 20, 2023
1 parent 82e5c37 commit 070c808
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 9 deletions.
3 changes: 3 additions & 0 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const sidebarData: ISidebar[] = [
{
category: 'frontend',
subcategory: [
{ name: 'react js', url: '/react'},
{ name: 'images', url: '/images' },
{ name: 'fonts', url: '/fonts' },
{ name: 'colors', url: '/colors' },
Expand Down Expand Up @@ -39,6 +40,7 @@ export const sidebarData: ISidebar[] = [
{ name: 'web development', url: '/web-development' },
{ name: 'CSS', url: '/css' },
{ name: 'machine learning', url: '/machine-learning' },
{ name: 'tensorflow', url: '/tensorflow'},
{ name: 'data structures', url: '/dsa' },
{ name: 'Android', url: '/android' },
{ name: 'Web3 & Metaverse', url: '/web3-metaverse' },
Expand All @@ -50,6 +52,7 @@ export const sidebarData: ISidebar[] = [
subcategory: [
{ name: 'blogs', url: '/blogs' },
{ name: 'hosting', url: '/hosting' },
{name : 'e-book', url:'/e-book'}
],
},
{
Expand Down
10 changes: 10 additions & 0 deletions database/frontend/react.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
"name":"React js",
"description":"Free online course for learning react js",
"url":"https://scrimba.com/learn/learnreact#",
"category":"frontend",
"subcategory":"react",
"language":"english"
}
]
2 changes: 2 additions & 0 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export { default as images } from "./frontend/images.json";
export { default as onlineCodeEditors } from "./frontend/online-code-editors.json";
export { default as themesTemplates } from "./frontend/themes-templates.json";
export { default as uiGenerators } from "./frontend/ui-generators.json";
export { default as react } from "./frontend/react.json";
// backend
export { default as authentication } from "./backend/authentication.json";
export { default as architecture } from "./backend/architecture.json";
Expand All @@ -19,6 +20,7 @@ export { default as validation } from "./backend/validation.json";
// resources
export { default as blogs } from "./resources/blogs.json";
export { default as hosting } from "./resources/hosting.json";
export { default as ebook } from "./resources/e-book.json";
// youtube
export { default as android } from "./youtube/android.json";
export { default as dataStructures } from "./youtube/data-structures.json";
Expand Down
10 changes: 10 additions & 0 deletions database/resources/e-book.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
"name":"The Deep Learning textbook",
"description":"The Deep Learning textbook is a resource intended to help students and practitioners enter the field of machine learning in general and deep learning in particular. The online version of the book is now complete and will remain available online for free.",
"url":"https://www.deeplearningbook.org/",
"category":"resource",
"subcategory":"e-book",
"language":"english"
}
]
42 changes: 34 additions & 8 deletions database/youtube/machine-learning.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,34 @@
[{
"name": "3Blue1Brown",
"description": "3Blue1Brown, by Grant Sanderson, is some combination of math and entertainment, depending on your disposition. The goal is for explanations to be driven by animations and for difficult problems to be made simple with changes in perspective.",
"url": "https://www.youtube.com/@3blue1brown",
"category": "youtube",
"subcategory": "machine-learning",
"language": "english"
}]
[
{
"name":"Udacity",
"description":"Free online course for learning tensorflow for Deep learning",
"url":"https://learn.udacity.com/courses/ud187",
"category":"online platform",
"subcategory":"tensorflow",
"language":"english"
},
{
"name": "3Blue1Brown",
"description": "3Blue1Brown, by Grant Sanderson, is a combination of math and entertainment, depending on your disposition. The goal is for difficult problems to be made simple with changes in perspective.",
"url": "https://www.youtube.com/@3blue1brown",
"category": "youtube",
"subcategory": "machine-learning",
"language": "english"
},
{
"name":"Google",
"description":"Free online course provided by google to learn machine learning and it's implementations",
"url":"https://developers.google.com/machine-learning",
"category":"online platform",
"subcategory":"machine-learning",
"language":"english"
},
{
"name":"FreeCodeCamp",
"description":"Learn Machine Learning in a way that is accessible to absolute beginners. You will learn the basics of Machine Learning and how to use TensorFlow to implement many different concepts.",
"url":"https://www.youtube.com/watch?v=i_LwzRVP7bg&t=769s&ab_channel=freeCodeCamp.org",
"category":"youtube",
"subcategory":"machine-learning",
"language":"english"
}
]
3 changes: 2 additions & 1 deletion types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface IData {
language?: string;
}

export type Category = "frontend" | "backend" | "youtube" | "resources" | "Other" | "languages";
export type Category = "frontend" | "backend" | "youtube" | "resources" | "Other" | "languages" | "online platform";

export type SubCategory =
| "images"
Expand All @@ -52,6 +52,7 @@ export type SubCategory =
| "online-code-editors"
| "web-development"
| "machine-learning"
| "tensorflow"
| "dsa"
| "android"
| "blogs"
Expand Down

1 comment on commit 070c808

@vercel
Copy link

@vercel vercel bot commented on 070c808 Apr 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

linkshub – ./

linkshub-rupali-codes.vercel.app
linkshub-git-main-rupali-codes.vercel.app
linkshub.vercel.app

Please sign in to comment.