-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1973 lines (908 loc) · 66.4 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 class="theme-next muse use-motion" lang="">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="alternate" href="/atom.xml" title="gleamwang" type="application/atom+xml" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.0" />
<meta property="og:type" content="website">
<meta property="og:title" content="gleamwang">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="gleamwang">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="gleamwang">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Muse',
sidebar: {"position":"left","display":"post"},
fancybox: true,
motion: true,
duoshuo: {
userId: '0',
author: 'Author'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
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"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/"/>
<title> gleamwang </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="">
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?efdc2faeb9f92acd5d4ea8e8cd639fdd";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<div class="container one-collumn sidebar-position-left
page-home
">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">gleamwang</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
Startseite
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
Archiv
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
Tags
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/02/11/no-more-than-skins/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="gleamwang">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="gleamwang" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/02/11/no-more-than-skins/" itemprop="url">
《皮囊》读后感
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Veröffentlicht am</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2017-02-11T13:08:34+08:00">
2017-02-11
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2017/02/11/no-more-than-skins/#comments" itemprop="discussionUrl">
<span class="post-comments-count ds-thread-count" data-thread-key="2017/02/11/no-more-than-skins/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p><iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width="330" height="86" src="//music.163.com/outchain/player?type=2&id=427609613&auto=0&height=66"></iframe><br>(刚看到最后 《顽固》就在脑海中自动播放了哈哈哈 觉得这首歌和这本书的思想也很符合 由于版权 钢琴版凑合听吧 最好听原唱 嗯 或者我唱的)</p>
<blockquote>
<p>你当时相信 的那些事情<br> 会在如今变成美丽风景<br> 每当我迟疑 从不曾忘记<br> 活在我心深处 那顽固的自己</p>
</blockquote>
<p><img class="alignnone" src="http://7xsw2u.com1.z0.glb.clouddn.com/02173.jpg
" width="300px" height="300px"></p>
<p>这本书是去年买的 看评价还不错 一直到现在才翻开看 过年期间在家看的 每天上午十点多 当太阳光洒在辽阔的黑土地上 炕上窗户边阳光洒进来 我就开始乖乖的把书和铅笔准备好 开始了边晒太阳边看书思考的享受<br><img class="alignnone" src="http://7xsw2u.com1.z0.glb.clouddn.com/02171.jpg
" width="300px" height="300px"><br><img class="alignnone" src="http://7xsw2u.com1.z0.glb.clouddn.com/02174.jpg
" width="300px" height="300px"><br>其实 也不能说是享受 因为 从书的开头 我就隐隐感觉到 这作者是不是写的太详细太真实了点吧 有点受不了 对于一个不敢看恐怖悬疑推理惊悚科幻鬼片的我来讲 没想到他写的这么真实 </p>
<p>刚看的时候 看了下序 又翻到了后面马赛尔写的一句话,“<del>每个读者只能读到已然存在于他内心的东西。书籍只不过是一种光学仪器,帮助读者发现自己内心的东西</del>” 那时候还不理解 我还打了个问号呢哈哈 读完 又看了下 理解了 这就是共鸣 看一本书没引发你内心的共鸣 那也没什么意思了<br><img class="alignnone" src="http://7xsw2u.com1.z0.glb.clouddn.com/02172.jpg
" width="300px" height="300px"></p>
<p>#共鸣如下</p>
<h2 id="重症病房那部分"><a href="#重症病房那部分" class="headerlink" title="重症病房那部分"></a>重症病房那部分</h2><p>真的超真实 因为最近也在思考人的生老病死 失眠过 所以看这部分的时候我就想象自己走在医院充满消毒水味的走廊里 瞄着病房里躺着的人 摘几句话 很犀利:</p>
<p><em>“在这里,他们第一次像尊重自己的情感和灵魂一样那么尊重自己的肉身”
</em>“记得带上<em>必要的人</em>“ –去和医生术前家属谈话<br><em>根据大会要求,我坚持一定要见一次说一次 (撮合医生和护士长看到这我觉得好调皮啊哈哈哈)
</em>他不知道,这里有另外的四季、另外的节气<br>*我知道过不了几天,风一吹,沙子一埋,这痕迹也会不见的。一切轻薄得,好像从来没发生过</p>
<p>愿我们直面生死 愿我们珍惜生命</p>
<p>*最离奇的理想所需要的建筑素材就是一个个庸常而枯燥的努力</p>
<p><del>饿了 先去吃饭了 刚看到每天都会有人来这里看我博客 很开心 虽然不能评论 下一本看什么呢 我想象哦</del></p>
<p>元宵节快乐啦啦啦</p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/02/02/suhaozi/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="gleamwang">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="gleamwang" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/02/02/suhaozi/" itemprop="url">
面食-苏耗子
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Veröffentlicht am</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2017-02-02T17:51:53+08:00">
2017-02-02
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2017/02/02/suhaozi/#comments" itemprop="discussionUrl">
<span class="post-comments-count ds-thread-count" data-thread-key="2017/02/02/suhaozi/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>喵 桌子上有只老鼠</p>
</blockquote>
<p>腊月二十六 麻麻蒸了这个 我表示是第二次吃 但不知道怎么做 过程我也没看到 只看到出锅了 所以 只有成品图</p>
<p>出锅啦</p>
<p><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/020118.jpg" width="300px" height="300px"></p>
<p>其实就是糯米粉+豆沙+什么叶儿来着 我忘了 咳咳 百度了下 “苏耗子” 满族面食 嗯<br><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/020119.jpg" width="300px" height="300px"><br>第二天早上 被咬了一口的偶然放在桌子上 一看 “哇哦 好像只老鼠啊”</p>
<p><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/020120.jpg" width="300px" height="300px"></p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/02/02/2017-mayday/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="gleamwang">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="gleamwang" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/02/02/2017-mayday/" itemprop="url">
临睡前饿了
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Veröffentlicht am</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2017-02-02T17:16:32+08:00">
2017-02-02
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2017/02/02/2017-mayday/#comments" itemprop="discussionUrl">
<span class="post-comments-count ds-thread-count" data-thread-key="2017/02/02/2017-mayday/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width="330" height="86" src="//music.163.com/outchain/player?type=2&id=27566765&auto=0&height=66"></iframe>
<blockquote>
<p>那阳光 碎裂在熟悉场景 好安静</p>
</blockquote>
<p>先携家属给大家拜年 啦啦啦 好想要左二手里的红包</p>
<p><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/020117.jpg" width="300px" height="300px"></p>
<p>今天看朋友圈看到日专2月1号发布哎 去虾米上搜了下 还未发布 不知道是怎么回事</p>
<p>这几天都没怎么关注五只 看了下目前的2017训言表 杭州可以去 又去翻了下纯真微博 4月29号大连场已经出安排了 哇哦 可能杭州也不远了吧</p>
<h1 id="关于纯真"><a href="#关于纯真" class="headerlink" title="关于纯真"></a>关于纯真</h1><p>大二那年 准备买票 才知道有纯真论坛 后来注册了账号</p>
<p>去年 为了上海场 五吧和纯真同时盯着 后来 都团到了票 少数例子说明 五吧的位子比纯真更好</p>
<p>今天翻微博发现纯真发声明说有四位管理者退出了 其他事务会有他人接手</p>
<p>其实 我并不认识他们是谁 但是看到 一个因为热爱组织起来的非营利组织 已经存在14年 还是很感动</p>
<p>毕竟 暴民很强大 经历过团购的人都知道 从准备团购 到转账 填单子 每场数额很大 还会有人填错各种信息</p>
<p>而且一到要买票的时候论坛就会崩掉哈哈哈</p>
<p>所以 大家辛苦啦</p>
<h1 id="关于日文专辑《自传》"><a href="#关于日文专辑《自传》" class="headerlink" title="关于日文专辑《自传》"></a>关于日文专辑《自传》</h1><p>其实我不懂为什么五只四十多岁了还会想去日本发展哎 都那么老了 老男人</p>
<p>可能有他们自己的打算吧 但其实 现在的年轻人也不喜欢他们了啊 有一次有和凡人谱一起开con 五只出来都不热情啊 没什么反应 相比之下 等flumpool那几个一出场 尖叫声呼喊声都出来了</p>
<p>所以你们有我们就好了 也不年轻了</p>
<p>所以 日专也没打算买</p>
<h1 id="关于17年巡演"><a href="#关于17年巡演" class="headerlink" title="关于17年巡演"></a>关于17年巡演</h1><p>杭州可能会去看 和妹子一起啦啦啦</p>
<p>南京可能会出 出了也去</p>
<p>16年看完 其实已经很满足了 不奢求说看很多场 能时隔四年 看一场 会哭会笑会释放 就已经足够了</p>
<p>没想到17年的安排出的这么快</p>
<p><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/02019.jpg" width="300px" height="300px"></p>
<p>看得出来 行程其实安排的很紧 其实 去年的现场就觉得阿信声音已经哑掉了 从年末香港连开九场+小巨蛋跨年依旧+17年内地又一波巡演 直觉告诉我 他们要离开了 毕竟都40+了 有家有亲人有孩子 身体最重要吧 所以总感觉 可能这波巡演过后 真的要等到80岁拄着拐杖带着孙子孙女再去看他们的现场了 所以今年的还是要看一下 嗯 为了告别</p>
<p>很高兴成为五迷 在我唱歌跑调还不记得歌词的年少青春里 哈哈哈</p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/02/02/wondersun yogurt/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="gleamwang">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="gleamwang" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/02/02/wondersun yogurt/" itemprop="url">
完达山酸奶
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Veröffentlicht am</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2017-02-02T17:04:58+08:00">
2017-02-02
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2017/02/02/wondersun yogurt/#comments" itemprop="discussionUrl">
<span class="post-comments-count ds-thread-count" data-thread-key="2017/02/02/wondersun yogurt/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>达不离道 穷不失义</p>
</blockquote>
<p>今天介绍下北大荒集团的完达山牌酸奶 有原味和红枣味两种 我就买过原味的 每次回家都会喝 走的时候再带两盒</p>
<p>上次回来还一盒13呢 这次去买 一盒11</p>
<h1 id="原味"><a href="#原味" class="headerlink" title="原味"></a>原味</h1><p>一盒八杯 一杯125g 含奶量80%以上 绿色食品 感觉很良心 嗯<br><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/02018.jpg" width="300px" height="300px"></p>
<p>所以下午都会和奶奶喝一杯</p>
<p>哦 这个酸奶盖儿我都撕了两年了 超难撕开 就只好插管喝</p>
<p>有一天晚上和哥哥说 哥哥硬说能撕开 我就不信啊(胆肥了吼) 于是看到了哥哥手撕酸奶 撕开了<br><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/020113.jpg" width="300px" height="300px"><br>我表示很震惊 毕竟我也是很认真的四个角都试过了 可是因为厂家太实诚 塑料盖儿压的太死了 都会断掉 嗯</p>
<p>不要找借口啦</p>
<p>后来哥哥开心的对我说 “喏 这瓶盖儿给你了 舔吧” 啊啊啊啊啊啊</p>
<p>他喝了一杯后 又开心的撕了第二杯 于是 我默默的又处理了第二个舔盖儿 哼</p>
<p>后来 可能哥哥看到我那好奇的小眼神 教了我诀窍哈哈哈哈</p>
<p>所以我现在可以不浪费一滴的手撕瓶盖啦啦啦</p>
<p>开心</p>
<h1 id="红枣味儿"><a href="#红枣味儿" class="headerlink" title="红枣味儿"></a>红枣味儿</h1><p>喝过一次 我觉得不好喝 感觉很混 生牛乳90%以上 100g</p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/02/02/hungry/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="gleamwang">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="gleamwang" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/02/02/hungry/" itemprop="url">
临睡前饿了
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Veröffentlicht am</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2017-02-02T16:50:37+08:00">
2017-02-02
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2017/02/02/hungry/#comments" itemprop="discussionUrl">
<span class="post-comments-count ds-thread-count" data-thread-key="2017/02/02/hungry/" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>肉 你好 快和我说拜拜</p>
</blockquote>
<p>过节的烦恼就是为准备一天三顿忙个不停 结果饭做完了 也不想吃了 所以大家吃的都不多</p>
<p>后来我自己就饿了再吃 第一顿差不多九点 第二顿下午两三点 饿的时候吃的可香了 可是不知道是温度太适宜还是看纪录片太费脑力 晚上还是会饿</p>
<p>于是 第一天饿 我默默的趁大家都睡了 去厨房找吃的 找啊找啊找肉吃 突然发现熬的羊汤 还温乎着呢 突然好幸福哈哈哈<br><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/02011.jpg" width="300px" height="300px"><br><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/02012.jpg" width="300px" height="300px"><br><img class="alignnone" src="http://7xvj7p.com1.z0.glb.clouddn.com/02013.jpg" width="300px" height="300px"><br>小心翼翼的盛了一碗 半碗饭+炒豆芽+两块麻麻白天炸的萝卜丝丸子 豆芽真好吃 也不管这么晚吃得长几斤肉了</p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2017/02/02/hello-2017/">
<span style="display:none" itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="gleamwang">
<span style="display:none" itemprop="logo" itemscope itemtype="http://schema.org/ImageObject">
<img style="display:none;" itemprop="url image" alt="gleamwang" src="">
</span>
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/02/02/hello-2017/" itemprop="url">
hello 2017
</a>
</h1>