-
Notifications
You must be signed in to change notification settings - Fork 6
/
atom.xml
2634 lines (1889 loc) · 107 KB
/
atom.xml
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[Food Fight]]></title>
<link href="http://foodfightshow.org//atom.xml" rel="self"/>
<link href="http://foodfightshow.org//"/>
<updated>2019-06-12T08:23:27-04:00</updated>
<id>http://foodfightshow.org//</id>
<author>
<name><![CDATA[Bryan Berry - Nathen Harvey - Matt Ray]]></name>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Farewell Episode]]></title>
<link href="http://foodfightshow.org//2019/06/farewell-episode.html"/>
<updated>2019-06-12T07:49:00-04:00</updated>
<id>http://foodfightshow.org//2019/06/farewell-episode</id>
<content type="html"><![CDATA[<p>After seven years, it is time to bid farewell to the Food Fight Show. Thank you for listening and supporting the show over the years.</p>
<p>Please share your fondest memories and favorite episodes with us on Twitter - <a href="https://twitter.com/foodfightshow">@foodfightshow</a>.</p>
<ul>
<li><a href="http://foodfightshow.org//2019/06/farewell-episode.html#panel">Panel</a></li>
<li>Download
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FFS126.mp3">Audio</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, <a href="http://nathenharvey.com">blog</a></li>
<li>Nell Shamrell-Harrington <a href="https://github.com/nellshamrell">github</a>, <a href="https://twitter.com/nellshamrell">twitter</a>, <a href="http://nellshamrell.com/">blog</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FFS126.mp3">Audio</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> and <a href="https://twitter.com/nellshamrell">Nell Shamrell</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show is sponsored, in part, by <a href="http://www.chef.io">Chef</a>.</p>
<p>Feedback, suggestions, and questions: <a href="mailto:[email protected]">[email protected]</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[The Business Value of Developer Relations]]></title>
<link href="http://foodfightshow.org//2018/11/business-value-of-dev-rel.html"/>
<updated>2018-11-30T13:42:00-05:00</updated>
<id>http://foodfightshow.org//2018/11/business-value-of-dev-rel</id>
<content type="html"><![CDATA[<p>Listen to our conversation with Mary Thengvall (<a href="https://twitter.com/mary_grace">@mary_grace</a>) about her book: <a href="https://amzn.to/2Qc30vs">The Business Value of Developer Relations</a>.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/8TpQGZMheSc" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org//2018/11/business-value-of-dev-rel.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org//2018/11/business-value-of-dev-rel.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org//2018/11/business-value-of-dev-rel.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://youtu.be/8TpQGZMheSc">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS125.mp3">Audio</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Mary Thengvall <a href="https://twitter.com/mary_grace">twitter</a> <a href="https://www.marythengvall.com/">blog</a> <a href="https://github.com/mary-grace">github</a> <a href="https://persea-consulting.com">persea-consulting.com</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, <a href="http://nathenharvey.com">blog</a></li>
<li>Nell Shamrell-Harrington <a href="https://github.com/nellshamrell">github</a>, <a href="https://twitter.com/nellshamrell">twitter</a>, <a href="http://nellshamrell.com/">blog</a></li>
</ul>
<!-- more -->
<h2>Outline<a name="outline"></a></h2>
<ul>
<li>Mary’s book: <a href="https://amzn.to/2Qc30vs">The Business Value of Developer Relations</a></li>
<li>What is developer relations? (i.e.: DevRel)
<ul>
<li>Building relations with the developer community</li>
<li>Using the term “developer” as a generic term</li>
</ul>
</li>
<li>How does this defer from “community development” as we know it?
<ul>
<li>Developer Evangelism</li>
<li>Community Management/Building</li>
<li>Project Manager</li>
<li>Events Coordinator</li>
</ul>
</li>
<li>Is DevRel the new DevOps?
<ul>
<li><a href="https://www.feverbee.com/bridging-bonding/">Bridging vs. Bonding</a></li>
</ul>
</li>
<li>How is DevRel a bridge to sales and marketing?</li>
<li>How the book came about</li>
<li>Why the avocados?!</li>
<li>Developer advocacy vs being a traditional developer</li>
<li>Why technical communities are the keys to success</li>
<li>Getting started in DevRel
<ul>
<li><a href="http://devrelweekly.com/">DevRel Weekly Newsletter</a></li>
<li><a href="https://devrelcollective.fun">DevRel Collective</a> – for folks who are actively doing DevRel in their professional work; also contains resources for the DevRel-curious.</li>
</ul>
</li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<hr />
<h4>Nell</h4>
<ul>
<li><a href="https://itunes.apple.com/us/app/quiver-take-better-notes/id866773894?mt=12">Quiver</a></li>
<li><a href="https://gonehome.game/">Gone Home</a></li>
</ul>
<h4>Mary</h4>
<ul>
<li><a href="https://www.amazon.com/ONE-Thing-Surprisingly-Extraordinary-Results/dp/1885167776">The ONE Thing</a></li>
<li><a href="https://www.nbc.com/the-good-place">The Good Place</a></li>
</ul>
<h4>Nathen</h4>
<ul>
<li><a href="https://itunes.apple.com/us/podcast/broken-record-with-malcolm-gladwell-and-rick-rubin/id1311004083?mt=2">Broken Record with Malcolm Gladwell and Rick Rubin</a></li>
<li><a href="https://www.barrestatewines.com/wines/2013-dane-head/">Barr Estate Winery: 2013 DANE HEAD</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://youtu.be/8TpQGZMheSc">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS125.mp3">Audio</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> and <a href="https://twitter.com/nellshamrell">Nell Shamrell</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show is sponsored, in part, by <a href="http://www.chef.io">Chef</a>.</p>
<p>Feedback, suggestions, and questions: <a href="mailto:[email protected]">[email protected]</a> or <a href="http://github.com/foodfight/showz">http://github.com/foodfight/showz</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Civic Hacking]]></title>
<link href="http://foodfightshow.org//2018/11/civic-hacking.html"/>
<updated>2018-11-15T08:37:00-05:00</updated>
<id>http://foodfightshow.org//2018/11/civic-hacking</id>
<content type="html"><![CDATA[<p>Watch our conversation about Civic Hacking.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/tFRCeVDgGpI" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org//2018/11/civic-hacking.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org//2018/11/civic-hacking.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org//2018/11/civic-hacking.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://youtu.be/tFRCeVDgGpI">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS124.mp3">Audio</a></li>
</ul>
</li>
</ul>
<!-- more -->
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Chris Alfano <a href="https://github.com/themightychris">github</a>, <a href="https://twitter.com/themightychris">twitter</a>, <a href="https://jarv.us/">CTO, Jarvus Innovations</a>, <a href="https://www.codeforamerica.org/">Code For America</a>, <a href="https://codeforphilly.org/">Code For Philly</a></li>
<li>Kirsten Lambertsen <a href="https://github.com/MsPseudolus">github</a>, <a href="https://twitter.com/MsPseudolus">twitter</a>, <a href="http://xapnik.com">Founder, Xapnik</a>, <a href="https://gigster.com/">Gigster</a>, <a href="https://automattic.com/">Automattic</a></li>
<li>Jill Huchital <a href="https://github.com/jillh510">github</a>, <a href="https://twitter.com/JillHuchital">twitter</a>, <a href="https://ragtag.org/">Ragtag</a></li>
<li>Nell Shamrell-Harrington <a href="https://github.com/nellshamrell">github</a>, <a href="https://twitter.com/nellshamrell">twitter</a>, <a href="http://nellshamrell.com/">blog</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<h2>Outline<a name="outline"></a></h2>
<ul>
<li>What is Civic Tech/Hacking?
<ul>
<li><a href="https://devprogress.us/">DevProgress</a></li>
<li><a href="https://www.youtube.com/watch?v=VEqWwuLGmYs">DevOps in Politics - Nell Shamrell-Harrington</a></li>
<li><a href="https://18f.gsa.gov/">18F</a></li>
<li><a href="https://www.usds.gov/">United States Digital Service</a></li>
</ul>
</li>
<li>More organizations for civic hacking (That have not been mentioned yet!)
<ul>
<li><a href="https://codeforall.org/">Code For All</a></li>
<li><a href="https://operationcode.org/">Operation Code</a></li>
</ul>
</li>
<li>“Build With Not For” / Driving Technology Choices
<ul>
<li><a href="https://www.habitat.sh/">Habitat</a></li>
<li><a href="https://www.tableau.com/">Tableau</a></li>
</ul>
</li>
<li>Stakeholder and Developer Collaboration / Crises of Tools and Are there limitations?
<ul>
<li>Google Docs</li>
<li><a href="https://www.discourse.org/">Discourse</a></li>
</ul>
</li>
<li>Surprises When Participating in this Space
<ul>
<li>People <em>want</em> to help!</li>
<li>Putting skills where values are</li>
<li>How hard people can take it when they don’t win</li>
</ul>
</li>
<li>Setting Expectations</li>
<li>Getting Started with Civic Hacking
<ul>
<li><a href="https://ragtag.org/join">ragtag.org/join</a></li>
<li><a href="http://brigade.codeforamerica.org">Join a local brigade</a></li>
<li><a href="https://cityscrapers.org/">City Scrapers</a></li>
<li><a href="http://discourse.codeforamerica.org">The National Discussion</a>
<ul>
<li><a href="http://slack.codeforamerica.org">The National Watercooler</a></li>
</ul>
</li>
<li><a href="https://operationcode.org/join">operationcode.org/join</a></li>
<li><a href="https://www.resistanceschool.com/">Resistance School</a></li>
</ul>
</li>
<li>You don’t have to be a coder to get involved!</li>
<li>Interacting with Data</li>
<li>Favorite Stories
<ul>
<li><a href="https://github.com/DevProgress/HillaryBNB">HillaryBNB</a></li>
<li><a href="https://github.com/samuelcole/MarchBNB">MarchBNB</a></li>
</ul>
</li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<h4>Nell</h4>
<ul>
<li><a href="https://www.nintendo.com/switch/">The Nintendo Switch</a></li>
</ul>
<h4>Kirsten</h4>
<ul>
<li><a href="http://scottberkun.com/yearwithoutpants/">The Year Without Pants</a></li>
</ul>
<h4>Jill</h4>
<ul>
<li>Book clubs!</li>
</ul>
<h4>Chris</h4>
<ul>
<li><a href="https://www.habitat.sh/">Habitat</a></li>
</ul>
<h4>Nathen</h4>
<ul>
<li><a href="https://www.apress.com/us/book/9781484237472">The Business Value of Developer Relations</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://youtu.be/tFRCeVDgGpI">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS124.mp3">Audio</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> and <a href="https://twitter.com/nellshamrell">Nell Shamrell</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show is sponsored, in part, by <a href="http://www.chef.io">Chef</a>.</p>
<p>Feedback, suggestions, and questions: <a href="mailto:[email protected]">[email protected]</a> or <a href="http://github.com/foodfight/showz">http://github.com/foodfight/showz</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Product Marketing Management]]></title>
<link href="http://foodfightshow.org//2018/08/product-marketing.html"/>
<updated>2018-08-09T13:27:00-04:00</updated>
<id>http://foodfightshow.org//2018/08/product-marketing</id>
<content type="html"><![CDATA[<p>A conversation with Chris Short (<a href="https://twitter.com/chrisshort">@chrisshort</a>) and Julian Dunn (<a href="https://twitter.com/julian_dunn">@julian_dunn</a>) about the role of Product Marketing Managers.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/CRE6xFp6_Uk" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org//2018/08/product-marketing.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org//2018/08/product-marketing.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org//2018/08/product-marketing.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://youtu.be/iCRE6xFp6_Uk">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS123.mp3">Audio</a></li>
</ul>
</li>
</ul>
<!-- more -->
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Chris Short <a href="https://twitter.com/chrisshort">twitter</a>, <a href="https://github.com/chris-short">github</a>, <a href="https://devopsish.com/">blog</a></li>
<li>Julian Dunn <a href="https://twitter.com/julian_dunn">twitter</a>, <a href="https://github.com/juliandunn">github</a>, <a href="https://www.juliandunn.net">blog</a></li>
<li>Nell Shamrell-Harrington <a href="https://github.com/nellshamrell">github</a>, <a href="https://twitter.com/nellshamrell">twitter</a>, <a href="http://nellshamrell.com/">blog</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<h2>Upcoming Events<a name="upcoming"></a></h2>
<ul>
<li><a href="https://re-deploy.io/">REdeploy</a>: August 16 & 17 - San Francisco, CA</li>
<li><a href="https://sensu.io/summit">Sensu Summit</a>: August 22 & 23 - Portland, OR</li>
<li><a href="http://www.devopstalks.com/">DevOps Talks</a>: August 27 & 28 - Sydney, Australia</li>
<li><a href="https://www.chef.io/summits/">Seattle & London Community Summits</a>: October 2 & 3 / October 16 & 17 - Use code <code>FOODFIGHT</code> for 10% off your registration!</li>
</ul>
<h2>Show Notes<a name="outline"></a></h2>
<ul>
<li>What is Product Marketing and what is the role of a Product Marketing Manager (PMM)?
<ul>
<li>Messaging and Positioning</li>
</ul>
</li>
<li><a href="https://www.youtube.com/watch?v=MDu6wL1DWY4">Chris Short’s ChefConf 2018 Session: DevOps is Not a War</a></li>
<li>Moving from Technical Engineering Roles to Marketing Management
<ul>
<li><a href="https://www.businessinsider.com/fox-business-newsat-github-2013-9">Fox Business Did A Profile Of Github And Silicon Valley Is Cringing</a></li>
</ul>
</li>
<li>How Product Marketing Differs From “Other” Marketing
<ul>
<li>Authenticity and Tact</li>
<li><a href="https://www.amazon.com/Challenger-Sale-Control-Customer-Conversation/dp/1591844355">The Challenger Sale: Taking Control of the Customer Conversation</a></li>
<li>You can’t “trick” people into DevOps</li>
</ul>
</li>
<li>Is prior technical experience and background necessary to be a good PMM?</li>
<li>The Ultimate Goal: Delivering Value</li>
<li>DevOps and Product Marketing
<ul>
<li>Curiousity</li>
<li>Collaboration</li>
<li>Tightening Feedback Loops</li>
<li>Minimizing Work in Progress</li>
</ul>
</li>
<li>People’s Reception to Marketers vs Engineers</li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<h4>Julian</h4>
<ul>
<li><a href="https://amzn.to/2viobjz">The Product Marketing Manager</a></li>
<li><a href="https://amzn.to/2vgnyaf">Rise of the Revenue Marketer</a></li>
<li><a href="https://store.steampowered.com/app/845070/The_Awesome_Adventures_of_Captain_Spirit/">The Awesome Adventures of Captain Spirit</a> (if you liked the <a href="https://store.steampowered.com/franchise/square-enix">Life Is Strange</a> franchise)</li>
</ul>
<h4>Nell</h4>
<ul>
<li><a href="https://www.amazon.com/Good-Strategy-Bad-difference-matters/dp/1781256179/ref=sr_1_1?s=books&ie=UTF8&qid=1534005162&sr=1-1&keywords=good+strategy+bad+strategy+by+richard+rumelt">Good Strategy/Bad Strategy: The difference and why it matters</a></li>
<li><a href="https://worldofwarcraft.com/">World of Warcraft</a></li>
</ul>
<h4>Chris</h4>
<ul>
<li><a href="https://www.amazon.com/Accelerate-Software-Performing-Technology-Organizations/dp/1942788339">Accelerate: The Science of Lean Software and DevOps: Building and Scaling High Performing Technology Organizations</a></li>
<li><a href="https://pocketcitygame.com/">Pocket City</a></li>
</ul>
<h4>Nathen</h4>
<ul>
<li><a href="https://www.youtube.com/playlist?list=PLKK5zTDXqzFOARGcJT_MJyLsF22ljAbaz">The DevOpsDays DC 2018 Videos</a></li>
<li><a href="https://itunes.apple.com/us/podcast/devops-days-podcast/id1035163116?mt=2">The DevOpsDays Podcast</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://youtu.be/iCRE6xFp6_Uk">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS123.mp3">Audio</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> and <a href="https://twitter.com/nellshamrell">Nell Shamrell</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show is sponsored, in part, by <a href="http://www.chef.io">Chef</a>.</p>
<p>Feedback, suggestions, and questions: <a href="mailto:[email protected]">[email protected]</a> or <a href="http://github.com/foodfight/showz">http://github.com/foodfight/showz</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[sensu]]></title>
<link href="http://foodfightshow.org//2018/07/sensu.html"/>
<updated>2018-07-23T10:44:00-04:00</updated>
<id>http://foodfightshow.org//2018/07/sensu</id>
<content type="html"><![CDATA[<p>Sensu’s platform is the solution to the monitoring problems you’re facing today, and the right foundation for your organization tomorrow. From bare metal to Kubernetes—get complete visibility across every system, every protocol, every time.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/o2vNz8WzdSg" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org//2018/07/sensu.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org//2018/07/sensu.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org//2018/07/sensu.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://youtu.be/o2vNz8WzdSg">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS122.mp3">Audio</a></li>
</ul>
</li>
</ul>
<!-- more -->
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Sean Porter <a href="https://twitter.com/portertech">twitter</a>, <a href="https://github.com/portertech">github</a></li>
<li>John Kerry <a href="https://twitter.com/jkerrydev">twitter</a>, <a href="https://github.com/jkerry">github</a></li>
<li>Matt Broberg <a href="https://github.com/mbbroberg">github</a>, <a href="https://twitter.com/mbbroberg">twitter</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<h2>Show Notes<a name="outline"></a></h2>
<ul>
<li>Join us at <a href="https://aws.amazon.com/summits/chicago/">The AWS Summit in Chicago</a> on August 2nd!</li>
<li>We’ll also be at <a href="https://aws.amazon.com/summits/chicago/">VMworld</a> in late August.</li>
<li>and the <a href="https://sensu.io/summit">Sensu Summit</a> in Portland.</li>
<li><a href="https://www.devopsdays.org/events/2018-chicago/welcome/">DevOpsDays Chicago</a></li>
<li><a href="https://events.chef.io/events/seattle-chef-community-summit/">Chef Community Summit: Seattle (Oct 2nd - 3rd)</a></li>
<li><p><a href="https://events.chef.io/events/chef-community-summit-europe-2018/">Chef Community Summit: London (Oct 16th - 17th)</a></p></li>
<li><p>Join us in the <a href="http://community-slack.chef.io/">Chef Community Slack!</a></p></li>
<li><p><a href="https://sensu.io/">Sensu</a></p>
<ul>
<li>What is Sensu?</li>
<li>Why was it created?</li>
<li>Where is Sensu today?</li>
<li>History
<ul>
<li>Pre-listen - Food Fight Show episode 33 - <a href="http://foodfightshow.org/2012/12/monitoringlove-with-sensu.html">#monitoringlove With Sensu</a></li>
</ul>
</li>
<li>The Community
<ul>
<li>Finding high-quality plugins</li>
<li>What makes a good plugin?</li>
<li>Keeping plugins up-to-date</li>
</ul>
</li>
<li>Sensu 2.0</li>
</ul>
</li>
<li><a href="https://www.habitat.sh/">Habitat</a>
<ul>
<li>What is Habitat?</li>
<li>Habitat + Sensu = <3</li>
<li>Working with Habitat</li>
</ul>
</li>
<li>Monitoring and Observability and Sensu</li>
<li><a href="https://sensu.io/summit">Sensu Summit</a></li>
<li>Learn More About Sensu
<ul>
<li><a href="https://chefconf.chef.io/conf-resources/chefconf-2018-session-chef-sensu-delightful-monitoring/">ChefConf 2018 Session: Chef & Sensu – Delightful Monitoring</a></li>
<li><a href="https://docs.sensu.io/">Sensu Docs</a></li>
<li><a href="https://sensu.io/summit">Sensu Summit</a></li>
</ul>
</li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<h4>John</h4>
<ul>
<li><a href="https://bethematch.org/">Be The Match</a> - The National Marrow Donor Registry</li>
<li><a href="http://thedeadsouth.com/">The Dead South</a></li>
</ul>
<h4>Matt</h4>
<ul>
<li><a href="https://www.beeradvocate.com/beer/profile/31407/225312/">Saint Archer Hoppy Pilsner</a></li>
<li><a href="https://www.alfredapp.com/">Alfred</a></li>
</ul>
<h4>Sean</h4>
<ul>
<li><a href="https://www.amazon.com/Managers-Path-Leaders-Navigating-Growth/dp/1491973897">The Manager’s Path</a></li>
<li><a href="https://www.amazon.com/Lean-Product-Playbook-Innovate-Products/dp/1118960874/ref=sr_1_1?s=books&ie=UTF8&qid=1532714105&sr=1-1&keywords=the+lean+product+playbook">The Lean Product Playbook</a></li>
</ul>
<h4>Nathen</h4>
<ul>
<li>Take a break!</li>
<li><a href="http://www.orbooks.com/catalog/lean-out/">Lean Out: The Struggle for Gender Equality in Tech and Start-up Culture</a></li>
<li><a href="https://www.indellient.com/">Indellient</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://youtu.be/o2vNz8WzdSg">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS122.mp3">Audio</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> and <a href="https://twitter.com/nellshamrell">Nell Shamrell</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show is sponsored, in part, by <a href="http://www.chef.io">Chef</a>.</p>
<p>Feedback, suggestions, and questions: <a href="mailto:[email protected]">[email protected]</a> or <a href="http://github.com/foodfight/showz">http://github.com/foodfight/showz</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Live from ChefConf 2018 with Arrested DevOps]]></title>
<link href="http://foodfightshow.org//2018/07/chefconf-2018.html"/>
<updated>2018-07-03T20:15:00-04:00</updated>
<id>http://foodfightshow.org//2018/07/chefconf-2018</id>
<content type="html"><![CDATA[<p>Nell and Nathen teamed up with Matty and Trevor from the <a href="https://www.arresteddevops.com/">Arrested Devops podcast</a> while at <a href="https://chefconf.chef.io/">ChefConf 2018</a>. The episode was recorded in the ChefConf Demo Theatre before a live audience.</p>
<ul>
<li><a href="http://foodfightshow.org//2018/07/chefconf-2018.html#panel">Panel</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS120.mp3">Audio</a></li>
</ul>
<!-- more -->
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Matty Stratton <a href="https://github.com/mattstratton">github</a>, <a href="https://twitter.com/mattstratton">twitter</a></li>
<li>Trevor Hess , <a href="https://github.com/trevorghess">github</a>, <a href="https://twitter.com/trevorghess">twitter</a></li>
<li>Nell Shamrell-Harrington <a href="https://github.com/nellshamrell">github</a>, <a href="https://twitter.com/nellshamrell">twitter</a>, <a href="http://nellshamrell.com/">blog</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FFS120.mp3">Audio</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> and <a href="https://twitter.com/nellshamrell">Nell Shamrell</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show is sponsored, in part, by <a href="http://www.chef.io">Chef</a>.</p>
<p>Feedback, suggestions, and questions: <a href="mailto:[email protected]">[email protected]</a> or <a href="http://github.com/foodfight/showz">http://github.com/foodfight/showz</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[The STELLA report]]></title>
<link href="http://foodfightshow.org//2018/04/stella-report.html"/>
<updated>2018-04-03T19:12:00-04:00</updated>
<id>http://foodfightshow.org//2018/04/stella-report</id>
<content type="html"><![CDATA[<p>Join a discussion with John Allspaw (<a href="https://twitter.com/allspaw">@allspaw</a>) about the <a href="http://stella.report/">STELLA Report from the SNAFUcatchers Workshop on Coping With Complexity</a>.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/DyfZ7QlffI4" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org//2018/04/stella-report.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org//2018/04/stella-report.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org//2018/04/stella-report.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://youtu.be/DyfZ7QlffI4">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS119.mp3">Audio</a></li>
</ul>
</li>
</ul>
<!-- more -->
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Alan Kraft</li>
<li>John Allspaw <a href="https://github.com/jallspaw">github</a>, <a href="https://twitter.com/allspaw">twitter</a>, <a href="https://medium.com/@allspaw/">blog</a>, <a href="https://www.snafucatchers.com/">SNAFUcatchers</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<hr />
<h2>Upcoming Chef Events</h2>
<ul>
<li><a href="https://chefconf.chef.io/">ChefConf</a> - May 22-25, Chicago, IL</li>
<li><a href="https://events.chef.io/">View all upcoming events</a></li>
</ul>
<h2>Show Notes</h2>
<ul>
<li>What is the STELLA Report?
<ul>
<li><a href="http://stella.report">STELLA Report from the SNAFUcatchers Workshop on Coping With Complexity</a></li>
<li><a href="https://www.youtube.com/watch?v=7STcaWjJoww">David Woods Velocity NY 2014 Keynote: “The Mystery of Sustained Adaptability”</a></li>
<li><a href="https://www.snafucatchers.com/">SNAFUcatchers</a>
<ul>
<li><a href="https://twitter.com/ri_cook">Richard I. Cook, M.D. (@ri_cook)</a></li>
<li><a href="https://twitter.com/ddwoods2">David D. Woods, Ph.D. (@ddwoods2)</a></li>
</ul>
</li>
</ul>
</li>
<li>Writing the STELLA Report
<ul>
<li>Two important questions:
<ul>
<li>What makes this work hard?</li>
<li>What makes people good at this work?</li>
</ul>
</li>
</ul>
</li>
<li>Dark Debt, Technical Debt, and Postmortems
<ul>
<li><a href="http://lup.lub.lu.se/luur/download?func=downloadFile&recordOId=8084520&fileOId=8084521">TRADE-OFFS UNDER PRESSURE: HEURISTICS AND OBSERVATIONS OF TEAMS RESOLVING INTERNET SERVICE OUTAGES</a></li>
<li><a href="https://lup.lub.lu.se/student-papers/search/publication/5463899">Do Staff Rides Help Move The Forest Service Toward Its Goal Of Becoming A Learning Organization</a></li>
</ul>
</li>
<li>Premortems?
<ul>
<li><a href="https://hbr.org/2007/09/performing-a-project-premortem">Performing a Project Premortem</a> by Gary Klein</li>
<li><a href="https://www.youtube.com/watch?v=4jRqtciRQds">DevOpsDays Detroit 2017: Day 1 Keynote by Dr. Richard I. Cook</a></li>
</ul>
</li>
<li><a href="https://experiencinginformation.com/2011/11/02/questionstorming-framing-the-problem/">Question Storming</a></li>
<li>Game Days</li>
<li>Support to Continue Research
<ul>
<li><a href="http://web.mit.edu/2.75/resources/random/How%20Complex%20Systems%20Fail.pdf">How Complex Systems Fail by Richard Cook</a></li>
<li><a href="http://www.adaptivecapacitylabs.com/">Adaptive Capacity Labs</a></li>
<li><a href="https://www.youtube.com/watch?v=MzTNMalfyhM">Nobel laureate Daniel Kahneman - Premortem to eliminate thinking biases.</a>
<ul>
<li>The full lecture: <a href="https://www.youtube.com/watch?v=VJFxVdq-hYg">The Science of Decision with Daniel Kahneman</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<h3>Alan’s recommended path to get up-to-speed on the STELLA Report:</h3>
<ol>
<li><p>The best introduction from a DevOps perspective to the concepts covered in the Stella Report is John Allspaw’s talk on <a href="https://www.youtube.com/watch?v=xA5U85LSk0M">Resilience Engineering as DevOps</a> from the 2017 DevOps Enterprise Summit</p></li>
<li><p>Second read the <a href="http://stella.report">Stella Report</a> from the Workshop on Coping With Complexity.</p></li>
<li><p>Finally check out <a href="https://www.youtube.com/watch?v=4jRqtciRQds">DevOpsDays Detroit 2017: Day 1 Keynote</a> by Dr. Richard I. Cook.</p></li>
</ol>
<h2>Picks<a name="picks"></a></h2>
<h4>Alan</h4>
<ul>
<li><a href="https://www.wildfirelessons.net/home">Wildland Fire Lessons Learned Center</a>; including the <a href="https://ed.ted.com/on/PhJ2SX9U">Alabaugh Fire</a> staff ride video</li>
<li>EUROCONTROL’s <a href="https://www.skybrary.aero/index.php/Main_Page">Skybrary</a>; including <a href="https://www.skybrary.aero/index.php/Toolkit:Systems_Thinking_for_Safety:_Ten_Principles">Systems Thinking for Safety: Ten Principles</a></li>
<li>Curling</li>
</ul>
<h4>John</h4>
<ul>
<li><a href="https://www.researchgate.net/publication/220579480_Problem_detection">Problem Detection (Klein, Pliske, Crandall, Woods, 2005)</a></li>
</ul>
<h4>Nathen</h4>
<ul>
<li>Be a tourist!</li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://youtu.be/DyfZ7QlffI4">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS119.mp3">Audio</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> and <a href="https://twitter.com/nellshamrell">Nell Shamrell</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show is sponsored, in part, by <a href="http://www.chef.io">Chef</a>.</p>
<p>Feedback, suggestions, and questions: <a href="mailto:[email protected]">[email protected]</a> or <a href="http://github.com/foodfight/showz">http://github.com/foodfight/showz</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Conference, Interrupted]]></title>
<link href="http://foodfightshow.org//2018/04/conference-interrupted.html"/>
<updated>2018-04-02T11:55:00-04:00</updated>
<id>http://foodfightshow.org//2018/04/conference-interrupted</id>
<content type="html"><![CDATA[<p>Winter storm Toby hit the Northeast US, including Baltimore, on Wednesday, March 21, 2018. DevOpsDays Baltimore was originally scheduled for Wednesday, March 21 and Thursday, March 22. The conference was moved to Thursday, March 22 and Friday, March 23. This move impacted everyone associated with the conference: attendees, sponsors, speakers, organizers, and vendors.</p>
<p>Join some of the organizers of <a href="https://www.devopsdays.org/events/2018-baltimore/welcome/">DevOpsDays Baltimore 2018</a> as they host a learning review and share their experience about the impact Winter Storm Toby had on the conference.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/HKeGAJfrQmU" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org//2018/04/conference-interrupted.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org//2018/04/conference-interrupted.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org//2018/04/conference-interrupted.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="https://www.youtube.com/watch?v=HKeGAJfrQmU">Video</a></li>
<li><a href="http://traffic.libsyn.com/foodfight/FFS118.mp3">Audio</a></li>
</ul>
</li>
</ul>
<!-- more -->
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Delali Dzirasa <a href="https://github.com/deld">github</a>, <a href="https://twitter.com/delalidzirasa">twitter</a></li>
<li>Meghan Butler <a href="https://github.com/megbutler">github</a>, <a href="https://twitter.com/_mcbee13">twitter</a></li>
<li>Kevin Chung <a href="https://github.com/KRS-One">github</a></li>
<li>Nell Shamrell-Harrington <a href="https://github.com/nellshamrell">github</a>, <a href="https://twitter.com/nellshamrell">twitter</a>, <a href="http://nellshamrell.com/">blog</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<hr />
<h2>Upcoming Chef Events</h2>
<ul>
<li><a href="https://chefconf.chef.io/">ChefConf</a> - May 22-25, Chicago, IL</li>
<li><a href="https://events.chef.io/">View all upcoming events</a></li>
</ul>
<!-- more -->
<h2>Show Notes</h2>
<h2>Winter Storm Toby Impact on DevOpsDays Baltimore 2018</h2>
<p>Winter storm Toby hit the Northeast US, including Baltimore, on Wednesday, March 21, 2018. DevOpsDays Baltimore was originally scheduled for Wednesday, March 21 and Thursday, March 22. The conference was moved to Thursday, March 22 and Friday, March 23. This move impacted everyone associated with the conference: attendees, sponsors, speakers, organizers, and vendors.</p>
<h3>Constituents</h3>
<p>There are four main constituents for the conference:</p>
<ol>
<li>Attendees</li>
<li>Speakers</li>
<li>Sponsors</li>
<li>Vendors</li>
</ol>
<h3>Timeline</h3>
<p>All dates and times listed below are during March, 2018 and listed in Easter Daylight Time. Sub-bullets provide some additional commentary made possible with the benefit of hindsight bias.</p>
<ul>
<li>16 - 11:00 - <em>Baltimore Slack</em> - Did anyone happen to look at the weather next week for tuesday going in to wednesday? It’s not supposed to be pretty
<ul>
<li>This is the first time we detected the possible situation.</li>
</ul>
</li>
<li>16 - 11:07 - <em>Baltimore Slack</em> - yeah, it’s still too early to know and we’ll have to monitor for how it really turns out (4th Nor’easter)- enough with the cold weather
<ul>
<li>Alert fatigue. The previous 3 nor’easters did not really have much of an impact on Baltimore, outside of wind.</li>
</ul>
</li>
<li>16 - 11:08 - <em>Baltimore Slack</em> - Do we have access to coat racks at IMET?
<ul>
<li>Coat racks ;)</li>
</ul>
</li>
<li>16 - 11:08 - <em>Baltimore Slack</em> - that will be a good question for our contact at the IMET - I don’t think we had anticipated that considering the date</li>
<li>16 - 11:29 - <em>Baltimore Slack</em> - this may be a crazy hail mary….but lets say the area gets slammed and roads aren’t drivable, do we have the option to move from the 21-22, to 22-23rd? lets hope the storm passes by with no issues though :pray:</li>
<li>16 - 12:10 - <em>Baltimore Slack</em> - Nothing is technically scheduled on the 23rd… that’s really a worst case scenario I would think if we have to shift the conference 22-23rd. the one thing to note for the 21st is that IMET follows UMBC policy so if the university is delayed opening that would affect IMET as well
<ul>
<li>Turns out, the facility follows the University of Baltimore, not UMBC</li>
</ul>
</li>
<li>16 - 13:34 - <em>Baltimore Slack</em> - ah - good point…hopefully it’s a non issues, but we should plan for it. If delayed X hours, do we just push everything back on the schedule X hours?</li>
<li>16 - 13:43 - <em>Baltimore Slack</em> - probably can monitor <a href="https://my.umbc.edu/groups/transit/posts">https://my.umbc.edu/groups/transit/posts</a> for any delayed opening announcement (looks like the last delayed opening was back in February)</li>
<li>17 - 10:36 - <em>Baltimore Slack</em> - conversation switches to planning for supplies required for running open spaces.</li>
<li>19 - 9:36 - <em>Baltimore Slack</em> - @channel help? - a sponsor reached out to the sponsor liaison to inquire about what the plans were for inclement weather. Is there a make-up date? Are partial refunds an option?
<ul>
<li>a customer raised the priority of an ongoing incident</li>
</ul>
</li>
<li>19 - 9:37 - <em>Baltimore Slack</em> - Ugh I want to keep ignoring that, esp while it’s in the 50s today :sob::sob: I don’t think we’re going to have to cancel, it’s not supposed to get below freezing or start til Weds morning from what I’m seeing. Just may be a mess for people coming in Weds morning. But I guess we have to be prepared…</li>
<li>19 - 9:53 - <em>Baltimore Slack</em> - remind me. was Friday 3/23 available at IMET?</li>
<li>19 - 9:53 - <em>Baltimore Slack</em> - might be a good idea to get some sort of communication out that we’re monitoring the weather situation and to mirror that IMET follows UMBC’s policy. We’d need to nail that down with our contact there. There’s nothing scheduled for 3/23 but when we originally scheduled he said we have flexibility as far as moving things out that day as it’s open for load-out</li>
<li>19 - 9:56 - <em>Baltimore Slack</em> - Let’s get some comms out; Put out a simple poll from folk to see if pushing to Thurs/Friday is preferred to a total reschedule; <em>we need to work a few things in parallel</em>
<ul>
<li>Managing this incident begins in earnest.</li>
</ul>
</li>
<li>19 - 9:57 - <em>Baltimore Slack</em> - we can gather all of the data points and make a more informed decision….if all of the vendors say we’re out of luck, that will help drive our decision</li>
<li>19 - 10:02 - <em>Baltimore Slack</em> - Fwiw we should consider that folks have made travel arrangements and hotel bookings in our decision</li>
<li>19 - 10:03 - <em>Baltimore Slack</em> - how many folks are in that boat?</li>
<li>19 - 10:03 - <em>Baltimore Slack</em> - I know there’s a handful of speakers, I can pull that number later. We should also ask Hotel RL if they tell us how many have used the discount code</li>
<li>19 - 10:04 - <em>Baltimore Slack</em> - not sure we have time for <code>later</code>…can you pull now please. We’ll need to make a call ASAP lots of moving parts</li>
<li>19 - 10:04 - <em>Baltimore Slack</em> - I’m otr
<ul>
<li>Not all responders have full availability and capability to respond throughout the entire incident.</li>
</ul>
</li>
<li>19 - 10:06 - <em>Baltimore Slack</em> - Let’s check with the facility: 1) Is it possible to move to Thurs/Friday (if needed) at no additional costs 2) Can you see if they have 2 days the last week of April as alternate dates?</li>
<li>19 - 10:28 - <em>Email</em> - To sponsors, prefer one day or one month delay?</li>
<li>19 - 10:28 - <em>Baltimore Slack</em> - just sent an email out to sponsors and cc’d the organizers list so we’ll all see the responses
<ul>
<li>lots of conversation around gathering additional data, not captured here to keep the timeline concise.</li>
</ul>
</li>
<li>19 - 10:46 - <em>Email</em> - To speakers, prefer one day or one month delay? Ask for response by 11:45am, we are looking to make a decision by 12 noon</li>
<li>19 - 11:09 - <em>Baltimore Slack</em> - there are a total of 8 speakers for 7 talks that we consider “Out of Radius”</li>
<li>19 - 11:11 - <em>Baltimore Slack</em> - IF we push by 1 day…..its best to keep the Thurs schedule a planned but please reach out to those on the Wed schedule and see if they could do Friday</li>
<li>19 - 11:13 - <em>Baltimore Slack</em> - catering is willing to work with us on whatever we end up doing. they’ve ordered all the product but they’d see what they could return if we wait til april or they could make thurs/fri work. have to make a decision if we’re going to push by tuesday evening since they’d start baking that night for day 1 breakfast
<ul>
<li>One vendor covered. New deadline for a decision.</li>
</ul>
</li>
<li>19 - 11:13 - <em>Baltimore Slack</em> - its almost unanimous that <code>speakers</code> want a 1 day push vs 1 month
<ul>
<li>Another constituent covered.</li>
</ul>
</li>
<li>19 - 11:14 - <em>Baltimore Slack</em> - Are the parking vouchers tied to our dates?</li>
<li>19 - 11:21 - <em>Baltimore Slack</em> - Poll organizers. Should we push one day or one month? 9 votes for one day, 0 votes for one month
<ul>
<li>Project fatigue? We’re this close, let’s ship this thing as soon as we can.</li>
</ul>
</li>
<li>19 - 11:21 - <em>Baltimore Slack</em> - Alright here’s the plan for speakers. I’m holding off until an official decision by this group - by Noon per emails - to reach out with next steps. If we decide to keep it this week and offset by a day my plan is to check all speakers’ availability and come up with a new schedule for thursday/friday to maximize speakers’ availability. It will be essentially a case by case basis.</li>