Skip to content

Commit

Permalink
feat: add Java Category and Subcategory in newsletter and resources a…
Browse files Browse the repository at this point in the history
…dded in javascript newsletter
  • Loading branch information
rupali-codes authored Oct 19, 2024
2 parents f349a07 + d5f9b9e commit 2360dc8
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 2 deletions.
4 changes: 3 additions & 1 deletion components/TopBar/CategoryDescriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,10 @@ const categoryDescriptions: CategoryDescriptions = {
// newsletters
jsLetters:
'It covers the latest updates, trends, and resources in the JavaScript ecosystem, keeping developers informed and engaged.',
pythonLetters:
pythonLetters:
'It covers the latest updates, trends, and resources in the Python ecosystem.',
javaLetters:
'It covers the latest updates, trends, and resources in the Java ecosystem.',
}

export default categoryDescriptions
5 changes: 5 additions & 0 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,11 @@ export const sidebarData: ISidebar[] = [
name: 'python',
url: '/pythonLetters',
resources: DB.pythonLetters,
},
{
name:'java',
url:'/javaLetters',
resources:DB.javaLetters,
}
]
},
Expand Down
1 change: 1 addition & 0 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,3 +156,4 @@ export { default as reactArticles } from './tech_articles/react.json'
// Newsletters
export { default as jsLetters } from './newsletters/js_Letters.json'
export { default as pythonLetters } from './newsletters/py_Letters.json'
export {default as javaLetters} from './newsletters/java_Letters.json'
32 changes: 32 additions & 0 deletions database/newsletters/java_Letters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

[
{
"name": "JavaBulletin",
"description": "Curated and Hand-Picked Java & Spring Blogs. Click to read Java Newsletter, by Suraj Mishra, a Substack publication with thousands of subscribers.",
"url": "https://javabulletin.substack.com",
"category": "newsletters",
"subcategory": "javaLetters"
},
{
"name": "JetBrains",
"description": "JetBrains Java Annotated Monthly: Stay up-to-date with the latest news and articles about Java, handpicked and curated by JetBrains.",
"url": "https://www.jetbrains.com/lp/jam/",
"category": "newsletters",
"subcategory": "javaLetters"
},
{
"name": "Baeldung",
"description": "Baeldung's Java Weekly: A roundup of curated Java articles, news, and tutorials, covering the latest in Java development.",
"url": "https://www.baeldung.com/library/java-web-weekly",
"category": "newsletters",
"subcategory": "javaLetters"
},
{
"name": "Microsoft Java",
"description": "Microsoft's Java Newsletter: Stay informed on Java-related updates and announcements from the Microsoft development team.",
"url": "https://devblogs.microsoft.com/java/newsletter/",
"category": "newsletters",
"subcategory": "javaLetters"
}
]

9 changes: 8 additions & 1 deletion database/newsletters/js_Letters.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,12 @@
"url": "https://frontendfoc.us/",
"category": "newsletters",
"subcategory": "jsLetters"
},
{
"name": "JavaScript Kicks",
"description": "JavaScript Kicks is a platform that provides online tutorials, courses, and challenges to help users learn JavaScript programming in an interactive and engaging way.",
"url": "https://javascriptkicks.com/",
"category": "newsletters",
"subcategory": "jsLetters"
}
]
]

0 comments on commit 2360dc8

Please sign in to comment.