-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexperience.html
More file actions
759 lines (759 loc) · 27.2 KB
/
Copy pathexperience.html
File metadata and controls
759 lines (759 loc) · 27.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Experience - Musical Web Dev</title>
<meta
name="description"
content="Brittany Walker is a developer advocate based in Washington, DC"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:url" content="https://musicalwebdev.com" />
<meta property="og:title" content="Musical Web Dev | Brittany Walker" />
<meta
property="og:description"
content="Brittany Walker is a developer advocate based in Washington, DC"
/>
<meta
property="og:image"
content="https://musicalwebdev.com/imgs/twitter-share.png"
/>
<meta property="og:image:height" content="600" />
<meta property="og:image:width" content="1200" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" sizes="96x96" href="favicon.png" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Inconsolata:400,700"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/experience.css" />
</head>
<body id="body" class="experience">
<section class="hero">
<section class="side-header">
<div class="me">
<h3><a href="https://musicalwebdev.com">brittany walker</a></h3>
<p>developer advocate</p>
</div>
</section>
<section class="hero-playbill">
<section class="marquee">
<div class="lyrics">
<span
>i am not throwing away my shot <i class="fas fa-music"></i
></span>
<span>
all we see is sky for forever, we let the world pass by for
forever <i class="fas fa-music"></i
></span>
<span>
stare down the odds and seize the day <i class="fas fa-music"></i
></span>
<span> i miss the mountains <i class="fas fa-music"></i></span>
<span>
what would i do if i had not met you? <i class="fas fa-music"></i
></span>
<span>
but most of all, i'm thankful for lovin' who i really am
<i class="fas fa-music"></i
></span>
<span>
they say we are asleep until we fall in love, we are children of
dust and ashes <i class="fas fa-music"></i
></span>
<span> telephone wire, long black line</span>
</div>
</section>
<section class="playbill-container">
<div class="playbill">
<header>
<h2>Playbill</h2>
<h3>The World Wide Web</h3>
</header>
<div class="playbill-content">
<h1>Musical Web Dev</h1>
</div>
<div class="terminal">
<div class="terminal-content">
<ul>
<li>~<i class="fas fa-music"></i> cd Sites</li>
<li>~/Sites <i class="fas fa-music"></i> mkdir musicals</li>
<li>~/Sites <i class="fas fa-music"></i> cd musicals</li>
<li>
~/Sites/musicals <i class="fas fa-music"></i> touch songs.js
</li>
<li>
~/Sites/musicals <i class="fas fa-music"></i> <span></span>
</li>
</ul>
</div>
</div>
</div>
</section>
</section>
<section class="main-navigation">
<header>
<h2>content</h2>
</header>
<nav>
<ul>
<li><a href="/experience#workshops">workshops</a></li>
<li><a href="/experience#talks">talks</a></li>
<li><a href="/experience#writing">writing</a></li>
<li><a href="/experience#videos">videos</a></li>
<li><a href="/experience#projects">projects</a></li>
<li><a href="/experience#other">other</a></li>
<li><a href="/">home</a></li>
</ul>
</nav>
</section>
</section>
<section class="projects projects-musicals" id="workshops">
<section class="project-container">
<h2>Workshops</h2>
<div class="projects-wrapper">
<div class="project">
<div class="playbill">
<header>
<h3>Create your Dream Portfolio</h3>
<p>Codebar</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<img src="/imgs/codebar.jpg" />
</div>
</div>
<div class="playbill-links">
<a
href="https://www.youtube.com/watch?v=cLXClnuxrbA"
target="_blank"
>Youtube</a
>
<a href="https://docs.google.com/presentation/d/1M5lv3O-LHMJtWAh0BbRNdaUgoWTLO06xLjifZzMPyi0/edit?usp=sharing" target="_blank"
>Slides</a
>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Musical Intro to Contentful</h3>
<p>RenderATL</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<img src="/imgs/musicalintroworkshop.png" />
</div>
</div>
<div class="playbill-links">
<a href="https://github.com/brittanyrw/year-in-music-2024" target="_blank"
>GitHub</a
>
<a
href="https://docs.google.com/presentation/d/1ItjxX-3fvLxtb5tD3Q1yAusrX6w_xB1kKskWYtiDLso/edit?usp=sharing
"
target="_blank"
>Slides</a
>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Intro to Git & GitHub Workshop</h3>
<p>Various DC meetups</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<img src="/imgs/gitworkshop.png" />
</div>
</div>
<div class="playbill-links">
<a href="https://github.com/brittanyrw/git" target="_blank"
>GitHub</a
>
<a
href="https://docs.google.com/presentation/d/12vEMSEoO95UNabwHH7Hi7sbKTEHXRTj2KaEmXTiMwyg/edit?usp=sharing
"
target="_blank"
>Slides</a
>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="projects projects-teaching" id="talks">
<section class="project-container">
<h2>Talks & Podcasts</h2>
<div class="projects-wrapper">
<div class="project">
<div class="playbill">
<header>
<h3>Mixing DevRel and Community</h3>
<p>Certified Fresh Events</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<img src="/imgs/cfe.jpg" />
<div class="playbill-links">
<a
href="https://www.youtube.com/watch?v=qc7Cx7nBITA"
target="_blank"
>Youtube</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>EmojiScreen and Hacktoberfest</h3>
<p>GitHub Education</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<img src="/imgs/github.png" />
<div class="playbill-links">
<a
href="https://www.twitch.tv/videos/1944147198"
target="_blank"
>Twitch</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Women of Jamstack podcast</h3>
<p>CodingCatDev</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<img src="/imgs/jamstack.png" />
<div class="playbill-links">
<a
href="https://www.youtube.com/watch?v=NoxddRpApOs"
target="_blank"
>Youtube</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Contentful - A Headless CMS</h3>
<p>VueJS Forge</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<img src="/imgs/vuejsforge.png" />
<div class="playbill-links">
<a
href="https://www.youtube.com/watch?v=oeD7ig8bzHU"
target="_blank"
>Youtube</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Engineering at Contentful</h3>
<p>Contentful</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<img src="/imgs/engineering.png" />
<div class="playbill-links">
<a
href="https://www.youtube.com/watch?v=m3lk7QUcB5Q"
target="_blank"
>Youtube</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="projects projects-workshops" id="writing">
<div class="workshops-content">
<h2>Writing</h2>
<div class="workshops-blocks">
<div class="content-block">
<header>
<h3>Developer Relations</h3>
<h4>Blog Posts</h4>
</header>
<div class="workshops-description">
<p>Collection of blog posts and articles.</p>
<ul>
<li>
<span>Contentful:</span>Monthly Developer Newsletter
(2021-2025)
<p>
examples:
<a href="/imgs/nov-dev-newsletter.pdf" target="_blank"
>one</a
>
<a href="/imgs/sep-dev-newsletter.pdf" target="_blank"
>two</a
>
<a
href="https://www.contentful.com/blog/dev-newsletter-january-2023/"
target="_blank"
>three</a
>
</p>
</li>
<li>
<a
href="https://www.contentful.com/blog/graphql-tools-for-getting-started-with-contentful/"
target="_blank"
><span>Contentful:</span>GraphQL tools for getting started
with Contentful</a
>
</li>
<li>
<a
href="https://dev.to/musicalwebdev/how-to-build-a-project-using-vue-js-and-contentful-29gg"
target="_blank"
><span>Contentful:</span>How to build a project using Vue.js
and Contentful</a
>
</li>
<li>
<a
href="https://dev.to/contentful/i-joined-the-contentful-developer-relations-team-3ne6"
target="_blank"
><span>Contentful:</span>I Joined the Contentful Developer
Relations Team</a
>
</li>
</ul>
</div>
</div>
<div class="content-block">
<header>
<h3>Other</h3>
<h4>Blog Posts & More</h4>
</header>
<div class="workshops-description">
<ul>
<li>
<a
href="https://powertofly.com/up/the-art-of-public-speaking"
target="_blank"
><span>Power to Fly:</span>Master the art of public speaking
(2024)</a
>
</li>
<li>
<a href="https://medium.com/@brittanyrw" target="_blank"
><span>Medium:</span>100 Days of Code (2017)</a
>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="projects projects-logs" id="videos">
<section class="project-container">
<h2>Videos</h2>
<div class="projects-wrapper">
<div class="project">
<div class="playbill">
<header>
<h3>Vue Starter Project</h3>
<p>Contentful</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<video controls width="100%">
<source src="/imgs/vue-starter.mp4" type="video/mp4" />
</div>
</div>
<div class="playbill-links">
<a href="https://www.contentful.com/vue-starter/" target="_blank"
>website</a
>
<a
href="https://github.com/contentful/starter-vue-tracker"
target="_blank"
>Code</a
>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Marketing Template</h3>
<p>Contentful</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<video controls width="100%">
<source
src="/imgs/startertemplate-marketing.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="playbill-links">
<a href="https://www.contentful.com/starter-templates/" target="_blank"
>website</a
>
</div>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Next.js Starter</h3>
<p>Contentful</p>
</header>
<div class="playbill-content">
<div class="terminal">
<div class="terminal-content">
<video controls width="100%">
<source src="/imgs/contentful-nextjs.mp4" type="video/mp4" />
</video>
</div>
</div>
<div class="playbill-links">
<a href="https://www.contentful.com/nextjs-starter/" target="_blank"
>website</a
>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="projects projects-teaching" id="projects">
<section class="project-container">
<h2>Teaching Projects</h2>
<div class="projects-wrapper">
<div class="project">
<div class="playbill">
<header>
<h3>Final Frontier Arts</h3>
<p>Learn via Scavenger Hunt</p>
</header>
<div class="playbill-content">
<div class="terminal">
<img src="imgs/finalfrontier.png" />
<div class="terminal-content">
<p>
A space-themed interactive scavenger hunt for learning Contentful.
</p>
<ul>
<li>Next.js, Typescript, Contentful.</li>
</ul>
</div>
</div>
<div class="playbill-links">
<a href="https://github.com/brittanyrw/final-frontier-arts" target="_blank">Info & Code</a>
<a
href="https://final-frontier-arts.vercel.app/"
target="_blank"
>Demo</a
>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>EmojiScreen</h3>
<p>Open Source Project</p>
</header>
<div class="playbill-content">
<div class="terminal">
<img src="imgs/emojiscreen.png" />
<div class="terminal-content">
<p>
EmojiScreen is a listing of movies, TV shows and musicals
depicted through emojis.
</p>
<ul>
<li>Open source, Git/Github teaching tool.</li>
</ul>
</div>
</div>
<div class="playbill-links">
<a href="https://emojiscreen.com/" target="_blank">Website</a>
<a
href="https://github.com/brittanyrw/emojiscreen"
target="_blank"
>Code</a
>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Year in Music</h3>
<p>Workshop Project</p>
</header>
<div class="playbill-content">
<div class="terminal">
<img src="imgs/yearinmusic.png" />
<div class="terminal-content">
<p>
Learn Contentful building a music themed project (live workshop).
</p>
<ul>
<li>Built with Contentful and Next.js.</li>
</ul>
</div>
</div>
<div class="playbill-links">
<a href="https://year-in-music-2024.vercel.app/" target="_blank">Website</a>
<a
href="https://github.com/brittanyrw/year-in-music-2024"
target="_blank"
>Code</a
>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>Plant Tracker</h3>
<p>Contentful Starter Project</p>
</header>
<div class="playbill-content">
<div class="terminal">
<img src="imgs/vuestarter.png" />
<div class="terminal-content">
<p>
A in-depth tutorial on how to create a simple house plant tracker with Contentful and Vue.js.
</p>
</div>
</div>
<div class="playbill-links">
<a href="https://vue-plant-tracker.vercel.app/" target="_blank">Website</a>
<a
href="https://github.com/contentful/starter-vue-tracker"
target="_blank"
>Code</a
>
</div>
</div>
</div>
</div>
<div class="project">
<div class="playbill">
<header>
<h3>What the CSS?!</h3>
<p>Web Development Course</p>
</header>
<div class="playbill-content">
<div class="terminal">
<img src="imgs/whatthecss.png" />
<div class="terminal-content">
<p>
What the CSS?! is a 30 day course that teaches the
fundamentals of CSS via daily challenges and quirky
exercises.
</p>
</div>
</div>
<div class="playbill-links">
<a href="https://whatthecss.com" target="_blank">Website</a>
<a
href="https://github.com/WhatTheCSS/WhatTheCSS"
target="_blank"
>Code</a
>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="projects projects-workshops" id="other">
<div class="workshops-content">
<h2>Other</h2>
<div class="workshops-blocks">
<div class="content-block">
<header>
<h3>Thinkful Workshops</h3>
<h4>Past Lead DC Instructor</h4>
</header>
<div class="workshops-description">
<p>
Taught <span>free</span> front-end web development workshops for
2+ years weekly on various topics including:
</p>
<ul>
<li>Intro to HTML/CSS</li>
<li>JS Fundamentals</li>
<li>Build a Game with JS</li>
<li>Git & Github</li>
<li>Build a Pet with JS</li>
<li>Intro to ES6</li>
</ul>
</div>
</div>
<div class="content-block">
<header>
<h3>Other</h3>
<h4>Webinars & Other Content</h4>
</header>
<div class="workshops-description">
<ul>
<li>
<a href="/imgs/graphql-cheat-sheet.pdf" target="_blank"><span>Contentful:</span>GraphQL Cheet Sheet</a>
</li>
<li>
<a
href="https://www.contentful.com/resources/building-an-ecommerce-front-end-with-algolia-and-contentful/"
target="_blank"
><span>Contentful:</span>Building an ecommerce front-end
with Algolia and Contentful</a
>
</li>
<li>
<a
href="https://www.contentful.com/resources/accelerate-site-speed-with-contentful-vercel/"
target="_blank"
><span>Contentful:</span>Accelerate site speed with
Contentful and Vercel</a
>
</li>
<li>
<a
href="https://github.com/brittanyrw/Build-a-Game-With-JavaScript"
><span>Tech Ladies Hackathon:</span>Build a Game with JavaScript Workshop</a
>
</li>
</ul>
</div>
</div>
<div class="content-block">
<header>
<h3>Women Who Code DC</h3>
<h4>Front-End Lead</h4>
</header>
<div class="workshops-description">
<div class="content-wrapper">
<p>
Worked in a team of five to host and teach
<span>two front-end web development meetups per month</span>
in the DC area.
</p>
</div>
<h4>Workshops created by me</h4>
<ul>
<li>
<span>2020:</span>Intro to Git & GitHub: Make Your First Pull
Request
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="about" id="about">
<div class="about-content">
<h2>about me</h2>
<p>
Brittany Walker is a software engineer, instructor and musical theater
fan.
</p>
<p>
She is very involved in the DC tech community As a Front End Lead for
Women Who Code DC and was an Instructor for a free weekly coding
workshop for Thinkful.
</p>
<div class="social-media-links">
<ul>
<li>
<a
href="https://github.com/brittanyrw"
aria-label="Go to Brittany's Github profile"
target="_blank"
><i class="fab fa-github-alt" aria-hidden="true"></i
></a>
</li>
<li>
<a
href="https://codepen.io/trekkiegirl/"
aria-label="Go to Brittany's Codepen profile"
target="_blank"
><i class="fab fa-codepen" aria-hidden="true"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/brittanyrwalker/"
aria-label="Go to Brittany's LinkedIn profile"
target="_blank"
><i class="fab fa-linkedin-in" aria-hidden="true"></i
></a>
</li>
</ul>
</div>
</div>
</section>
</body>
</html>