-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1688 lines (1602 loc) · 90.4 KB
/
index.html
File metadata and controls
1688 lines (1602 loc) · 90.4 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
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 lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>PuPPy Annual Benefit</title>
<link rel="shortcut icon" href="http://http://bdfl-gift.pspython.com/assets/img/favicon_4x.ico" type="image/x-icon" />
<!-- Essential META Tags -->
<meta property="og:title" content="PuPPy Annual Benefit" />
<meta property="og:description" content="A historic discussion of language creators about the past and future of language design" />
<meta property="og:image" content="http://http://bdfl-gift.pspython.com//assets/img/logo.png" />
<meta property="og:url" content="http://http://bdfl-gift.pspython.com//index.html" />
<meta name="twitter:card" content="http://http://bdfl-gift.pspython.com//assets/img/about/img3.jpg" />
<!-- Non-Essential, But Recommended -->
<meta property="og:site_name" content="PuPPy Annual Benefit" />
<meta name="twitter:image:alt" content="PuPPy Seattle Programmers Group" />
<!-- Non-Essential, But Required for Analytics -->
<meta property="fb:app_id" content="your_app_id" / />
<meta name="twitter:site" content="https://twitter.com/ulysseas?lang=en" />
<link rel="shortcut icon" type="image/png" href="assets/img/favicon.ico"/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" >
<!-- Icon -->
<link rel="stylesheet" type="text/css" href="assets/fonts/line-icons.css">
<!-- Slicknav -->
<link rel="stylesheet" type="text/css" href="assets/css/slicknav.css">
<!-- Nivo Lightbox -->
<link rel="stylesheet" type="text/css" href="assets/css/nivo-lightbox.css" >
<!-- Animate -->
<link rel="stylesheet" type="text/css" href="assets/css/animate.css">
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<!-- Custom added CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/custom.css">
</head>
<body>
<!--James Gosling Start-->
<div class="modal" id="myModal-1">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<!-- <h4 class="modal-title">James Gosling</h4> -->
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-4 col-lg-3 col-12">
<div class="model-photo">
<img src="assets/img/team/team-01.jpg" alt="" />
</div>
<!-- <ul class="modal-social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul> -->
</div>
<div class="col-md-8 col-lg-9 col-12">
<div class="speaker_meta">
<h4 class="modal-title">James Gosling</h4>
<!-- <div class="speaker_designation">Developed Java at Sun Microsystems</div> -->
<!-- <p> Ph.D. from Carnegie Mellon University <br />
B.S. from University of Calgary
</p> -->
</div>
<p>
James A. Gosling, O.C., Ph.D. (born May 19, 1955, near Calgary, Alberta, Canada) is a famous software developer, best known as the father of the Java programming language.
</p>
<p>
In 1977, James Gosling received a B.Sc in Computer Science from the University of Calgary. In 1983, he earned a Ph.D. in Computer Science from Carnegie Mellon University, and his doctoral thesis was titled "The Algebraic Manipulation of Constraints". While working towards his doctorate, he wrote a version of emacs (gosmacs), and before joining Sun Microsystems he built a multi-processor version of Unix[1] while at Carnegie Mellon University, as well as several compilers and mail systems.
</p>
<p>
Since 1984, Gosling has been with Sun Microsystems and is generally known best as the founder of the Java programming language.
</p>
<p>
He is generally credited as the inventor of the Java programming language in 1991. He did the original design of Java and implemented its original compiler and virtual machine. For this achievement, he was elected to the United States National Academy of Engineering. He has also made major contributions to several other software systems, such as NeWS and Gosling Emacs. He also co-wrote the "bundle" program, a utility thoroughly detailed in Brian Kernighan and Rob Pike's book, "The Unix Programming Environment".
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--James Gosling End-->
<!--Anders Hejlsberg Start-->
<div class="modal" id="myModal-2">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<!-- <h4 class="modal-title">Anders Hejlsberg</h4> -->
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-4 col-lg-3 col-12">
<div class="model-photo">
<img src="assets/img/team/Anders-Hejlsberg.jpg" alt="" />
</div>
<!-- <ul class="modal-social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul> -->
</div>
<div class="col-md-8 col-lg-9 col-12">
<div class="speaker_meta">
<h4 class="modal-title">Anders Hejlsberg</h4>
<!-- <div class="speaker_designation">Developed Java at Sun Microsystems</div> -->
<!-- <p> Ph.D. from Carnegie Mellon University <br />
B.S. from University of Calgary
</p> -->
</div>
<p>
Anders Hejlsberg is a Microsoft Technical Fellow and has been designing and implementing programming languages and development tools for over 35 years. Anders is the lead architect of the TypeScript open-source project and the original designer of the C# programming language. Before joining Microsoft in 1996, Anders was a Principal Engineer at Borland International. As one of the first employees of Borland, he was the original author of Turbo Pascal and later worked as the Chief Architect of the Delphi product line. Anders studied Engineering at the Technical University of Denmark.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Anders Hejlsberg End-->
<!--Larry Wall Start-->
<div class="modal" id="myModal-3">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<!-- <h4 class="modal-title">Larry Wall</h4> -->
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-4 col-lg-3 col-12">
<div class="model-photo">
<img src="assets/img/team/Larry-Wall.jpg" alt="" />
</div>
<!-- <ul class="modal-social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul> -->
</div>
<div class="col-md-8 col-lg-9 col-12">
<div class="speaker_meta">
<h4 class="modal-title">Larry Wall</h4>
<!-- <div class="speaker_designation">Developed Java at Sun Microsystems</div> -->
<!-- <p> Ph.D. from Carnegie Mellon University <br />
B.S. from University of Calgary
</p> -->
</div>
<p>
Larry Wall was educated at various places including the Cornish School of Music,
the Seattle Youth Symphony, Seattle Pacific University, Multnomah School of the Bible,
SIL International, U.C. Berkeley, and UCLA. Though trained primarily in music,
chemistry, and linguistics, Larry has been working with computers for the last 40 years
or so. He is most famous for writing rn, patch, and the Perl programming language, but
prefers to think of himself as a cultural hacker whose vocation in life is to bring a
bit of joy into the dreary existence of programmers. For various definitions of
“work for”, Larry has worked for Seattle Pacific, MusiComedy Northwest,
System Development Corporation, Burroughs, Unisys, the NSA, Telos, ConTel, GTE, JPL,
NetLabs, Seagate, Tim O’Reilly, the Perl Foundation, Broadcom, and himself.
He is currently serving as Artist in Residence for craigslist.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Larry Wall End-->
<!--Guido van Rossum Start-->
<div class="modal" id="myModal-4">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<!-- <h4 class="modal-title">Guido van Rossum</h4> -->
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-4 col-lg-3 col-12">
<div class="model-photo">
<img src="assets/img/team/Guido-vanRossum.jpg" alt="" />
</div>
<!-- <ul class="modal-social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul> -->
</div>
<div class="col-md-8 col-lg-9 col-12">
<div class="speaker_meta">
<h4 class="modal-title">Guido van Rossum</h4>
<!-- <div class="speaker_designation">Developed Java at Sun Microsystems</div> -->
<!-- <p> Ph.D. from Carnegie Mellon University <br />
B.S. from University of Calgary
</p> -->
</div>
<p>
Guido van Rossum is the creator of Python, one of the major programming languages on and off the web. Recently Guido retired as Benevolent Dictator For Life (“BDFL”) of Python, a title seemingly stolen from a Monty Python skit. Details of his decision were featured in an Economist article. Guido thankfully has joined the Python Steering Committee. This five-person group will give guidance to the future roadmap of the Python programming language.
</p>
<p>
Van Rossum moved from the Netherlands to the USA, in 1995. He met his wife after his move. Until July 2003 they lived in the northern Virginia suburbs of Washington, DC with their son Orlijn. Their son was born in 2001. They then moved to Silicon Valley where Guido worked for a variety of companies including Google in the past and currently at Dropbox (spending 50% of his time on Python!).
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Guido van Rossum End-->
<!--Ruthe Farmer Start-->
<div class="modal" id="myModal-5">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<!-- <h4 class="modal-title">Ruthe Farmer</h4> -->
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-4 col-lg-3 col-12">
<div class="model-photo">
<img src="assets/img/speaker/ruthe-farmer.png" alt="" />
</div>
<!-- <ul class="modal-social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul> -->
</div>
<div class="col-md-8 col-lg-9 col-12">
<div class="speaker_meta">
<h4 class="modal-title">Ruthe Farmer</h4>
<!-- <div class="speaker_designation">Developed Java at Sun Microsystems</div> -->
<!-- <p> Ph.D. from Carnegie Mellon University <br />
B.S. from University of Calgary
</p> -->
</div>
<p>
Ruthe Farmer has focused her efforts on diversity and inclusion in tech and engineering
since 2001 and is currently Chief Evangelist for CSforALL. She served as Senior Policy
Advisor for Tech Inclusion at the White House Office of Science & Technology Policy
focusing on President Obama’s call to action for Computer Science for All, and
previously served as Chief Strategy & Growth Officer and K-12 Alliance Director at the
National Center for Women & Information Technology (NCWIT). Over the course of her
career, Ms. Farmer has launched and scaled up multiple national programs including
Aspirations in Computing the TECHNOLOchicas campaign for Latinas, AspireIT outreach
program, Intel Design & Discovery, Lego Robotics for Girl Scouts and more. She served
as the 2012 Chair of Computer Science Education Week, was named a White House Champion
of Change for Technology Inclusion in 2013, received the Anita Borg Institute Award for
Social Impact in 2014, and the Education UK Alumni Award for Social Impact in 2015.
She is a guest contributor for Techcrunch, Amy Poehler’s Smart Girls, the Shriver Report,
and the Huffington Post, and has been featured in Forbes and TechRepublic for her work.
Ruthe holds a BA from Lewis & Clark College and an MBA in Social Entrepreneurship from
the University of Oxford Said Business School and is passionate about integrating
innovative business strategies into social change efforts.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Ruthe Farmer End-->
<!--Carol Willing Start-->
<div class="modal" id="myModal-6">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<!-- <h4 class="modal-title">Carol Willing</h4> -->
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-4 col-lg-3 col-12">
<div class="model-photo">
<img src="assets/img/team/Carol-Willing.jpg" alt="" />
</div>
<!-- <ul class="modal-social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul> -->
</div>
<div class="col-md-8 col-lg-9 col-12">
<div class="speaker_meta">
<h4 class="modal-title">Carol Willing</h4>
<!-- <div class="speaker_designation">Recipient of the ACM Software System Award 2017</div> -->
<!-- <p> Ph.D. from Carnegie Mellon University <br />
B.S. from University of Calgary
</p> -->
</div>
<p>
Carol Naslund Willing can frequently be heard saying “That’s so cool. How does it work?
I would love to learn more about it.” She has enjoyed developing software and
electronics and teaching others for over 20 years. Growing up on the east coast,
she was inspired by nature, the arts, and math. Wanting to learn more about those
interests, she earned a BSE in Electrical Engineering from Duke University and an MS
in Management from MIT. Her education and work experience in small and large companies
taught her to respect the value of “using what you have learned to make something better
and sharing what you know with others”.
</p>
<p>
Carol is currently a Steering Council member and developer for Project Jupyter.
She is also member of the inaugural Python Steering Council, a Python Software Foundation
Fellow and former Director; a core developer on CPython, Jupyter, nteract, AnitaB.org’s
open source projects, and PyLadies; a co-organizer of PyLadies San Diego and
San Diego Python User Group; an independent developer of hardware and software.
Weaving her love of art, music, and nature with wearable soft circuits, she is developing
an open hardware project to assist an in-home caregiver with gentle, compassionate support
of a loved one with Alzheimer’s.
</p>
<p>
Today, she spends much of her time learning and inspiring others to blend their unique
interests and technology to create something new, silly, beautiful, or helpful.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Carol Willing End-->
<!--Cyrus Habib Start-->
<div class="modal" id="myModal-guest-1">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<!-- <h4 class="modal-title">Carol Willing</h4> -->
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-4 col-lg-3 col-xs-12">
<div class="model-photo">
<img src="assets/img/team/cyrus.jpg" alt="" />
</div>
<!-- <ul class="modal-social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul> -->
</div>
<div class="col-md-8 col-lg-9 col-xs-12">
<div class="speaker_meta">
<h4 class="modal-title">Cyrus Habib</h4>
<!-- <div class="speaker_designation">Recipient of the ACM Software System Award 2017</div> -->
<!-- <p> Ph.D. from Carnegie Mellon University <br />
B.S. from University of Calgary
</p> -->
</div>
<p>
Cyrus Habib was elected Washington State’s 16th Lieutenant Governor in November 2016 at the age of 35. He had previously been elected to the State House of Representatives in 2012 and the State Senate in 2014, where he was Democratic Whip and a member of the Democratic leadership team. As Lt. Governor, he is President of the State Senate, serves as Acting Governor whenever Governor Inslee leaves the state, and oversees an agency whose key issues include economic development, trade, and higher education.
</p>
<p>
A three-time cancer survivor, Lt. Governor Habib has been fully blind since age eight. His parents immigrated to the U.S. from Iran before he was born, and he is the first and only Iranian-American to hold statewide elected office in the United States.
</p>
<p>
He is a graduate of Columbia University summa cum laude, and Phi Beta Kappa, Oxford University as a Rhodes Scholar, and Yale Law School, where he was Editor of the Yale Law Journal. Lt. Governor Habib practiced law at Perkins Coie, and served as Distinguished Lawmaker in Residence at Seattle University Law School. He is a Truman Scholar, a Soros Fellow, a member of the Council on Foreign Relations, and has been named a Young Global Leader by the World Economic Forum.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Cyrus Habib End-->
<!--Lorena Mesa Start-->
<!-- <div class="modal" id="myModal-7">
<div class="modal-dialog">
<div class="modal-content"> -->
<!-- Modal Header -->
<!-- <div class="modal-header">
<h4 class="modal-title">Lorena Mesa</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div> -->
<!-- Modal body -->
<!-- <div class="modal-body">
<div class="row">
<div class="col-md-4 col-lg-3 col-12">
<div class="model-photo">
<img src="assets/img/speaker/lorena-mesa.jpg" alt="" />
</div>
<ul class="modal-social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
<div class="col-md-8 col-lg-9 col-12">
<div class="speaker_meta">
<h4 class="modal-title">Lorena Mesa</h4>
<div class="speaker_designation">Recipient of the ACM Software System Award 2017</div>
<p> Ph.D. from Carnegie Mellon University <br />
B.S. from University of Calgary
</p>
</div>
<p>
Carol Naslund Willing can frequently be heard saying “That’s so cool. How does it work?
I would love to learn more about it.” She has enjoyed developing software and
electronics and teaching others for over 20 years. Growing up on the east coast,
she was inspired by nature, the arts, and math. Wanting to learn more about those
interests, she earned a BSE in Electrical Engineering from Duke University and an MS
in Management from MIT. Her education and work experience in small and large companies
taught her to respect the value of “using what you have learned to make something better
and sharing what you know with others”.
</p>
<p>
Carol is currently a Steering Council member and developer for Project Jupyter.
She is also member of the inaugural Python Steering Council, a Python Software Foundation
Fellow and former Director; a core developer on CPython, Jupyter, nteract, AnitaB.org’s
open source projects, and PyLadies; a co-organizer of PyLadies San Diego and
San Diego Python User Group; an independent developer of hardware and software.
Weaving her love of art, music, and nature with wearable soft circuits, she is developing
an open hardware project to assist an in-home caregiver with gentle, compassionate support
of a loved one with Alzheimer’s.
</p>
<p>
Today, she spends much of her time learning and inspiring others to blend their unique
interests and technology to create something new, silly, beautiful, or helpful.
</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!--Lorena Mesa End-->
<!--Eloisa Tran Start-->
<!-- <div class="modal" id="myModal-8">
<div class="modal-dialog">
<div class="modal-content"> -->
<!-- Modal Header -->
<!-- <div class="modal-header"> -->
<!-- <h4 class="modal-title">Eloisa Tran</h4> -->
<!-- <button type="button" class="close" data-dismiss="modal">×</button> -->
<!-- </div> -->
<!-- Modal body -->
<!-- <div class="modal-body"> -->
<!-- <div class="row"> -->
<!-- <div class="col-md-4 col-lg-3 col-12"> -->
<!-- <div class="model-photo"> -->
<!-- <img src="assets/img/team/Carol-Willing.jpg" alt="" /> -->
<!-- </div> -->
<!-- <ul class="modal-social-icons"> -->
<!-- <li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li> -->
<!-- <li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li> -->
<!-- <li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- <div class="col-md-8 col-lg-9 col-12"> -->
<!-- <div class="speaker_meta"> -->
<!-- <h4 class="modal-title">Eloisa Tran</h4> -->
<!-- <div class="speaker_designation">Recipient of the ACM Software System Award 2017</div> -->
<!-- <p> Ph.D. from Carnegie Mellon University <br /> -->
<!-- B.S. from University of Calgary -->
<!-- </p> -->
<!-- </div> -->
<!-- <p> -->
<!-- Carol Naslund Willing can frequently be heard saying “That’s so cool. How does it work? -->
<!-- I would love to learn more about it.” She has enjoyed developing software and -->
<!-- electronics and teaching others for over 20 years. Growing up on the east coast, -->
<!-- she was inspired by nature, the arts, and math. Wanting to learn more about those -->
<!-- interests, she earned a BSE in Electrical Engineering from Duke University and an MS -->
<!-- in Management from MIT. Her education and work experience in small and large companies -->
<!-- taught her to respect the value of “using what you have learned to make something better -->
<!-- and sharing what you know with others”. -->
<!-- </p> -->
<!-- <p> -->
<!-- Carol is currently a Steering Council member and developer for Project Jupyter. -->
<!-- She is also member of the inaugural Python Steering Council, a Python Software Foundation -->
<!-- Fellow and former Director; a core developer on CPython, Jupyter, nteract, AnitaB.org’s -->
<!-- open source projects, and PyLadies; a co-organizer of PyLadies San Diego and -->
<!-- San Diego Python User Group; an independent developer of hardware and software. -->
<!-- Weaving her love of art, music, and nature with wearable soft circuits, she is developing -->
<!-- an open hardware project to assist an in-home caregiver with gentle, compassionate support -->
<!-- of a loved one with Alzheimer’s. -->
<!-- </p> -->
<!-- <p> -->
<!-- Today, she spends much of her time learning and inspiring others to blend their unique -->
<!-- interests and technology to create something new, silly, beautiful, or helpful. -->
<!-- </p> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!--Eloisa Tran End-->
<div id="banner_stickey"><a href="#pricing"><strong>Buy<br>Tickets Now</strong></a>
</div>
<!-- Header Area wrapper Starts -->
<header id="header-wrap">
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg fixed-top scrolling-navbar">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main-navbar" aria-controls="main-navbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
<span class="icon-menu"></span>
<span class="icon-menu"></span>
<span class="icon-menu"></span>
</button>
<a href="index.html" class="navbar-brand puppy-brand"><img src="assets/img/logo.png" alt=""></a>
</div>
<div class="collapse navbar-collapse" id="main-navbar">
<ul class="navbar-nav mr-auto w-100 justify-content-end">
<li class="nav-item active">
<a class="nav-link" href="#header-wrap">
Home
</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#team">
Speakers
</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="#sponsors">
Sponsors
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#pricing">
Register
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#event-team">
Team
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedule">
Schedule
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">
FAQ
</a>
</li>
</ul>
</div>
</div>
<!-- Mobile Menu Start -->
<ul class="mobile-menu">
<li>
<a class="page-scrool" href="#header-wrap">Home</a>
</li>
<!-- <li>
<a class="page-scrool" href="#team">Speakers</a>
</li> -->
<li>
<a class="page-scroll" href="#sponsors">Sponsors</a>
</li>
<li>
<a class="page-scroll" href="#pricing">Register</a>
</li>
<li>
<a class="page-scroll" href="#event-team">Team</a>
</li>
<li>
<a class="page-scroll" href="#schedule">Schedule</a>
</li>
<li>
<a class="page-scroll" href="#faq">FAQ</a>
</li>
</ul>
<!-- Mobile Menu End -->
</nav>
<!-- Navbar End -->
<!-- Main Carousel Section Start -->
<div id="main-slide" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active hero-overlay">
<!-- <img class="d-block w-100" src="assets/img/slider/slide1.jpg" alt="First slide"> -->
<div class="carousel-caption d-md-block">
<p class="fadeInUp wow" data-wow-delay=".6s">PuPPy Presents its</p>
<h1 class="wow fadeInDown heading" data-wow-delay=".4s">Annual Benefit</h1>
<p class="wow fadeInDown seattle" data-wow-delay=".4s">in Seattle</p>
<!-- Team Section Start -->
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<p class="wow fadeInDown" data-wow-delay="0.2s">A historic discussion of language creators about </br> the past and future of language design</p>
</div>
<div class="row justify-content-center text-center">
<div class="col-md-3 col-sm-6 col-6">
<p class="wow fadeInDown" data-wow-delay=".6s">Proceeds donated to</p>
<div class="section-title-header text-center">
<a class="wow fadeInDown heading" data-wow-delay=".6s" href="https://www.csforall.org/" target="_blank"><img class="img-fluid" src="assets/img/sponsors/logo-03.svg" alt=""></a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 other_speaker_title">
<h5>Creators</h5>
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="0.2s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/Guido-vanRossum.jpg" alt="">
<!-- <div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> -->
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-4">
<h3><a>Guido van Rossum</a></h3>
<p>Python</p>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="team-item wow fadeInUp" data-wow-delay="0.4s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/team-01.jpg" alt="">
<!-- <div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> -->
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-1">
<h3><a>James Gosling</a></h3>
<p>Java</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="0.6s">
<div class="team-img">
<img class="img-fluid" src="assets/img/speaker/anders.jpg" alt="">
<!-- <div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> -->
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-2">
<h3><a>Anders Hejlsberg</a></h3>
<p>Turbo Pascal, C#, TypeScript</p>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<!-- Team Item Starts -->
<div class="team-item wow fadeInUp" data-wow-delay="0.8s">
<div class="team-img">
<img class="img-fluid" src="assets/img/speaker/larry-wall.jpg" alt="">
<!-- <div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> -->
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-3">
<h3><a >Larry Wall</a></h3>
<p>Perl</p>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
</div>
</div>
<!-- Team Section End -->
<div class="get-tickets-row">
<p class="fadeInUp wow" data-wow-delay=".6s"> <br/> Evening of April 2, 2019</p>
<a href="#pricing" class="fadeInLeft wow btn btn-common btn-lg" data-wow-delay=".6s">Get Tickets</a>
<a href="/video-streaming.html">
<button class="fadeInRight wow btn btn-common btn-lg" type="button" data-wow-delay=".6s"> View Live Stream </button>
</a>
<!-- <a href="#" class="fadeInRight wow btn btn-border btn-lg" data-wow-delay=".6s">Explore More</a> -->
</div>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-12 ">
<div class="row justify-content-center">
<div class="col-12 other_speaker_title">
<h5>Event Leadership</h5>
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="team-item wow fadeInUp" data-wow-delay="0.2s">
<div class="team-img">
<img class="img-fluid" src="assets/img/speaker/ruthe-farmer.png" alt="">
<!-- <div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> -->
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-5">
<h3><a>Ruthe Farmer</a></h3>
<p>Event Chair</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="team-item wow fadeInUp" data-wow-delay="0.4s">
<div class="team-img">
<img class="img-fluid" src="assets/img/speaker/carol-willing_400x400.jpg" alt="">
<!-- <div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> -->
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-6">
<h3><a>Carol Willing</a></h3>
<p>Moderator</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="team-item wow fadeInUp" data-wow-delay="0.6s">
<div class="team-img">
<img class="img-fluid" src="assets/img/speaker/lorena-mesa-2.jpg" alt="">
<!-- <div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> -->
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-7">
<h3><a>Lorena Mesa</a></h3>
<p>Vice Chair</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="team-item wow fadeInUp" data-wow-delay="0.8s">
<div class="team-img">
<img class="img-fluid" src="assets/img/speaker/Eloisa-Tran.jpg" alt="">
<!-- <div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="#"><i class="lni-facebook-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> -->
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-8">
<h3><a>Eloisa Tran</a></h3>
<p>Fundraising Chair</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-lg-8 col-sm-10 col-xa-12 mb-3 get-tickets-row text-center">
<p class="wow fadeInDown" data-wow-delay="0.2s">CSforALL is the national hub for the Computer Science for All movement, that works to enable all students in grades K-12 to achieve computer science literacy as an integral part of their educational experience both in and out of school. For more information visit <a href="https://www.csforall.org/" target="_blank">www.csforall.org</a> and follow <a href="https://twitter.com/csforall" target="_blank">@CSforALL</a>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Main Carousel Section End -->
</header>
<!-- Header Area wrapper End -->
<section class="section-padding honored_guests">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 other_speaker_title">
<h1 class="wow fadeInDown section-title" data-wow-delay=".2s">Honored Guests</h1>
</div>
<!-- Team Item Starts -->
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="team-item wow fadeInUp" data-wow-delay="0.2s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/cyrus.jpg" alt="">
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-guest-1">
<h3><a>Cyrus Habib</a></h3>
<p>State Lt. Governor, Opening Remarks</p>
</div>
</div>
</div>
<!-- Team Item Ends -->
<!-- Team Item Starts -->
<!-- <div class="col-sm-6 col-md-6 col-lg-6 col-xl-3">
<div class="team-item wow fadeInUp" data-wow-delay="0.2s">
<div class="team-img">
<img class="img-fluid" src="assets/img/team/cyrus.jpg" alt="">
</div>
<div class="info-text" data-toggle="modal" data-target="#myModal-guest-1">
<h3><a>Cyrus Habib</a></h3>
<p>Python</p>
</div>
</div>
</div> -->
<!-- Team Item Ends -->
</div>
</div>
</section>
<!-- Coundown Section Start -->
<section class="countdown-timer section-padding">
<div class="container">
<div class="row text-center">
<div class="col-md-12 col-sm-12 col-12">
<div class="heading-count">
<h2 class="wow fadeInDown" data-wow-delay="0.2s">Event Will Start In</h2>
</div>
</div>
<div class="col-md-12 col-sm-12 col-12 no-padding">
<div class="row time-countdown justify-content-center wow fadeInUp" data-wow-delay="0.2s">
<div id="clock" class="time-count"></div>
</div>
<a class="btn btn-border wow fadeInUp"
data-wow-delay="0.3s"
href="https://calendar.google.com/calendar/r/eventedit?text=PuPPy+Annual+Benefit&dates=20190403T013000Z/20190403T033000Z&details=The+event+will+open+at+The+Collective+on+the+evening+of+April+2nd&location=400+Dexter+Ave+,+Seattle,+WA+98109"
target="_blank"
rel="nofollow"> Add to My Calendar </a>
</div>
</div>
</div>
</section>
<!-- Coundown Section End -->
<!-- Sponsors Section Start -->
<section id="sponsors" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Sponsors</h1>
<p class="wow fadeInDown" data-wow-delay="0.2s">Thank you to all of the sponsors that have already committed! You make all of this possible!</p>
</div>
</div>
</div>
<div class="row mb-30 text-center wow fadeInDown justify-content-center" data-wow-delay="0.3s">
<div class="col-md-3 col-sm-6 col-12">
<div class="spnsors-logo">
<a href="https://impekable.com/" target="_blank"><img class="img-fluid" src="assets/img/sponsors/logo-01.png" alt="Impekable"></a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-12">
<div class="spnsors-logo">
<a href="https://www.microsoft.com/en-us/" target="_blank"><img class="img-fluid" src="assets/img/sponsors/Microsoft-logo_rgb_c-gray_edit.png" alt="Microsoft"></a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-12">
<div class="spnsors-logo">
<a href="https://www.facebook.com/careers/" target="_blank"><img class="img-fluid" src="assets/img/sponsors/facebook.png" alt="Facebook"></a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-12">
<div class="spnsors-logo">
<a href="https://about.offerup.com/careers/"><img class="img-fluid" src="assets/img/sponsors/LightGreen_OU_Logo.png" alt="OfferUp"></a>
</div>
</div>
<!-- <div class="col-md-3 col-sm-3 col-12">
<div class="spnsors-logo">
<a href="http://seattlejs.com/"><img class="img-fluid" src="assets/img/sponsors/seattlejs.png" alt="Seattle JS Meetup"></a>
</div>
</div> -->
<!-- <div class="col-md-3 col-sm-3 col-12">
<div class="spnsors-logo">
<a href="https://www.wwu.edu/" target="_blank"><img class="img-fluid" src="assets/img/sponsors/logo-02.png" alt="Western Washington University"></a>
</div>
</div> -->
<div class="col-12 text-center">
<a href="https://drive.google.com/a/impekable.com/file/d/1IN1VULEQTNOEfrJvWUbiK9957MOihe_y/view?usp=sharing" class="btn btn-common" target="_blank">Become A Sponsor</a>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="section-title-header text-center community_sponsors_title">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Community Sponsors</h1>
</div>
</div>
</div>
<div class="row mb-30 text-center wow fadeInDown justify-content-center community_sponsors_title" data-wow-delay="0.3s">
<div class="col-md-2 col-sm-2 col-6">
<div class="spnsors-logo">
<a href="http://seattlejs.com/"><img class="img-fluid" src="assets/img/sponsors/seattlejs.png" alt="Seattle JS Meetup"></a>
</div>
</div>
</div>
</div>
</section>
<!-- Sponsors Section End -->
<!-- Counter Area Start-->
<section class="counter-section">
<div class="container">
<div class="row justify-content-center">
<!-- Counter Item -->
<div class="col-md-6 col-lg-4 col-12 work-counter-widget text-center">
<a href="https://www.google.com/maps/dir/47.6438528,-122.359808/the+collective+400+dexter/@47.6344945,-122.3603224,15z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x549015380c5fb1b1:0xc8ac4026ddd24bd0!2m2!1d-122.3421152!2d47.6223975" target="_blank">
<div class="counter wow fadeInRight" data-wow-delay="0.3s">
<div class="icon"><i class="lni-map"></i></div>
<p>The Collective</p>
<span>Located at 400 Dexter Ave in Seattle</span>
</div>
</a>
</div>
<!-- Counter Item -->
<div class="col-md-6 col-lg-4 col-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.6s">
<div class="icon"><i class="lni-timer"></i></div>
<p>Evening April 2, 2019</p>
<!-- <span>Opening at 6:30pm</span> -->
</div>
</div>
<!-- Counter Item -->