-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
836 lines (834 loc) · 80.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bourbon Pursuit Podcast</title>
<link rel="apple-touch-icon" sizes="57x57" href="images/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="images/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="images/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="images/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="images/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="images/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="images/favicons/manifest.json">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="images/favicons/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="stylesheets/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Oswald|Quattrocento+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="stylesheets/main.css">
<link rel="stylesheet" href="stylesheets/slicknav.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/tooltipster.css" />
<link rel="stylesheet" href="stylesheets/responsive.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.slicknav.min.js"></script>
<script type="text/javascript" src="js/jquery.tooltipster.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
$(function(){
$("#includedAbout").load("/partials/about.html");
$("#includedContact").load("/partials/contact.html");
$("#includedBodyStart").load("/partials/bodystart.html");
$("#includedFooter").load("/partials/footer.html");
});
</script>
</head>
<body>
<header>
<nav>
<ul id="menu">
<li><a href="/">★ HOME</a></li>
<li><a href="#episode-link">EPISODES</a></li>
<li><a href="#theduo">THE DUO</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</nav>
</header>
<div id="content">
<div id="includedBodyStart"></div>
<a name="episode-link"></a>
<ul id="episodes">
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>098</h2>
<p>05.21.17</p>
<p>70:10<p></p>
</div>
<div id="photo">
<img src="images/guests/098-campbellbrown.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5374737/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>Campbell Brown, President of Old Forester Bourbon, is interviewed by Fred Minnick at the Kentucky Derby Museum's Legend Series. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Fred gets more information about the corporate side rather than the distilling side.</li>
</ol>
</div>
<div id="shownotesRight">
<iframe src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2Fbourbonpursuit%2Fvideos%2F1603646143030734%2F&show_text=0&width=560" width="auto" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allowFullScreen="true"></iframe>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>097</h2>
<p>05.04.17</p>
<p>66:20<p></p>
</div>
<div id="photo">
<img src="images/guests/097-brc8.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5327507/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>The Bourbon Community Roundtable #8 is back for a Derby special to talk about their lack of desire for ORVW25, a surprise twist with Bulleit Bourbon, and results from San Francisco <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>It’s Derby, who has plans</li>
<li>So Pappy25 is out. Who actually cares?</li>
<li>Interesting bulleit scenario that was posted in a significant bourbon group out of houston…</li>
<li>Bourbon Barrel Batch 011 Wins Best Bourbon</li>
<li>WhistlePig Boss Hog wins best Whiskey</li>
<li>Quinn English: Has anyone had Four Grain? Thoughts?</li>
</ol>
</div>
<div id="shownotesRight">
<iframe width="auto" src="https://www.youtube.com/embed/vsC43HSI7eY" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>096</h2>
<p>04.27.17</p>
<p>38:56<p></p>
</div>
<div id="photo">
<img src="images/guests/096-jkmcknight.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5305804/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p><a href="https://twitter.com/captjkmcknight?lang=en">JK McKnight</a>, Founder and Captain of <a href="http://forecastlefest.com/bourbonlodge/">Forecastle Festival</a>, talks about running a music festival and how their Bourbon Lodge has become a festival of itself. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>If you’re a music lover, you’re going to enjoy this episode. We’ve been to forecastle a few times and we’ll talk about why our guest is here talking about Bourbon a bit later, but music festivals are just fun. There’s no better way to put it than that.</li>
<li>Explain to everyone who isn’t up to speed on music festivals, what is Forecastle.</li>
<li>I went to Forecastle back in 2008 to see Counting Crows and 2010 to see Widespread.</li>
<li>What’s the history? Why did you start it, what was the idea? How big has it grown?</li>
<li>I know you also are starting to get a little bit of growth in the EDM tent.</li>
<li>I believe this is the 5th year in a row you all are featuring the “bourbon lodge”. talk about what it is.</li>
<li>What was the idea behind drinking bourbon in 100 degree weather in the middle of July?</li>
<li>How has the lodge progressed from when you first started it?
- It seems like you’ve got everyone on board now. There’s bulleit, woodford, four roses, jim beam, larceny of heaven hill, maker’s mark, michaels, old forester, and wild turkey. pretty much all the big guns.</li>
<li>Instead of a beer garden, you all have a bourbon garden. </li>
<li>Cocktails sound more up my alley in the July heat. i see there is a mixology station and signature cocktails.</li>
<li>Talk about the food because you have a friend of the show taking care of that for you.
<li>Lastly is a rarities bar sponsored by Liquor Barn. </li>
<li>forecastlefest.com/bourbonlodge</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/5VHqUrEOMp/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">@makersmark is hosting bourbon trivia in the #BourbonLodge at #Forecastle. Who knows the answer?! #yelpforecastle #getonboard #yelplou</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A post shared by Yelp Louisville (@yelplouisville) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2015-07-19T19:47:29+00:00">Jul 19, 2015 at 12:47pm PDT</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>095</h2>
<p>04.21.17</p>
<p>55:10<p></p>
</div>
<div id="photo">
<img src="images/guests/095-bethburrows.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5286596/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p><a href="https://www.facebook.com/bethburrows?ref=br_rs">Beth Burrows</a>, Kentucky Bourbon Ambassador for Beam Suntory, gives us all the history behind Jim Beam and the different expressions. We even get the chance to learn how Baker’s Bourbon got its name. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Tell us about your history with bourbon</li>
<li>Do you miss bartending?</li>
<li>What has the passing of Senate Bill 11, allowing producers to serve cocktails and more whiskey going to do for Jim Beam?</li>
<li>Jim Beam is really pioneering and doing all flavored whiskey like the Apple and Honey, Black Cherry, Fire, Maple. Thoughts?</li>
<li>Who’s your target market with these?</li>
<li>Then you’ve got Jim Beam white label, black, double oak, devils’ cut, rye, bonded, single barrel, </li>
<li>Tell us about the Jim Beam distiller’s masterpiece</li>
<li>Names behind Knob Creek, Baker, Basil Hayden, OGD, Old Crow, Booker’s</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/BRtrRfLFgtV/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">More cocktail fun with Beth Burrows of @jimbeamofficial</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A post shared by Bourbon Pursuit (@bourbonpursuit) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2017-03-16T21:13:54+00:00">Mar 16, 2017 at 2:13pm PDT</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>094</h2>
<p>04.13.17</p>
<p>74:35<p></p>
</div>
<div id="photo">
<img src="images/guests/094-bourbontruth.jpeg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5265236/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>Bourbon Truth, the infamous <a href="http://thebourbontruth.tumblr.com/">blogger</a> and <a href="https://twitter.com/bourbontruth">twitter persona known as Lloyd Christmas</a>, gives a Bourbon Pursuit exclusive where no one is safe. He tells it like it is and let's you know not everything smells like roses.<a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>What made you start blogging? (spoiler alert, he has bone to pick with the Van Winkles)</li>
<li>Let’s talk about distilleries and their non-sense tactics. Which ones stand out the most and why?</li>
<li>Your latest blog post talked about the issues behind private barrel picks. Let’s talk because people are moving to these as the limited edition market is now flooded with people.</li>
<li>Lets talk about marketing over the value of the bottles. What do you see consumers continually falling for?</li>
<li>Distillers are continually pushing the envelope of cost. Bottles are increasing in price and even limited editions that were once $50 are now $350 at retail. These were always 15 year bourbons. What’s the long-term effect?</li>
<li>Should a person that never drank Bourbon before 2017 take the precious bottles from those drinking it for 5 or 10 years? Are they worthy?</li>
<li>Is there a problem with people “collecting” bourbon?</li>
<li>Does Craft Whiskey stand a chance?</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">Confused and in agreement at many levels of this Facebook friend suggestion <a href="https://t.co/oc104mJ1cX">pic.twitter.com/oc104mJ1cX</a></p>— Lloyd Christmas (@Bourbontruth) <a href="https://twitter.com/Bourbontruth/status/813279453694623744">December 26, 2016</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>093</h2>
<p>04.06.17</p>
<p>71:11<p></p>
</div>
<div id="photo">
<img src="images/guests/093-tombulleit.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5243906/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>Fred Minnick interviews Tom Bulleit of the Bulleit Distilling Company for the Kentucky Derby Museum's Bourbon Legends Series.<a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Listen as Fred tries to pry information out of Tom about family history, stitzel-weller, age statements, and more</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/BR_1QgOlfLU/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">Our new partnership with @derbymuseum will bring to you the #Bourbon #LegendSeries on our #podcast! Watching @fredminnick interview Tom of @bulleitwhiskey</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A post shared by Bourbon Pursuit (@bourbonpursuit) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2017-03-23T22:27:28+00:00">Mar 23, 2017 at 3:27pm PDT</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>092</h2>
<p>03.30.17</p>
<p>35:46<p></p>
</div>
<div id="photo">
<img src="images/guests/56-bfcoop.png" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5220466/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>We are going back and revisiting episode #056 about building the barrels at Brown Forman. This is a great to wrap up back to basics month.<br>Michael Nelson, Plant Director at the Brown-Forman Cooperage, gives a step-by-step and inside look to the barrel making process. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Give us your bourbon story.</li>
<li>Before we dive into the ins and outs of technicalities of barrel char. give us a history lesson about where we are.</li>
<li>So this is my first encounter being at a cooperage. give me the 101</li>
<li>We saw one barrel that was cross cut. Talk about that. </li>
<li>What’s the average number of discarded barrels that don’t meet some sort of quality assurance?</li>
<li>Talk about char levels for a bit because it’s something that is always said, but never really explained about in depth.</li>
<li>Is the barrel making process getting more expensive on a yearly basis because of demand and material supply?</li>
<li>For everyone that missed the episode with Chris Morris where we talked briefly about the cooperage, talk about what it means to have a cooperage dedicated to their private whiskey </li>
<li>The release of Cooper’s Craft happened recently. And it was named after the location of where we are recording today. What does that mean to you?</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/BHk0T5xDmCg/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">Awesome experience today at the Brown Forman Cooperage</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A video posted by Bourbon Pursuit (@bourbonpursuit) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2016-07-07T21:25:46+00:00">Jul 7, 2016 at 2:25pm PDT</time></p></div></blockquote> <script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>091</h2>
<p>03.23.17</p>
<p>45:00<p></p>
</div>
<div id="photo">
<img src="images/guests/091-mikesherman-vendome.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5198858/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p><a href="https://twitter.com/mcsherman23">Mike Sherman</a>, Owner of <a href="http://vendomecopper.com/">Vendome Copper and Brass Works</a>, joins the show to talk about the art and craftsmanship that go into making the stills and how they have established being the best and #1 still maker after a century of being in business. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Before we get into talk about what it is that you do here, let’s get your thoughts on bourbon. Do you drink it? or just love it because it means good business right now?</li>
<li>For those listeners who have never heard of Vendome, give them an idea of what it is you all make here and why it’s important</li>
<li>What else do you make here besides copper stills?</li>
<li>Give us the history of Vendome and how you grew up in the business. </li>
<li>Give us a break down of trial and error. Because at this point you are carrying on legacy, but the generations before you probably had to go through retooling, or refactoring of certain things to make the stills as reliable as they are.</li>
<li>Terry Bone & Brent Melvin ask how customized are your products? do they start with a base design for the stills or is it entirely customized to the whiskey manufacturers desires?</li>
<li>Is there any innovation thats going on or is pretty much copy/paste?</li>
<li>Why is copper the element of choice when making a still?</li>
<li>What makes Vendome stills unique?</li>
<li>What’s the average time is takes to manufacture a still? I know that’s a loaded question but humor me.</li>
<li>Follow <a href="https://twitter.com/vendomecopper">@VendomeCopper</a> and Like on <a href="https://www.facebook.com/vendomecopper/">Facebook</a></li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">A couple of pictures from our Foreman's Friday Stroll through the Assembly Bay <a href="http://t.co/QlpSroaegG">pic.twitter.com/QlpSroaegG</a></p>— Vendome Copper (@VendomeCopper) <a href="https://twitter.com/VendomeCopper/status/559833351914541056">January 26, 2015</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>090</h2>
<p>03.16.17</p>
<p>76:13<p></p>
</div>
<div id="photo">
<img src="images/guests/090-bcr7.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5177545/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>The Bourbon Community Roundtable #7 talks about their beginnings with bourbon. Where did it all start, the intimidating scenarios, tips for beginners, and even tips for veterans. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>What was your gateway bourbon? The one that started it all...</li>
<li>Blake you started with a barrel-proof, why is that?</li>
<li>Do you think it’s a smart idea to introduce people to bourbon with low proof vs high-proof?</li>
<li>What bottles would you say are a must for a newb? I know this is very broad question, but if I was gonna start with 5 bottles, what would be on your list?</li>
<li>What’s the most intimidating thing about being new to this?</li>
<li>Tips to newbies getting into this</li>
<li>Tips to veterans like us to help new people?</li>
<li>What’s the first limited release bourbon that made you become a sucker for FOMO?</li>
</ol>
</div>
<div id="shownotesRight">
<iframe width="100%" src="https://www.youtube.com/embed/JvCze9Y8MWM" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>089</h2>
<p>03.09.17</p>
<p>76:13<p></p>
</div>
<div id="photo">
<img src="images/guests/36-bernielubbers.png" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5156350/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p><a href="https://twitter.com/bernielubbers">Bernie Lubbers</a>, Whiskey Ambassador for Heaven Hill and also known as <a href="http://www.whiskeyprof.com/">The Whiskey Professor</a>, joins the show to talk about bottled-in-bond and what makes these bourbons “bricks of gold”. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Talk about Bern’s Corner and how you arrange your bottles</li>
<li>What has made you so fascinated with Bottled-in-Bond.</li>
<li>Talk about the issue or necessity behind bottled-in-bond</li>
<li>When people were diluting whiskey or using tobacco spit, were people still buying it?</li>
<li>Why 100 proof and not 90 or 80?</li>
<li>Is the bottled-in-bond act still a binding piece of legislation?</li>
<li>So you can have bottled-in-bond of spirits other than bourbon?</li>
<li>There is an interpretation for bottled-in-bond corn whiskey</li>
<li>Why did Issac Wolfe Bernheim against the bottled-in-bond act?</li>
<li>Talk about Colonel Taylor and his involvement</li>
<li>Were there any palms that were greased to make this happen?</li>
<li>After this bill passed, did it put brands out of business?</li>
<li>What’s the importance of having bottled-in-bond today?</li>
<li>What is the responsible for the resurgence of bottled-in-bond?</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">Today is the 120th anniversary of the passing of the Bottled In Bond Act in 1897 - come by <a href="https://twitter.com/haymarketwhisky">@haymarketwhisky</a> tonight after 10 to celebrate <a href="https://t.co/RZMoam9xIn">pic.twitter.com/RZMoam9xIn</a></p>— Bernie Lubbers (@BernieLubbers) <a href="https://twitter.com/BernieLubbers/status/837687766825775105">March 3, 2017</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>088</h2>
<p>03.03.17</p>
<p>67:21<p></p>
</div>
<div id="photo">
<img src="images/guests/088-timknittel.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5136371/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>Tim Knittel, Bourbon Educator at <a href="http://distilled-living.com/">Distilled-Living.com</a> and a certified Stave & Thief Society Executive Bourbon Steward, kicks off "back to basics" month by giving an in-depth Bourbon 101 and 201 level knowledge bomb. You will learn something new, guaranteed or your money back! <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>let's start from the top. What is bourbon?</li>
<li>How's it made?</li>
<li>What goes into it?</li>
<li>What's the average proof coming off the distillate?</li>
<li>Some people say that limestone water is a big reason why Kentucky bourbon taste better. Is that true or can I get the same effect out of a garden hose?</li>
<li>Is anything stopping someone outside of America from making a bourbon or it just can't be called that?</li>
<li>What advice do you give people of the first bottles to buy that give you a variable taste range?</li>
<li>So people like us who think we know everything, what's a common misperception or falsification we tend to fall for? </li>
<li>What’s the most common question you get asked at your tastings</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/BNIcrRmBPce/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">Just to clarify some things. 😎 An #executivebourbonsteward certified by the Stave & Thief society. Worked at a distillery as homeplace host and culinary center general manager. Over 7 years in the industry and constantly keeping up to date with industry news. ➡︎ 2016 clients include so far: VisitLex, Cork & Barrel, Run the Bluegrass, Smiley Pete, a variety of businesses through Marriott, and a variety of private groups • Available for events & partnerships • Just sayin' 😄• #bourbon #bourbonschool #bourbon101 #bourbonsteward #certifiedbourbonsteward #certifiedexecutivebourbonsteward #bourbonclass #bourboneducation #bourbontasting #eventplanning #distilledliving @visitlex @cork_and_barrel @runthebluegrass @griffingatelex</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A post shared by Distilled Living (@distilledliving) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2016-11-23T00:08:52+00:00">Nov 22, 2016 at 4:08pm PST</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>087</h2>
<p>02.23.17</p>
<p>40:52<p>
</div>
<div id="photo">
<img src="images/guests/087-brentelliott.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5113269/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>Brent Elliott, Master Distiller at <a href="http://fourrosesbourbon.com/">Four Roses</a>, talks about how he never owned a bottle of Four Roses until he interviewed and how the conversation went when he was tapped to be the new Master Distiller. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Talk about growing up in Owensboro, your history and education</li>
<li>What made you want to get into bourbon?</li>
<li>Were you a Four Roses bourbon fan when you applied to work here?</li>
<li>Was Four Roses the first place you looked at working? </li>
<li>How long have you been working at Four Roses?</li>
<li>Talk a little bit about working with Jim Rutledge under his tutelage. </li>
<li>So talk about that phone call, when it’s usually depicted in the movies as being called up to the CEOs office on the 33rd floor to get that big promotion</li>
<li>Why is there not a rye whiskey offered by Four Roses? </li>
<li>What about the rage of barrel finishes or cinnamon whiskey?</li>
<li>From Kevin Ragland on Facebook - How was the process for selecting 2016 LE went since it was the first time you would have done it without Jim.</li>
<li>Why did you come out and call it Elliott’s Select instead of just the normal 2016 Limited Edition Single Barrel?</li>
<li>From Travis Roberts on Facebook - Will FR continue their barrel selections in the future and if so, will they eventually be able to offer barrels aged 10+ years again to consumers?</li>
<li>Talk about life outside of bourbon</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/BGUprhUwSZY/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">Master Distiller Brent Elliott's hard at work on this Monday afternoon.</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A post shared by Four Roses Bourbon (@fourrosesbourbon) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2016-06-06T18:13:38+00:00">Jun 6, 2016 at 11:13am PDT</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>086</h2>
<p>02.16.17</p>
<p>61:42<p>
</div>
<div id="photo">
<img src="images/guests/086-bcr6.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5093012/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>The Bourbon Community Roundtable #6 discusses Beam sales tactics with OGD114 news, Buffalo Trace OFC conspiracy theories, and is there a bias towards NDP/MGP when buying off the shelf. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Blake from <a href="http://bourbonr.com">Bourbonr.com</a>, Nick from <a href="http://BreakingBourbon.com">BreakingBourbon.com</a> and Kerry from <a href="http://Subourbia.com">Subourbia.com</a>.</li>
<li>OGD 114 is here to stay. Another Beam ploy to drive shelf sales.</li>
<li>There’s been no shortage of getting your chance to buy raffle tickets for the Buffalo Trace OFC bottles. They carry a suggested price tag of $8-10k. Is there a hidden motive here by Buffalo Trace? A clever coup by BT to bring a bottle to market valued at $10k then release more OFC to the general market at $1k and call it a bargain?</li>
<li>NDP, MGP, and the bias. Do you hold a grudge against NDPs and refuse to buy? Or are you a believer that the flavor can come from aging and finishing rather than the distillate.</li>
<li>Bruce Schwalm: Question for the panel: If we geeks are the 1% of the drinkers, why aren't we more focused on the art and less on the marketing?</li>
</ol>
</div>
<div id="shownotesRight">
<iframe width="100%" src="https://www.youtube.com/embed/3R1fKUDnxcU" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>085</h2>
<p>02.10.17</p>
<p>33:50<p>
</div>
<div id="photo">
<img src="images/guests/085-jamesmarkert.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5071959/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p><a href="https://twitter.com/JamesMarkert">James Markert</a>, author of <a href="https://www.amazon.com/Angels-Share-James-Markert/dp/0718090225">The Angel’s Share</a>, joins the show to share information about the first fictional novel based on bourbon that takes place in Twisted Tree, Kentucky on an old family distillery that was abandoned after prohibition.<a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Talk about your brush with bourbon</li>
<li>Let’s talk about The Angel’s Share, what’s the premise of the story?</li>
<li>What are some distilleries where you got inspiration?</li>
<li>Does it take a different kind of author to write something completely fictional?</li>
<li>Do you have a fascination with the 1920’s gangster era?</li>
<li>What does this book mean to you as you carve out a new mark in bourbon history?</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:62.4537037037037% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/BQEE4ZngLcS/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">So this gem arrived today! I've never listened to a book before! Might as well make my first audio book be my own! #amlistening #audiobook #theangelsshare #twistedtree #bourbon #kentucky #whisky #whiskey www.jamesmarkert.com</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A photo posted by James Markert (@jamesmarkert74) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2017-02-03T20:58:10+00:00">Feb 3, 2017 at 12:58pm PST</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>084</h2>
<p>02.02.17</p>
<p>49:44<p>
</div>
<div id="photo">
<img src="images/guests/084-elizabethmccall.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5049689/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>Elizabeth McCall, Sensory Scientist and Master Taster, Brown-Forman, joins the show to share what happens behind the white curtain and how people with a psychologist degree are recruited into bourbon.<a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Talk about your past, growing up and your education </li>
<li>What got you into brown spirits</li>
<li>Did you have family influences or connections to the spirits industry?</li>
<li>So I have to be honest, we have done the rounds with Master Distillers and they always give credit to people like you, but lets get an idea of your day to day responsibilities </li>
<li>What else happens in the lab? we need to give our listeners an idea of what’s happening behind the curtain so-to-speak</li>
<li>So why psychologists for being sensory scientists? go deeper there</li>
<li>What’s the most important sense when it comes to making a product consistent?</li>
<li>What does catching a cold have on the influence of the bourbon your doing that day? or do you have an addiction to Afrin nasal decongestant?</li>
<li>What sort of training goes into becoming a master taster?</li>
<li>From Matt Fisher on Facebook: Super nerdy and specific. With most bourbon drinkers using Glencairn glasses at home, why does the distillery use Copita Nosing glasses vs the Glencairn? Looking for an expert opinion of why they use the Copita.</li>
<li>I watched part of your presentation of change and you gave a good explanation of why people mix their bourbon with coke, explain that</li>
<li>Talk about your other passion of horses</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">Today's forecast calls for a dusting of bourbon. <a href="https://t.co/mWRGZy11ft">pic.twitter.com/mWRGZy11ft</a></p>— Woodford Reserve (@WoodfordReserve) <a href="https://twitter.com/WoodfordReserve/status/826181412835385344">January 30, 2017</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>083</h2>
<p>01.27.17</p>
<p>46:01<p>
</div>
<div id="photo">
<img src="images/guests/083-edbley.png" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5028488/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p><a href="https://www.instagram.com/ebley1123/">Ed Bley</a>, Spirits and Beer Manager at <a href="http://www.corknbottle.com/">Cork ’N Bottle</a>, joins the show to talk about their historic past with bourbon, the importance of shopping small, and his process of doing barrel picks<a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Dive into your past and some history to what led you into bourbon</li>
<li>What’s the history of Cork N’ Bottle?</li>
<li>Talk about how you deal with allocated releases</li>
<li>What’s the importance to shop small and local?</li>
<li>What’s your process for barrel picks? </li>
<li>Anything special coming up?</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/BNKmOmygXvB/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">What does one do on their 40th birthday? Go do what I love doing and pick barrels with Eddie Russell! #wildturkey #bourbon</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A photo posted by Ed Bley (@ebley1123) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2016-11-23T20:10:49+00:00">Nov 23, 2016 at 12:10pm PST</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>082</h2>
<p>01.20.17</p>
<p>59:53<p>
</div>
<div id="photo">
<img src="images/guests/081-rt5.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/5008154/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>The Bourbon Community Roundtable #5 dicusses the theories behind Old Scout, 2017 Predictions and Easily Obtainable Barrel Proof Choices. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Joined by Blake of <a href="http://bourbonr.com">bourbonr.com</a>, Jordan of <a href="http://BreakingBourbon.com">breakingbourbon.com</a>, and Kerry of <a href="http://Subrourbia.com">subourbia.com</a>
<li>So Smooth Ambler has discontinued their barrel program, which means no more private picks of SAOS. Thoughts?</li>
<li>2017 Predictions. What's going to happen?</li>
<li>Are there any companies that will be bought up in 2017?</li>
<li>Are we going to see more bottles lose age statements?</li>
<li>Is there a consensus favorite among the more easily "obtainable" high proof? Stagg Jr, ECBP, EH Taylor BP</li>
</ol>
</div>
<div id="shownotesRight">
<iframe src="https://www.youtube.com/embed/DKoltRJjDqM" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>081</h2>
<p>01.13.17</p>
<p>31:11<p>
</div>
<div id="photo">
<img src="images/guests/081-ryanashley.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/4987229/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>Ryan Ashley, COO and Director of Distillery Operations, talks about how his history of beer brewing led him to distillation, the Four Roses brand, distillery expansion, and even hints at a possible Four Roses Rye. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Today's Guest co-host is <a href="https://twitter.com/LindenFerguson">Linden Ferguson</a></li>
<li>Talk about your past. Where did you grow up and your education, family influence, all that</li>
<li>You’ve been known to be a big beer guy.</li>
<li>What got you into bourbon?</li>
<li>Talk about your job for a few minutes and your responsibilities</li>
<li>So before we get into it, I think this is a good time to re-introduce Four Roses to people. So talk about the uniqueness of four roses with the two yeast strains, 10 recipes, warehouses, etc</li>
<li>This big news is that Four Roses is investing $55 Million into expanding operations. And we have all been in remodeling projects so we know that you need to budget 15%, so we’ll say 63million. talk about that</li>
<li>From Michael Leeper on Facebook, What kind of issues do you struggle with as you scale up distillation?, "How do you ensure raw ingredients are available to meet your need (from grain, to glass, to packaging and ultimately labor)", "Is there a limit to how big you can grow within the Bourbon region?"</li>
<li>Talk about working with Brent Elliott</li>
<li>Are you a stout guy or hops guy?</li>
</ol>
</div>
<div id="shownotesRight">
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>080</h2>
<p>01.06.17</p>
<p>67:55<p>
</div>
<div id="photo">
<img src="images/guests/080-chuckcowdery.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/4966888/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p><a href="http://chuckcowdery.blogspot.com/">Chuck Cowdery</a>, Bourbon Author and media pundit, joins to talk about Jim Beam backpedaling it’s way out of Booker’s price increase and the unique purchases Sazerac is making to expand their footprint. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Talk about how you got into bourbon in the beginning</li>
<li>Give the listeners a quick background on your books</li>
<li>The Booker's thing is on everyone's mind and you had a article calling their actions dumb and embarrassing</li>
<li>Sazerac has purchased the Popcorn Sutton, a building in downtown New Orleans and more recently. Possibly attributed due to the success of Fireball. What’s on the horizon for them?</li>
<li><a href="https://www.facebook.com/chuck.cowdery">Chuck on Facebook</a></li>
<li><a href="http://chuckcowdery.blogspot.com/">http://chuckcowdery.blogspot.com</a></li>
</ol>
</div>
<div id="shownotesRight">
<a href="http://chuckcowdery.blogspot.com"><img src="http://2.bp.blogspot.com/_gLJopL2jr3A/S0vz9G9QG2I/AAAAAAAAAHw/U9utiK46VYk/S1600-R/barrels.jpg" width="100%"></a>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>079</h2>
<p>12.30.16</p>
<p>42:55<p>
</div>
<div id="photo">
<img src="images/guests/079-johnlittle.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/4949817/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>John Little, VP and Head Distiller at <a href="https://twitter.com/smoothambler">Smooth Ambler</a>, talks about the how the whole operation started from a note his father-in-law gave him from Time magazine. John dives into the roots of his current distillation and the single barrels seen on the market. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Talk a little about your past and how you got into Whiskey</li>
<li>What made you want to start a bourbon company a long time ago outside of KY?</li>
<li>Talk about Smooth Ambler for a bit and what you offer</li>
<li>Talk about the name behind it as well. Smooth Ambler, Contradiction, Old Scout, etc;</li>
<li>So how did you learn about the distilling process since you didn’t have a background in it?</li>
<li>You all don’t hide the fact that a lot of what’s on the market today is sourced from MGP. But there was a question that was brought up by Ryan Lintz that asked “Why Does SA MGP sourced bourbon taste so much better than others? Is it because it’s bottled at Cask Strength? Or is it a mental hype train thing?”</li>
<li>The Old Scout store picks have had wild success. It seems like people can’t get enough of them</li>
<li>Are we ever going to see Very Old Old Scout again?</li>
<li>The biggest news as of late was Pernod Ricard has taken a majority stake in your company. First off, congratulations. I hope we’re going to see a new ferrari in your driveway soon, but what does this mean for your business.</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">Sir Pickles - Enough Said <a href="http://t.co/bLD49DNeUy">pic.twitter.com/bLD49DNeUy</a></p>— Smooth Ambler (@SmoothAmbler) <a href="https://twitter.com/SmoothAmbler/status/552835557135757313">January 7, 2015</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>078</h2>
<p>12.23.16</p>
<p>65:37<p>
</div>
<div id="photo">
<img src="images/guests/078-rt4.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/4936863/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>This one is going to be a heater in December! Join Bourbon Pursuit along with bloggers from Bourbonr, Subrourbia, and Sipp'n Corn to talk about these following questions and a 2016 Year in Review: <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Let's bring the heat. What the hell is Beam doing?!</li>
<li>On the last episode we talked about gifting bourbon in the $50 or $100 range. Now, what bourbons do you "want" to be gifted if you had the choice?</li>
<li>Was 2016 a year of dud bourbons?</li>
<li>What was one thing you were happy about and one thing that pissed you off in 2016?</li>
</ol>
</div>
<div id="shownotesRight">
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/MUgTgLurgGw" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>077</h2>
<p>12.16.16</p>
<p>61:31<p>
</div>
<div id="photo">
<img src="images/guests/077-jimmyrussell.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/4917200/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p>Jimmy Russell, Master Distiller and Legend at Wild Turkey, sits down to tell his story. He thinks he’s “Plain Ol’ Jimmy” but once you hear his stories about childhood, befriending the likeness of greats in the industry, and sharing his wealth of knowledge you will see he really is an icon. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>I want to talk about your history before Wild Turkey.</li>
<li>Talk a little bit about your childhood and upbringing. Sports, basketball, track, baseball. </li>
<li>I know your father and grandfather were in this whiskey business, is that why you got into the bourbon industry?</li>
<li>Were you always around bourbon?</li>
<li>What made you come to Wild Turkey in beginning?</li>
<li>What was the state of Wild Turkey when you joined?</li>
<li>How big was the operation?</li>
<li>Who were your mentors?</li>
<li>How have you embraced a lot of modern distillation techniques with computers and automation taking over?</li>
<li>What was life like for you before the boom?</li>
<li>Did you ever make any radical changes to Wild Turkey?</li>
<li>You were best friends with the greatest minds in the industry before bourbon was cool. Talk about the comradery between people like you, Elmer, Booker, and the like.</li>
<li>Now that bourbon is in the spotlight, are you hesitant on taking a backseat because at 82 years old, you won’t stop and you continue to travel to talk about Wild Turkey.</li>
<li>Your son Eddie now has taken the spot light. What’s it mean to you that you get to trust the business to him?</li>
<li>From @bourbonooga: Do they wish the old distillery was still down by where Warehouse A sits?</li>
<li>From @Primo55: The eternal debate: Cheesy Gold Foil 12yr or Split Label 12 yr?</li>
<li>What do you think is the best product that ever came out of here?</li>
<li>Give us your thoughts on the 6-8 vs older aged bourbons?</li>
<li>From @BreakingBourbon: Share a drink with anyone past/present/future who would it be and why?</li>
<li>What are some of those things that you want to leave as a legacy?</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/zDqcass8n3/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">Our Master Distiller Jimmy Russell would like to wish you all a happy Friday! Cheers to the weekend! Thanks @msmolanoff for the great photo, you have a keen eye for capturing all things great. #wildturkey #jimmyrussell #legend #happyfriday #cheerstotheweekend #bourbon #whiskey</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A photo posted by Wild Turkey Bourbon (@wildturkey) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2015-02-13T21:56:43+00:00">Feb 13, 2015 at 1:56pm PST</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
<li>
<div id="epnum">
<p>EPISODE</p>
<h2>076</h2>
<p>12.09.16</p>
<p>31:23<p>
</div>
<div id="photo">
<img src="images/guests/076-kevindidio.jpg" class="episodeimg center">
</div>
<div id="player">
<iframe style="border: none" src="http://html5-player.libsyn.com/embed/episode/id/4901710/height/360/width/640/theme/custom/autoplay/no/autonext/no/thumbnail/yes/preload/no/no_addthis/no/direction/backward/no-cache/true/render-playlist/no/custom-color/AD855C/" scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<p><a href="https://twitter.com/didiokevin">Kevin Didio</a>, Manager of Kentucky Visitor Experience at <a href="http://bulleitexperience.com/">Bulleit Frontier Experience</a>, talks about his career in bourbon with multiple distilleries, dives into the history of Stitzel-Weller and IW Harper, and talks about the visitor attractions you can see at the reinstated Stitzel-Weller Distillery. <a href="#" class="notestoggle">Read Show Notes <span class="arrow arrowdown"> </span></a></p>
</div>
<div id="shownotes">
<div id="shownotesLeft">
<ol>
<li>Talk about your role here at the Bulleit Frontier.</li>
<li>Before we talk about some of the other positions you've held, Talk about how you got into bourbon. I found my calling in college, what about you?</li>
<li>Talk about your career with various players in the industry </li>
<li>Talk about more about your time at Jim Beam and what you were doing</li>
<li>This is also the historic site of the Old Fitzgerald / Stitzel-Weller Distillery. Now, we do have a lot of people listening for the education, so talk about the history of the distillery itself. </li>
<li>Can you comment on what you think made people Stitzel-Weller crazy? </li>
<li>Talk about what's happening on the grounds here today. Distillation? Aging? Bottling? Brands?</li>
<li>Is there a possibility that Bulleit can have the same product as the famed Stitzel-Weller?</li>
<li>Talk about the bottling happening here</li>
<li>Give people the small run-down of Bulleit history</li>
<li>Talk about Blade and Bow</li>
<li>It's a bit of an odd duck here because this is owned by Diageo. You've got a whole heap of brands that you can talk about. Bulleit, IW Harper, Orphan Barrels, blade and Bow etc. Talk about which one of those you have a bigger fascination with and why</li>
<li>At this point, I guess we never talked about some IW Harper history. Can you school us there?</li>
<li>Talk about a typical tour done here?</li>
<li>How can people schedule tours?</li>
</ol>
</div>
<div id="shownotesRight">
<blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="7" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"> <div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding:50.0% 0; text-align:center; width:100%;"> <div style=" background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURczMzPf399fX1+bm5mzY9AMAAADiSURBVDjLvZXbEsMgCES5/P8/t9FuRVCRmU73JWlzosgSIIZURCjo/ad+EQJJB4Hv8BFt+IDpQoCx1wjOSBFhh2XssxEIYn3ulI/6MNReE07UIWJEv8UEOWDS88LY97kqyTliJKKtuYBbruAyVh5wOHiXmpi5we58Ek028czwyuQdLKPG1Bkb4NnM+VeAnfHqn1k4+GPT6uGQcvu2h2OVuIf/gWUFyy8OWEpdyZSa3aVCqpVoVvzZZ2VTnn2wU8qzVjDDetO90GSy9mVLqtgYSy231MxrY6I2gGqjrTY0L8fxCxfCBbhWrsYYAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-22px; width:44px;"></div></div> <p style=" margin:8px 0 0 0; padding:0 4px;"> <a href="https://www.instagram.com/p/BMHwPEajLld/" style=" color:#000; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; word-wrap:break-word;" target="_blank">Our mash bill is scary good.</a></p> <p style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">A photo posted by Bulleit™ Frontier Whiskey US (@bulleit) on <time style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px;" datetime="2016-10-28T21:09:09+00:00">Oct 28, 2016 at 2:09pm PDT</time></p></div></blockquote>
<script async defer src="//platform.instagram.com/en_US/embeds.js"></script>
</div>
</div>
</li>
</ul>
<ul id="episode-pagination">
<li class="episode-pagination-arrows"></li>
<li class="episode-pagination-more"><h2>MORE EPISODES</h2></li>
<li class="episode-pagination-arrows"><a href="/61-75.html#episode-link"><h1>→</h1></li>
</ul>
<div id="includedAbout"></div>
<div id="includedContact"></div>
</div>
</body>
<div id="includedFooter"></div>
</html>