parent
0998196593
commit
cd453e5ad0
285 changed files with 2299 additions and 158 deletions
File diff suppressed because it is too large
Load Diff
@ -1 +1,2 @@ |
||||
/// <reference types="astro/client" />
|
||||
/// <reference path="astro/content.d.ts" />
|
@ -0,0 +1,23 @@ |
||||
import { defineCollection, z } from 'astro:content'; |
||||
|
||||
export const authorCollection = defineCollection({ |
||||
type: 'content', |
||||
schema: z.object({ |
||||
name: z.string(), |
||||
imageUrl: z.string(), |
||||
employment: z |
||||
.object({ |
||||
title: z.string(), |
||||
company: z.string(), |
||||
}) |
||||
.optional(), |
||||
social: z |
||||
.object({ |
||||
linkedin: z.string().optional(), |
||||
twitter: z.string().optional(), |
||||
github: z.string().optional(), |
||||
website: z.string().optional(), |
||||
}) |
||||
.optional(), |
||||
}), |
||||
}); |
@ -0,0 +1,8 @@ |
||||
--- |
||||
name: 'Ebrahim Bharmal' |
||||
imageUrl: '/authors/ebrahimbharmal007.png' |
||||
social: |
||||
twitter: 'https://twitter.com/BharmalEbrahim' |
||||
--- |
||||
|
||||
Full-stack developer interested in all things web development. |
@ -0,0 +1,13 @@ |
||||
--- |
||||
name: 'Ekene Eze' |
||||
imageUrl: '/authors/ekene-eze.jpg' |
||||
employment: |
||||
title: 'Author' |
||||
company: 'roadmap.sh' |
||||
social: |
||||
linkedin: 'https://www.linkedin.com/in/ekeneeze/' |
||||
twitter: 'https://x.com/kenny_io' |
||||
website: 'https://kenny.engineer/' |
||||
--- |
||||
|
||||
Kenny is a Software Engineer and Developer Advocate with over 5 years experience working in DevRel across different functions. Recently as a Senior Developer Experience Engineer at Netlify and leading DevRel teams in others. |
@ -0,0 +1,11 @@ |
||||
--- |
||||
name: 'Fernando Doglio' |
||||
imageUrl: '/authors/fernando.jpeg' |
||||
social: |
||||
twitter: 'https://twitter.com/deleteman123' |
||||
linkedin: 'https://www.linkedin.com/in/fernandodoglio' |
||||
--- |
||||
|
||||
With two decades of experience in Software Development, Fernando Doglio excels in diverse languages like Ruby, Perl, PHP, Python, and JavaScript. He's led teams in crafting scalable architectures for both in-house and cloud infrastructures. |
||||
|
||||
An author of 8 technical books and over 250 articles, Fernando's current role as a Dev Advocate allows him to blend his passion for coding with content creation, enhancing developer experiences with products through engaging outreach. |
@ -0,0 +1,9 @@ |
||||
--- |
||||
name: 'Jesse Li' |
||||
imageUrl: '/authors/jesse.png' |
||||
social: |
||||
twitter: 'https://twitter.com/__jesse_li' |
||||
github: 'https://github.com/veggiedefender' |
||||
--- |
||||
|
||||
Jesse has made several [interesting open-source projects](https://github.com/veggiedefender) and wrote some interesting [articles on his blog](https://blog.jse.li/) including the one he wrote on roadmap.sh. |
@ -0,0 +1,16 @@ |
||||
--- |
||||
name: 'Kamran Ahmed' |
||||
imageUrl: '/authors/kamran.jpeg' |
||||
employment: |
||||
title: 'Founder' |
||||
company: 'roadmap.sh' |
||||
social: |
||||
linkedin: 'https://www.linkedin.com/in/kamrify' |
||||
twitter: 'https://twitter.com/kamrify' |
||||
github: 'https://github.com/kamranahmedse' |
||||
website: 'https://kamranahmed.info' |
||||
--- |
||||
|
||||
Kamran is the founder of **roadmap.sh**. He has a decade long experience working mostly with startups and scale-ups. Over the years, he has worked with a variety of technologies in a variety of domains and have worn several different hats. He is working full time on roadmap.sh at the moment. |
||||
|
||||
He is also a Google Developer Expert and a GitHub Star. He is a huge proponent of open-source, and has authored several popular open-source projects. He is [the second most starred developer](https://twitter.com/kamrify/status/1750345095587754382) on GitHub globally. |
@ -0,0 +1,9 @@ |
||||
--- |
||||
name: 'Peter Thaleikis' |
||||
imageUrl: '/authors/peter-thaleikis.png' |
||||
social: |
||||
twitter: 'https://twitter.com/spekulatius1984' |
||||
website: 'https://peterthaleikis.com/' |
||||
--- |
||||
|
||||
Peter Thaleikis a software engineer and business owner. He has been developing web applications since around 2000. Before he started his own software development company [Bring Your Own Ideas Ltd.](https://bringyourownideas.com/), he has been a Lead Developer for multiple organizations. |
@ -0,0 +1,12 @@ |
||||
--- |
||||
name: 'William Imoh' |
||||
imageUrl: '/authors/william-imoh.jpg' |
||||
employment: |
||||
title: 'Author' |
||||
company: 'roadmap.sh' |
||||
social: |
||||
linkedin: 'https://www.linkedin.com/in/william-imoh/' |
||||
twitter: 'https://x.com/iChuloo' |
||||
--- |
||||
|
||||
William is a Software Engineer, Developer Advocate and Product Manager turned Entrepreneur. He leads the team at **Hackmamba** and occasionally talks about building performant web experiences. |
@ -0,0 +1,9 @@ |
||||
import { authorCollection } from './author'; |
||||
import { guideCollection } from './guide'; |
||||
import { questionGroupCollection } from './question-group'; |
||||
|
||||
export const collections = { |
||||
authors: authorCollection, |
||||
guides: guideCollection, |
||||
'question-groups': questionGroupCollection, |
||||
}; |
@ -0,0 +1,25 @@ |
||||
import { defineCollection, z } from 'astro:content'; |
||||
|
||||
export const guideCollection = defineCollection({ |
||||
type: 'content', |
||||
schema: z.object({ |
||||
title: z.string(), |
||||
description: z.string(), |
||||
authorId: z.string(), |
||||
canonicalUrl: z.string().optional(), |
||||
excludedBySlug: z.string().optional(), |
||||
seo: z.object({ |
||||
title: z.string(), |
||||
description: z.string(), |
||||
ogImageUrl: z.string().optional(), |
||||
}), |
||||
isNew: z.boolean(), |
||||
type: z.enum(['visual', 'textual']), |
||||
date: z.date(), |
||||
sitemap: z.object({ |
||||
priority: z.number(), |
||||
changefreq: z.enum(['daily', 'weekly', 'monthly', 'yearly']), |
||||
}), |
||||
tags: z.array(z.string()).optional(), |
||||
}), |
||||
}); |
@ -0,0 +1,32 @@ |
||||
import { defineCollection, z } from 'astro:content'; |
||||
|
||||
export const questionGroupCollection = defineCollection({ |
||||
type: 'content', |
||||
schema: z.object({ |
||||
order: z.number(), |
||||
briefTitle: z.string(), |
||||
briefDescription: z.string(), |
||||
title: z.string(), |
||||
description: z.string(), |
||||
isNew: z.boolean(), |
||||
authorId: z.string().optional(), |
||||
date: z.string().optional(), |
||||
seo: z.object({ |
||||
title: z.string(), |
||||
description: z.string(), |
||||
ogImageUrl: z.string().optional(), |
||||
keywords: z.array(z.string()), |
||||
}), |
||||
sitemap: z.object({ |
||||
priority: z.number(), |
||||
changefreq: z.string(), |
||||
}), |
||||
questions: z.array( |
||||
z.object({ |
||||
question: z.string(), |
||||
answer: z.string(), |
||||
topics: z.array(z.string()), |
||||
}), |
||||
), |
||||
}), |
||||
}); |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue