Skip to content

Commit 3d248f2

Browse files
Add people and transcripts
1 parent de196ae commit 3d248f2

12 files changed

Lines changed: 8466 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ A list of your show's hosts and their info.
4747
hosts: [
4848
{
4949
name: 'RobbieTheWagner',
50-
bio: 'Huge Ember and Tailwind fanboy. I work at Amazon btw.',
50+
bio: 'Huge Ember and Tailwind fanboy. I used to work at Netflix btw.',
5151
img: '/src/img/people/robbiethewagner.jpg',
5252
github: 'https://github.com/RobbieTheWagner',
5353
twitter: 'https://twitter.com/RobbieTheWagner',

db/data/people-per-episode.ts

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,53 @@ import people from './people';
33
type PersonId = (typeof people)[number]['id'];
44

55
export default {
6+
// 209
7+
'is-cracker-barrel-a-js-framework': [
8+
{ id: 'robbiethewagner' },
9+
{ id: 'argyleink' }
10+
],
11+
// 208
12+
'dial-up-is-dead-long-live-adam-argyle': [
13+
{ id: 'robbiethewagner' },
14+
{ id: 'argyleink' }
15+
],
16+
// 207
17+
'will-frameworks-survive-web-development-in-an-ai-driven-world-w-typecraft-and-robert-jackson':
18+
[
19+
{ id: 'robbiethewagner' },
20+
{ id: 'chuckcarpenter' },
21+
{ id: 'typecraft', host: true },
22+
{ id: 'rwjblue' }
23+
],
24+
// 206
25+
'live-from-big-sky-dev-con-code-debates-content-insights-and-whats-next-for-web-development':
26+
[
27+
{ id: 'robbiethewagner' },
28+
{ id: 'aarondfrancis' },
29+
{ id: 'typecraft' },
30+
{ id: 'ken_wheeler' }
31+
],
32+
// 205
33+
'error-500-our-lives': [{ id: 'robbiethewagner' }, { id: 'chuckcarpenter' }],
34+
// 204
35+
'modern-web-dev-meets-2000s-flip-phone-what-could-go-wrong': [
36+
{ id: 'robbiethewagner' },
37+
{ id: 'chuckcarpenter' },
38+
{ id: 'tom_barrasso' }
39+
],
40+
// 203
41+
'from-the-rickhouse-tech-talk-social-media-use-and-netflix-with-the-primeagen':
42+
[
43+
{ id: 'robbiethewagner' },
44+
{ id: 'chuckcarpenter' },
45+
{ id: 'theprimeagen' }
46+
],
47+
// 202
48+
'from-the-rickhouse-why-svelte-might-just-outdo-react-w-rich-harris': [
49+
{ id: 'robbiethewagner' },
50+
{ id: 'chuckcarpenter' },
51+
{ id: 'rich_harris' }
52+
],
653
// 201
754
'from-faang-to-fired-the-illusion-of-stability-in-big-tech-w-adam-argyle': [
855
{ id: 'robbiethewagner' },
@@ -140,7 +187,7 @@ export default {
140187
'is-cereal-soup-the-fg-scale-and-js-vs-css-with-adam-argyle': [
141188
{ id: 'robbiethewagner' },
142189
{ id: 'chuckcarpenter' },
143-
{ id: 'argyleink' }
190+
{ id: 'argyleink', host: false }
144191
],
145192
// 177
146193
'authenticity-in-a-world-of-algorithms': [
@@ -209,7 +256,7 @@ export default {
209256
'front-end-adventures-with-bad-at-css-david-east-and-adam-argyle': [
210257
{ id: 'robbiethewagner' },
211258
{ id: 'chuckcarpenter' },
212-
{ id: 'argyleink' },
259+
{ id: 'argyleink', host: false },
213260
{ id: 'davideast' }
214261
],
215262
// 165

db/data/people.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ export const people = [
253253
name: 'ThePrimeagen',
254254
img: 'theprimeagen.jpg'
255255
},
256+
{ id: 'tom_barrasso', name: 'Tom Barrasso', img: 'tom_barrasso.jpg' },
256257
{
257258
id: 'typecraft_dev',
258259
name: 'Typecraft',

db/seed.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,11 @@ export default async function seed() {
5353
hostsOrGuestsToInsert.push({
5454
episodeSlug: episode.episodeSlug,
5555
isHost:
56-
person.id === 'chuckcarpenter' ||
57-
person.id === 'robbiethewagner' ||
58-
Boolean(person.host),
56+
person.host !== undefined
57+
? Boolean(person.host)
58+
: ['argyleink', 'chuckcarpenter', 'robbiethewagner'].includes(
59+
person.id
60+
),
5961
personId: person.id
6062
});
6163
}

0 commit comments

Comments
 (0)