forked from foodfight/foodfight.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
2701 lines (1937 loc) · 110 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>2014-07-10T13:25:17-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[Supermarket]]></title>
<link href="http://foodfightshow.org//2014/07/supermarket.html"/>
<updated>2014-07-08T13:26:00-04:00</updated>
<id>http://foodfightshow.org//2014/07/supermarket</id>
<content type="html"><![CDATA[<p>Join us for a discussion about the new community site: <a href="https://supermarket.getchef.com">Chef Supermarket</a>.</p>
<h2>Watch Now</h2>
<iframe width="420" height="315" src="http://www.youtube.com/embed/4qfIJY0DgGo" frameborder="0" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org/2014/07/supermarket.html#panel">Panel</a></li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>You?! Send a pull request for our <a href="https://github.com/foodfight/showz/blob/master/scripts/episode-76-supermarket.md">show notes</a></li>
<li>Jeff Carapetyan <a href="https://twitter.com/DevopsJeff">twitter</a></li>
<li>Chris Webber <a href="http://github.com/cwebberops">github</a>, <a href="http://twitter.com/cwebber">twitter</a>, <a href="http://cwebber.net/">blog</a></li>
<li>Mike Fiedler <a href="http://github.com/miketheman">github</a>, <a href="http://twitter.com/mikefiedler">twitter</a>, <a href="http://www.miketheman.net">blog</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, irc: nathenharvey, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://youtu.be/4qfIJY0DgGo">Video</a></li>
<li>Audio - Coming soon</li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/bryanwb">Bryan Berry</a> and <a href="https://twitter.com/nathenharvey">Nathen Harvey</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.getchef.com">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[Chef Metal]]></title>
<link href="http://foodfightshow.org//2014/06/chef-metal.html"/>
<updated>2014-06-04T14:07:00-04:00</updated>
<id>http://foodfightshow.org//2014/06/chef-metal</id>
<content type="html"><![CDATA[<p>Join us as we discuss <a href="https://github.com/opscode/chef-metal">chef-metal</a> with it’s creator, <a href="https://twitter.com/jkeiser2">John Keiser</a></p>
<h2>Watch Now</h2>
<iframe width="420" height="315" src="http://www.youtube.com/embed/oiMh0RNtR08" frameborder="0" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org/2014/06/chef-metal.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org/2014/06/chef-metal.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org/2014/06/chef-metal.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow75-Chef-Metal.mp3">Audio</a></li>
<li><a href="https://www.youtube.com/watch?v=oiMh0RNtR08">Video</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>John Keiser <a href="https://github.com/jkeiser">github</a>, <a href="https://twitter.com/jkeiser2">twitter</a></li>
<li>Dafydd Crosby <a href="https://github.com/dafyddcrosby">github</a>, <a href="https://twitter.com/dafyddcrosby">twitter</a>, <a href="http://dafyddcrosby.com">blog</a></li>
<li>Matt Wrock <a href="https://github.com/mwrock">github</a>, <a href="https://twitter.com/mwrockx">twitter</a>, <a href="http://www.mattwrock.com/">blog</a></li>
<li>Ranjib Dey <a href="https://github.com/ranjib">github</a>, <a href="https://twitter.com/ranjibdey">twitter</a>, <a href="http://ranjib.posterous.com/">blog</a></li>
<li>Matt Ray <a href="http://github.com/mattray">github</a>, <a href="http://twitter.com/mattray">twitter</a>, irc: mattray, <a href="http://www.leastresistance.net/">blog</a></li>
<li>Brandon Burton <a href="http://github.com/solarce">github</a>, <a href="https://twitter.com/solarce">twitter</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, irc: nathenharvey, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<!-- more -->
<p></p>
<h2>Outline<a name="outline"></a></h2>
<h3>Chef News</h3>
<ul>
<li><a href="https://www.packtpub.com/managing-windows-servers-with-chef/book">Managing Windows Servers with Chef</a> - A new book by John Ewart</li>
<li><a href="http://www.getchef.com/blog/event/dockercon-san-francisco/">DockerCon</a> - June 9-10</li>
<li><a href="https://learnchef.opscode.com/additional-resources/">Chef Fundamentals Webinar Series</a></li>
<li><a href="http://texaslinuxfest.org/">Texas Linux Fest</a> - June 13-14
<ul>
<li><a href="http://texaslinuxfest.org/content/chef-workshop">Chef Workshop</a> - June 13</li>
</ul>
</li>
<li><a href="http://www.meetup.com/austin-devops/events/184388262/?a=ea1_grp&rv=ea1&_af_eid=184388262&_af=event">Austin Chef Meetup</a> - June 18</li>
<li><a href="http://velocityconf.com/velocity2014">Velocity</a> - June 24-26
<ul>
<li><a href="http://velocityconf.com/velocity2014/public/schedule/detail/36962">Chef hack day at Velocity</a></li>
</ul>
</li>
<li><a href="http://devopsdays.org/events/2014-siliconvalley/">DevOpsDays Silicon Valley</a> - June 27-28</li>
<li>Upcoming Training
<ul>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-boston-4/">Boston</a> - June 16-17</li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-washington-dc-2/">DC</a> - June 18-19</li>
<li><a href="http://www.getchef.com/blog/event/3-day-chef-fundamentals-windows-online/">Online - Windows class</a> - June 23-25</li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-san-francisco-8/">San Francicso</a> - June 25-26</li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-london-uk-2/">London</a> - June 26-27</li>
<li></li>
</ul>
</li>
</ul>
<h3>Show Notes</h3>
<ul>
<li><a href="https://github.com/opscode/chef-metal">chef-metal</a> - A library for creating machines and infrastructures idempotently in Chef.
<ul>
<li>Drivers</li>
<li><ul>
<li><a href="https://www.youtube.com/watch?v=Yb8QdL30WgM">Chef Metal: Automate Your Whole Cluster In Chef</a> - #ChefConf 2014 Presentation on Chef Metal</li>
</ul>
</li>
</ul>
</li>
<li><a href="https://github.com/mattray/spiceweasel">spiceweasel</a> - Generates Chef knife commands from a simple JSON or YAML file.
<ul>
<li>Clusters</li>
<li>Code Smell</li>
</ul>
</li>
<li>Running Recipes (Provisioning)</li>
<li>Using chef-metal in action (Use cases)
<ul>
<li>chef-mental and <a href="https://github.com/test-kitchen/test-kitchen">test-kitchen</a></li>
<li>Orchestration</li>
</ul>
</li>
<li>Getting Started with chef-metal</li>
<li>Autoscaling</li>
<li><a href="https://github.com/opscode/chef-metal-fog">chef-metal-fog</a> - a Fog provisioner for chef-metal</li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<h4>John Keiser</h4>
<ul>
<li>The <a href="http://berkshelf.com/">Berkshelf</a> Internal API</li>
<li><a href="http://hpmor.com/">Harry Potter and the Methods of Rationality by Less Wrong</a></li>
</ul>
<h4>Dafydd Crosby</h4>
<ul>
<li><a href="https://github.com/opscode/chef-metal">chef-metal</a></li>
<li><a href="http://www.openbsd.org/">OpenBSD</a></li>
<li><a href="http://shop.oreilly.com/product/0636920020042.do">Test-Driven Infrastructure with Chef: Bring behaviour-driven development to infrastructure as code by Stephen Nelson-Smith</a></li>
</ul>
<h4>Matt Wrock</h4>
<ul>
<li><a href="http://shop.lenovo.com/us/en/laptops/thinkpad/x-series/x1-carbon/">ThinkPad X1 Carbon Ultrabook</a></li>
<li><a href="http://www.ubuntu.com/certification/hardware/201403-14827/">Ubuntu on Lenovo ThinkPad X1 Carbon 2nd</a></li>
</ul>
<h4>Matt Ray</h4>
<ul>
<li><a href="http://vimeo.com/95284690">Pete Cheslock: 17th Century Shipbuilding and Your Failed Software Project</a></li>
<li><a href="http://vimeo.com/95066828">James Mickens: Say “Word Count” One More Time</a></li>
<li><a href="http://softwaredefinedtalk.com/">SoftwareDefinedTalk Podcast</a>, <a href="https://twitter.com/SoftwareDefTalk">@SoftwareDefTalk</a></li>
<li><a href="http://www.meetup.com/EmacsATX/">EmacsATX</a></li>
</ul>
<h4>Brandon Burton</h4>
<ul>
<li><a href="https://vimeo.com/55503728">Rebuilding a Bird in Flight</a></li>
<li><a href="http://en.wikipedia.org/wiki/The_Riftwar_Cycle">The Riftwar Cycle</a></li>
</ul>
<h4>Nathen Harvey</h4>
<ul>
<li><a href="http://pittsburghpa.gov/">Pittsburgh!</a></li>
<li><a href="http://new.livestream.com/devopsdaysorg/events/3044568/videos/52394934">From Hero to Zero</a></li>
<li><a href="https://github.com/opscode/chef-metal">chef-metal</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow75-Chef-Metal.mp3">Audio</a></li>
<li><a href="https://www.youtube.com/watch?v=oiMh0RNtR08">Video</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/bryanwb">Bryan Berry</a> and <a href="https://twitter.com/nathenharvey">Nathen Harvey</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.getchef.com">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[DevOps Days Pittsburgh]]></title>
<link href="http://foodfightshow.org//2014/06/devops-days-pittsburgh.html"/>
<updated>2014-06-03T08:59:00-04:00</updated>
<id>http://foodfightshow.org//2014/06/devops-days-pittsburgh</id>
<content type="html"><![CDATA[<ul>
<li><a href="http://foodfightshow.org/2014/04/devops-days-pittsburgh.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org/2014/04/devops-days-pittsburgh.html#outline">Outline</a></li>
<li>Download
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow74-DevOpsDaysPittsburgh.mp3">Audio</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Jake Champlin <a href="http://github.com/grubernaut">github</a>, <a href="https://twitter.com/grubernaut">twitter</a>, irc: grubernaut, <a href="https://grubernaut.github.io">blog</a></li>
<li><p>Pete Cheslock <a href="http://twitter.com/petecheslock">twitter</a>, <a href="http://blog.pete.io">blog</a>, <a href="https://github.com/petecheslock">github</a>, irc: petecheslock</p></li>
<li><p>Andrew Clay Shafer <a href="http:twitter.com/littleidea">twitter</a></p></li>
<li>Julian Dunn <a href="https://twitter.com/julian_dunn">twitter</a>, <a href="https://github.com/juliandunn">github</a></li>
<li>John Vincent, aka Lusis <a href="https://twitter.com/#!/lusis">twitter</a>, <a href="https://github.com/lusis">github</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, irc: nathenharvey, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<!-- more -->
<h2>Outline<a name="outline"></a></h2>
<ul>
<li><a href="http://devopsdays.org/events/2014-pittsburgh/">DevOpsDays: Pittsburgh</a>
<ul>
<li><a href="http://new.livestream.com/devopsdaysorg/events/3044568/videos/52394934">Talks (Videos)</a></li>
</ul>
</li>
<li>Jake Cham;lin’s First DevOpsDays Experience
<ul>
<li><a href="https://twitter.com/grubernaut">@grubernaut</a></li>
<li><a href="http://www.brenbarn.net/werewolf/rules.html">Werewolf</a></li>
</ul>
</li>
<li>Jennifer Davis’ Talk <a href="http://devopsdays.org/events/2014-pittsburgh/proposals/From%20Hero%20to%20Zero/">From Zero to Hero</a>
<ul>
<li><a href="https://twitter.com/sigje">@sigje</a></li>
<li><a href="https://www.youtube.com/watch?v=TV7XnD7TM2A">#ChefConf 2014: Adam Jacob, “Keynote Session”</a></li>
</ul>
</li>
<li>John Ellian
<ul>
<li><a href="http://www.gdc4s.com/">General Dynamics</a></li>
</ul>
</li>
<li>Pete Cheslock’s Talk <a href="http://devopsdays.org/events/2014-pittsburgh/proposals/DevOps%20How%20to%20Fail%20With%20One%20Weird%20Trick/">DevOps: How to Fail With One Weird Trick</a>
<ul>
<li><a href="https://twitter.com/petecheslock">@petecheslock</a></li>
<li>Sports Analogies</li>
</ul>
</li>
<li>John Vincent, aka Lusis on DevOpsDays
<ul>
<li><a href="https://twitter.com/#!/lusis">@lusis</a></li>
</ul>
</li>
<li>Cayci Gorlitsky
<ul>
<li><a href="https://twitter.com/caycicayci">@caycicaysi</a></li>
<li><a href="http://www.meetup.com/PyLadies-Charleston/">PyLadies Charleston</a></li>
<li><a href="https://twitter.com/PyLadiesCHS">@PyLadiesCHS</a></li>
</ul>
</li>
<li>Bridget Kromhout
<ul>
<li><a href="https://twitter.com/bridgetkromhout">@bridgetkromhout</a></li>
<li><a href="http://devopsagainsthumanity.com/">DevOps Against Humanity</a></li>
</ul>
</li>
<li>Julian Dunn
<ul>
<li><a href="https://twitter.com/julian_dunn">@julian_dunn</a></li>
</ul>
</li>
<li>Ben Rockwood
<ul>
<li><a href="https://twitter.com/benr">@benr</a></li>
<li><a href="http://www.joyent.com/">Joyent</a></li>
<li><a href="http://www.coda.cs.cmu.edu/">Coda</a></li>
</ul>
</li>
<li>Anthony Mastrean
<ul>
<li><a href="https://twitter.com/AnthonyMastrean">@AnthonyMastrean</a></li>
</ul>
</li>
<li>Nivia H
<ul>
<li><a href="https://twitter.com/Lanooba">@Lanooba</a></li>
</ul>
</li>
<li>Dan on Organizing DevOpsDays
<ul>
<li><a href="https://twitter.com/meatballhat">@meatballhat</a></li>
</ul>
</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Management in Operations]]></title>
<link href="http://foodfightshow.org//2014/06/management-in-operations.html"/>
<updated>2014-06-03T05:59:00-04:00</updated>
<id>http://foodfightshow.org//2014/06/management-in-operations</id>
<content type="html"><![CDATA[<ul>
<li><a href="http://foodfightshow.org/2014/04/management-in-operations.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org/2014/04/management-in-operations.html#outline">Outline</a></li>
<li>Download
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow73-ManagementInOperations.mp3">Audio</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Kevin Behr <a href="https://twitter.com/kevinbehr">twitter</a></li>
<li>Mark Imbriaco <a href="https://twitter.com/markimbriaco">twitter</a></li>
<li>Ben Rockwood <a href="https://twitter.com/benr">twitter</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, irc: nathenharvey, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<!-- more -->
<p></p>
<h2>Outline<a name="outline"></a></h2>
<ul>
<li><a href="http://www.amazon.com/The-Phoenix-Project-Helping-Business/dp/0988262592">The Phonenix Project by Kevin Behr, George Spafford, and Gene Kim</a></li>
<li>Kevin’s DevOpsDays Opening Keynote (TL;DR)</li>
<li>Prioritization</li>
<li>Command Narative</li>
<li>Strategic Intent</li>
<li>Mission Statements</li>
<li>Operations</li>
<li>Context</li>
<li>Embedding Ops</li>
<li>Interface</li>
<li>Middle Management</li>
<li><a href="http://en.wikipedia.org/wiki/Cynefin">Cynefin</a></li>
<li>Processes</li>
<li>Scaling Teams</li>
<li>Feedback</li>
<li><a href="http://en.wikipedia.org/wiki/Kanban">Kanban</a></li>
<li>Working in IT</li>
<li>Context Switching</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Cookbook Patterns]]></title>
<link href="http://foodfightshow.org//2014/04/cookbook-patterns.html"/>
<updated>2014-04-29T18:05:00-04:00</updated>
<id>http://foodfightshow.org//2014/04/cookbook-patterns</id>
<content type="html"><![CDATA[<h1>Watch Now</h1>
<iframe width="420" height="315" src="http://www.youtube.com/embed/B7PXdl4jYGQ" frameborder="0" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org/2014/04/cookbook-patterns.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org/2014/04/cookbook-patterns.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org/2014/04/cookbook-patterns.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow72-CookbookPatterns.mp3">Audio</a></li>
<li><a href="http://youtu.be/B7PXdl4jYGQ">Video</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Jamie Winsor - <a href="https://github.com/reset">github</a>, <a href="https://twitter.com/resetexistence">twitter</a>, <a href="http://vialstudios.com/">blog</a></li>
<li>Tom Duffield - <a href="http://github.com/tduffield">github</a>, <a href="http://twitter.com/tomduffield">twitter</a>, <a href="http://tomduffield.com">blog</a>, irc: tomduffield</li>
<li>Brandon Burton <a href="http://github.com/solarce">github</a>, <a href="https://twitter.com/solarce">twitter</a></li>
<li>Mike Fiedler <a href="http://github.com/miketheman">github</a>, <a href="http://twitter.com/mikefiedler">twitter</a>, <a href="http://www.miketheman.net">blog</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, irc: nathenharvey, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<!-- more -->
<h2>Outline<a name="outline"></a></h2>
<h3>Chef News</h3>
<ul>
<li>#ChefConf 2014 - <a href="http://www.youtube.com/watch?v=g-BF0z7eFoU&list=PL11cZfNdwNyMmx0msapJfuGsLV43C7XsA">Watch all the videos on YouTube!</a></li>
<li>Awesome Community Chefs</li>
<li><a href="http://www.getchef.com/blog/2014/04/29/chefdk-0-1-0-released/">ChefDK 0.1.0 Released</a></li>
<li>Upcoming Conferences
<ul>
<li><a href="http://lopsa-east.org/2014/">LOPSA-East</a> - Featuring talks from five Chef employees! Jennifer Davis, Mandi Walls, Michael Goetz, Mark Harrison, and Nathen Harvey</li>
<li><a href="http://devopsdays.org/events/2014-austin/">DevOps Days Austin</a> - including a talk from Matt Ray</li>
<li><a href="http://devopsdays.org/events/2014-pittsburgh/">devopsdays Pittsburgh</a> - Featuring talks from Kevin Behr, Pete Cheslock, Jennifer Davis, and Nathen Harvey</li>
</ul>
</li>
<li>Upcoming Training
<ul>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-chicago-3/">Chicago</a> - May 6 & 7</li>
<li><a href="http://www.getchef.com/blog/event/intermediateadvanced-chef-london-uk/">London</a> - May 13 & 14 - Intermediate Chef</li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamental-san-francisco/">San Francisco</a> - May 21 & 22</li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-dallas-2/">Dallas</a> - May 27 & 28</li>
</ul>
</li>
</ul>
<h3>Show Notes</h3>
<ul>
<li><a href="http://blog.vialstudios.com/the-environment-cookbook-pattern/">Jamie’s blog post on the subject</a>
<ul>
<li><a href="https://github.com/RiotGames/motherbrain">motherbrain</a></li>
</ul>
</li>
<li><a href="http://www.youtube.com/watch?v=bzmxKwWrLCM">Tom’s #ChefConf 2014 talk: “Everything As A Cookbook: Service Oriented Thinking for Your Code”</a></li>
<li>Modularity & Reusability</li>
<li>Adoption of Patterns</li>
<li>Patterns
<ul>
<li>Library</li>
<li>Application</li>
<li>Environment</li>
<li>Base</li>
<li>Wrapper</li>
</ul>
</li>
<li>Wrapping Community Cookbooks</li>
<li><a href="https://github.com/reset/berkflow">berkflow</a>
<ul>
<li><a href="https://github.com/berkshelf/berkshelf">berkshelf</a></li>
</ul>
</li>
<li>Roles</li>
<li>Learning Chef
<ul>
<li><a href="http://www.youtube.com/watch?v=Dq_vGxd-jps">Jamie’s #ChefConf 2014 talk: “The Berkshelf Vision”</a></li>
</ul>
</li>
<li>Bringing Chef Into an Organization</li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<h4>Jamie</h4>
<ul>
<li><a href="http://www.getchef.com/downloads/chef-dk/">ChefDK</a></li>
<li><a href="http://www.consul.io/">Consul</a></li>
</ul>
<h4>Tom</h4>
<ul>
<li><a href="http://www.bbcamerica.com/orphan-black/">Orphan Black</a></li>
<li><a href="https://www.youtube.com/user/emergencyawesome">Emergency Awesome</a></li>
<li><a href="http://devopsdays.org/events/2014-minneapolis/">DevOps Days Minneapolis</a></li>
</ul>
<h4>Brandon</h4>
<ul>
<li><a href="http://seedlingsshow.com/">Seedlings Show</a></li>
<li><a href="http://blog.travis-ci.com/2014-04-28-changing-some-code-instrument-it/">Changing Some Code? Instrument It!</a></li>
<li><a href="https://www.youtube.com/watch?v=XiXZOF6dZuE&feature=youtu.be">Jepsen II: Linearizable Boogaloo</a></li>
</ul>
<h4>Mike</h4>
<ul>
<li>Take a vacation, at least a week!</li>
<li><a href="https://vimeo.com/26330100">Less - The Path to Better Design</a></li>
<li><a href="http://www.farawayfoods.com/hotsesameoil.html">House of Tsang Hot Chili Sesame Oil</a></li>
</ul>
<h4>Nathen</h4>
<ul>
<li>Working at Chef means unlimited paid time off! Checkout our <a href="http://www.getchef.com/careers/">job openings</a></li>
<li><a href="http://getchef.com/summit">Chef Summit</a> - Save the date! October 2-3 in Seattle, WA.</li>
<li><a href="https://github.com/opscode/chef-metal">Chef Metal</a> and <a href="http://www.youtube.com/watch?v=Fo4dtt6fXNc">Mandi’s demo from #ChefConf</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow72-CookbookPatterns.mp3">Audio</a></li>
<li><a href="http://youtu.be/B7PXdl4jYGQ">Video</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/bryanwb">Bryan Berry</a> and <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show and the <a href="http://us6.campaign-archive2.com/home/?u=7d43a288e882a145b7e99c650&id=ad8186466d">newsletter</a> are sponsored, in part, by <a href="http://www.getchef.com">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[We're Doing It Wrong]]></title>
<link href="http://foodfightshow.org//2014/01/were-doing-it-wrong.html"/>
<updated>2014-01-10T11:50:00-05:00</updated>
<id>http://foodfightshow.org//2014/01/were-doing-it-wrong</id>
<content type="html"><![CDATA[<h1>Watch Now</h1>
<iframe width="560" height="315" src="http://foodfightshow.org///www.youtube.com/embed/iDcpSbAvyHw" frameborder="0" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org/2014/01/were-doing-it-wrong.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org/2014/01/were-doing-it-wrong.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org/2014/01/were-doing-it-wrong.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow71-We_Are_Doing_It_Wrong.mp3">Audio</a></li>
<li><a href="http://youtu.be/iDcpSbAvyHw">Video</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Bryan Berry <a href="http://github.com/bryanwb">github</a>, <a href="http://twitter.com/bryanwb">twitter</a>, irc: bryanwb, blog: <a href="http://devopsanywhere.blogspot.com">devopsanywhere</a></li>
<li>John Vincent, aka Lusis <a href="https://twitter.com/#!/lusis">twitter</a>, <a href="https://github.com/lusis">github</a></li>
<li>Mike Fiedler <a href="http://github.com/miketheman">github</a>, <a href="http://twitter.com/mikefiedler">twitter</a>, <a href="http://www.miketheman.net">blog</a></li>
<li>Ranjib Dey <a href="https://github.com/ranjib">github</a>, <a href="https://twitter.com/ranjibdey">twitter</a>, <a href="http://ranjib.posterous.com/">blog</a></li>
</ul>
<!-- more -->
<p></p>
<h2>Outline<a name="outline"></a></h2>
<ul>
<li>Using a general key value store for storing configuration data</li>
<li><a href="https://github.com/coreos/etcd">Etcd</a> vs <a href="http://zookeeper.apache.org">ZooKeeper</a></li>
<li><a href="http://sysadvent.blogspot.it/2013/12/day-20-distributed-configuration-data.html">Kelsey Hightower’s SysAdvent post on etcd</a></li>
<li>Latency</li>
<li><a href="https://github.com/opscode-cookbooks/chef-server">chef-server</a></li>
<li>Configuration Management</li>
<li><a href="https://github.com/apache/cassandra">cassandra</a></li>
<li><a href="http://www.hazelcast.com/">Hazelcast</a></li>
<li>Use cases</li>
<li>Pre-baking images</li>
<li><a href="https://github.com/opscode/omnibus">omnibus</a></li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<h4>Lusis</h4>
<ul>
<li><a href="http://www.gocontigo.com/mugs/16-oz-autoseal-west-loop-stainless-travel-mug.html">autoseal travel mug</a></li>
<li><a href="http://influxdb.org/">influxdb</a></li>
<li><a href="devopsanywhere.blogspot.com/2013/11/why-im-learning-java.html">Why I’m learning Java</a> Bryan’s blog post post on why he is learning a relatively boring programming language</li>
</ul>
<h4>Mike</h4>
<ul>
<li><a href="https://www.bountysource.com/">Bounty Source</a></li>
<li><a href="http://codetriage.com">CodeTriage</a></li>
</ul>
<h4>Ranjib</h4>
<ul>
<li><a href="http://criu.org">Check Point Restore in Userspace</a></li>
<li><a href="https://github.com/sosedoff/lxc-ruby">ruby-lxc</a> native binding to lxc for Ruby</li>
<li><a href="https://github.com/ctdk/goiardi">Chef Server written in Go</a></li>
</ul>
<h4>Bryan</h4>
<ul>
<li><a href="https://github.com/jingweno/gh">gh</a>, command-line tool for interacting github</li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow71-We_Are_Doing_It_Wrong.mp3">Audio</a></li>
<li><a href="http://youtu.be/iDcpSbAvyHw">Video</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/bryanwb">Bryan Berry</a> and <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show and the <a href="http://us6.campaign-archive2.com/home/?u=7d43a288e882a145b7e99c650&id=ad8186466d">newsletter</a> are sponsored, in part, by <a href="http://www.opscode.com">Opscode</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[OpsWorks]]></title>
<link href="http://foodfightshow.org//2013/12/opsworks.html"/>
<updated>2013-12-17T21:16:00-05:00</updated>
<id>http://foodfightshow.org//2013/12/opsworks</id>
<content type="html"><![CDATA[<p>Watch and listen to our discussion of Amazon’s <a href="http://aws.amazon.com/opsworks/">OpsWorks</a>.</p>
<h1>Watch Now</h1>
<iframe width="420" height="315" src="http://www.youtube.com/embed/cJjvLZXpOxg" frameborder="0" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org/2013/12/opsworks.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org/2013/12/opsworks.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org/2013/12/opsworks.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow-70-OpsWorks.mp3">Audio</a></li>
<li><a href="http://youtu.be/cJjvLZXpOxg">Video</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Jonathan Weiss <a href="https://github.com/jweiss">github</a>, <a href="https://twitter.com/jweiss">twitter</a></li>
<li>Brandon Burton <a href="http://github.com/solarce">github</a>, <a href="https://twitter.com/solarce">twitter</a></li>
<li>Mike Fiedler <a href="http://github.com/miketheman">github</a>, <a href="http://twitter.com/mikefiedler">twitter</a>, <a href="http://www.miketheman.net">blog</a></li>
<li>Tom Duffield <a href="http://github.com/tduffield">github</a>, <a href="http://twitter.com/tomduffield">twitter</a>, <a href="http://tomduffield.com">blog</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, irc: nathenharvey, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<!-- more -->
<h2>Outline<a name="outline"></a></h2>
<h3>Chef News</h3>
<ul>
<li><a href="http://www.getchef.com/blog/2013/12/09/chef-the-company-formerly-known-as-opscode/">Opscode is now Chef</a></li>
<li><a href="http://chefconf.com">#ChefConf 2014</a> ultra-early-bird pricing ends on 31 December. Get your tickets now!</li>
<li>Upcoming Chef Training Events
<ul>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-philadelphia-area/">Philadelphia</a></li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-san-francisco-4/">San Francisco</a></li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-chicago-2/">Chicago</a></li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-boston-area/">Boston</a></li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-amsterdam/">Amsterdam</a></li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-phoenix/">Phoenix</a></li>
<li><a href="http://www.getchef.com/blog/event/2-day-chef-fundamentals-london/">London</a></li>
</ul>
</li>
</ul>
<h3>Show Notes</h3>
<ul>
<li>Chef News</li>
<li>Introductions</li>
<li><a href="http://aws.amazon.com/opsworks/">AWS OpsWorks</a></li>
<li><a href="http://aws.amazon.com/">Amazon Web Services</a></li>
<li><a href="http://aws.amazon.com/ec2/">Amazon EC2</a></li>
<li><a href="https://github.com/scalarium">scalarium</a></li>
<li><a href="http://aws.amazon.com/cloudformation/">AWS CloudFormation</a></li>
<li>AWS OpsWorks Under the Hood - <a href="http://www.slideshare.net/AmazonWebServices/aws-opsworks-under-the-hood-dmg304-aws-reinvent-2013">Slides</a>, <a href="http://www.youtube.com/watch?v=913oT6xV-Qk">Video</a></li>
<li>Wrapping Solutions Around Chef vs Inside Chef</li>
<li><a href="https://github.com/opscode-cookbooks/chef-server">chef-server</a> and search</li>
<li><a href="http://docs.opscode.com/essentials_data_bags.html">Databags</a></li>
<li><a href="http://docs.aws.amazon.com/opsworks/latest/userguide/workingstacks-json.html">Use Custom JSON to Modify the Stack Configuration JSON</a></li>
<li>Attaching Opsworks stacks to an existing Chef server</li>
<li>Lifecycle Stages</li>
<li><a href="https://github.com/amazonwebservices">Amazon Web Services on Github</a></li>
<li>Operating Systems</li>
<li>Versioning Schemes</li>
<li>Metric Monitoring</li>
<li>The Configuration Drift</li>
<li><a href="http://aws.amazon.com/cloudtrail/faqs/">AWS CloudTrail</a></li>
<li><a href="http://docs.aws.amazon.com/opsworks/latest/userguide/troubleshoot-debug-log.html">Chef Logs</a></li>
<li><a href="http://docs.aws.amazon.com/opsworks/latest/userguide/cli-examples.html">Using the AWS OpsWorks CLI</a></li>
<li><a href="https://twitter.com/jeffbarr/status/413398665219149824">OpsWorks in iOS and Android</a></li>
<li>How Intuit Leveraged AWS OpsWorks as the Engine of Our PaaS - <a href="http://www.slideshare.net/AmazonWebServices/how-intuit-leveraged-aws-opsworks-as-the-engine-of-our-paas-dmg305-aws-reinvent-2013">Slides</a>, <a href="http://www.youtube.com/watch?v=fZ8HmekZabo">Video</a></li>
<li>Why Choose OpsWorks?</li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<h4>Jonathan</h4>
<ul>
<li><a href="http://nicolargo.github.io/glances/">Glances</a></li>
</ul>
<h4>Brandon</h4>
<ul>
<li><a href="http://engineering.linkedin.com/distributed-systems/log-what-every-software-engineer-should-know-about-real-time-datas-unifying">The Log: What every software engineer should know about real-time data’s unifying abstraction</a></li>
<li><a href="http://sysadvent.blogspot.com/2013/12/day-16-omnibusing-your-way-to-happiness.html">Sys Advent: omnibus’ing your way to happines</a></li>
</ul>
<h4>Mike</h4>
<ul>
<li><a href="http://myfridgefood.com/">my fridge food</a></li>
<li><a href="https://github.com/bbatsov/rubocop">RuboCop</a></li>
<li><a href="http://www.pylint.org/">Pylint</a></li>
<li><a href="https://github.com/zaach/jsonlint">JSON Lint</a></li>
<li><a href="https://twitter.com/wizonesolutions/status/413364827143540736">Best Pun Ever?!</a></li>
</ul>
<h4>Tom</h4>
<ul>
<li><a href="http://vim.spf13.com/">spf13-vim</a></li>
<li><a href="http://www.projectforawesome.com/">Project For Awesome</a></li>
</ul>
<h4>Nathen</h4>
<ul>
<li><a href="https://fosdem.org/">FOSDEM</a></li>
<li><a href="http://cfgmgmtcamp.eu/">cfgmgmtcamp</a></li>
</ul>
<h2>Download</h2>
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow-70-OpsWorks.mp3">Audio</a></li>
<li><a href="http://youtu.be/cJjvLZXpOxg">Video</a></li>
</ul>
<hr />
<p>The Food Fight Show is brought to you by <a href="https://twitter.com/bryanwb">Bryan Berry</a> and <a href="https://twitter.com/nathenharvey">Nathen Harvey</a> with help from other hosts and the awesome community of Chefs.</p>
<p>The show and the <a href="http://us6.campaign-archive2.com/home/?u=7d43a288e882a145b7e99c650&id=ad8186466d">newsletter</a> are sponsored, in part, by <a href="http://www.opscode.com">Opscode</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[Best Practices with Chef]]></title>
<link href="http://foodfightshow.org//2013/12/best-practices-with-chef.html"/>
<updated>2013-12-03T11:22:00-05:00</updated>
<id>http://foodfightshow.org//2013/12/best-practices-with-chef</id>
<content type="html"><![CDATA[<h1>Watch Now</h1>
<iframe width="420" height="315" src="http://www.youtube.com/embed/6mpZLEIzx-c" frameborder="0" allowfullscreen></iframe>
<ul>
<li><a href="http://foodfightshow.org/2013/12/best-practices-with-chef.html#panel">Panel</a></li>
<li><a href="http://foodfightshow.org/2013/12/best-practices-with-chef.html#outline">Outline</a></li>
<li><a href="http://foodfightshow.org/2013/12/best-practices-with-chef.html#picks">Picks</a></li>
<li>Download
<ul>
<li><a href="http://traffic.libsyn.com/foodfight/FoodFightShow69-Chef-Best-Practices.mp3">Audio</a></li>
<li><a href="http://youtu.be/6mpZLEIzx-c">Video</a></li>
</ul>
</li>
</ul>
<h2>Panel<a name="panel"></a></h2>
<ul>
<li>Dylan Northrup <a href="https://twitter.com/dylannorthrup">twitter</a>, <a href="https://github.com/dylannorthrup">github</a>, <a href="http://doc-x.net/blog/node/48">blog</a></li>
<li>Kris Buytaert <a href="https://twitter.com/KrisBuytaert">twitter</a>, <a href="https://github.com/KrisBuytaert">github</a>, <a href="http://www.krisbuytaert.be/blog/">blog</a></li>
<li>John Vincent, aka Lusis <a href="https://twitter.com/#!/lusis">twitter</a>, <a href="https://github.com/lusis">github</a></li>
<li>Julian Dunn <a href="https://twitter.com/julian_dunn">twitter</a>, <a href="https://github.com/juliandunn">github</a></li>
<li>Tom Robison <a href="https://twitter.com/thomasrobison">twitter</a></li>
<li>Bryan Berry <a href="http://github.com/bryanwb">github</a>, <a href="http://twitter.com/bryanwb">twitter</a>, irc: bryanwb, blog: <a href="http://devopsanywhere.blogspot.com">devopsanywhere</a></li>
<li>Nathen Harvey <a href="http://github.com/nathenharvey">github</a>, <a href="http://twitter.com/nathenharvey">twitter</a>, irc: nathenharvey, <a href="http://nathenharvey.com">blog</a></li>
</ul>
<!-- more -->
<h2>Outline<a name="outline"></a></h2>
<h4>FOSDEM & Configuration Management Camp EU</h4>
<p>Kris joins us to discuss FOSDEM and the Configuration Management Camp conferences. CFP for the FOSDEM <a href="https://penta.fosdem.org/submission/FOSDEM14">Configuration Management Dev Room closes on 8 Dec</a> and the <a href="http://cfgmgmtcamp.eu/">CFP for Configuration Management Camp</a> closes on 15 December. Submit your talks today!</p>
<p>Fletcher Nichol and <a href="http://www.opscode.com/blog/2013/12/03/announcing-the-release-of-test-kitchen-1-0-0/">Test Kitchen 1.0</a>! Check out the <a href="http://kitchen.ci/docs/getting-started/">Getting Started Guide</a>!</p>
<ul>
<li>Introductions</li>
<li>Best Practices
<ul>
<li>Whipuptitude! i.e. the aptitude for whipping things up</li>
<li>Reasonability</li>
<li>Sane Defaults</li>
<li>Flexibility</li>
<li>Manipulexity - Manipulation of Complex Things</li>
</ul>
</li>
<li><a href="http://en.wikipedia.org/wiki/Shuhari">Shuhari</a>
<ul>
<li>shu - “obey” - traditional wisdom</li>
<li>ha - “detach” - break with tradition</li>
<li>ri - “separate” - transcend</li>
<li>first learn, then detach, and finally transcend</li>
</ul>
</li>
<li>Ruby DSL or JSON DSL?
<ul>
<li>Roles</li>
<li>Environments</li>
<li>Metadata</li>
</ul>
</li>
<li>Use Roles or not?
<ul>
<li><a href="http://www.opscode.com/blog/2013/11/19/chef-roles-arent-evil/">Julian Dunn: Chef Roles Aren’t Evil</a></li>
</ul>
</li>
<li>Should an individual node have more than one item in its run-list?</li>
<li>Nesting Roles</li>
<li>Environment Specific Run-lists</li>
<li>Getting Help</li>
<li>Source Code Management
<ul>
<li>is git THE answer?</li>
</ul>
</li>
<li>Attirbute precedence levels - there are 15. Which should be used / avoided?
<ul>
<li>Scalar Values, Arrays & Hashes</li>
</ul>
</li>
<li>Databags & Sensitive Data
<ul>
<li>Use or not?</li>
<li>Encrypted Data Bags - when, where, and how is it appropriate to use them?</li>
<li>Encrypted Data Bags, <a href="https://github.com/Nordstrom/chef-vault">Chef Vault</a> - how to decide best solution?</li>
<li><a href="http://foodfightshow.org/2013/07/secret-chef.html">Food Fight Show on Chef Vault</a></li>
</ul>
</li>
<li>Community / Reusable Cookbooks
<ul>
<li>Are reusable cookbooks a myth?</li>
<li>Cross-platform cookbooks?</li>
<li>Cookbooks without recipes</li>
<li><a href="http://www.opscode.com/blog/2013/11/26/community-cookbooks/">Community Cookbooks blog post</a></li>
</ul>
</li>
<li>Ruby!
<ul>
<li><a href="https://github.com/sstephenson/rbenv">rbenv</a>, <a href="https://github.com/postmodern/chruby">chruby</a>, <a href="https://rvm.io/">rvm</a> or <a href="https://github.com/opscode/omnibus-ruby">omnibus ruby</a>?</li>
</ul>
</li>
</ul>
<h2>Picks<a name="picks"></a></h2>
<h4>Brandon</h4>