-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1336 lines (438 loc) · 37.9 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=2"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<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=6.4.2" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=6.4.2">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=6.4.2">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=6.4.2">
<link rel="mask-icon" href="/images/logo.svg?v=6.4.2" color="#222">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Muse',
version: '6.4.2',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: false,
fastclick: false,
lazyload: false,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
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>
<meta property="og:type" content="website">
<meta property="og:title" content="Hexo">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="Hexo">
<meta property="og:locale" content="default">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Hexo">
<link rel="canonical" href="http://yoursite.com/"/>
<script type="text/javascript" id="page.configurations">
CONFIG.page = {
sidebar: "",
};
</script>
<title>Hexo</title>
<noscript>
<style type="text/css">
.use-motion .motion-element,
.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-title { opacity: initial; }
.use-motion .logo,
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion {
.logo-line-before i { left: initial; }
.logo-line-after i { right: initial; }
}
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="default">
<div class="container 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-brand-wrapper">
<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">Hexo</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
</div>
<div class="site-nav-toggle">
<button aria-label="Toggle navigation bar">
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home menu-item-active">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />Home</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 />Archives</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">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/07/07/你远没有痊愈/">
<span hidden 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 hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/07/07/你远没有痊愈/" 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">Posted on</span>
<time title="Created: 2019-07-07 14:19:16" itemprop="dateCreated datePublished" datetime="2019-07-07T14:19:16+08:00">2019-07-07</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2019-07-08 17:50:23" itemprop="dateModified" datetime="2019-07-08T17:50:23+08:00">2019-07-08</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>近半年,我越来越少胡思乱想,看起来远离了半年前半夜写下“如果你有很糟糕的想法,别着急,也许睡一觉就好了”的自己,的确很庆幸,因为我远没有到抑郁的程度,最多只是有心理问题。</p>
<p><img src="/images/IMG_5115.JPG" alt=""></p>
<p><img src="/images/IMG_0534.JPG" alt=""></p>
<p><img src="/images/IMG_4786.JPG" alt=""></p>
<p>生活圈子很小,小到,来杭州两年多,微信好友也只是增加了一些同事和三个房东,我早就习惯了独处,称之为独自生活,习惯但又显得特别的难,因为我没有觉得这是对的,所以这就让他们显得尤为重要。遇到愿意分享生活乐趣给你的同事特别可贵,比如半夜约烤鱼烤串,约家里吃饭,约爬山打球,让我渐渐尝到了生活的乐趣,我的生活和工作没有完全分开,顺理成章地这对工作影响也是积极的。</p>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2019/07/07/你远没有痊愈/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/10/19/有哪些文艺到爆的句子/">
<span hidden 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 hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/10/19/有哪些文艺到爆的句子/" 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">Posted on</span>
<time title="Created: 2018-10-19 19:21:05 / Modified: 19:22:02" itemprop="dateCreated datePublished" datetime="2018-10-19T19:21:05+08:00">2018-10-19</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>有哪些文艺到爆的句子?</p>
<p>1、<br>我慢慢明白了为什么我不快乐,<br>因为我总是期待一个结果。<br>看一本书期待它让我变得深刻;<br>吃饭、游泳期待它让我一斤斤瘦下;<br>发一条微.信期待它被回复;<br>对别人好期待被回待以好;<br>写一个故事说一个心情期待被关注安慰;<br>参加一个活动,期待换来充实丰富的经历。<br>这些预设的期待如果实现了,我长舒一口气,<br>如果没有实现呢,就自怨自艾。<br>可是小时候也是同一个我,用一个下午的时间看蚂蚁搬家,等石头开花。<br>小时候不期待结果<br>小时候哭笑都不打折。——《允许自己虚度时光》</p>
<p>2、<br>我亦飘零久,十年来,深恩负尽,死生师友。——《金缕词》</p>
<p>3、<br>在一回首间,才忽然发现,原来,我一生的种种努力,不过只为了周遭的人对我满意而已。为了搏得他人的称许与微笑,我战战兢兢地将自己套入所有的模式所有的桎梏。走到途中才忽然发现,我只剩下一副模糊的面目,和一条不能回头的路。——席慕蓉《独白》</p>
<p>4、<br>若干年后,你也经历了一些人世,也有了一些只能在失眠的夜里独自咀嚼的故事,你青涩褪尽,渐渐懂了生之可忧,死之可怖。你终于也明白并且心平气和的接受了他不过是个平凡的人,与其他甲乙丙丁并没有什么本质的不同。可是,讲不清楚为什么,你还是有所眷恋,像是一种迷信,庙宇塌毁了,神还是神。</p>
<p>5、<br>午后,如果阳光静寂<br>你是否能听出<br>往日已归去哪里 ?<br>在光的前端 ,或思之极处<br>在时间被忽略的存在之中<br>生死同一<br>——《我与地坛》</p>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2018/10/19/有哪些文艺到爆的句子/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/10/19/人总有认怂的时候/">
<span hidden 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 hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/10/19/人总有认怂的时候/" 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">Posted on</span>
<time title="Created: 2018-10-19 15:34:16 / Modified: 15:35:11" itemprop="dateCreated datePublished" datetime="2018-10-19T15:34:16+08:00">2018-10-19</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>人总有认怂的时候</p>
<p>1、</p>
<p>唐大柱,将近一米八的大个,身体敦实得很,虽然生在南方,却浓眉大眼,一副北方人的身段和相貌。<br>即便长成这样,说起怂,我第一个想起来的,也一定是他。<br>刚入职进公司的时候,他就呆呆地,坐在我工位对面,印象里他的眼睛从未离开过屏幕,手指从未离开过键盘。<br>我是运营,他是技术,属于同一个项目部的不同小组,交集并不是很多,平时也很少搭话。<br>直到某天,我和同组的同事私底下商量打球的事情,他才跟我说了第一句话。<br>“你知道公司午休就一小时么?”他在桌子下面踢了踢我的桌脚,故意压低声调。<br>“咋了?”我反问。<br>“没咋,没咋,就告诉你一声。”说完,他又连忙把脚收了回去,用略带谨慎的口气低声说:“你们不是打球么,没事就提醒下,注意看点时间撒。”<br>“哦。”我淡淡地说。<br>不一会儿,他继续很小声地嘀咕道:“当我没说好了。”<br>又过半天,他又踢了踢我的桌脚补充道:“嘿嘿,要是你老大问我,我就说不知道哈。”<br>屁大点儿事,倒把他吓得够呛。<br>我愣在座位上,面无表情,心里却对他默念了一万次怂包。<br>而他说完话后,仍旧一副面无表情的样子,眼珠直勾勾地盯着键盘,手里不停地敲着代码。</p>
<p>2、</p>
<p>人的心理暗示作用总是很强的。</p>
<p>某个不认识的人,自从认识了以后,便会经常出现在你的视野里。<br>自从那次篮球事件以后,大柱的怂劲儿,也仿佛一天天在众人面前暴露出来。<br>比如部门聚餐,大家一起去饭店吃饭,偶尔遇到服务员迟迟不给上菜。<br>在场的急性子通常会拍案而起,而后和服务员撕逼,接着找来大堂经理;普通一点的,至少把服务员叫过来,接连催促几番;可大柱,从来都老老实实地坐在板凳上,一动不动。<br>有次恰巧也是上菜较慢,而我就坐他边上。<br>大家蠢蠢欲动的时候,我用胳膊肘碰了碰他,斜着眼问他,为什么每次他都不去催菜。<br>他没有看我,继续低着头玩手机,直截了当回我:“我可不敢。”<br>你怕啥,我问他。<br>“万一争起来,他拿把菜刀砍我咋办?”他回。<br>“擦,咱这老些人呢!”我提高了声调,接着,在座的齐刷刷地把目光投向他。<br>再看他,仍旧玩着手机,巧妙地躲过众人目光,并用一副爱理不理的样子说:“真出事儿了,不信你们不跑。”<br>一句话,噎得我满脸通红,哑口无言。<br>毕竟没出事,谁也证明不了谁会留,谁会逃。<br>然而,我们继续用很不屑的眼神看他,尽情地嘲笑他。<br>他却静静地低着头,不停地用手指左右滑动手机屏幕。<br>他耳朵里,像有一团棉签一样,把所有的非议,全部过滤掉。</p>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2018/10/19/人总有认怂的时候/#more" rel="contents">
Read more »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2016/12/21/我也走出了逃离北上广的一步/">
<span hidden 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 hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/12/21/我也走出了逃离北上广的一步/" 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">Posted on</span>
<time title="Created: 2016-12-21 20:24:50" itemprop="dateCreated datePublished" datetime="2016-12-21T20:24:50+08:00">2016-12-21</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2019-01-05 20:25:19" itemprop="dateModified" datetime="2019-01-05T20:25:19+08:00">2019-01-05</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>从仰在床上看电视到踏上G39,只花了两个小时,其实我没有怀疑过我的冲动,离开东莞-离开公司-离开北京,没有一次不是冲动,也没有一次不是逃避。我收拾东西很快,也很准点,带了冬天的衣物背上电脑,其实一点也不轻松,留了张自拍,还是丑,拖着箱子顺便拿上装满了小浣熊和老坛包装的垃圾袋,咣当,这里不属于我了。</p>
<p>北京这个时间点不堵车,但是也别想会有座位,提前半小时到了检票口,这是最舒服的候车时间,本以为高铁上会比较冷清其实不然,还是熙熙攘攘到处是人,还有五小时就能到杭州,不是真正意义上的一个人去到一个陌生的城市,杭州也是有同学在的,高中同学大学同学都有,承认生活本来就是不容易的,但是生活并不是没有善待我,每到一个城市都有朋友,有落脚的地方,这已经足够幸运了,只是我不会生活而已,明明知道生命短暂想做什么就应该赶紧去做,还一直被负面的自己主宰大部分都是在进行思想斗争。</p>
<p>刚才表弟在责怪我,走的这么匆忙,怎么就急在这一两天,我理解,毕竟昨晚也没一起搓一顿,约定的海底捞也没去,说是今天冬至准备下班煮饺子的,这样一想,还真有点不是滋味。起初是他说明年要离开北京的,去年就在说,说北京不适合久待,我都没搭理他……</p>
<p>今天其实是正能量的,但是我的正能量文字似乎停在了高四那句“驰骋直奔千里远,翱翔必指九天高”,之后我并不是很会写些慷慨激昂的文字,其实是已经变得不会写字了,所以不发朋友圈不发说说,偶尔发个微博还会回去删掉。</p>
<p>今天真的是正能量的,因为无非两种结果,留在杭州上班年底放假,或是在杭州停留一天然后踏上回家的路,因为我姐可是在周一就要订婚了啊,的确高兴,一直被念念叨叨的事情往好的方向走了啊。</p>
<p>本命年要来了啊,只求不要被击垮,要是能带爸妈出来玩一趟就完美了,要是能在工作之余找到另一半就更完美了。。</p>
<p>完美,是不是有点贪</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2016/12/16/写在毕业一年半几乎要离开北京的日子/">
<span hidden 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 hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/12/16/写在毕业一年半几乎要离开北京的日子/" 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">Posted on</span>
<time title="Created: 2016-12-16 15:34:16" itemprop="dateCreated datePublished" datetime="2016-12-16T15:34:16+08:00">2016-12-16</time>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-calendar-check-o"></i>
</span>
<span class="post-meta-item-text">Edited on</span>
<time title="Modified: 2019-01-05 20:21:23" itemprop="dateModified" datetime="2019-01-05T20:21:23+08:00">2019-01-05</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>中午面试回来,感觉不太好,烧开水吃了桶泡面,接着看了个火星情报局。<br>依旧不自信,问的知识点依旧很多不会,特别是先问到我是不是计算机专业然后问了些计算机知识,我改口了,唯唯诺诺的好像是我,又好像不是我。其实我很希望每天都能像今天这样连续面两家,至少像是那么回找工作该有的样子。</p>
<p>来到北京一年零两个月了,毕业一年半了,其实我并没有感觉到毕业后的大部分时间是在北京度过的。</p>
<p>毕业刚去东莞那会儿,并没有满心欢喜,因为东莞并不是我的心仪城市,也没有同学同行,工作我也不是很喜欢。但似乎我就是这样一个人,从来没有努力为自己争取过什么,没有努力拿奖学金,没有努力去做家教或者兼职,没有努力考研考公,就毕业了。我现在对东莞还是没什么印象,但是那三个月里认识的师傅室友同事们,在我现在看来却是真实很多倍。</p>
<p>我师傅是部门最帅的,一枝花的年纪,毕业十年,进公司八年,做事干脆有原则也有人脉,和拉上(我们工厂的生产线line,俗称拉,在无尘室,半自动化,我们的主要工作就是调试机器)的工人关系不错,似乎什么都能摆平,我喊他进哥,进哥记忆力很好,条理清晰说的话很有道理的样子,坐那休息的时候会讲讲电影聊聊家乡,问问我的规划,问的不是在公司的规划,因为所有人都知道我们不会留下来,几乎没有应届生会留下来,进哥在里面算是很正能量的了,和我说过这样一句话:做人要有自己的风格,做事也是一样。我就把它当做师傅给我的临别赠言吧。</p>
<p>那段时间走的最近的是宇,同一批进来的,和我学校也很近,长得高高的白白的,看起来有点像富二代,性格也比较活泼,重点是唱歌好听,我俩一个部门不同组同一个无尘室,天天招呼一声一起上下拉,穿个防尘服在无尘室逛来逛去像巡逻,没事就坐在凳子上闲聊,哼一曲。在我走后一周离开的。<br>当时公司宿舍是可以免费住挺长时间的,但是我那宿舍还没到两个月,三个人一合计搬出来了,搬出来之后做过几顿饭,在我走的前两天晚上那顿饭我现在还想念,那红烧肉,真的是我吃过最好吃的红烧肉(几乎不带感情因素),那顿饭是认识的仅有的两个女生做的,我们三个主人就帮帮下手,还有宇,那晚聊了很多,吃的带劲,真的带劲。</p>
<p>三个月,就来了北京,那时来北京的想法在脑海中已经有一个月了,和爸妈商量了两次,和师傅也说过,没有太多阻力,在十月底就到了北京。<br>来北京的第一天,刚下火车,在地铁站就被一对年轻母女要去了7块钱,说是没钱坐地铁。</p>
<p>培训的四个月其实没什么好说的,本来不是应该难过的日子是过的最慢的也是记得最深的吗,可是我觉得那四个月过的很快,印象也并没有多深刻,只是记得跟爸妈打电话会强忍着眼泪说钱够,再无其他。</p>