-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
1914 lines (1295 loc) · 115 KB
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[malrase dot com]]></title>
<link href="http://www.malrase.com/atom.xml" rel="self"/>
<link href="http://www.malrase.com/"/>
<updated>2016-06-24T09:53:31-07:00</updated>
<id>http://www.malrase.com/</id>
<author>
<name><![CDATA[Michael]]></name>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Game of Thrones Cocktails]]></title>
<link href="http://www.malrase.com/blog/2016/06/19/game-of-thrones-cocktails/"/>
<updated>2016-06-19T14:14:36-07:00</updated>
<id>http://www.malrase.com/blog/2016/06/19/game-of-thrones-cocktails</id>
<content type="html"><![CDATA[<p>If you’ve been following <a href="https://twitter.com/malrase">my Twitter</a> over the past few Sundays, you might have noticed I post a Game of Thrones themed cocktail. Some are better than others, and some I put more effort into (the Blood on the Snow is basically a G&T – I was on beach vacation for that one).</p>
<p>Some people said they’d be interested in seeing a list with recipes. So here you go: my Game of Thrones cocktails.</p>
<h2>Mother Of Dragons</h2>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/got/mother-of-dragons.jpg">
<img src="http://www.malrase.com/images/cocktails/got/mother-of-dragons.jpg">
</a>
</div>
<ul>
<li>2oz Del Vida mezcal</li>
<li>4oz blood orange soda</li>
<li>Juice from half a lime</li>
</ul>
<p>Serve in a Tom Collins glass over ice. Garnish with a lemon peel.</p>
<h2>White Walker</h2>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/got/white-walker.jpg">
<img src="http://www.malrase.com/images/cocktails/got/white-walker.jpg">
</a>
</div>
<ul>
<li>2oz gin (New Amsterdam or similar)</li>
<li>0.75oz lemon juice</li>
<li>0.75oz Cointreau</li>
<li>Dash of blue curaçao</li>
</ul>
<p>Shake over ice and serve up.</p>
<h2>Dothraki Blood</h2>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/got/dothraki-blood.jpg">
<img src="http://www.malrase.com/images/cocktails/got/dothraki-blood.jpg">
</a>
</div>
<ul>
<li>2oz Bulleit bourbon</li>
<li>0.75oz Carpano Antica sweet vermouth</li>
<li>0.5oz Cynar</li>
<li>Two dashes of blood orange bitters</li>
</ul>
<p>Stir with ice and serve up. Garnish with an orange peel.</p>
<h2>Blood on the Snow</h2>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/got/blood-on-the-snow.jpg">
<img src="http://www.malrase.com/images/cocktails/got/blood-on-the-snow.jpg">
</a>
</div>
<ul>
<li>2oz St Augustine gin</li>
<li>2oz tonic</li>
<li>Splash of lime</li>
</ul>
<p>Serve in an Old Fashioned glass over ice. Garnish with two drops of Peychaud’s bitters.</p>
<h2>Lord of Light</h2>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/got/lord-of-light.jpg">
<img src="http://www.malrase.com/images/cocktails/got/lord-of-light.jpg">
</a>
</div>
<ul>
<li>1.5oz Del Vida mezcal</li>
<li>1.5oz Carpano Antica sweet vermouth</li>
<li>1oz Averna amaro</li>
<li>Two dashes of Reagan’s bitters.</li>
</ul>
<p>Stir over ice and serve in an Old Fashioned glass over a big cube. Garnish with a burnt orange peel.</p>
<h2>The Waif</h2>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/got/the-waif.jpg">
<img src="http://www.malrase.com/images/cocktails/got/the-waif.jpg">
</a>
</div>
<ul>
<li>2oz resposado tequila</li>
<li>0.75oz elderflower liqueur</li>
<li>0.5oz lemon juice</li>
<li>1 egg white</li>
<li>Dash of grapefruit juice</li>
</ul>
<p>Dry shake the lemon, grapefruit, egg white, and elderflower. Add the tequila and shake over ice. Serve up with a dash of grapefruit bitters on the foam.</p>
<h2>The Battle of the Bastards</h2>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/got/battle-of-the-bastards.jpg">
<img src="http://www.malrase.com/images/cocktails/got/battle-of-the-bastards.jpg">
</a>
</div>
<ul>
<li>0.75oz Diplomatico rum</li>
<li>0.75oz Mt Gay rum</li>
<li>1.5oz dry vermouth</li>
<li>0.5oz Cointreau</li>
<li>Dash of Angostoura bitters</li>
</ul>
<p>Stir over ice, and serve over a large cube. Garnish with a lemon peel.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Japan Trip: Tourists in Tokyo (Part 2)]]></title>
<link href="http://www.malrase.com/blog/2016/04/09/japan-trip-tourists-in-tokyo-part-2/"/>
<updated>2016-04-09T09:29:53-07:00</updated>
<id>http://www.malrase.com/blog/2016/04/09/japan-trip-tourists-in-tokyo-part-2</id>
<content type="html"><![CDATA[<p>After our day of exploring by ourselves, Mike and Melissa showed up to help us navigate all the cool things to do. It’s incredibly useful visiting with people who’ve been to Japan a lot – explaining all the customs and phrases, knowing which areas to go to, and so on.</p>
<p>The first thing we did was go to Disney, but I’m going to put all the Disney stuff in one post. But later that evening, we went to what became Hampton and my favourite chain of izakaya: <a href="https://www.torikizoku.co.jp/">Torikizoku</a>. They’re dotted around Tokyo and you can easily spot their distinctive yellow-and-red <a href="https://en.wikipedia.org/wiki/Seal_script">seal script</a> logo. The best thing about them? All menu items are 280¥ (~$2.60). Even drinks! It’s nice knowing you can eat your fill of delicious yakitori for under $20. That was a great thing about Japan – you can get really good food for really cheap.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/torikizoku.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/torikizoku.jpg">
</a>
<div class="alt">A selection of our food at Torikizoku</div>
</div>
<p>We then went wandering through <a href="https://en.wikipedia.org/wiki/Shibuya">Shibuya</a>, and Hampton stumbled upon this guy selling street oysters.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/street-oysters.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/street-oysters.jpg">
</a>
<div class="alt">Street oysters were really tasty</div>
</div>
<p></p>
<p>Hampton loves oysters, so we had to stop. I’m usually extremely cautious of street meat, and street <em>seafood</em> is even sketchier, but this guy had a crowd of people eating his oysters – so we had one. It was good and we didn’t die of food poisoning, so that’s a win.</p>
<p>Next we went to a place where you ordered on a tablet:</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/tablet-orders.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/tablet-orders.jpg">
</a>
<div class="alt">Minimal human interaction = win</div>
</div>
<p>It was awesome except for the dangerously drunk group behind us. I was very worried someone was going to fall into me, but they didn’t.</p>
<p>Then we spent the rest of the night playing games in an arcade. These arcades are everywhere and usually involve a mix of computer games and UFO catchers.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/drumming.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/drumming.jpg">
</a>
<div class="alt">The drumming game was the best game</div>
</div>
<p></p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/ufo.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/ufo.jpg">
</a>
<div class="alt">Mike looks pretty suspicious</div>
</div>
<p>The next day Mike and Melissa had booked us all a sushi lunch in <a href="https://en.wikipedia.org/wiki/Ginza">Ginza</a>. (PS: if you have an AmEx card, you should definitely use their concierge to book restaurants.)</p>
<p>The place was called <a href="https://www.tripadvisor.com/Restaurant_Review-g1066444-d6069493-Reviews-Sushi_Iwa-Chuo_Tokyo_Tokyo_Prefecture_Kanto.html">Sushi Iwa</a>, and was down a side alley. It was across the street from where it was supposed to be, due to some renovation work.</p>
<p>Inside, there were six (!) seats at a bar. There were four of us, and for the first hour of the meal it was just us in the restaurant.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/sushi-iwa-bar.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/sushi-iwa-bar.jpg">
</a>
<div class="alt">Corner of the sushi bar</div>
</div>
<p>The chef was lovely – he prepped all the food right there in front of us.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/sushi-iwa-chef.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/sushi-iwa-chef.jpg">
</a>
<div class="alt">The chef!</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/sushi-iwa-plate.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/sushi-iwa-plate.jpg">
</a>
<div class="alt">Place setting</div>
</div>
<p>We opted for the longer menu, which came to about $80 per person. The chef would get out the fish at appropriate times to ensure it was at the correct temperature when we ate it. He’d call for a top-up of rice when necessary.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/sushi-iwa-fish.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/sushi-iwa-fish.jpg">
</a>
<div class="alt">Cutting the fish</div>
</div>
<p>It was amazing to watch him work. Once he’d made the sushi, he’d reach over and place it on our plates. Then, we ate each piece with our hands. And the final products… wow. They were absolutely incredible.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/sushi-iwa-tuna.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/sushi-iwa-tuna.jpg">
</a>
<div class="alt">Seriously, can you believe the colour on that tuna?</div>
</div>
<p>The chef would name each fish in English (but also had a handy book to point at things that we weren’t familiar with). It was (naturally) the best sushi I’ve ever had. I won’t bore you with all the pictures I took of each piece.</p>
<p>Sadly, the meal had to come to an end. We decided to take the train to <a href="https://en.wikipedia.org/wiki/Harajuku">Harajuku</a>/<a href="https://en.wikipedia.org/wiki/Meiji_Shrine">Meiji Shrine</a>.</p>
<p>Meiji Shrine is dedicated to the old Emperor, so it’s super-popular and important. It’s beautiful inside and we saw a shinto wedding one time we were there.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/meiji.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/meiji.jpg">
</a>
<div class="alt">The front of Meiji Shrine</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/wishes-meiji.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/wishes-meiji.jpg">
</a>
<div class="alt">You can write hopes/wishes on these cards</div>
</div>
<p>We popped into <a href="https://en.wikipedia.org/wiki/Yoyogi_Park">Yoyogi Park</a>, which wasn’t as easy to get to as you might imagine from Meiji Shrine. They’re right next to each other geographically, but there’s no connecting gates.</p>
<p>We did see some ume blossoms (although they’re inferior to sakura, OBVIOUSLY).</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/yoyogi.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/yoyogi.jpg">
</a>
<div class="alt">Ume blossoms bloom early, apparently</div>
</div>
<p>Then we wandered down the main street of Harajuku, <a href="https://en.wikipedia.org/wiki/Takeshita_Street">Takeshita street</a>. It was a Sunday afternoon and it was a beautiful day out, so of course it was packed.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/takeshita.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/takeshita.jpg">
</a>
<div class="alt">かわいい!!!!</div>
</div>
<p>After that exhausting day of shopping, we went to a seafood izakaya place called <a href="http://tabelog.com/en/tokyo/A1307/A130701/13025693/">魚真 乃木坂店</a>. It was over near Roppongi, which is a sketchy/clubby area we were told to avoid. But this place was great, and we ate lots of uni and other delicious things. And drank lots of <em>nama biiru</em> (draft beer).</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/biiru.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/biiru.jpg">
</a>
<div class="alt">I learnt how to order beer and I stuck with it</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/uni.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/uni.jpg">
</a>
<div class="alt">Piles of uni and tuna</div>
</div>
<p>To round the night off, we went to McDonalds for something I’d been excited about trying for a while: <a href="http://news.mcdonalds.com/Corporate/Feature-Stories-Articles/2016/McDonald-s-Japan-Puts-a-Sweet-Spin-on-a-Golden-Arc">McChoco Potato</a>.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/mcchoco.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/mcchoco.jpg">
</a>
<div class="alt">McChoco Potato, y u so good?</div>
</div>
<p>It’s basically McDonalds fries with milk and white chocolate sauce on them. They were so good and my stomach is rumbling right now with the thought of them.</p>
<p>Next up: we take the shinkansen to Osaka!</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Japan Trip: Tourists in Tokyo (Part 1)]]></title>
<link href="http://www.malrase.com/blog/2016/02/21/japan-trip-tourists-in-tokyo/"/>
<updated>2016-02-21T19:58:22-08:00</updated>
<id>http://www.malrase.com/blog/2016/02/21/japan-trip-tourists-in-tokyo</id>
<content type="html"><![CDATA[<p>We landed late on a Thursday, and managed to catch the <a href="http://www.keisei.co.jp/keisei/tetudou/skyliner/us/ae_outline/index.php">Keisei Skyliner</a> to our first hotel. We were staying in <a href="https://en.wikipedia.org/wiki/Akihabara">Akihabara</a>, the electronics district. It was overwhelming when we first arrived.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/akihabara.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/akihabara.jpg">
</a>
<div class="alt">Nighttime in Akihabara</div>
</div>
<p>I had an idea of what Tokyo would be like, and this was it turned up to 11. Neon signs were attached to every building. Video screens were selling you products or pop bands. People were shouting on the street for you to come into their bar/arcade/store. It was a sensory overload&emdash;not helped by just having taken a 10 hour flight on which I didn’t sleep. We went to bed pretty soon after arriving.</p>
<p>The next day, we headed over to <a href="https://en.wikipedia.org/wiki/Tsukiji_fish_market">Tsukiji</a> fish market. It’s a slightly cliché first-day-in-Tokyo thing to do, but it’s apparently being moved to somewhere else in the Autumn, so we wanted to do it at least once. It’s a labyrinth of small restaurants, fishmongers, and other shops selling knives/chopsticks/etc.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/tsukiji.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/tsukiji.jpg">
</a>
<div class="alt">In the narrow streets of Tsukiji</div>
</div>
<p>But the best part is the cheap, amazing fresh sushi you get find in the area. We picked a place at random, opting for a sushi bar that looked reasonably packed but without too much of a wait.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/tsukiji-sushi.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/tsukiji-sushi.jpg">
</a>
<div class="alt">Sushi bar!</div>
</div>
<p>I’m not going to try to describe the ensuing bounty. The fish was cold and tender, the rice warm and sticky. It was probably the best sushi I’d ever had (until a couple of days later, but that’s for a different post).</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/tsukiji-breakfast.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/tsukiji-breakfast.jpg">
</a>
<div class="alt">Freshest fish I’ll eat, probably</div>
</div>
<p>Just looking at this makes me want to eat it again. The best piece was the fatty tuna, on the top-left of the board. Delicious.</p>
<p>After the market, we headed over to <a href="https://en.wikipedia.org/wiki/Ueno_Park">Ueno Park</a>, an urban park with a number of shrines and museums. Unfortunately, the National Museum of Western Art was closed, so we ended up going to the <a href="https://en.wikipedia.org/wiki/Tokyo_National_Museum">Tokyo National Museum</a> instead.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/tokyo-met.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/tokyo-met.jpg">
</a>
<div class="alt">Hanging out with the TNM mascots</div>
</div>
<p>It provided a nice overview, for ignorant people such as myself, to the broad history of Tokyo (and, to some extent, Japan). There was also a special exhibition on&emdash;some of the <a href="https://en.wikipedia.org/wiki/Terracotta_Army">Terracotta Army</a> were on display. So we spent a little more and got entrance to that, too.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/warriors.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/warriors.jpg">
</a>
<div class="alt">Some (fake) terracotta warriors… we weren’t allowed to take pictures of the real ones</div>
</div>
<p>They were fairly impressive, I suppose, but the exhibition was in its last few days so it was packed. You could barely move in there. But I guess I can check it off the bucket list?</p>
<p>Anyway, we went back to the hotel to relax before heading out for dinner. This was our first major meal in Tokyo, and introduced us to one of the jarring ways to deal with such density of people. In most cities I’ve been to, restaurants (and bars) have a street-level entrance. Not here. Restaurants are found on seemingly any floor of a building. In this case, we went for <a href="">yakiniku</a> on the fourth floor of a building. (<em>So, I should note, it’s important to figure out what floor a restaurant is on when you look up an address.</em>)</p>
<p>Yakiniku is basically grilled stuff. And we grilled a whole bunch-o-meat on our very own grill.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/yakiniku.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/yakiniku.jpg">
</a>
<div class="alt">Tasty meat, pre-grilling</div>
</div>
<p>Weird cultural thing I didn’t know before going to Japan: smoking indoors is pretty much A-OK, even in restaurants. It was odd being in a kinda-fancy restaurant and having the table next to us start blowing smoke in our direction. Boo.</p>
<p>Afterwards, we went “next door” (read: across the floor) to a British-style pub. It’s part of a chain called the HUB. It was pretty fun, but it was odd because inside was smoking only… so we sat outside, right near the elevator. Odd times.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/tokyo/hub-akb.jpg">
<img src="http://www.malrase.com/images/japan/tokyo/hub-akb.jpg">
</a>
<div class="alt">Chilling in a building’s elevator lobby</div>
</div>
<p>The next day, Mike and Melissa arrived! But more about that in my next post.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Japan Trip: Singapore Airlines SQ11 in Business Class]]></title>
<link href="http://www.malrase.com/blog/2016/02/11/japan-trip-singapore-airlines-in-business-class/"/>
<updated>2016-02-11T22:58:51-08:00</updated>
<id>http://www.malrase.com/blog/2016/02/11/japan-trip-singapore-airlines-in-business-class</id>
<content type="html"><![CDATA[<p>Our first trip of 2016, and it’s a big one: we’re heading to Japan for two weeks.</p>
<p>Japan has been top of my destinations list for a while. As <a href="http://melissadreamsofsushi.com">Melissa</a> and <a href="http://mikeferrier.com">Mike</a> booked a trip to Osaka, we decided to join in on their fun. The itinerary is roughly as follows: 4 days in Tokyo, 4 days in Osaka, 1 day in Kyoto, then back to Tokyo for 5 days.</p>
<p>But let’s start with the most interesting part: our flights there! We decided to book with [Singapore Airlines]–the LAX-NRT flight was on an A380 (yay) and we’ve heard they’re pretty nice. Plus, they have recently introduced Premium Economy… making the 11-hour flight just a little more palatable.</p>
<p>Anyway, the day before we got a phone call saying that there was no Premium Economy on the plane we were going to take. Uh-oh. The person said it would be fine, just ask at the check-in desk when we arrive.</p>
<p>Only problem is: we were flying with Virgin America from SFO to get to LAX. With a tight layover, were we going to have time to visit the Singapore Airlines check-in desk? When we arrived at SFO, the Virgin America crew couldn’t even give us the boarding pass for our second leg. That made us even more nervous. But we weren’t showing it.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/sfo.jpg">
<img src="http://www.malrase.com/images/japan/flights/sfo.jpg">
</a>
<div class="alt">Boarding our SFO flight (plus the amazing new control tower in the background)</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/virginamerica.jpg">
<img src="http://www.malrase.com/images/japan/flights/virginamerica.jpg">
</a>
<div class="alt">Virgin America SFO-LAX</div>
</div>
<p>We landed in L.A. and rushed to the International Terminal (which was thankfully just next to the terminal we landed at). We went to the check-in desk and…</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/boarding-pass.jpg">
<img src="http://www.malrase.com/images/japan/flights/boarding-pass.jpg">
</a>
<div class="alt">SQ11 Boarding Pass</div>
</div>
<p>We were upgraded to Business Class! Holy moly! I never thought I’d fly Singapore Airlines Business Class, but there you go. Plus it was upstairs on the A380!</p>
<p>Before we got on the plane, we hung out in the Star Alliance Lounge, which was pretty nice. The best bit (aside from the free drinks) was the build-your-own-noodle-bowl bar.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/lounge-bar.jpg">
<img src="http://www.malrase.com/images/japan/flights/lounge-bar.jpg">
</a>
<div class="alt">Star Alliance Lounge at LAX</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/noodle-bar.jpg">
<img src="http://www.malrase.com/images/japan/flights/noodle-bar.jpg">
</a>
<div class="alt">Build-your-own noodle bowl!</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/noodles.jpg">
<img src="http://www.malrase.com/images/japan/flights/noodles.jpg">
</a>
<div class="alt">Nomnom, noodles</div>
</div>
<p>Oh yeah, and this is when I started my drinking. It’s vacation time!</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/mimosa.jpg">
<img src="http://www.malrase.com/images/japan/flights/mimosa.jpg">
</a>
<div class="alt">Cheeky mimosa before the flight</div>
</div>
<p>They also had some really nice dessert “shooters,” which unfortunately couldn’t fit a spoon into them. So I ate them with a knife instead. Keeping it classy, as always.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/lounge-dessert.jpg">
<img src="http://www.malrase.com/images/japan/flights/lounge-dessert.jpg">
</a>
<div class="alt">Passion fruit and s’mores dessert shooters</div>
</div>
<p>Over the intercom, they announced that our flight was boarding. Time to go! Going up an escalator to get to the entry was awesome. I love the A380 so much.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/escalator.jpg">
<img src="http://www.malrase.com/images/japan/flights/escalator.jpg">
</a>
<div class="alt">Up an escalator to the upper deck of the A380</div>
</div>
<p>The seats you get in Business Class are amazing. They’re (faux?) leather, and you get some comfy pillows too. The craziest thing was how wide they were. I think you could fit two Michaels in one of these seats.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/seat.jpg">
<img src="http://www.malrase.com/images/japan/flights/seat.jpg">
</a>
<div class="alt">My seat</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/seat-width.jpg">
<img src="http://www.malrase.com/images/japan/flights/seat-width.jpg">
</a>
<div class="alt">Seriously, the seat was so wide</div>
</div>
<p>Also, Business Class was really empty. No one was in the seats behind us or diagonal to us. Which came in handy when my table was broken and I had to switch seats.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/empty-rows.jpg">
<img src="http://www.malrase.com/images/japan/flights/empty-rows.jpg">
</a>
<div class="alt">So many empty rows behind me!</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/new-seat.jpg">
<img src="http://www.malrase.com/images/japan/flights/new-seat.jpg">
</a>
<div class="alt">My new seat (only used for eating)</div>
</div>
<p>The seat had a number of cool features. There was a little pop-down table for drinks, and a mirror. There were power sockets for regular plugs and USB! Plus a neat little compartment for putting my phone in. We got some slippers and some noise-cancelling headphones (which were actually pretty good).</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/sockets.jpg">
<img src="http://www.malrase.com/images/japan/flights/sockets.jpg">
</a>
<div class="alt">Range of plug sockets</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/phone-holder.jpg">
<img src="http://www.malrase.com/images/japan/flights/phone-holder.jpg">
</a>
<div class="alt">Tiny pocket for holding my charging phone</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/mirror-drink.jpg">
<img src="http://www.malrase.com/images/japan/flights/mirror-drink.jpg">
</a>
<div class="alt">Mirror and drink holder</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/headphones.jpg">
<img src="http://www.malrase.com/images/japan/flights/headphones.jpg">
</a>
<div class="alt">Noise-cancelling headphones (you can see there’s a neat hook to hang them on, too)</div>
</div>
<p>Now onto the food. Singapore Airlines has a thing called “Book the Cook.” Basically, it’s like pre-ordering the meal you want <em>before</em> you get on your flight. You can choose some really delicious-sounding stuff! The menu we got when we sat down also offered <em>hanakoireki</em>, which was like a bento-box thing. Hampton went for the hanakoireki, and I got the chef’s meal. It was all superb.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/lunch-layout.jpg">
<img src="http://www.malrase.com/images/japan/flights/lunch-layout.jpg">
</a>
<div class="alt">My table layout before the meal</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/lunch-starter.jpg">
<img src="http://www.malrase.com/images/japan/flights/lunch-starter.jpg">
</a>
<div class="alt">Starter: some kind of salmon and crab mayo thing</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/lunch-main.jpg">
<img src="http://www.malrase.com/images/japan/flights/lunch-main.jpg">
</a>
<div class="alt">Main: sukiyaki!</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/lunch-dessert.jpg">
<img src="http://www.malrase.com/images/japan/flights/lunch-dessert.jpg">
</a>
<div class="alt">Dessert: chocolate ice-cream</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/lunch-cheese.jpg">
<img src="http://www.malrase.com/images/japan/flights/lunch-cheese.jpg">
</a>
<div class="alt">Finally, a cheese course– you gotta have a cheese course</div>
</div>
<p>They also had a pretty decent cocktail list. I got a Singapore Sling (duh), which was really rather good.</p>
<p>Oh, and one more thing: the bathroom was full of useful items. Razors, toothbrush/toothpaste, mouthwash… handy for a 10 hour flight.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/bathroom-1.jpg">
<img src="http://www.malrase.com/images/japan/flights/bathroom-1.jpg">
</a>
<div class="alt">So many toiletries!</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/bathroom-2.jpg">
<img src="http://www.malrase.com/images/japan/flights/bathroom-2.jpg">
</a>
<div class="alt">Plus razors, toothbrushes, combs…</div>
</div>
<p>After eating, the lovely staff of Singapore Airlines made my seat into a lie-flat bed. It was actually pretty comfortable.</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/bed.jpg">
<img src="http://www.malrase.com/images/japan/flights/bed.jpg">
</a>
<div class="alt">My sky-bed</div>
</div>
<p>As we were waking up, we had our “dinner”. (A weird thing about long flights: the names of the meals you’re served rarely correspond to when you get them.) Yay, more yummy food!</p>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/dinner-starter.jpg">
<img src="http://www.malrase.com/images/japan/flights/dinner-starter.jpg">
</a>
<div class="alt">Starter: beef carpaccio with pickles</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/dinner-main.jpg">
<img src="http://www.malrase.com/images/japan/flights/dinner-main.jpg">
</a>
<div class="alt">Main: some dim sum, including lo mai gai, har gow, and shaomai (the lo mai gai, wrapped in a lotus leaf, was amazing)</div>
</div>
<div class="img">
<a href="http://www.malrase.com/images/japan/flights/dinner-dessert.jpg">
<img src="http://www.malrase.com/images/japan/flights/dinner-dessert.jpg">
</a>
<div class="alt">Dessert: green tea cake</div>
</div>
<p>And then, despite my yearning for a longer flight with this amazing service and food, we landed at Narita.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[2015 in Review]]></title>
<link href="http://www.malrase.com/blog/2015/12/31/2015-in-review/"/>
<updated>2015-12-31T12:00:01-08:00</updated>
<id>http://www.malrase.com/blog/2015/12/31/2015-in-review</id>
<content type="html"><![CDATA[<p>This year has felt busy, but I’m not sure how/why. It’s felt like my wheels have been spinning a little. I’ve been too busy to come up with a lot of items for this list – but what exactly have I been busy doing?</p>
<h3>Films</h3>
<ol>
<li>Mad Max: Fury Road</li>
<li>Star Wars: The Force Awakens</li>
<li>Inside Out</li>
</ol>
<p>Honorable mentions for It Follows and Whiplash, which I only saw this year.</p>
<h3>TV Episodes</h3>
<ol>
<li>Mother’s Mercy (Game of Thrones, S5 E10)</li>
<li>Loplop (Fargo, S2 E8)</li>
<li>Episode 6 (The Jinx, S1 E6)</li>
</ol>
<h3>Books</h3>
<p>This year, I haven’t read nearly as much as I should have. I think maybe a handful of books have been completed on my Kindle. I’m not even sure I could do a best of. Maybe I should set myself a challenge for 2016?</p>
<h3>Songs</h3>
<ol>
<li>Flesh Without Blood – Grimes</li>
<li>Can’t Feel My Face – The Weeknd</li>
<li>The Party Line – Belle & Sebastian</li>
</ol>
<h3>Moments</h3>
<ol>
<li>Seeing parents for Christmas</li>
<li>Getting to know the Third Rail bartenders</li>
<li>No-holds-barred Walt Disney World trip</li>
<li>MaxFunCon</li>
</ol>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[The Savoy Cocktail Book]]></title>
<link href="http://www.malrase.com/blog/2015/08/30/the-savoy-cocktail-book/"/>
<updated>2015-08-30T12:47:32-07:00</updated>
<id>http://www.malrase.com/blog/2015/08/30/the-savoy-cocktail-book</id>
<content type="html"><![CDATA[<p>It was my birthday a couple of days ago, and I got a copy of <a href="https://en.wikipedia.org/wiki/Savoy_Hotel#The_Savoy_Cocktail_Book">The Savoy Cocktail Book</a>. It’s been in publication since 1930, with over 700 recipes inside.</p>
<p>To be honest, a lot of the recipes are very similar. Most are based on whiskey, rum, or dry gin. Then, you add varying amounts of sweet and dry vermouths (called Italian and French vermouths, respectively) – plus dashes of bitters or other liqueurs.</p>
<p>The presentation is top-notch, though, with gorgeous art deco illustrations every few pages. Check out the page where the Savoy Cocktail is presented.</p>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/savoy-pages.jpg">
<img src="http://www.malrase.com/images/cocktails/savoy-pages.jpg">
</a>
<div class="alt">R.A.C. Special Cocktail</div>
</div>
<p>You’ll notice the page doesn’t quite go to the edge. The <a href="http://www.amazon.com/Savoy-Cocktail-Book-Harry-Craddock/dp/1614274304/ref=sr_1_1?ie=UTF8&qid=1440964129&sr=8-1&keywords=savoy+cocktail+book">edition I got</a> is a scanned version of the original, and it looks a little… unprofessional. Our local bar has a much nicer copy, with feathered edges.</p>
<p>I decided to start a journey of sorts, inspired by a game Jeff, the owner of <a href="http://thirdrailbarsf.com/">Third Rail</a>, plays with other bartenders. The game is as follows: you flip to any page in the book, put your finger on a cocktail, and then make something drinkable from it.</p>
<p>It’s a tricky challenge if only because the recipes tend to be geared towards old liquors, which were less drinkable than they are now. For example, the gimlet recipe in the book states it should be ½ lime juice and ½ gin, which would be too citrus-forward even for me.</p>
<p>The other challenge for me is that some of the recipes have rather niche ingredients (<a href="https://en.wikipedia.org/wiki/Punsch">Swedish punsch</a>, anyone?) that I don’t have. Although I suppose that’s part of the fun – figuring out what you can replace certain ingredients with and still maintain the desired flavour.</p>
<p>My first cocktail ended up being the R.A.C. Special Cocktail. Their recipe: ½ dry gin, ¼ sweet vermouth, ¼ dry vermouth, and two dashes of orange bitters. Shake well, serve , and garnish with an orange peel. Here’s the outcome.</p>
<div class="img">
<a href="http://www.malrase.com/images/cocktails/savoy-rac.jpg">
<img src="http://www.malrase.com/images/cocktails/savoy-rac.jpg">
</a>
<div class="alt">R.A.C. Special Cocktail</div>
</div>
<p>I lowered the vermouth slightly, to 1/8 of each. I think that makes a nicer cocktail. It tasted pretty much how you would expect – kind of a mix between a martini and a martinez/manhattan type thing. Certainly not that adventurous for a first cocktail, but pretty good nonetheless.</p>
<p>I’m sure I’ll be using some of these recipes for inspiration for <a href="https://itunes.apple.com/us/podcast/we-have-a-microphone/id964234004?mt=2">WHAM</a> drinks, too. Cheers!</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Drinking at the Disneyland Resort]]></title>
<link href="http://www.malrase.com/blog/2015/06/20/drinking-in-disneyland/"/>
<updated>2015-06-20T14:00:29-07:00</updated>
<id>http://www.malrase.com/blog/2015/06/20/drinking-in-disneyland</id>
<content type="html"><![CDATA[<p>We were in the mountains above Los Angeles for <a href="http://www.maxfuncon.com/">MaxFunCon</a>, a neat comedy/podcasting conference at which we had a lot of fun. Since we were in L.A., why not head to the Disneyland Resort in Anaheim, too?</p>
<p>It’s Disneyland’s 60th anniversary, so there’s a lot of cool stuff going on. In particular, the fireworks at Disneyland are spectacular. If you can make it before the celebrations are over, it’s well worth it. Make sure to get a prime spot on Main Street and you won’t be disappointed.</p>
<p>Anyway, the rides and all that are fun, but a more pressing question is: are those of us who like cocktails doomed to saccharine cruise-ship drinks while at the parks?</p>
<p>We set off to find out.</p>
<p>The first point: of the two parks in the <a href="https://en.wikipedia.org/wiki/Disneyland_Resort">Disneyland Resort</a>, <a href="https://en.wikipedia.org/wiki/Disneyland">Disneyland</a> is completely dry (well, apart from <a href="http://www.snopes.com/disney/parks/club33.asp">Club 33</a>). The only park you’ll find a drink in is <a href="https://en.wikipedia.org/wiki/Disney_California_Adventure">Disney California Adventure</a>.</p>
<p>That’s where we started our investigatory stroll. Our first stop was the Alfresco Tasting Terrace. We’d been there on a previous trip, but since then they had stopped serving cocktails. There’s only wine and beer now.</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/alfresco-terrace.jpg">
<img src="http://www.malrase.com/images/disney/june15/alfresco-terrace.jpg">
</a>
<div class="alt">Alfresco Tasting Terrace</div>
</div>
<p>They have wine flights, which are pretty fun. And all the wineries seem to have some connection to Disney – some ex-executive started a winery, and now you can drink it here.</p>
<p>It’s also a pretty good spot to grab a glass of wine to go. This is especially handy before the <a href="https://en.wikipedia.org/wiki/World_of_Color">World of Color</a> show. Seen below is us with our to-go cups of wine.</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/alfresco-wine-to-go.jpg">
<img src="http://www.malrase.com/images/disney/june15/alfresco-wine-to-go.jpg">
</a>
<div class="alt">Booze you can take with you = the best</div>
</div>
<p>Our next stop was more fruitful: the Carthay Circle lounge. It gets busy after around 5pm, and the lounge is first-come-first-served, so make sure you get a seat. The drinks were good, and decently priced ($10-12 each). Because of the Disneyland 60th anniversary, they’re putting diamond-shaped cubes in every drink (including Martinis and Manhattans), so if you want your drink unsullied, make sure to mention it.</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/carthay-circle-lounge.jpg">
<img src="http://www.malrase.com/images/disney/june15/carthay-circle-lounge.jpg">
</a>
<div class="alt">Carthay Circle Lounge</div>
</div>
<p>They didn’t just have standard cocktails, either. They had some crème de violette/tequila thing that came with a candied flower on it. It tasted great!</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/carthay-violet.jpg">
<img src="http://www.malrase.com/images/disney/june15/carthay-violet.jpg">
</a>
<div class="alt">Violet cocktail from Carthay Circle</div>
</div>
<p>We headed over to The Cove, which is by the Paradise Pier area of the park. Like the Carthay Circle lounge, this place gets really busy, so come early. It’s a lot of fun people-watching and sitting outside (if you can take a little sun). I was pleasantly surprised that the discontinued cocktail menu from the Alfresco Terrace was now over here! So I had my favourite drink from that – the Smoked Turkey.</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/the-cove.jpg">
<img src="http://www.malrase.com/images/disney/june15/the-cove.jpg">
</a>
<div class="alt">The Cove bar – Smoked Turkey and a Manhattan</div>
</div>
<p>(Oh, you should also get the lobster nachos while you’re there. Deeeelicious.)</p>
<p>After we’d exhausted Disney California Adventure, we went to our favourite bar at the resort – Trader Sam’s Enchanted Tiki Bar. It’s located by the pool at the Disneyland Hotel. It’s a bit of a trek from the parks (about 10-15mins walk through Downtown Disney), but we enjoy it. Here’s the entrance:</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/trader-sams-entrance.jpg">
<img src="http://www.malrase.com/images/disney/june15/trader-sams-entrance.jpg">
</a>
<div class="alt">Entrance to Trader Sam’s Enchanted Tiki Bar</div>
</div>
<p>There’s a doorman – like every other bar, this one gets really busy. The doorman had implemented a one-in-one-out policy.</p>
<p>Inside, it’s filled with trinkets and tchotchkes over the walls. Every surface is covered in this stuff, and it’s really interesting to read/look at. Like everything at Disney theme parks, there’s a back-story to every item. Nothing is just put up without thorough thought. There are letters from people Trader Sam has met on adventures. There’s things people have mailed. It’s quite incredible.</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/trader-sams-indoor.jpg">
<img src="http://www.malrase.com/images/disney/june15/trader-sams-indoor.jpg">
</a>
<div class="alt">Inside Trader Sam’s</div>
</div>
<p>The drink menu has a standard tiki-theme – mostly rums and fruit juices. Most of the drinks have ridiculous names (“Tiki Tiki Tiki Tiki Tiki Rum,” for example).</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/trader-sams1.jpg">
<img src="http://www.malrase.com/images/disney/june15/trader-sams1.jpg">
</a>
<div class="alt">HippopotoMai-Tai and a Lost Safari</div>
</div>
<p>The Mai Tai was fine, but nothing special. The Lost Safari was really good, though.</p>
<p>For our next round, I ordered the Krakatoa Punch. It came with a glowing “ice-cube” in it. When I ordered it, the bar lights went low. Through one of the trompe l’oiel “windows”, a volcano erupted in a neat little display.</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/trader-sams-krakatoa.jpg">
<img src="http://www.malrase.com/images/disney/june15/trader-sams-krakatoa.jpg">
</a>
<div class="alt">Krakatoa Punch</div>
</div>
<p>In fact, these things happen for a number of drinks. Every 15 minutes or so, you’ll be interrupted. The Shipwrek on the Rocks causes a ship in a painting behind the bar to sink. Plus the bartender sprays you with water.</p>
<p>Our final drink was the Uh Oa. It’s a sharing drink, and arrives with a flaming sugar cube. You throw cinnamon and nutmeg onto the flames, creating sparks, while the whole bar erupts in chants of “Uh oa! Uh oa!”</p>
<div class="img">
<a href="http://www.malrase.com/images/disney/june15/trader-sams-uh-oa.jpg">
<img src="http://www.malrase.com/images/disney/june15/trader-sams-uh-oa.jpg">
</a>
<div class="alt">Uh Oa!</div>
</div>
<p>Trader Sam’s is entertaining. It’s exactly how you’d imagine Disney would want a bar to be – adults can get the sense of fun and magic that is often left only to kids.</p>
<p>That was our drinking experience at Disneyland Resort. When we’re next down at Walt Disney World, I’ll try to do a similar thing for those parks, too.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Tony Awards 2015]]></title>
<link href="http://www.malrase.com/blog/2015/05/07/tonys-2015/"/>
<updated>2015-05-07T15:48:41-07:00</updated>
<id>http://www.malrase.com/blog/2015/05/07/tonys-2015</id>
<content type="html"><![CDATA[<p>I had a lot of fun doing the pool for the Oscars in February. I’ve done a little bit more development on it to make it work for multiple awards shows.</p>
<p>If you go to <a href="http://pool.malrase.com">pool.malrase.com</a> you can now <a href="http://pool.malrase.com/pools/2/ballots/new">submit a ballot for the 2015 Tony Awards</a>. This time, it’s free! So although that means you won’t win money, you could still win the pride of being an accurate predictor of this year’s Tonys.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Oscar Pool 2015]]></title>
<link href="http://www.malrase.com/blog/2015/02/04/oscar-pool-2015/"/>
<updated>2015-02-04T16:01:32-08:00</updated>
<id>http://www.malrase.com/blog/2015/02/04/oscar-pool-2015</id>