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

feat: Add Cloud Service Links #2551

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
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
13 changes: 10 additions & 3 deletions components/TopBar/CategoryDescriptions.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { generalWebFundamentals } from "database"

type CategoryDescriptions = {
[key: string]: string
}
Expand Down Expand Up @@ -272,7 +270,16 @@ const categoryDescriptions: CategoryDescriptions = {
oracle:
'Oracle Cloud is a leading cloud computing platform providing a robust suite of services. From databases to advanced solutions, Oracle Cloud supports businesses in achieving scalability, security, and innovation.',
ibm: 'IBM Cloud stands as a formidable cloud computing platform, offering a wide array of services. From computing power to advanced technologies, IBM Cloud supports businesses in their digital transformation journey.',

alibaba: 'Comprehensive suite of global cloud computing services.',
strapi: 'Headless CMS service designed for building APIs.',
f5: `Documentation for F5 Network's cloud services.`,
clouddocs: 'Cloud documentation portal with resources and guides.',
grafana: `Documentation for Grafana's cloud-based observability suite.`,
spring: 'Tools for building distributed systems and microservices.',
intel: 'Cloud services focused on performance optimization and security.',
redis: 'Managed Redis database services for real-time data processing.',
meta: `Cloud infrastructure services for Meta's platforms.`,
vmware: 'Hybrid cloud platform for virtualization solutions.',
//internet of things
coursera:
'Coursera is an online learning platform that offers a wide range of courses, specializations, and degrees from top universities and organizations globally. It provides accessible and flexible education to individuals seeking to enhance their skills and knowledge.',
Expand Down
17 changes: 0 additions & 17 deletions database/cloud_computing_platforms/aws.json

This file was deleted.

16 changes: 0 additions & 16 deletions database/cloud_computing_platforms/azure.json

This file was deleted.

129 changes: 129 additions & 0 deletions database/cloud_computing_platforms/cloud_computing_platforms.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
[
{
"name": "Alibaba Cloud",
"description": "Comprehensive suite of global cloud computing services.",
"url": "https://www.alibabacloud.com",
"category": "cloud-computing",
"subcategory": "alibaba"
},
{
"name": "Strapi Cloud",
"description": "Headless CMS service designed for building APIs.",
"url": "https://cloud.strapi.io",
"category": "cloud-computing",
"subcategory": "strapi"
},
{
"name": "F5 Cloud",
"description": "Documentation for F5 Network's cloud services.",
"url": "https://clouddocs.f5.com",
"category": "cloud-computing",
"subcategory": "f5"
},
{
"name": "Cloud docs",
"description": "Cloud documentation portal with resources and guides.",
"url": "https://clouddocs.biz",
"category": "cloud-computing",
"subcategory": "clouddocs"
},
{
"name": "Grafana Cloud",
"description": "Documentation for Grafana's cloud-based observability suite.",
"url": "https://grafana.com/docs/grafana-cloud",
"category": "cloud-computing",
"subcategory": "grafana"
},
{
"name": "Spring Cloud",
"description": "Tools for building distributed systems and microservices.",
"url": "https://spring.io/projects/spring-cloud",
"category": "cloud-computing",
"subcategory": "spring"
},
{
"name": "Intel Cloud",
"description": "Cloud services focused on performance optimization and security.",
"url": "https://www.intel.com/cloud",
"category": "cloud-computing",
"subcategory": "intel"
},
{
"name": "Redis Cloud",
"description": "Managed Redis database services for real-time data processing.",
"url": "https://redis.com/redis-enterprise-cloud",
"category": "cloud-computing",
"subcategory": "redis"
},
{
"name": "Meta Cloud",
"description": "Cloud infrastructure services for Meta's platforms.",
"url": "https://cloud.meta.com",
"category": "cloud-computing",
"subcategory": "meta"
},
{
"name": "VMWare Cloud",
"description": "Hybrid cloud platform for virtualization solutions.",
"url": "https://cloud.vmware.com",
"category": "cloud-computing",
"subcategory": "vmware"
},
{
"name": "Microsoft Azure",
"description": "Learn how to build and manage powerful applications using Microsoft Azure cloud services. Get documentation, example code, tutorials, and more.",
"url": "https://learn.microsoft.com/en-us/azure/?product=popular",
"category": "cloud-computing",
"subcategory": "azure"
},
{
"name": "Microsoft Learn & Certified",
"description": "Microsoft has certification paths for many technical job roles. Each of these certifications consists of passing a series of exams to earn them. ",
"url": "https://learn.microsoft.com/en-us/certifications/",
"category": "cloud-computing",
"subcategory": "azure"
},
{
"name": "Amazon Web Services",
"description": "Gain free, hands-on experience with the AWS platform, products, and services. AWS Activate provides eligible startups with a host of resources, including free AWS credits to spend on AWS services, and AWS Support. ",
"url": "https://docs.aws.amazon.com/index.html",
"category": "cloud-computing",
"subcategory": "aws"
},
{
"name": "AWS tutorial for beginners",
"description": "Learn AWS from basic-to-advanced level. This playlist has short and great tutorials that will help you learn AWS.",
"url": "https://www.youtube.com/playlist?list=PL6XT0grm_TfgtwtwUit305qS-HhDvb4du",
"category": "cloud-computing",
"subcategory": "aws",
"language": "hindi"
},
{
"name": "Google Cloud Platform",
"description": "Find guides, code samples, architectural diagrams, best practices, tutorials, API references, and more to learn how to build on Google Cloud.",
"url": "https://cloud.google.com/docs/",
"category": "cloud-computing",
"subcategory": "gcp"
},
{
"name": "IBM Cloud",
"description": "The IBM Cloud platform is composed of multiple components that work together to provide a consistent and dependable cloud experience.",
"url": "https://cloud.ibm.com/docs",
"category": "cloud-computing",
"subcategory": "ibm"
},
{
"name": "Oracle Cloud",
"description": "Looking for comprehensive documentation, tutorials, or videos so you can learn about Oracle Cloud Services? You can find all of these resources here in the Oracle Help Center.",
"url": "https://docs.oracle.com/en/cloud/get-started/index.html",
"category": "cloud-computing",
"subcategory": "oracle"
},
{
"name": "OCI certifications",
"description": "Accelerate your cloud journey along with free certification from Oracle",
"url": "https://education.oracle.com/home",
"category": "cloud-computing",
"subcategory": "oracle"
}
]
9 changes: 0 additions & 9 deletions database/cloud_computing_platforms/gcp.json

This file was deleted.

9 changes: 0 additions & 9 deletions database/cloud_computing_platforms/ibm.json

This file was deleted.

16 changes: 0 additions & 16 deletions database/cloud_computing_platforms/oracle.json

This file was deleted.

22 changes: 16 additions & 6 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,15 +304,25 @@ export const sidebarData: ISidebar[] = [
{
category: 'cloud-computing',
subcategory: [
{ name: 'google cloud', url: '/gcp', resources: DB.gcp },
{ name: 'google cloud', url: '/gcp', resources: DB.cloudplatforms },
{
name: 'AWS cloud',
url: '/aws',
resources: DB.aws,
},
{ name: 'Microsoft cloud', url: '/azure', resources: DB.azure },
{ name: 'Oracle cloud', url: '/oracle', resources: DB.oracle },
{ name: 'IBM cloud', url: '/ibm', resources: DB.ibm },
resources: DB.cloudplatforms,
},
{ name: 'Microsoft cloud', url: '/azure', resources: DB.cloudplatforms },
{ name: 'Oracle cloud', url: '/oracle', resources: DB.cloudplatforms },
{ name: 'IBM cloud', url: '/ibm', resources: DB.cloudplatforms },
{ name: 'Alibaba cloud', url: '/alibaba', resources: DB.cloudplatforms },
{ name: 'Strapi cloud', url: '/strapi', resources: DB.cloudplatforms },
{ name: 'F5 cloud', url: '/f5', resources: DB.cloudplatforms },
{ name: 'Cloud docs', url: '/clouddocs', resources: DB.cloudplatforms },
{ name: 'Grafana cloud', url: '/grafana', resources: DB.cloudplatforms },
{ name: 'Spring cloud', url: '/spring', resources: DB.cloudplatforms },
{ name: 'Intel cloud', url: '/intel', resources: DB.cloudplatforms },
{ name: 'Redis cloud', url: '/redis', resources: DB.cloudplatforms },
{ name: 'Meta cloud', url: '/meta', resources: DB.cloudplatforms },
{ name: 'VMWare cloud', url: '/vmware', resources: DB.cloudplatforms },
],
},
{
Expand Down
6 changes: 1 addition & 5 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,7 @@ export { default as android } from './mobile/android.json'
export { default as coursera } from './internet_of_things/coursera.json'
export { default as raspberrypi } from './internet_of_things/raspberrypi.json'
//cloud computing
export { default as gcp } from './cloud_computing_platforms/gcp.json'
export { default as aws } from './cloud_computing_platforms/aws.json'
export { default as azure } from './cloud_computing_platforms/azure.json'
export { default as oracle } from './cloud_computing_platforms/oracle.json'
export { default as ibm } from './cloud_computing_platforms/ibm.json'
export { default as cloudplatforms } from './cloud_computing_platforms/cloud_computing_platforms.json'
//cyber_security
export { default as offensive_security } from './cybersecurity/offensive_security.json'
export { default as defensive_security } from './cybersecurity/defensive_security.json'
Expand Down
Loading