-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1415 lines (1027 loc) · 63.3 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
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#222">
<meta name="generator" content="Hexo 5.4.0">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/lib/font-awesome/css/all.min.css">
<script id="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {"hostname":"superto.github.io","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":false,"show_result":false,"style":null},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":false,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}}};
</script>
<meta property="og:type" content="website">
<meta property="og:title" content="Adokun notes">
<meta property="og:url" content="https://superto.github.io/index.html">
<meta property="og:site_name" content="Adokun notes">
<meta property="og:locale" content="zh_TW">
<meta property="article:author" content="Adokun(superTO)">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://superto.github.io/">
<script id="page-configurations">
// https://hexo.io/docs/variables.html
CONFIG.page = {
sidebar: "",
isHome : true,
isPost : false,
lang : 'zh-TW'
};
</script>
<title>Adokun notes</title>
<noscript>
<style>
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-header { opacity: initial; }
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion .logo-line-before i { left: initial; }
.use-motion .logo-line-after i { right: initial; }
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<div class="container use-motion">
<div class="headband"></div>
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="切換導航欄">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">Adokun notes</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger">
</div>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="main-menu menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首頁</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>歸檔</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<main class="main">
<div class="main-inner">
<div class="content-wrap">
<div class="content index posts-expand">
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-TW">
<link itemprop="mainEntityOfPage" href="https://superto.github.io/2024/09/23/2024-9-19-blind-tasting/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="Adokun(superTO)">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Adokun notes">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/09/23/2024-9-19-blind-tasting/" class="post-title-link" itemprop="url">2024-9-19-blind-tasting</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">發表於</span>
<time title="創建時間:2024-09-23 01:39:50 / 修改時間:01:41:58" itemprop="dateCreated datePublished" datetime="2024-09-23T01:39:50+08:00">2024-09-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分類於</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/wine/" itemprop="url" rel="index"><span itemprop="name">wine</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="2024-9-19-高雄盲飲"><a href="#2024-9-19-高雄盲飲" class="headerlink" title="2024-9-19 高雄盲飲"></a>2024-9-19 高雄盲飲</h1><h2 id="自猜"><a href="#自猜" class="headerlink" title="自猜"></a>自猜</h2><ol>
<li>筍乾 自然派 中低酸 果汁感 brett gamay或義大利酒 </li>
<li>濃縮 蘑菇 pinot 中酸, 不會猜波爾多</li>
<li>涼感 草 藥丸味 中酸 中丹寧 13.5</li>
<li>洋梨 鳳梨 Chardonnay 藥丸 中酸</li>
<li>Chardonnay 有桶味 法國</li>
<li>筍乾 高酸 cs</li>
<li>草莓 輕盈 中酸</li>
<li>桶味 奶油 美國 chardonnay</li>
<li>青草 芭樂 百香果 Sauvignon Blanc 新世界 有點不一樣 桃子</li>
<li>粉紅酒</li>
<li>barolo</li>
<li>汽油 Resling 2022</li>
<li>好臭 酒精高 14 法國 尾韻長</li>
<li>chardonnay 也是好臭 有桶味</li>
<li>塑膠味 汽油味 杏仁 桃子 酒精高14 蘋果 Resling or Viognier</li>
<li>Gamay 蘑菇 喝起來有點像Pinot</li>
<li>自然派 羅亞爾河 筍乾 </li>
<li>橘酒 自然派 筍乾 </li>
<li>高酸 藥丸味 chardonnay 法國</li>
<li>藥粉味 維他命 番茄汁</li>
</ol>
<h2 id="答案"><a href="#答案" class="headerlink" title="答案"></a>答案</h2><ol>
<li>還原味教材 果汁感 gamay - 2021卡立農 - 圖1</li>
<li>還原味 一開始 pinot 托斯卡尼 - 日本 melot 2021 - 圖2</li>
<li>酒精高 濃酸澀 Malbec - 圖3</li>
<li>高酸 - Palomino - 圖4</li>
<li>芹菜 - 胡桑(Roussanne) - 圖8</li>
<li>syrah+CS+melot 德國 2016 - 圖16</li>
<li>草莓果醬 2022 - 圖6</li>
<li>chardonnay 沒有硫磺味猜勃根地 2021 $2500定價$3300 - 圖7</li>
<li>殘糖 桃子味 - 西班牙 Sauvignon Blanc 11度 2022 - 圖17</li>
<li>西班牙格納西Garnacha - 圖15</li>
<li>甜甜的 nebbiolo - 圖10</li>
<li>德國 Riesling 2019 價格低於1000 - 圖11</li>
<li>chardonnay $1275 2022 - 圖12</li>
<li>醒酒很久(因為還原很重) 義大利 Cortese - 圖13</li>
<li>義大利 酒精14 荔枝 - 圖9</li>
<li>胡椒 很冷的地方 - CS 美國 - 圖14</li>
<li>奧地利 Welschriesling - 圖18</li>
<li>彭先 - 圖5</li>
<li>好喝 葡萄牙 Albariño - 圖19</li>
<li>葡萄牙 味噌湯 氧化風格 類似橘酒 Albariño - 圖20</li>
</ol>
<h2 id="圖片順序"><a href="#圖片順序" class="headerlink" title="圖片順序"></a>圖片順序</h2><ol>
<li>Les Equilibristes ‘Le Vire-Voltant’</li>
<li>2021 Domaine Mie Ikeno Merlot</li>
<li>Susana Balbo Signature Malbec 2019</li>
<li>2021 Bodegas Forlong Blanco Vino de la Tierra de Cadiz</li>
<li>Ermacora Malvasia Colli Orientali del Friuli</li>
<li>Louis Jadot Beaujolais-Villages 2022</li>
<li>Bass Phillip Estate Chardonnay </li>
<li>2022 La Mongestine Coteaux du Verdon Roussanne</li>
<li>Azienda Agricola Stefano Legnani ‘Ponte di Toi’ Bianco</li>
<li>Cascina Vengore ‘Belgardo’ Nebbiolo Terre Alfieri</li>
<li>2019 Loosen Bros Dr. L Riesling</li>
<li>2022 Trinity Hill Black Label Chardonnay - Gimblett Gravels, New Zealand</li>
<li>2020 Albino Rocca La Rocca Cortese Piemonte</li>
<li>Fox Run Vineyards Cabernet Sauvignon Seneca Lake</li>
<li>Casa Rojo ‘Musso’ Garnacha Rose Vino de la Tierra de Castilla</li>
<li>heavens door black label</li>
<li>Baron de Ley Semi Dulce</li>
<li>Weingut Werlitsch Welschriesling vom Opok - Steiermark, Austria</li>
<li>Vale da Capucha Arinto</li>
<li>Vale da Capucha, Cedro Alvarão Branco </li>
</ol>
<h2 id="補充"><a href="#補充" class="headerlink" title="補充"></a>補充</h2><p>還原味很多優先考慮Syrah<br>還原味 => 厭氧培養or沒用新橡木桶</p>
<p>圖片與順序不符</p>
<h3 id="酒瓶標籤"><a href="#酒瓶標籤" class="headerlink" title="酒瓶標籤"></a>酒瓶標籤</h3><p><img src="/2024/09/23/2024-9-19-blind-tasting/1.jpg" alt="圖1"><br><img src="/2024/09/23/2024-9-19-blind-tasting/2.jpg" alt="圖2"><br><img src="/2024/09/23/2024-9-19-blind-tasting/3.jpg" alt="圖3"></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-TW">
<link itemprop="mainEntityOfPage" href="https://superto.github.io/2024/08/24/2024-8-22-blind-tasting/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="Adokun(superTO)">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Adokun notes">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/08/24/2024-8-22-blind-tasting/" class="post-title-link" itemprop="url">2024-8-22-blind-tasting</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">發表於</span>
<time title="創建時間:2024-08-24 00:25:30 / 修改時間:00:28:45" itemprop="dateCreated datePublished" datetime="2024-08-24T00:25:30+08:00">2024-08-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分類於</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/wine/" itemprop="url" rel="index"><span itemprop="name">wine</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="2024-8-22-高雄盲飲"><a href="#2024-8-22-高雄盲飲" class="headerlink" title="2024-8-22 高雄盲飲"></a>2024-8-22 高雄盲飲</h1><h2 id="自猜"><a href="#自猜" class="headerlink" title="自猜"></a>自猜</h2><ol>
<li>芭樂 青草 輕盈 13 2021 Sauvignon Blanc 新世界 鹹 高酸 澳洲 kooyong 苦/後續沒有青草芭樂味</li>
<li>桃子 芳香 甜 礦石 高酸</li>
<li>洛神 蘑菇 Pinot 中酸</li>
<li>(已聽到答案)紫 洗衣粉 臭 高酸 中單寧 黑莓 李子/ 洗衣粉在後面沒有</li>
<li>桶味? 白胡椒 高酸 尾韻短 鹹 13 單寧高</li>
<li>一開始洛神 Pinot/ 高酸 布根地 中單寧 桶味 Syrah</li>
<li>中酸 chardonnay</li>
<li>特殊的味道 第一直覺是pinot/ 泡泡糖 Gamay 低酸 洛神</li>
<li>紫 高酸 紫羅蘭 Syrah 不認為是pinot 後面有洛神</li>
<li>? 中酸 malbec 洗衣粉 花香 新鮮 中酸中單寧</li>
<li>粉紅酒 中酸 bret</li>
<li>/</li>
<li>氣泡很多 不是香檳 </li>
<li>醫院藥味 </li>
<li>白胡椒 豬血大腸湯 柑橘 高酸 有點淡 很新</li>
<li>很黃 熟水果 chardonnay </li>
<li>筍乾 很新 氣泡很多 Gamay</li>
<li>洛神 仙楂 pinot/澳洲 CS+melot 尤加利葉 南非? 好喝</li>
<li>紅莓 Gamay 這支很像point</li>
<li>很臭 這是磨菇還是青椒? pinot 高酸 洛神 勃根地</li>
<li>CS 青椒 不是智利 2019</li>
</ol>
<h2 id="答案"><a href="#答案" class="headerlink" title="答案"></a>答案</h2><ol>
<li>Resling/Pinot Gris 塑膠味 苦 有過桶 - 義大利 Trebbiano - 圖21</li>
<li>Albariño(桃子 高酸) 鹹 - 13 2023(很香的原因) Garganega(80%) + chardonnay - 圖20</li>
<li>加州(野莓味) pinot 梗 - 圖18</li>
<li>malbec - 圖19</li>
<li>白胡椒 豬血大腸湯 酸菜 - 法國 劉勇志 豬玀 - 圖16(不確定)</li>
<li>波爾多混釀 澳洲 桶味 甜美 左岸右岸? 2018 - 2019 左岸 Cabernet - 圖14</li>
<li>彭仙 還原 / Sauvignon Blanc 草本味/ 桃子 柑橘礦石 Albariño - 義大利 2022 - 圖10</li>
<li>紅石榴 - 阿爾薩斯 pinot 2019 13 - 圖17</li>
<li>pinot 顏色深 2020 布根地 夜丘 - 圖15</li>
<li>Syrah 紫羅蘭 - 天然酵母 2022 自然派 澳洲 - 圖13</li>
<li>CS 粉紅酒 - 圖12</li>
<li>chardonnay - 白稍南+胡桑 南非 - 圖1</li>
<li>瓶中二次發酵 - 圖11(不確定)</li>
<li>高酸 氧化 Resling 紐約州 2021 - 圖2</li>
<li>2021 勃根地 Aligoté - 圖3</li>
<li>鳳梨 羅亞爾河 白稍南 - 圖4 </li>
<li>農場 瓶中發酵 - 2022 Gamay - 圖8(不確定)</li>
<li>澳洲 Syrah - 圖6(不確定)</li>
<li>Gamay 2022 - 圖5(不確定)</li>
<li>pinot 高酸 洛神 勃根地 SANTENAY - 圖7</li>
<li>2014 Shiraz 澳洲 尤加利葉 - 圖9</li>
</ol>
<h2 id="圖片順序"><a href="#圖片順序" class="headerlink" title="圖片順序"></a>圖片順序</h2><ol>
<li>Stark-Condé - The Field Blend - 混釀(Chenin Blanc, Viognier, Roussanne, Verdelho) 南非</li>
<li>Fox Run Vineyards - Riesling 2021</li>
<li>(找不到)Bourgogne Aligote 2021 </li>
<li>Domaine de la Taille aux Loups 2021 - 羅亞爾河 - 白梢楠</li>
<li>Romuald Valot Cote de Brouilly Rouge - Gamay</li>
<li>Noon - Reserve Shiraz - 澳洲</li>
<li>SANTENAY pinot 2021</li>
<li>Les Bertrand - Fleurie Mon Petit Cheri 2022 - Gamay</li>
<li>YERINGBERG 2014 Shiraz</li>
<li>Terre dei Miti Family Estate - Etna Bianco - 義大利 - Carricante, Catarratto Bianco</li>
<li>Segura Viudas, Cava Brut Reserva NV</li>
<li>Domaine de l’Ecu - Muse Rosé 2022 - CS 羅亞爾河</li>
<li>Quandong Farm Shiraz - 2022 Shiraz, McLaren Vale, South Australia</li>
<li>Château Cantenac Brown, Château Cantenac Brown 2019</li>
<li>ALBERT BICHOT COTE DE NUITS VILLAGES RESERVE DE I’ORANGERIE - Pinot Noir</li>
<li>BORBOYON 2021 “Savoie Beauty” AOC Savoie, France - Jacquère</li>
<li>Domaine Trapet - Chapelle 1441 - Pinot Noir</li>
<li>DeLoach, Russian River Valley Pinot Noir 2019</li>
<li>Altos Las Hormigas La Danza Malbec 2021</li>
<li>Allegrini Soave Oasi San Giacomo 2023 - Garganega 80%, Chardonnay 20%</li>
<li>Noelia Ricci - Bro Bianco - Trebbiano Romagnolo 義大利</li>
</ol>
<h2 id="補充"><a href="#補充" class="headerlink" title="補充"></a>補充</h2><p>圖片順序與答案不一致</p>
<h3 id="酒瓶標籤"><a href="#酒瓶標籤" class="headerlink" title="酒瓶標籤"></a>酒瓶標籤</h3><p><img src="/2024/08/24/2024-8-22-blind-tasting/1.jpg" alt="圖1"><br><img src="/2024/08/24/2024-8-22-blind-tasting/2.jpg" alt="圖2"><br><img src="/2024/08/24/2024-8-22-blind-tasting/3.jpg" alt="圖3"><br><img src="/2024/08/24/2024-8-22-blind-tasting/4.jpg" alt="圖4"></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-TW">
<link itemprop="mainEntityOfPage" href="https://superto.github.io/2024/08/12/2024-8-8-blind-tasting/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="Adokun(superTO)">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Adokun notes">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/08/12/2024-8-8-blind-tasting/" class="post-title-link" itemprop="url">2024-8-8-blind-tasting</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">發表於</span>
<time title="創建時間:2024-08-12 23:50:53" itemprop="dateCreated datePublished" datetime="2024-08-12T23:50:53+08:00">2024-08-12</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新於</span>
<time title="修改時間:2024-08-13 00:01:15" itemprop="dateModified" datetime="2024-08-13T00:01:15+08:00">2024-08-13</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分類於</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/wine/" itemprop="url" rel="index"><span itemprop="name">wine</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="2024-8-8-高雄盲飲"><a href="#2024-8-8-高雄盲飲" class="headerlink" title="2024-8-8 高雄盲飲"></a>2024-8-8 高雄盲飲</h1><h2 id="自猜"><a href="#自猜" class="headerlink" title="自猜"></a>自猜</h2><ol>
<li>低酸 SO2 蘋果 酒精會辣</li>
<li>紅莓 中偏高酸 甜美 有Merlot 青椒</li>
<li>雪莉酒</li>
<li>燒塑膠 智利 高酸 - 紫羅蘭 不像Syrah </li>
<li>莓果 Syrah 紫羅蘭 澳洲 微甜</li>
<li>洋甘菊 青草芭樂 紐西蘭 Sauvignon Blanc / Dry</li>
<li>燒塑膠 礦石 中酸 檸檬 沒用桶 奶油 GV 桶味在後面</li>
<li>蜂蜜味 顏色偏綠 中 酸 夏多內</li>
<li>芒果 水蜜桃 香氣超多 很特別 新鮮水果 汽水味 鼻後嗅覺荔枝 </li>
<li>pinot 洛神仙楂 勃根地 蘑菇 2020</li>
<li>莓果 青椒 高酸 舊世界 - 沒有青椒 紫羅蘭 Syrah 法國 酒精高 14.5</li>
<li>青椒 紫羅蘭 味道很奇怪 濕紙巾</li>
<li>蘑菇味 紐西蘭 pinot 烏梅 比較老 洛神仙楂在後面 2017</li>
<li>杏仁 桃子 雪莉酒的味道 加酸</li>
<li>氣泡很強 香檳 雪莉酒的味道</li>
<li>玫瑰 超甜 </li>
<li>雪莉酒 香檳</li>
</ol>
<h2 id="答案"><a href="#答案" class="headerlink" title="答案"></a>答案</h2><ol>
<li>還原 輝發酸 甜美 濃稠飽滿 高酒精 中酸 2020 15 鹹 尾韻蜂蜜 - Fattoria San Lorenzo<br>Campo delle Oche Elevato 36 Mesi Sui Propri Lieviti 2020 / Verdicchio</li>
<li>年份老 波爾多右岸 Merlot較多 2010 - 2010 Chateau Tour Fonrazade / Saint-Emilion, France</li>
<li>氧化 BAROLO 2016 - G.D. Vajra, “Albe” Barolo 2016</li>
<li>新鮮 顏色紫 櫻桃汁 藍莓汁 石榴 Gamay 大家驚訝 - 2022 Nero d’Avola - 找不到</li>
<li>紫羅蘭 pinot 大家意見分歧 Malbec GSM - 澳洲 tempranillo 有用新桶 2021 - running with bulls tempranillo 2021</li>
<li>羅亞爾河 2020 - Chateau de Tracy Pouilly-Fume Mademoiselle de T 2020 / Sauvignon Blanc</li>
<li>有點桶味 有桶味的 Sauvignon Blanc - Les Heritiers du Comte Lafon Macon-Villages 2022 / Chardonnay</li>
<li>花香 有桶味 - Moss Wood Ribbon Vale Elsa 2022 / Margaret River, Australia / Sauvignon Blanc</li>
<li>蟻酸 2023 桶味 - 2023 Bodegas Terras Gauda O Rosal / Rias Baixas, Spain / Albariño</li>
<li>2017 勃根地 pinot Irancy - 2017 Gabin et Felix Richoux Irancy Veaupessiot / Burgundy, France / Pinot Noir</li>
<li>澳洲 瑪格莉特河 桶味明顯 CS - Moss Wood Amy’s / Margaret River, Australia / Cabernet Sauvignon</li>
<li>corked 溼紙箱 臭 CF 紫羅蘭 - Domaine de Pallus Chinon Les Pensees de Pallus 2017 / Loire, France / Cabernet Franc</li>
<li>煙硝味 澳洲 2020 - Kooyong Meres Pinot Noir / Mornington Peninsula, Australia</li>
<li>高酸 蘋果 稻草 有過桶 自然派 - 夏多內 法國 自然派 2021 - Marc Soyard Tercet VDJ J’ai Faim / 應該是 Aligoté</li>
<li>酵母 麵包味 苦味 香檳 - G.H. Martel Claude Lafon Brut Champagne</li>
<li>白中白 - Elio Perrone Moscato d’Asti Sourgal 2022</li>
<li>pinot 超酸 - Clò Clò Dosaggio Zero Rosé / Divella - Lombardia</li>
</ol>
<h2 id="補充"><a href="#補充" class="headerlink" title="補充"></a>補充</h2><p>Sauvignon Blanc 如果甜美要猜美國</p>
<p>顏色很淺- 澳洲or紐西蘭</p>
<p>彭仙 - 品質都是好的</p>
<p>水蜜桃 礦物 高酸 => albrino</p>
<h3 id="酒瓶標籤"><a href="#酒瓶標籤" class="headerlink" title="酒瓶標籤"></a>酒瓶標籤</h3><p><img src="/2024/08/12/2024-8-8-blind-tasting/20240808_214728.jpg" alt="圖1"><br><img src="/2024/08/12/2024-8-8-blind-tasting/20240808_214816.jpg" alt="圖2"><br><img src="/2024/08/12/2024-8-8-blind-tasting/20240808_222508.jpg" alt="圖3"></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-TW">
<link itemprop="mainEntityOfPage" href="https://superto.github.io/2024/07/22/2024-7-18-blind-tasting/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="Adokun(superTO)">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Adokun notes">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/07/22/2024-7-18-blind-tasting/" class="post-title-link" itemprop="url">2024-7-18-blind-tasting</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">發表於</span>
<time title="創建時間:2024-07-22 20:58:16 / 修改時間:21:54:34" itemprop="dateCreated datePublished" datetime="2024-07-22T20:58:16+08:00">2024-07-22</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分類於</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/wine/" itemprop="url" rel="index"><span itemprop="name">wine</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="2024-7-18-高雄盲飲"><a href="#2024-7-18-高雄盲飲" class="headerlink" title="2024-7-18 高雄盲飲"></a>2024-7-18 高雄盲飲</h1><h2 id="自猜"><a href="#自猜" class="headerlink" title="自猜"></a>自猜</h2><ol>
<li>玫瑰? 紫羅蘭? 果香 高酸 中丹寧 沒有酸櫻桃 13.5 答案偏向格納西(但顏色應該要在淺一點) 結束後喝 布根地可以接受 但覺得酒精有點高</li>
<li>香料 高酸 甜美 低單寧 希哈 法國 </li>
<li>chardonnay 高酸 喝起來不像chardonnay 這題應該要猜出來</li>
<li>玉米濃湯 紫羅蘭 高酸 硫化氫</li>
<li>好臭 紫羅蘭 高酸 高單寧 14</li>
<li>糖果 高酸 高單寧 14 甜</li>
</ol>
<p>– 以上加碼 –</p>
<ol start="7">
<li>粉紅氣泡 這題不用猜</li>
<li>很黃 chardonnay 熟蘋果味</li>
<li>GV 中酸 13 2021</li>
<li>青椒 糖果 高酸 高單寧 14 波爾多混釀 CS為主</li>
<li>臭 燒焦味 塑膠 智利CS? 但沒青椒味 咖啡味</li>
<li>這題應該是秒殺題 蘑菇 高酸 中單寧 Pinot 燒焦味 布根地?</li>
<li>微臭 中酸 中低丹寧 洛神很多 仙楂 pinot 不是布根地 新世界</li>
<li>果香 果汁</li>
<li>氣泡好強</li>
</ol>
<h2 id="答案"><a href="#答案" class="headerlink" title="答案"></a>答案</h2><ol>
<li>有過桶 煙燻 20 洛神 布根地 高酒精 高酸 甜 很濃縮 - 2018 Domaine Roblot-Marchand Chambolle-Musigny Les Pas de Chats</li>
<li>玉米罐頭 單寧略低 不太像澳洲 甜 2017 - 紐西蘭 - OBSIDIAN RESERVE SYRAH 2018, WAIHEKE ISLAND</li>
<li>波爾多白酒 煙硝味 過桶 白蘇維儂 百香果 青草 貓尿 氧化 很新鮮所以猜近一點年分 保存狀況好 - 2019 白蘇維儂 - 2019 Denis Dubourdieu Chateau Doisy-Daene Grand Vin Sec</li>
<li>老酒+氧化的味道 焦糖味 鐵銹味 酸又甜 澳洲 2005 - 越南 Shiraz -<br>Chateau Dalat Signature Shiraz 2019</li>
<li>胡椒 紫羅蘭 法國桶 2021 Shiraz - Mesa Del Sol 2021 Syrah </li>
<li>蛋糕上的假櫻桃 GSM 香料味 年輕 2021 格納希為主 - 2022 Kirkland Signature Chateauneuf du Pape</li>
<li>不是香檳釀造 這是自然氣泡酒 2021 西班牙 - CAP DE PARDALS “Cherry Bubbles” Penedes, Spain</li>
<li>熱到了~ 2018 Albariño - La Mar 2018 White Wine</li>
<li>大家都猜 Viognier 桃 和 瓜 尾韻 焦糖布丁 有玉米 桶味不算明顯 - chardonnay - Director’s Cut Chardonnay 2021</li>
<li>黑醋栗(智利才比較濃) 奶粉 青椒 薄荷 2021 智利 CS - Casa Silva<br>Gran Terroir de Los Andes Los Lingues Cabernet Sauvignon 2021</li>
<li>智利 CF - 2020 卡本內 - Casa Silva Gran Terroir de Los Andes Carmenère 2020</li>
<li>Malbec 偏自然酒 新世界仿舊 糖果 新鮮 南非 - 澳洲 Shiraz 自然派 - Yangarra Estate Vineyard, “PF” Shiraz 2021</li>
<li>上伯恩丘 舊世界洛神味會比較重 - 2020 Claire Naudin Bourgogne Hautes Côtes de Beaune Orchis Mascula</li>
<li>劉勇志 甜 - Domaine Richoux Irancy 2018</li>
<li>香檳 水梨</li>
</ol>
<h3 id="酒瓶標籤"><a href="#酒瓶標籤" class="headerlink" title="酒瓶標籤"></a>酒瓶標籤</h3><p><img src="/2024/07/22/2024-7-18-blind-tasting/20240718_213140.jpg" alt="圖1"><br><img src="/2024/07/22/2024-7-18-blind-tasting/20240718_213106.png" alt="圖2"></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-TW">
<link itemprop="mainEntityOfPage" href="https://superto.github.io/2024/05/21/ptt-crawler-line-notify/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="Adokun(superTO)">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Adokun notes">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2024/05/21/ptt-crawler-line-notify/" class="post-title-link" itemprop="url">ptt-crawler-line-notify</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">發表於</span>
<time title="創建時間:2024-05-21 18:14:16" itemprop="dateCreated datePublished" datetime="2024-05-21T18:14:16+08:00">2024-05-21</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新於</span>
<time title="修改時間:2024-07-22 21:46:20" itemprop="dateModified" datetime="2024-07-22T21:46:20+08:00">2024-07-22</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="用-Line-notify-傳遞-ptt-爬蟲資料"><a href="#用-Line-notify-傳遞-ptt-爬蟲資料" class="headerlink" title="用 Line notify 傳遞 ptt 爬蟲資料"></a>用 Line notify 傳遞 ptt 爬蟲資料</h1><p><a target="_blank" rel="noopener" href="https://github.com/superTO/ptt-crawler-schedule">github</a></p>
<h2 id="原定流程"><a href="#原定流程" class="headerlink" title="原定流程"></a>原定流程</h2><p>github action 執行爬蟲程式 => github action 觸發 Line notify</p>
<ol>
<li>爬蟲程式</li>
<li>github action</li>
</ol>
<ul>
<li>在github action 時, 載入data.js 檔案(設定成secrets)</li>
<li>line notify 顯示問題 \n換行</li>
<li>Environment variables 在這邊設定要爬的內容&回傳訊息</li>
</ul>
<ol start="3">
<li>line notify 通知</li>
</ol>
<h2 id="遇到的問題"><a href="#遇到的問題" class="headerlink" title="遇到的問題"></a>遇到的問題</h2><ol>
<li>github action 如果使用 schedule: 無法設定觸發的 branch<ul>
<li>只能直接綁定執行的branch<ul>
<li>但會導致 workflow_dispatch: 選擇branch觸發無效</li>
</ul>
</li>
</ul>
</li>
</ol>
<p>:::warning<br><strong>沒有解決</strong><br>schedule: 使用 default branch 觸發, 就改用 default branch 版本控制<br>:::<br>2. 無法將 node index.js 回傳的資料, 直接透過 github action 傳遞參數給 line notify</p>
<p>:::success<br><strong>解決</strong><br>改用 writeFileSync 輸出 .txt, github action 透過讀檔傳遞資料<br>:::<br>3. Line notify 每次傳訊息字數上限為1000<br> - 因為 github action forloop 執行 step 有障礙, 大改版</p>
<p>:::success<br><strong>解決</strong><br>將 github action 精簡, 不使用 writeFileSync 輸出檔案, 改為爬蟲後呼叫Line notify API<br><a target="_blank" rel="noopener" href="https://github.com/superTO/ptt-crawler-schedule/commit/77f2cee9b9542ea2cf1d2061367be4fb81c9a557">commit</a><br>:::<br>4. Line notify 傳遞訊息時, 可能順序不對</p>
<p>:::success<br><strong>解決</strong><br>追加 sleep()<br>:::<br>5. PTT爬蟲資料只有內文才有完整日期</p>
<p>:::success<br><strong>未知</strong><br>原因: 追加功能 “只顯示幾天前的資料”<br>解法: 透過12&1月來判斷年分<br><a target="_blank" rel="noopener" href="https://github.com/superTO/ptt-crawler-schedule/commit/96789b16304d11979e6feff4bf4b2cdc308dcee8">commit</a><br>:::</p>
<h2 id="最終流程"><a href="#最終流程" class="headerlink" title="最終流程"></a>最終流程</h2><ol>
<li>github action 只用來建立執行環境 & 執行</li>
</ol>
<p>forloop<br>2. 爬蟲執行<br>3. 資料轉換<br>4. 資料過濾<br>5. 爬蟲結束<br>END forloop </p>
<ol start="6">
<li>line notify 傳訊息</li>
</ol>
<h2 id="後續可能的增加的功能"><a href="#後續可能的增加的功能" class="headerlink" title="後續可能的增加的功能"></a>後續可能的增加的功能</h2><ol>
<li>想要把參數隱藏起來</li>
</ol>
<ul>
<li>github Environment variables</li>
</ul>
<ol start="2">
<li>將上一次重複傳的資料移除</li>
</ol>
<ul>
<li>初步想法: 產生log檔案後, 建立commit push 至 github, 每次讀檔檢查內容</li>
</ul>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-TW">
<link itemprop="mainEntityOfPage" href="https://superto.github.io/2023/07/03/2023-7-3-blind-tasting/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="Adokun(superTO)">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Adokun notes">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2023/07/03/2023-7-3-blind-tasting/" class="post-title-link" itemprop="url">2023-7-3-blind-tasting</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">發表於</span>
<time title="創建時間:2023-07-03 23:31:53" itemprop="dateCreated datePublished" datetime="2023-07-03T23:31:53+08:00">2023-07-03</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新於</span>
<time title="修改時間:2024-05-21 22:23:40" itemprop="dateModified" datetime="2024-05-21T22:23:40+08:00">2024-05-21</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分類於</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/wine/" itemprop="url" rel="index"><span itemprop="name">wine</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="白酒"><a href="#白酒" class="headerlink" title="白酒"></a>白酒</h2><h3 id="自猜"><a href="#自猜" class="headerlink" title="自猜"></a>自猜</h3><ol>
<li>Vermentino 好臭 應該是堅果味 中高酸 苦苦的</li>
<li>比上一款更酸 簡單 酒精高14.5 輕盈</li>
<li>中酸 酒體中 </li>
</ol>
<h3 id="答案"><a href="#答案" class="headerlink" title="答案"></a>答案</h3><ol>
<li>viognier 杏桃 木瓜 尾韻苦 成熟芒果 中高酒體 中酸 13.5 2021</li>
<li>芹菜 白胡椒 Vermentino </li>
<li>高酸 沒過桶 水水的 GV 礦物感 2021 </li>
</ol>
<h2 id="紅酒"><a href="#紅酒" class="headerlink" title="紅酒"></a>紅酒</h2><h3 id="自猜-1"><a href="#自猜-1" class="headerlink" title="自猜"></a>自猜</h3><ol>
<li>蘑菇 洛神 中低酸 果醬</li>
<li>甜美 中酸 洛神 高丹寧 沒桶味</li>
<li>蘑菇 高酸 芳香 第一印象Nebbioro 後來抓到蘑菇味 改pinor noir</li>
<li>顏色紫 甜美 中高酸</li>
<li>Nebbioro 高酸 高丹寧 2018 一點點玫瑰(一開始完全沒抓到一級香氣)</li>
<li>褐色 有酒渣 中高酸 高丹寧 焦糖 仙楂 高酸高丹寧</li>
</ol>
<h3 id="答案-1"><a href="#答案-1" class="headerlink" title="答案"></a>答案</h3><ol>
<li>甜美 香料 比較熟一點 皮革 2017 過老的Pinor Noir 托斯卡尼的香料味有點重</li>
<li>黑醋栗 李子 甜美 青椒味 2015 托斯卡尼CS 很像波爾多</li>
<li>單寧不高 pinor noir 摩尼頓半島 2019</li>
<li>紫色中等 紫羅蘭 青椒 pinor noir 蘑菇味 2020 很重的 pinor noir 摩尼頓半島 </li>
<li>Nebbioro 土壤 焦油(比較多的味道) 一點點玫瑰 2016 緯度46(和勃根地差不多)(更輕更冷)</li>
<li>不透光 高丹寧 Nebbioro Barolo 1996 (年份太高不好猜)</li>
</ol>
<h3 id="酒瓶標籤"><a href="#酒瓶標籤" class="headerlink" title="酒瓶標籤"></a>酒瓶標籤</h3><p><img src="/2023/07/03/2023-7-3-blind-tasting/20230703_1-8.jpg" alt="1~8隻"><br><img src="/2023/07/03/2023-7-3-blind-tasting/20230703_9.jpg" alt="第9隻(加碼)"></p>
<p>接骨木花 味道像荔枝<br>判斷特徵要用一級香氣</p>
<h4 id="提示"><a href="#提示" class="headerlink" title="提示"></a>提示</h4><p>viognier</p>
<ul>
<li>水蜜桃 芒果</li>
<li>酒體濃稠</li>
<li>微苦</li>
<li>不酸 (越香酸度越低)</li>
</ul>
<p>錢會直接影響香氣</p>
<p>Grüner Veltliner(只有台灣人會簡稱GV)</p>
<ul>
<li>高酸</li>
<li>輕盈</li>
<li>白胡椒 楊桃(輕的)</li>
<li>奧地利</li>
</ul>
<p>Vermentino</p>
<ul>
<li>杏仁(堅果味)</li>
<li>水水的</li>
<li>水仙花味道(超好的酒莊才會有)</li>
<li>中高酸</li>
</ul>
<p>Pinor Noir</p>
<ul>
<li>日照越多 蘑菇味越多 (紐西蘭 => 蘑菇為超強)</li>
<li>洛神 仙楂</li>
<li>酒體輕盈</li>
</ul>
<p>Nebbioro</p>
<ul>
<li>高酸 高丹寧</li>
<li>玫瑰(明顯)</li>
<li>土壤</li>
</ul>
<p>Cabernet Sauvignon</p>
<ul>
<li>青椒 石墨</li>
</ul>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-TW">
<link itemprop="mainEntityOfPage" href="https://superto.github.io/2023/07/03/2023-6-15-simple-blind-tasting/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/avatar.gif">
<meta itemprop="name" content="Adokun(superTO)">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Adokun notes">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2023/07/03/2023-6-15-simple-blind-tasting/" class="post-title-link" itemprop="url">2023-6-15-simple-blind-tasting</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">發表於</span>
<time title="創建時間:2023-07-03 00:01:25" itemprop="dateCreated datePublished" datetime="2023-07-03T00:01:25+08:00">2023-07-03</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新於</span>
<time title="修改時間:2024-07-22 21:56:25" itemprop="dateModified" datetime="2024-07-22T21:56:25+08:00">2024-07-22</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分類於</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/wine/" itemprop="url" rel="index"><span itemprop="name">wine</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="6-15-簡單葡萄酒盲飲課程"><a href="#6-15-簡單葡萄酒盲飲課程" class="headerlink" title="6/15 簡單葡萄酒盲飲課程"></a>6/15 簡單葡萄酒盲飲課程</h1><p>主題: 分辨新舊世界 pinot Noir & chardonnay</p>
<h2 id="白酒"><a href="#白酒" class="headerlink" title="白酒"></a>白酒</h2><h3 id="自猜"><a href="#自猜" class="headerlink" title="自猜"></a>自猜</h3><ol>
<li>維他命 藥丸 第二次喝: 蘋果 熟</li>
<li>不是芳香型 沒過桶 低酸 低丹寧</li>
<li>過桶 中酸</li>
<li>花 桶味 中高酸 </li>
</ol>
<h3 id="答案"><a href="#答案" class="headerlink" title="答案"></a>答案</h3><ol>
<li>酵母味 柑橘 香草 鳳梨 舊世界</li>
<li>商業感 礦石風味(法國酒常有)酒精辣 刮舌</li>
<li>新世界 柑橘 很熟的柑橘 桶味很重 煙燻(刻意的味道)刻意的酒精 法國橡木桶 明顯新酒(沒有三級香氣)</li>
<li>香氣豐富 柑橘 檸檬 烤麵包 尾韻約20秒(長) 椰子感(猜美國) 桶味用力 太妃糖(猜法國桶)</li>
</ol>
<h2 id="紅酒"><a href="#紅酒" class="headerlink" title="紅酒"></a>紅酒</h2><h3 id="自猜-1"><a href="#自猜-1" class="headerlink" title="自猜"></a>自猜</h3><ol>
<li>蘑菇 勃根地 輕鬆喝 第二次喝:莓果味</li>
<li>新鮮水果 紅莓 中酸 尾韻長 煙燻</li>
<li>蘑菇味超級重 泥土 舊世界</li>
<li>新鮮水果 丹寧輕 低酸 酒精高(14.5)好像有點蘑菇</li>
<li>我沒喝</li>
<li>蘑菇味 point 果汁</li>
</ol>
<h3 id="答案-1"><a href="#答案-1" class="headerlink" title="答案"></a>答案</h3><ol>
<li>紅莓 洛神 仙渣 中等紅寶石色 中高酸 丹寧細 新世界(新鮮蔓越莓果汁 花香 紅水果) 普通複雜度 新世界 緯度40</li>
<li>三級香氣明顯 氣候涼(酸度高 沒上一隻甜美)洛神花(主體是花香) 泥土味 舊世界 羅亞爾河(泥土 礦石味)</li>
<li>木柴正在燒的味道 鹹 礦石 甜美 熟 顏色奇怪 (新世界模仿舊世界)酒莊在海邊(kooyong) 法國桶 複雜度不夠(判斷新世界仿舊世界原因)</li>
<li>集中度高 年輕勃根地 完全沒有三級香氣(新酒) 花香濃 草莓 酒體緊緻(大陸型)</li>
<li>澳洲 Grenache 果醬蜜餞(地中海)香料味(gsm) 顏色淺</li>
<li>澳洲 point noir </li>
</ol>
<h2 id="補充資訊"><a href="#補充資訊" class="headerlink" title="補充資訊"></a>補充資訊</h2><p>新世界:奔放 甜美 商業感<br>舊世界:內斂 優雅 </p>
<p>熱帶的chardonnay:<br>pinot noir 主要判斷依據: 紅色莓果 仙渣 洛神</p>
<p>勃根地 -> pinot noir 才有蘑菇味 (有其他老師持不同意見)</p>
<p>暖化 - 溫度的上升造成葡萄更早熟, 葡萄中有更多的糖分, 酒精濃度也就因此而提高</p>
<p>澳洲:金屬味</p>
<p>WEST標準 - 複雜度 香氣強度 尾韻 平衡</p>
<h3 id="三級香氣補充"><a href="#三級香氣補充" class="headerlink" title="三級香氣補充"></a>三級香氣補充</h3><p>辨別方法: 杯子傾斜從上到下聞 上方是一級香氣 下方是三級香氣</p>
<p>年份怎猜</p>
<ul>
<li>顏色</li>
<li>三級香氣</li>
</ul>
<h3 id="年份補充"><a href="#年份補充" class="headerlink" title="年份補充"></a>年份補充</h3><p>白酒:2017後都太熱18 19都很熱, 2014 2017都是好年份</p>
<p>2018是一個壞掉的年份<br>2020年有很多奇怪的東西(也是爛年份)</p>
<h3 id="酒瓶標籤"><a href="#酒瓶標籤" class="headerlink" title="酒瓶標籤"></a>酒瓶標籤</h3><p><img src="/2023/07/03/2023-6-15-simple-blind-tasting/1.png" alt="1"><br><img src="/2023/07/03/2023-6-15-simple-blind-tasting/2.png" alt="2"><br><img src="/2023/07/03/2023-6-15-simple-blind-tasting/3.png" alt="3"><br><img src="/2023/07/03/2023-6-15-simple-blind-tasting/4.png" alt="4"><br><img src="/2023/07/03/2023-6-15-simple-blind-tasting/5.png" alt="5"><br><img src="/2023/07/03/2023-6-15-simple-blind-tasting/6.png" alt="6"><br><img src="/2023/07/03/2023-6-15-simple-blind-tasting/7.png" alt="7"><br><img src="/2023/07/03/2023-6-15-simple-blind-tasting/8.png" alt="8"></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>