-
Notifications
You must be signed in to change notification settings - Fork 1
/
talks.html
985 lines (864 loc) · 36.1 KB
/
talks.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
---
layout: default
title: "Talks"
---
<div class="flex-auto pb-24">
<div class="absolute top-0 right-0 p-2">
<a class="text-blue-300" href="/">back home</a>
</div>
<div class="sm:px-8 mt-9">
<div class="mx-auto w-full max-w-7xl lg:px-8">
<div class="relative px-4 sm:px-8 lg:px-12">
<div class="mx-auto max-w-2xl lg:max-w-5xl">
<div class="flex flex-col lg:flex-row lg:justify-between lg:mt-24">
<div class="max-w-2xl">
<h1
class="text-4xl font-extrabold tracking-tight bg-gradient-to-r from-blue-700 via-blue-400 to-blue-300 bg-clip-text text-transparent sm:text-5xl">
Scott's Talks
</h1>
<div class="flex flex-col mt-6 text-base text-zinc-600 dark:text-zinc-400 space-y-2">
<div>
Here is an incomplete list of over 100 talks and fireside chats that I have given at
various conferences over the last 15 years.
Most of the time I talk about
<span class="text-green-600 font-bold">Git, GitHub, open source, starting startups</span>, things of that nature.
</div>
<div>
Some of the slide decks can be found on <a class="text-blue-600" href="https://speakerdeck.com/schacon">Speakerdeck</a>.
If you're interested in having me speak somewhere about any of these types of things
just go ahead and <a class="text-blue-600" href="mailto:[email protected]">fire off a quick email</a>.
</div>
</div>
</div>
<div>
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block h-64 w-64 shadow rounded-lg rotate-3 ml-8 object-cover" style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem"
src="{{ " /assets/images/speaking2.png" }}">
</div>
</div>
<div class="mt-8">
<table class="talks">
<tr class="text-left text-blue-700">
<th width="15%">When</th>
<th width="20%">Conference</th>
<th width="25%">Where</th>
<th width="45%">Talk Title</th>
</tr>
<tr>
<td>Jul 2024</td>
<td>We Are Devs</td>
<td>Berlin</td>
<td><a href="https://www.youtube.com/watch?v=XKVclfq9gsM&t=14s">The Future of Open Source</a></td>
</tr>
<tr>
<td>May 2024</td>
<td>PyCon</td>
<td>Florence</td>
<td>So You Think You Know Git?</td>
</tr>
<tr>
<td>May 2024</td>
<td>Devsum</td>
<td>Stockholm</td>
<td>So You Think You Know Git?</td>
</tr>
<tr>
<td>Feb 2024</td>
<td>DevWorld</td>
<td>Amsterdam</td>
<td>So You Think You Know Git? Part 2</td>
</tr>
<tr>
<td>Feb 2024</td>
<td>FOSDEM</td>
<td>Brussels</td>
<td><a href="https://www.youtube.com/watch?v=aolI_Rz0ZqY&list=PLl52iHmaRuGAZDQ9AGz4fRbRIbRjhxSDQ&index=1&t=2s">So You Think You Know Git?</a></td>
</tr>
<tr>
<td>Dec 2023</td>
<td>Codiax</td>
<td>Cluj</td>
<td>Fireside Talk</td>
</tr>
<tr>
<td>Nov 2023</td>
<td>Open Conf</td>
<td>Athens</td>
<td>Text Editor's Last Laugh</td>
</tr>
<tr>
<td>Nov 2023</td>
<td>HeapCon</td>
<td>Serbia</td>
<td>Revving Up Version Control</td>
</tr>
<tr>
<td>Oct 2023</td>
<td>CodeMotion</td>
<td>Milan</td>
<td>The Text Editor's Last Laugh</td>
</tr>
<tr>
<td>Oct 2023</td>
<td>Slush'd</td>
<td>Heilbronn</td>
<td>Concept over Code</td>
</tr>
<!-- 100 -->
<tr>
<td>Sep 2023</td>
<td>Euruko</td>
<td>Vilnius, Lithuania</td>
<td>Ask Your Code</td>
</tr>
<tr>
<td>Sep 2023</td>
<td>Wix Dev Conf</td>
<td>Tel Aviv</td>
<td>
<a href="https://www.youtube.com/watch?v=6PN2Wb5xXFc&pp=ygUMc2NvdHQgY2hhY29u">Concept over Code</a>
<div class="absolute right-0 hidden lg:block rotate-3 -mt-12">
<a href="https://www.youtube.com/watch?v=6PN2Wb5xXFc&pp=ygUMc2NvdHQgY2hhY29u">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow xl:-mt-12 rounded-lg ml-8 object-cover" style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem"
src="{{ " /assets/images/speaking.jpg" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Concept Over Code</span>
</a>
</td>
</tr>
<tr>
<td>Sep 2023</td>
<td>Codetalks</td>
<td>Hamburg</td>
<td>Ask Your Code</td>
</tr>
<tr>
<td>Sep 2023</td>
<td>Sip and Git</td>
<td>Berlin</td>
<td>Concept over Code</td>
</tr>
<tr>
<td>Jul 2023</td>
<td>We Are Devs</td>
<td>Berlin</td>
<td>Ask Your Code</td>
</tr>
<tr>
<td>Jul 2023</td>
<td>Tech Open Air</td>
<td>Berlin</td>
<td>
<a href="https://www.youtube.com/watch?v=F7ugIZV9EdU">The Text Editor's Last Laugh</a>
<div class="absolute right-0 hidden lg:block -rotate-3">
<a href="https://www.youtube.com/watch?v=F7ugIZV9EdU">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover" style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem"
src="{{ " /assets/talks/toa.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Text Editor's Last Laugh</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Jun 2023</td>
<td>This Next Thing</td>
<td>Ponsetrina</td>
<td>Fireside Chat</td>
</tr>
<tr>
<td>Jun 2023</td>
<td>Techsylvania</td>
<td>Romania</td>
<td>Fireside Chat</td>
</tr>
<tr>
<td>May 2023</td>
<td>DevDays EU</td>
<td>Vilnuis</td>
<td>Revving Up Version Control</td>
</tr>
<tr>
<td>May 2023</td>
<td>J12 Day</td>
<td>Stockholm</td>
<td>Future of Open Source</td>
</tr>
<tr>
<td>May 2022</td>
<td>Chatterconf 2022</td>
<td>Online</td>
<td><a href="https://www.youtube.com/watch?v=2X_2ApFQwus">The Social Future of Learning Languages</a></td>
</tr>
<tr>
<td>Sep 2021</td>
<td>Fifteen Seconds Festival</td>
<td>Graz</td>
<td><a href="https://www.youtube.com/watch?v=ciJUAX5G8L4">The Art (or Not) of the Pivot</a>
<div class="absolute right-0 hidden lg:block rotate-1">
<a href="https://www.youtube.com/watch?v=ciJUAX5G8L4">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover" style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem"
src="{{ " /assets/talks/15sec21.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">The Art of the Pivot</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Apr 2021</td>
<td>Chatterconf 2021</td>
<td>Online</td>
<td><a href="https://www.youtube.com/watch?v=WO5HUJccvco&list=PLEzOGOOV27q1ntnDs4vPPvyc_manuHgt7&index=1">Pushing the Boundaries of Language Learning</a></td>
</tr>
<tr>
<td>Oct 2020</td>
<td>Thinc!</td>
<td>Online</td>
<td><a href="https://www.youtube.com/watch?v=8_QppVqtQ68">Founder Talk</a></td>
</tr>
<tr>
<td>Nov 2019</td>
<td>CodeControl Talent Summit</td>
<td>Berlin</td>
<td><a href="https://www.youtube.com/watch?v=H2Y7nL4wK-8">Fireside Chat</a></td>
</tr>
<tr>
<td>Nov 2019</td>
<td>Codemotion Berlin</td>
<td>Berlin</td>
<td>
<a href="https://www.youtube.com/watch?v=z11Ap3XjzQQ">Accidental Entrepreneur</a>
</td>
</tr>
<tr>
<td>Nov 2019</td>
<td>Venture Atlanta</td>
<td>Atlanta</td>
<td>
<a href="https://www.youtube.com/watch?v=TNmB-j8SPSE">Fireside Chat</a>
<div class="absolute right-0 hidden lg:block -rotate-3">
<a href="https://www.youtube.com/watch?v=TNmB-j8SPSE">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover"
style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem" src="{{ " /assets/talks/ventureatlanta19.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Venture Atlanta</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Jun 2019</td>
<td>Pirate Summit</td>
<td>Cologne</td>
<td>Building an international company from day one</td>
</tr>
<tr>
<td>May 2019</td>
<td>AppBuilders</td>
<td>Switzerland</td>
<td><a href="https://www.youtube.com/watch?v=eS2vd8ygJTg">GitHub to Chatterbug: Lessons Learned by an Accidental Entrepreneur</a></td>
</tr>
<tr>
<td>May 2019</td>
<td>Factory Berlin</td>
<td>Berlin</td>
<td><a href="https://www.youtube.com/watch?v=0Ztv_GGaYIA">Fireside Chat</a></td>
</tr>
<tr>
<td>Feb 2019</td>
<td>Impact Africa Network</td>
<td>Nairobi</td>
<td><a href="https://www.youtube.com/watch?v=YlGgINymWuw">Speaker Series</a></td>
</tr>
<tr>
<td>Jan 2019</td>
<td>unicon</td>
<td>Berlin</td>
<td>Fireside Chat</td>
</tr>
<tr>
<td>Oct 2018</td>
<td>IdeaLab WHU</td>
<td>Vallendar</td>
<td>From GitHub to Chatterbug</td>
</tr>
<tr>
<td>July 2018</td>
<td>The Family</td>
<td>Berlin</td>
<td><a href="https://www.youtube.com/watch?v=lWAPLlnlxps">Breaking the Codes of Company Culture</a></td>
</tr>
<tr>
<td>Jun 2018</td>
<td>CEBIT d!talk</td>
<td>Hannover</td>
<td><a href="https://www.youtube.com/watch?v=i9p-WR0vWnk">GitHub and Chatterbug</a></td>
</tr>
<tr>
<td>Nov 2017</td>
<td>Hub Conference</td>
<td>Berlin</td>
<td>
<a href="https://www.youtube.com/watch?v=lthMpODHX6c">From Silicon Valley to Berlin</a>
<div class="absolute right-0 hidden lg:block rotate-3">
<a href="https://www.youtube.com/watch?v=lthMpODHX6c">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover"
style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem" src="{{ " /assets/talks/hub.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Valley to Berlin</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Nov 2017</td>
<td>NOAH London</td>
<td>London</td>
<td><a href="https://www.youtube.com/watch?v=2W9aPHo50ek">Fireside chat</a></td>
</tr>
<tr>
<td>Dec 2015</td>
<td>Apple Store</td>
<td>Tokyo</td>
<td>Swift: Open Source Innovation on GitHub</td>
</tr>
<tr>
<td>Nov 2015</td>
<td>Web Summit</td>
<td>Dublin, Ireland</td>
<td><a href="https://www.youtube.com/watch?v=g4BYDZXzCkM">GitHub and the Open Source Revolution</a></td>
</tr>
<tr>
<td>Oct 2015</td>
<td>Huawei Developer Conference</td>
<td>Shenzhen, China</td>
<td>Open Source and the API Economy</td>
</tr>
<tr>
<td>Jun 2015</td>
<td>EnterConf</td>
<td>Belfast</td>
<td>What Open Source Can Teach Your Enterprise</td>
</tr>
<tr>
<td>Jun 2015</td>
<td>AWS Summit Tokyo</td>
<td>Tokyo</td>
<td><a href="https://www.youtube.com/watch?v=2fBNuK6CRmA">Opening Keynote</a></td>
</tr>
<tr>
<td>Mar 2015</td>
<td>SXSW</td>
<td>Austin, TX</td>
<td><a href="http://schedule.sxsw.com/2015/events/event_IAP39347">An American Coder in Paris</a></td>
</tr>
<tr>
<td>Feb 2015</td>
<td>SINFO Conf</td>
<td>Lisbon, Portugal</td>
<td>
<a href="https://www.youtube.com/watch?v=w7O_y9PKq8c">The Future of Open Source</a>
<div class="absolute right-0 hidden lg:block -rotate-3">
<a href="https://www.youtube.com/watch?v=w7O_y9PKq8c">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover"
style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem" src="{{ " /assets/talks/sinfo.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Future of Open Source</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Feb 2015</td>
<td>Apero Talk</td>
<td>Paris</td>
<td><a href="https://www.youtube.com/watch?v=TOV6BQO4M6g">Fireside Chat</a></td>
</tr>
<tr>
<td>Dec 2014</td>
<td>Bloomberg Enterprise Technology Summit</td>
<td>London</td>
<td>Panel: Embracing Open & Leveraging a Global Workforce</td>
</tr>
<tr>
<td>Nov 2014</td>
<td>Apps World London</td>
<td>London</td>
<td>The Future of Open Source</td>
</tr>
<tr>
<td>Nov 2014</td>
<td>Web Summit</td>
<td>Dublin, Ireland</td>
<td>The Future of Open Source</td>
</tr>
<tr>
<td>Oct 2014</td>
<td>Valley in Berlin</td>
<td>Berlin</td>
<td>The Future of Open Source</td>
</tr>
<tr>
<td>Sep 2014</td>
<td>Reaktor Dev Day</td>
<td>Helsinki, Finland</td>
<td>Keynote: The Future of Open Source</td>
</tr>
<tr>
<td>Jul 2014</td>
<td>OSCON</td>
<td>Portland, OR</td>
<td>Modernizing CS Education</td>
</tr>
<tr>
<td>Apr 2014</td>
<td>Qualcomm Open Source Summit</td>
<td>San Diego, CA</td>
<td>Open Source and GitHub</td>
</tr>
<tr>
<td>Apr 2014</td>
<td>Bloomberg Enterprise Tech Summit</td>
<td>New York, NY</td>
<td>Software's Power of Disruption</td>
</tr>
<tr>
<td>Mar 2014</td>
<td>SXSW</td>
<td>Austin, TX</td>
<td>Office of the Future: Optimizing for Happiness</td>
</tr>
<tr>
<td>Oct 2013</td>
<td>All Things Open</td>
<td>Raleigh, NC</td>
<td><a href="https://www.youtube.com/watch?v=EgWHEfG6Maw">GitHub Workshop</a></td>
</tr>
<tr>
<td>Oct 2013</td>
<td>Cultivate Conference</td>
<td>New York, NY</td>
<td>Leading from First Principles</td>
</tr>
<tr>
<td>Jun 2013</td>
<td>Bloomberg Next Big Thing Summit</td>
<td>Half Moon Bay, CA</td>
<td>Panel: Open Collaboration & Crowd Sourced Innovation</td>
</tr>
<tr>
<td>Jun 2013</td>
<td>Personal Democracy Forum</td>
<td>New York</td>
<td>
<a href="https://www.youtube.com/watch?v=xXDoSwpoA7E">The Revolution will be Forked</a>
<div class="absolute right-0 hidden lg:block -rotate-3">
<a href="https://www.youtube.com/watch?v=xXDoSwpoA7E">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover"
style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem" src="{{ " /assets/talks/pdf.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Revolution will be Forked</span>
</a>
</div>
</td>
</tr>
<tr>
<td>May 2013</td>
<td>Git Merge</td>
<td>Berlin</td>
<td>Organizer, Host, Speaker: <a href="https://www.youtube.com/watch?v=OfBwFkNaoUo">Pro Git 2.0</a></td>
</tr>
<tr>
<td>Apr 2013</td>
<td>OuiShare Fest </td>
<td>Paris</td>
<td>Panel: The Open Source powered Economy</td>
</tr>
<tr>
<td>Mar 2013</td>
<td>SXSW Lean Startup Conf</td>
<td>Austin, TX</td>
<td>First Principles</td>
</tr>
<tr>
<td>Mar 2013</td>
<td>SXSW Lean Startup Conf</td>
<td>Austin, TX</td>
<td>First Principles</td>
</tr>
<tr>
<td>Nov 2012</td>
<td>Compute Midwest</td>
<td>Kansas City, MO</td>
<td>
<a href="https://www.youtube.com/watch?v=UEUgXRSSREA">The Future of Work</a>
<div class="absolute right-0 hidden lg:block rotate-3 mt-6">
<a href="https://www.youtube.com/watch?v=xXDoSwpoA7E">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover"
style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem" src="{{ " /assets/talks/computemidwest13.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">The Future of Work</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Sep 2012</td>
<td>BaRuCo</td>
<td>Barcelona, Spain</td>
<td><a href="https://www.youtube.com/watch?v=zXWxc4NFu6E">Back to First Principles</a></td>
</tr>
<tr>
<td>Jun 2012</td>
<td>Magma Rails</td>
<td>Colima, Mexico</td>
<td>The Future of Work</td>
</tr>
<tr>
<td>Feb 2012</td>
<td>SpreeConf</td>
<td>New York, NY</td>
<td>The Open Source Business</td>
</tr>
<tr>
<td>Nov 2011</td>
<td>StarTechConf</td>
<td>Santiago, Chile</td>
<td>Un Cuento de Tres Árboles</td>
</tr>
<tr>
<td>Nov 2011</td>
<td>RubyConf Argentina</td>
<td>Buenos Aires</td>
<td>
<a href="https://www.youtube.com/watch?v=_6iVjOfRi88">Un Cuento de Tres Árboles</a> (Spanish)
<div class="absolute right-0 hidden lg:block -rotate-1 mt-6">
<a href="https://www.youtube.com/watch?v=_6iVjOfRi88">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover"
style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem" src="{{ " /assets/talks/tres.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Tres Arboles</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Nov 2011</td>
<td>RubyConf Uruguay</td>
<td>Montevideo</td>
<td>Un Cuento de Tres Árboles</td>
</tr>
<tr>
<td>Oct 2011</td>
<td>FOWA London</td>
<td>London, England</td>
<td>Working Effectively</td>
</tr>
<tr>
<td>Sep 2011</td>
<td>Reaktor Developer Day</td>
<td>Helsinki, Finland</td>
<td>Keynote</td>
</tr>
<tr>
<td>Sep 2011</td>
<td>StrangeLoop</td>
<td>St. Louis, MO</td>
<td>A Tale of Three Trees</td>
</tr>
<tr>
<td>Aug 2011</td>
<td>DreamForce</td>
<td>San Francisco, CA</td>
<td>Introduction to Git</td>
</tr>
<tr>
<td>Aug 2011</td>
<td>FrOSCon</td>
<td>Bonn, Germany</td>
<td>Wrangling Git</td>
</tr>
<tr>
<td>Aug 2011</td>
<td>Madison Ruby Conf</td>
<td>Madison, WI</td>
<td>Git Workshop</td>
</tr>
<tr>
<td>Jul 2011</td>
<td>SPAWAR Ruby Conf</td>
<td>Charleston, SC</td>
<td>Git and GitHub</td>
</tr>
<tr>
<td>Jun 2011</td>
<td>Silicon Valley Web JUG</td>
<td>Mountain View</td>
<td>
<a href="https://www.youtube.com/watch?v=ZDR433b0HJY">Introduction to Git</a>
<div class="absolute right-0 hidden lg:block rotate-1 mt-6">
<a href="https://www.youtube.com/watch?v=ZDR433b0HJY">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover"
style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem" src="{{ " /assets/talks/google11.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Intro to Git</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Apr 2011</td>
<td>CodeConf</td>
<td>San Francisco, CA</td>
<td>Co-host</td>
</tr>
<tr>
<td>Apr 2011</td>
<td>RubyNation</td>
<td>Washington, DC</td>
<td>A Tale of Three Trees</td>
</tr>
<tr>
<td>Mar 2011</td>
<td>OSDC.TW</td>
<td>Taipei, Taiwan</td>
<td>Contributing with Git</td>
</tr>
<tr>
<td>Mar 2011</td>
<td>EclipseCon</td>
<td>San Francisco, CA</td>
<td>Intro to Git</td>
</tr>
<tr>
<td>Mar 2011</td>
<td>Symfony Live</td>
<td>Paris, France</td>
<td>Contributing with Git</td>
</tr>
<tr>
<td>Feb 2011</td>
<td>Symfony Live</td>
<td>San Francisco, CA</td>
<td>Contributing with Git</td>
</tr>
<tr>
<td>Jan 2011</td>
<td>CodeMash</td>
<td>Sandusky, OH</td>
<td>Keynote: The Open Source Business</td>
</tr>
<tr>
<td>Nov 2010</td>
<td>RubyConf X</td>
<td>New Orleans, LA</td>
<td>
<a href="https://www.youtube.com/watch?v=KdxQIOHzABE">Classy Git</a>
<div class="absolute right-0 hidden lg:block -rotate-2 mt-6">
<a href="https://www.youtube.com/watch?v=KdxQIOHzABE">
<img alt="" loading="lazy" width="3744" height="5616"
class="hidden lg:block lg:h-16 lg:w-16 xl:w-32 xl:h-32 shadow -mt-8 xl:-mt-12 rounded-lg ml-8 object-cover"
style="color:transparent" sizes="(min-width: 640px) 18rem, 11rem" src="{{ " /assets/talks/rubyconfx10.png" }}">
<span class="text-zinc-400 text-xs text-right ml-8">Classy Git</span>
</a>
</div>
</td>
</tr>
<tr>
<td>Oct 2010</td>
<td>RubyConf Uruguay</td>
<td>Montevideo, Uruguay</td>
<td>Introduction to Git Tutorial</td>
</tr>
<tr>
<td>Oct 2010</td>
<td>RubyConf Brasil</td>
<td>Sao Paulo, Brazil</td>
<td>
Redis, Rails, and Resque – Background Job Bliss<br/>
Wrangling Git: Advanced Git Stuff<br/>
</td>
</tr>
<tr>
<td>Sep 2010</td>
<td>Nuby Hoedown</td>
<td>Nashville, TN</td>
<td>Intro Git Tutorial</td>
</tr>
<tr>
<td>Aug 2010</td>
<td>FOSSLC</td>
<td>Ottowa, Canada</td>
<td>Really Using Open Source</td>
</tr>
<tr>
<td>Aug 2010</td>
<td>LinuxCon</td>
<td>Boston, MA</td>
<td>Advanced Git Wrangling</td>
</tr>
<tr>
<td>Aug 2010</td>
<td>YAPC::EU</td>
<td>Pisa, Italy</td>
<td>Intro Git Tutorial</td>
</tr>
<tr>
<td>Jul 2010</td>
<td>Forum Internacional Software Livre</td>
<td>Porto Alegre, Brazil</td>
<td>
Git Crash Course<br/>
Running your Business on OS<br/>
4 Hour Git Workshop<br/>
</td>
</tr>
<tr>
<td>Jul 2010</td>
<td>OSCON</td>
<td>Portland, OR</td>
<td>Git 101 Tutorial</td>
</tr>
<tr>
<td>Jun 2010</td>
<td>Amoocon</td>
<td>Rostok, Germany</td>
<td>DIY Gorilla Trekking</td>
</tr>
<tr>
<td>Jun 2010</td>
<td>Amoocon</td>
<td>Rostok, Germany</td>
<td>Using Git and GitHub</td>
</tr>
<tr>
<td>May 2010</td>
<td>EuRuKo</td>
<td>Krakow, Poland</td>
<td>Gittin' Down to the Plumbing</td>
</tr>
<tr>
<td>May 2010</td>
<td>PHP Day - Italy</td>
<td>Corropoli, Italy</td>
<td>Introduction to Git</td>
</tr>
<tr>
<td>Apr 2010</td>
<td>Palmetto OSS Conference</td>
<td>Columbia, SC</td>
<td>Git and GitHub</td>
</tr>
<tr>
<td>Mar 2010</td>
<td>Scottish Ruby Conference</td>
<td>Edinburgh, Scotland</td>
<td>Git Plumbing</td>
</tr>
<tr>
<td>Feb 2010</td>
<td>PyCon</td>
<td>Atlanta, GA</td>
<td>Git and Hg</td>
</tr>
<tr>
<td>Feb 2010</td>
<td>Symfony Live</td>
<td>Paris, FR</td>
<td>Introduction to Git</td>
</tr>
<tr>
<td>Jan 2010</td>
<td>LinuxConf.au</td>
<td>Wellington, NZ</td>
<td>Wrangling Git</td>
</tr>
<tr>
<td>Nov 2009</td>
<td>Conferencia Rails</td>
<td>Madrid, Spain</td>
<td>La Diferencia Git</td>
</tr>
<tr>
<td>Nov 2009</td>
<td>Erlang User Conference</td>
<td>Stockholm, Sweden</td>
<td>Git Talk Intro</td>
</tr>
<tr>
<td>Nov 2009</td>
<td>RuPy</td>
<td>Poznan, Poland</td>
<td>Git and GitHub</td>
</tr>
<tr>
<td>Oct 2009</td>
<td>Kung Fu Rails</td>
<td>Shanghai, China</td>
<td>Intro to Git and GitHub</td>
</tr>
<tr>
<td>Oct 2009</td>
<td>Aloha on Rails</td>
<td>Honolulu, Hawaii</td>
<td><a href="https://www.youtube.com/watch?v=-7eqL9Q5VDM">The Birth of Git and Hg</a></td>
</tr>
<tr>
<td>Jul 2009</td>
<td>OSCON</td>
<td>San Jose, CA</td>
<td>3-hour Git Tutorial</td>
</tr>
<tr>
<td>Jul 2009</td>
<td>RubyKaigi</td>
<td>Tokyo, Japan</td>
<td>Intro to Git and GitHub</td>
</tr>
<tr>
<td>May 2009</td>
<td>RailsConf</td>
<td>Las Vegas, NV</td>
<td>Smacking Git Around</td>
</tr>
<tr>
<td>Mar 2009</td>
<td>Scotland on Rails</td>
<td>Edinburgh, Scotland</td>
<td>A Smattering of Git</td>
</tr>
<tr>
<td>Mar 2009</td>
<td>ApacheConf BarCamp</td>
<td>Amsterdam, NL</td>
<td>Introduction to Git</td>
</tr>
<tr>
<td>Nov 2008</td>
<td>RubyConf</td>
<td>Orlando, FL</td>
<td>Git from Ruby</td>
</tr>
<tr>
<td>Jun 2008</td>
<td>RailsConf</td>
<td>Portland, OR</td>
<td>Getting Git</td>
</tr>
</table>
<br/>
<h3 class="text-xl font-bold text-blue-700 mb-2">Smaller Tech Talks</h3>
<div class="my-2 text-sm text-zinc-400">I've also given some smaller tech talks at various companies and groups over the years.</div>
<p>VMWare, AOL, Stanford, Carnegie Mellon, Full Sail University, New York Times,
The Guardian, McKinsey, SAP, Loopt, Digg, Yahoo, LinkedIn, EA, Google, Pivotal Labs,
Wunderlist, UCSD
</p>
</div>
</div>
</div>
</div>
</div>
<style>
a { color: #5555ff; }
</style>