-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1028 lines (974 loc) · 37.6 KB
/
index.html
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
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="en-us">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-6S57EJL09V"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-6S57EJL09V");
</script>
<meta charset="utf-8" />
<title>BarCamp Philly 14 | Saturday, November 18th, 2023</title>
<!-- seo meta details -->
<meta
name="description"
content="BarCamp Philly is an “unconference” – a day of programming collaboratively built by the people, for the people, being held in its 14th year in Philadelphia."
/>
<meta name="author" content="BarCamp Philly" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- humans attribution -->
<link type="text/plain" rel="author" href="humans.txt" />
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#fcb82f" />
<meta name="apple-mobile-web-app-title" content="BarCamp Philly 14" />
<meta name="application-name" content="BarCamp Philly 14" />
<meta name="msapplication-TileColor" content="#fcb82f" />
<meta name="theme-color" content="#fcb82f" />
<!-- styles -->
<link rel="stylesheet" href="styles/base.css" />
<link rel="stylesheet" href="styles/components.css" />
<link rel="stylesheet" href="styles/index.css" />
</head>
<body>
<main class="section">
<nav class="menu">
<a class="menu-item" href="#home">
<span class="menu-item-contents">Home</span>
</a>
<div class="menu-item-spacer"></div>
<a class="menu-item" href="#about">
<span class="menu-item-contents">About</span>
</a>
<div class="menu-item-spacer"></div>
<a class="menu-item" href="#location">
<span class="menu-item-contents">Location</span>
</a>
<div class="menu-item-spacer"></div>
<a class="menu-item" href="#schedule">
<span class="menu-item-contents">Schedule</span>
</a>
<div class="menu-item-spacer"></div>
<a class="menu-item" href="#sponsors">
<span class="menu-item-contents">Sponsors</span>
</a>
<div class="menu-item-spacer"></div>
<a class="menu-item" href="#organizers">
<span class="menu-item-contents">Organizers</span>
</a>
</nav>
<section class="section section--hero" id="home">
<div class="section-contents">
<a
href="https://barcamp-philly.ticketleap.com/barcamp-philly-14/dates/Nov-18-2023_at_0800AM"
target="_blank"
>
<button class="button section--hero--button-primary">
Get My BarCamp 14 Tickets!
</button>
</a>
</div>
</section>
<section class="section section--home">
<div class="section-contents section-contents--home">
<h1 class="heading-primary">BarCamp 14</h1>
<div class="heading-secondary">Saturday, November 18th</div>
<p class="text-body text-body--medium">
We're back baby! Join us for the fourteenth year of BarCamp Philly
for even more knowledge-sharing, community-building, and
connection-making than ever before. Share your thoughts, questions,
and experiences with your fellow BarCampers.
</p>
<div class="share-links share-links--home">
<a
class="button share-link"
href="https://linkedin.com/sharing/share-offsite/?url=http%3A%2F%2F2023.barcampphilly.org"
rel="noopener nofollow"
target="_blank"
>
<img
alt=""
class="share-link-icon"
src="images/icons/linkedin.svg"
/>
Share on LinkedIn
</a>
<a
class="button share-link"
href="https://twitter.com/intent/tweet?url=http%3A%2F%2F2023.barcampphilly.org"
rel="noopener nofollow"
target="_blank"
>
<img
alt=""
class="share-link-icon"
src="images/icons/twitter.svg"
/>
Share on Twitter
</a>
</div>
</div>
</section>
<section class="section section--inverted" id="about">
<div class="section-contents section-contents--about">
<h2 class="heading-primary">What is a BarCamp?</h2>
<p class="text-body text-body--medium">
BarCamp is an “unconference“ – a full day of 60 unique sessions, over
6 timeslots, in 10 rooms at Wharton's Huntsman Hall where attendees
build the schedule the morning of the event. Sessions are given on a
variety of topics, and the day is created collaboratively – built by
the people, for the people.
</p>
<h3 class="heading-secondary">How does it work?</h3>
<ul class="list-body">
<li>
If you want to give a talk or host a session, you can write out a
card with the talk name and details and hand it to a volunteer at
the board, who will schedule your time. Getting there close to
8:15am to post your talk means more options.
</li>
<li>
At 9:30, attendees and speakers alike will be able to vote by
placing a sticker on the card of a talk they want to attend. The
card with the most stickers will get a larger room with more seats
– no talk will be kicked off the board, however. Fewer votes just
means a smaller room for a more intimate conversation with the
audience.
</li>
<li>
At 10, we'll kick off the day with opening remarks, send everyone
on their way to the first session, and the board-building can
resume, with new talks being added throughout the morning. You can
come check out the board anytime, or access our digital schedule
on any device to see the latest and greatest talk times and rooms.
</li>
</ul>
<h3 class="heading-secondary">Can I give a talk?</h3>
<p class="text-body text-body--medium">
Of course! We encourage anyone interested in giving a talk to post
their topic on the board. But giving a talk – whether it's your
first year or your tenth – is not required. Most people are there to
listen, learn and discuss in sessions and don't necessarily lead a
session.
</p>
<h3 class="heading-secondary">What kind of talks?</h3>
<p class="text-body text-body--medium">
Topics vary from the technical (“WordPress Child Themes”) to the
inspiring (“Running: Not Just for the Zombie Apocalypse”). From
practiced talks (“Designing for People”) to open discussions (“Nerds
w/ Kids Roundtable”). Also, if you don't like the talk you're in,
use the “rule of two feet” to get up and go to a different talk.
</p>
</div>
</section>
<section class="map" id="map">
<div class="section-contents">
<div class="card card--map">
<p class="card-title">Jon M. Huntsman Hall</p>
<p>3730 Walnut Street,<br />Philadelphia, PA 19104</p>
<p>
<a
class="anchor-inline"
href="https://goo.gl/maps/uwd1XsRXiUKeUEy96"
target="_blank"
>Get Directions</a
>
</p>
</div>
</div>
</section>
<section class="section" id="location">
<div class="section-contents section-contents--location">
<h2 class="heading-primary">Location</h2>
<p class="text-body text-body--medium">
BarCamp Philly will be held in Jon M. Huntsman Hall at The Wharton
School of the University of Pennsylvania.
</p>
<div class="trifold">
<div class="trifold-fold">
<img
alt=""
class="trifold-icon"
src="images/transportation.svg"
/>
<h3 class="heading-secondary">Transit</h3>
<p class="text-body text-body--small">
For anyone riding a train or regional rail to 30th Street
Station, transfer to the Market-Frankford (BLUE) line West to
40th street, then walk 2 blocks south to Walnut, and 2 blocks
east to Huntsman Hall. You can also take any trolley (GREEN)
line (except the #10) and get off at 36th Street. Walk 1 block
south to Walnut and 1.5 blocks west to Huntsman.
</p>
</div>
<div class="trifold-fold">
<img alt="" class="trifold-icon" src="images/parking.svg" />
<h3 class="heading-secondary">Parking</h3>
<p class="text-body text-body--small">
Metered treet parking is normally available within a few blocks
of Huntsman Hall on Saturdays. There is metered parking along
Walnut Street and 38th Street. There are also several
<a href="https://facilities.upenn.edu/maps/parking" class="anchor-inline" target="_blank">
paid parking lots
</a> available on campus, including one
<a href="https://facilities.upenn.edu/maps/parking/parking-garage-walnut-38" class="anchor-inline" target="_blank">
at the corner of 38th & Walnut Street</a>,
directly across from the venue.
</p>
</div>
<div class="trifold-fold">
<img alt="" class="trifold-icon" src="images/sandwich.svg" />
<h3 class="heading-secondary">Sustenance</h3>
<p class="text-body text-body--small">
It is a BarCamp Philly tradition to have lunch around campus
with new friends! There are many places to eat nearby with a
large variety of foods.
<br><br>
We'll be updating the list below with more options!
</p>
</div>
</div>
</div>
</section>
<section class="section" id="lunch">
<div class="section-contents section-contents--lunch">
<h2 class="heading-primary">Lunch</h2>
<p class="text-body text-body--medium">
There are lots of food options nearby: find a spot to enjoy
lunch with new friends!
<a href="https://www.google.com/maps/d/u/0/edit?mid=1_ah4yuZdoh8Ze8hr2LM3WYSI_BDiODc&usp=sharing" class="anchor-inline" target="_blank">
See a map with lots of options here!
</a>
</p>
<div class="trifold">
<div class="trifold-fold">
<h3 class="heading-secondary">One Block</h3>
<ul>
<li class="text-body text-body--small">
Food Trucks, across Walnut St next to Pottruck Gym
</li>
<li class="text-body text-body--small">
Latao Hotpot, 3717 Chestnut St
</li>
<li class="text-body text-body--small">
Louie Louie, 3611 Walnut St
</li>
<li class="text-body text-body--small">
Honeygrow, 3731 Walnut St
</li>
</ul>
</div>
<div class="trifold-fold">
<h3 class="heading-secondary">Two Blocks</h3>
<ul>
<li class="text-body text-body--small">
Raising Cane's Chicken Fingers, 3925 Walnut St
</li>
<li class="text-body text-body--small">
Hummus Grill, 3931 Walnut St
</li>
<li class="text-body text-body--small">
Sweetgreen, 3925 Walnut St
</li>
<li class="text-body text-body--small">
&Pizza, 3925 Walnut St
</li>
</ul>
</div>
<div class="trifold-fold">
<h3 class="heading-secondary">Three Blocks</h3>
<ul>
<li class="text-body text-body--small">
Han Dynasty, 3711 Market St
</li>
<li class="text-body text-body--small">
Jane G's Dimsum House, 3939 Chestnut St
</li>
<li class="text-body text-body--small">
The White Dog, 3420 Sansom St
</li>
<li class="text-body text-body--small">
Greek Lady, 222 S. 40th St
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section section--register" id="register">
<a
href="https://barcamp-philly.ticketleap.com/barcamp-philly-14/dates/Nov-18-2023_at_0800AM"
target="_blank"
>
<button class="button section--register--button-primary">
Get My BarCamp 14 Tickets!
</button>
</a>
</section>
<section
class="section section--inverted section--efficiency"
id="efficiency"
>
<div class="section-contents section-contents--efficiency">
<h2 class="heading-primary">Efficiency</h2>
<p class="text-body">
BarCamp Philly is committed to wasting as little as possible. There
are two water filling stations by the restrooms to refill bottles.
We will provide compostable cups for those who do not have water
bottles. Help us save the planet.
</p>
</div>
</section>
<section class="section" id="schedule">
<div class="section-contents section-contents--schedule">
<h2 class="heading-primary">Schedule</h2>
<p class="text-body">
It's an action packed day that starts early, so get some sleep the
night before and we'll provide the caffeine to and inspiration for
the day!
</p>
<h3 class="heading-secondary heading-secondary--schedule">
Saturday November 18th
</h3>
<ol class="schedule">
<li class="schedule-item">
<h4 class="heading-tertiary heading-tertiary--schedule-item">
<div class="schedule-window">8:00am - 10:00am</div>
<div class="schedule-heading">
Registration and session building
</div>
</h4>
<p class="schedule-details">
Start your day by getting your T-shirt and badge. Swing by the
breakfast table for some coffee and eats. Head to the board to
post your talk! Or just mingle with your fellow BarCampers and
watch the board fill up.
<br />
Heads up: Get to Huntsman Hall early. Slots fill quickly.
</p>
</li>
<li class="schedule-item">
<h4 class="heading-tertiary heading-tertiary--schedule-item">
<div class="schedule-window">10:00am - 10:15am</div>
<div class="schedule-heading">Opening Remarks</div>
</h4>
<p class="schedule-details">
Learn what to expect before your first session
</p>
</li>
<li class="schedule-item">
<h4 class="heading-tertiary heading-tertiary--schedule-item">
<div class="schedule-window">10:15am - 1:00pm</div>
<div class="schedule-heading">
Morning Sessions (3 Time Slots)
</div>
</h4>
<div class="schedule-details">
<ul class="schedule-slots">
<li>10:15am – 11:00am</li>
<li>11:15am – 12:00pm</li>
<li>12:15pm – 1:00pm</li>
</ul>
<p>
Three sessions, 45 minutes on / 15 minutes off. Find your
favorite sessions. If you’re giving a talk, make sure to get
to the room early to test your A/V equipment.
</p>
</div>
</li>
<li class="schedule-item">
<h4 class="heading-tertiary heading-tertiary--schedule-item">
<div class="schedule-window">1:00pm - 2:15pm</div>
<div class="schedule-heading">Lunch</div>
</h4>
<p class="schedule-details">
Take a walk around University City, find
<a class="anchor-inline" href="#location">something good to eat</a>
(there’s plenty of it out there). Return in time for the
afternoon sessions.
</p>
</li>
<li class="schedule-item">
<h4 class="heading-tertiary heading-tertiary--schedule-item">
<div class="schedule-window">2:15pm - 5:00pm</div>
<div class="schedule-heading">
Afternoon Sessions (3 Time Slots)
</div>
</h4>
<div class="schedule-details">
<ul class="schedule-slots">
<li>2:15pm – 3:00pm</li>
<li>3:15pm – 4:00pm</li>
<li>4:15pm – 5:00pm</li>
</ul>
<p>
Three additional sessions in the afternoon. Snacks will be
available in the main hall, so don’t fear the afternoon food
crash.
</p>
</div>
</li>
<li class="schedule-item">
<h4 class="heading-tertiary heading-tertiary--schedule-item">
<div class="schedule-window">5:15pm - 5:45pm</div>
<div class="schedule-heading">Closing Remarks</div>
</h4>
<p class="schedule-details">
Who learned something new? Who met someone new? Who gave a talk
that hadn’t before? All questions that will be asked during
closing remarks.
</p>
</li>
<li class="schedule-item">
<h4 class="heading-tertiary heading-tertiary--schedule-item">
<div class="schedule-window">6:00pm - ?</div>
<div class="schedule-heading">Attendee Events</div>
</h4>
<p class="schedule-details">
After a day full of sessions, we'll allow time during final
remarks for attendees to present ideas for events. Whether
it is grabbing a drink at a local bar, going out to sing
karaoke, or taking a walk around campus, the ideas are up to
YOU.
</p>
</li>
</ol>
</div>
</section>
<section
class="section section--alternate section--sponsors"
id="sponsors"
>
<div class="section-contents section-contents--sponsors">
<h2 class="heading-primary">Sponsors</h2>
<p class="text-body">
The organizations below make BarCamp Philly 14 happen. We can’t
thank them enough. Be sure to show them some love if you see them
around.
</p>
</div>
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">Venue Sponsor</h3>
<a href="https://www.wharton.upenn.edu/" target="_blank">
<img
src="images/sponsors/wharton-100.png"
class="responsive"
alt="The Wharton School"
/>
</a>
</div>
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">Lead Sponsors</h3>
<a href="https://www.netapp.com/" target="_blank">
<img
src="images/sponsors/netapp-100.png"
class="responsive"
alt="NetApp"
/>
</a>
<a href="https://www.cdillc.com/" target="_blank">
<img
src="images/sponsors/cdi-100.png"
class="responsive"
alt="CDI"
/>
</a>
</div>
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">
Sugar Rush & Lanyard Sponsor
</h3>
<a href="https://www.sealworks.com" target="_blank">
<img
src="images/sponsors/sealworks-100.png"
class="responsive"
alt="SealWorks"
/>
</a>
</div>
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">
Caffeine Sponsor!
</h3>
<a href="https://www.salesforce.com" target="_blank">
<img
src="images/sponsors/salesforce-100.png"
class="responsive"
alt="Salesforce"
/>
</a>
</div>
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">
Media Sponsor & Ticket Sponsor
</h3>
<a href="https://technical.ly" target="_blank">
<img
src="images/sponsors/technically-100.png"
class="responsive"
alt="Technical.ly"
/>
</a>
<a href="https://www.ticketleap.com" target="_blank">
<img
src="images/sponsors/ticketleap-100.png"
class="responsive"
alt="TicketLeap"
/>
</a>
</div>
<!-- div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">Sticker Sponsor</h3>
</div -->
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">
Luchador Sponsors
</h3>
<a href="https://www.fastmail.com" target="_blank">
<img
src="images/sponsors/fastmail-100.png"
class="responsive"
alt="Fastmail"
/>
</a>
<a href="https://www.nationalgridus.com/" target="_blank">
<img
src="images/sponsors/national-grid-100.png"
class="responsive"
alt="National Grid"
/>
</a>
</div>
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">Giant Sponsors</h3>
<a href="https://moxielabs.co/" target="_blank">
<img
src="images/sponsors/moxie-labs-100.png"
class="responsive"
alt="Moxie Labs"
/>
</a>
</div>
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">Big Sponsors</h3>
<a href="https://johnsandtaylor.com" target="_blank">
<img
src="images/sponsors/johnsandtaylor-100.png"
class="responsive"
alt="Johns & Taylor"
/>
</a>
<a href="https://www.revsys.com" target="_blank">
<img
src="images/sponsors/revsys-100.png"
class="responsive"
alt="REVSYS"
/>
</a>
<a href="https://unveiledsecurity.com/" target="_blank">
<img
src="images/sponsors/unveiled-security-100.png"
class="responsive"
alt="Unveiled Security"
/>
</a>
</div>
<div class="sponsor-group">
<h3 class="heading-secondary sponsor-group-title">Solo Sponsors</h3>
<a href="https://arcwebtech.com" class="text-body--medium" target="_blank">Arcweb</a>
<br>
<a href="https://chariotsolutions.com" class="text-body--medium" target="_blank">Chariot Solutions</a>
</div>
</section>
<!-- section class="section" id="become-a-sponsor">
<div class="section-contents section-contents--become-a-sponsor">
<h2 class="heading-primary">Become a sponsor</h2>
<p class="text-body">
Sponsoring BarCamp Philly is one of the best opportunities to show
support of a long-standing diverse and inclusive local community,
focused on learning and collaboration. And connect with some of the
most driven, creative and talented professionals.
</p>
<div class="become-a-sponsor-buttons">
<a href="barcamp-philly-2023-prospectus.pdf">
<button class="button">Sponsorship Prospectus</button>
</a>
<a href="mailto:[email protected]">
<button class="button">Contact Us</button>
</a>
</div>
</div>
</section -->
<section class="section section--inverted" id="organizers">
<div class="section-contents section-contents--organizers">
<div class="organizers-left">
<h2 class="heading-primary">Organizers</h2>
<p>
Meet the crew that is helping to make BarCamp Philly happen! These
folks work together with our partners and sponsors to give you the
best BarCamp experience possible.
</p>
</div>
<ul class="organizers-right">
<li class="organizer">
<img
alt="Photo of Tim Allen"
class="organizer-photo"
src="images/organizers/tim-allen.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">Tim Allen</div>
<a
class="organizer-social"
href="https://pyphilly.org"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Globe icon"
class="organizer-social-icon"
src="images/icons/globe.svg"
/>
</a>
<a
class="organizer-social"
href="https://twitter.com/FlipperPA"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Twitter icon"
class="organizer-social-icon"
src="images/icons/twitter.svg"
/>
</a>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Joe Campbell"
class="organizer-photo"
src="images/organizers/joe-campbell.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">Joe Campbell</div>
</div>
</li>
<li class="organizer">
<img
alt="Photo of JM Conway"
class="organizer-photo"
src="images/organizers/jm-conway.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">JM Conway</div>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Bill Danbury"
class="organizer-photo"
src="images/organizers/bill-danbury.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">Bill Danbury</div>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Samira Gibson"
class="organizer-photo"
src="images/organizers/samira-gibson.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">Samira Gibson</div>
<a
class="organizer-social"
href="https://samiragibson.net"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Globe icon"
class="organizer-social-icon"
src="images/icons/globe.svg"
/>
</a>
<a
class="organizer-social"
href="https://instagram.com/kydkennedy"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Instagram icon"
class="organizer-social-icon"
src="images/icons/instagram.svg"
/>
</a>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Josh Goldberg"
class="organizer-photo"
src="images/organizers/josh-goldberg.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">Josh Goldberg</div>
<a
class="organizer-social"
href="https://joshuakgoldberg.com"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Globe icon"
class="organizer-social-icon"
src="images/icons/globe.svg"
/>
</a>
<a
class="organizer-social"
href="https://twitter.com/JoshuaKGoldberg"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Twitter icon"
class="organizer-social-icon"
src="images/icons/twitter.svg"
/>
</a>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Dane Hillard"
class="organizer-photo"
src="https://ca.slack-edge.com/T03EC6Y4U-U01379W70GN-898d62141056-512"
/>
<div class="organizer-details">
<div class="organizer-name">Dane Hillard</div>
<a
class="organizer-social"
href="https://dane.engineering/"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Globe icon"
class="organizer-social-icon"
src="images/icons/globe.svg"
/>
</a>
<a
class="organizer-social"
href="https://twitter.com/easyaspython"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Twitter icon"
class="organizer-social-icon"
src="images/icons/twitter.svg"
/>
</a>
</div>
</li>
<li class="organizer">
<img
alt="Photo of James Mason"
class="organizer-photo"
src="images/organizers/james-mason.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">James Mason</div>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Jessica Victor"
class="organizer-photo"
src="images/organizers/jessica-victor.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">Jessica Victor</div>
<a
class="organizer-social"
href="https://www.jessicavictor.com"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Globe icon"
class="organizer-social-icon"
src="images/icons/globe.svg"
/>
</a>
<a
class="organizer-social"
href="https://www.instagram.com/jvictorious_"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Instagram icon"
class="organizer-social-icon"
src="images/icons/instagram.svg"
/>
</a>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Antonio Vivas"
class="organizer-photo"
src="images/organizers/antonio-vivas.png"
/>
<div class="organizer-details">
<div class="organizer-name">Antonio Vivas</div>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Dawn Wages"
class="organizer-photo"
src="images/organizers/dawn-wages.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">Dawn Wages</div>
<a
class="organizer-social"
href="http://dawnwages.info"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Globe icon"
class="organizer-social-icon"
src="images/icons/globe.svg"
/>
</a>
<a
class="organizer-social"
href="https://twitter.com/DawnWagesSays"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Twitter icon"
class="organizer-social-icon"
src="images/icons/twitter.svg"
/>
</a>
</div>
</li>
<li class="organizer">
<img
alt="Photo of Harper Yatvin"
class="organizer-photo"
src="images/organizers/harper-yatvin.jpg"
/>
<div class="organizer-details">
<div class="organizer-name">Harper Yatvin</div>
<a
class="organizer-social"
href="https://www.behance.net/yatvin"
target="_blank"
rel="noopener nofollow"
>
<img
aria-label="Globe icon"
class="organizer-social-icon"
src="images/icons/globe.svg"
/>
</a>
<a
class="organizer-social"
harper-hatvin-behance
href="https://www.behance.net/yatvin"
href="https://www.instagram.com/harperyatvin"
target="_blank"
rel="noopener nofollow"
>
<img
harper-hatvin-behance
aria-label="Globe icon"
class="organizer-social-icon"
src="images/icons/globe.svg"
aria-label="Instagram icon"
class="organizer-social-icon"
src="images/icons/instagram.svg"
/>
</a>
</div>
</li>
</ul>
</div>
</section>
</main>
<footer class="footer">
<ul class="footer-links">
<li>
<a
href="https://www.facebook.com/barcampphilly/"
target="_blank"
rel="noopener nofollow"
>
<img
alt="Facebook icon"
src="images/social/facebook.svg"
class="footer-links__icon"
/></a>
</li>
<li>
<a
href="https://twitter.com/barcampphilly"
target="_blank"
rel="noopener nofollow"
>
<img
alt="Twitter icon"
src="images/social/twitter.svg"
class="footer-links__icon"
/></a>
</li>
<li>