-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
2100 lines (862 loc) · 52.1 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>
<!-- title -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" >
<meta name="author" content="Darren聂微东">
<meta name="renderer" content="webkit">
<meta name="copyright" content="Darren聂微东">
<meta name="keywords" content="Darren聂微东 | Darren聂微东">
<meta name="description" content="博观而约取,厚积而薄发">
<meta name="Cache-Control" content="no-cache">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Darren聂微东</title>
<style type="text/css">
@font-face {
font-family: 'Oswald-Regular';
src: url("/font/Oswald-Regular.ttf");
}
body {
margin: 0;
}
header,
footer,
.back-top,
.sidebar,
.container,
.site-intro-meta,
.toc-wrapper {
display: none;
}
.site-intro {
position: relative;
z-index: 3;
width: 100%;
/* height: 50vh; */
overflow: hidden;
}
.site-intro-placeholder {
position: absolute;
z-index: -2;
top: 0;
left: 0;
width: calc(100% + 300px);
height: 100%;
background: repeating-linear-gradient(-45deg, #444 0, #444 80px, #333 80px, #333 160px);
background-position: center center;
transform: translate3d(-226px, 0, 0);
animation: gradient-move 2.5s ease-out 0s 1;
}
@keyframes gradient-move {
0% {
transform: translate3d(-226px, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
</style>
<link rel="preload" href= /css/style.css?v=20180501 as="style" onload="this.onload=null;this.rel='stylesheet'" />
<link rel="stylesheet" href= /css/mobile.css?v=20180501 media="(max-width: 980px)">
<script>
/*! loadCSS. [c]2017 Filament Group, Inc. MIT License */
(function(w){
"use strict";
/* exported loadCSS */
var loadCSS = function( href, before, media ){
// Arguments explained:
// `href` [REQUIRED] is the URL for your CSS file.
// `before` [OPTIONAL] is the element the script should use as a reference for injecting our stylesheet <link> before
// By default, loadCSS attempts to inject the link after the last stylesheet or script in the DOM. However, you might desire a more specific location in your document.
// `media` [OPTIONAL] is the media type or query of the stylesheet. By default it will be 'all'
var doc = w.document;
var ss = doc.createElement( "link" );
var ref;
if( before ){
ref = before;
}
else {
var refs = ( doc.body || doc.getElementsByTagName( "head" )[ 0 ] ).childNodes;
ref = refs[ refs.length - 1];
}
var sheets = doc.styleSheets;
ss.rel = "stylesheet";
ss.href = href;
// temporarily set media to something inapplicable to ensure it'll fetch without blocking render
ss.media = "only x";
// wait until body is defined before injecting link. This ensures a non-blocking load in IE11.
function ready( cb ){
if( doc.body ){
return cb();
}
setTimeout(function(){
ready( cb );
});
}
// Inject link
// Note: the ternary preserves the existing behavior of "before" argument, but we could choose to change the argument to "after" in a later release and standardize on ref.nextSibling for all refs
// Note: `insertBefore` is used instead of `appendChild`, for safety re: http://www.paulirish.com/2011/surefire-dom-element-insertion/
ready( function(){
ref.parentNode.insertBefore( ss, ( before ? ref : ref.nextSibling ) );
});
// A method (exposed on return object for external use) that mimics onload by polling document.styleSheets until it includes the new sheet.
var onloadcssdefined = function( cb ){
var resolvedHref = ss.href;
var i = sheets.length;
while( i-- ){
if( sheets[ i ].href === resolvedHref ){
return cb();
}
}
setTimeout(function() {
onloadcssdefined( cb );
});
};
function loadCB(){
if( ss.addEventListener ){
ss.removeEventListener( "load", loadCB );
}
ss.media = media || "all";
}
// once loaded, set link's media back to `all` so that the stylesheet applies once it loads
if( ss.addEventListener ){
ss.addEventListener( "load", loadCB);
}
ss.onloadcssdefined = onloadcssdefined;
onloadcssdefined( loadCB );
return ss;
};
// commonjs
if( typeof exports !== "undefined" ){
exports.loadCSS = loadCSS;
}
else {
w.loadCSS = loadCSS;
}
}( typeof global !== "undefined" ? global : this ));
</script>
<link rel="icon" href= "/images/favicon.ico" />
<link rel="preload" href="https://cdn.jsdelivr.net/npm/[email protected]/webfontloader.min.js" as="script" />
<link rel="preload" href="//cdn.staticfile.org/jquery/3.2.1/jquery.min.js" as="script" />
<link rel="preload" href="/scripts/main.js" as="script" />
<link rel="preload" as="font" href="/font/Oswald-Regular.ttf" crossorigin>
<link rel="preload" as="font" href="//at.alicdn.com/t/font_327081_cgbkxhtzasud6lxr.woff" crossorigin>
<!-- 百度统计 -->
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?4f3c5e6b3d9970d7336aca6c772576e4";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- 谷歌统计 -->
</head>
<body class="home-body">
<header class="header index-header">
<div class="read-progress"></div>
<div class="header-sidebar-menu"></div>
<!-- post页的toggle banner -->
<a class="home-link" href=/>一枚Web技术领域的手艺人.</a>
</header>
<div class="wrapper">
<div class="site-intro" style=
height:50vh;
>
<!-- 主页 -->
<!-- 文章页 -->
<div class="site-intro-img" style="background-image: url(/images/banners/By_Kien_Do.jpg)"></div>
<div class="site-intro-placeholder"></div>
<div class="site-intro-meta">
<!-- 标题 -->
<h1 class="intro-title">
<!-- 主页 -->
一枚Web技术领域的手艺人.
<!-- 文章页 -->
</h1>
<!-- 副标题 -->
<p class="intro-subtitle">
<!-- 主页副标题 -->
博观而约取,厚积而薄发
<!-- 文章页 -->
</p>
<!-- 文章页meta -->
</div>
</div>
<script>
// load webfont-loader async, and add callback function
function async(u, c) {
var d = document, t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0];
o.src = u;
if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); }
s.parentNode.insertBefore(o, s);
}
// get user agent
var browser = {
versions: function () {
var u = window.navigator.userAgent;
return {
userAgent: u,
trident: u.indexOf('Trident') > -1, //IE内核
presto: u.indexOf('Presto') > -1, //opera内核
webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核
mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或者uc浏览器
iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //是否为iPhone或者安卓QQ浏览器
iPad: u.indexOf('iPad') > -1, //是否为iPad
webApp: u.indexOf('Safari') == -1, //是否为web应用程序,没有头部与底部
weixin: u.indexOf('MicroMessenger') == -1, //是否为微信浏览器
uc: u.indexOf('UCBrowser') > -1 //是否为android下的UC浏览器
};
}()
}
console.log("userAgent:" + browser.versions.userAgent);
// callback
function fontLoaded() {
console.log('font loaded');
if (document.getElementsByClassName('site-intro-meta')) {
document.getElementsByClassName('intro-title')[0].classList.add('intro-fade-in');
document.getElementsByClassName('intro-subtitle')[0].classList.add('intro-fade-in');
var postIntroTags = document.getElementsByClassName('post-intro-tags')[0],
postIntroMeat = document.getElementsByClassName('post-intro-meta')[0];
if (postIntroTags) {
postIntroTags.classList.add('post-fade-in');
}
if (postIntroMeat) {
postIntroMeat.classList.add('post-fade-in');
}
}
}
// UC不支持跨域,所以直接显示
function asyncCb(){
if (browser.versions.uc) {
console.log("UCBrowser");
fontLoaded();
} else {
WebFont.load({
custom: {
families: ['Oswald-Regular']
},
loading: function () { //所有字体开始加载
// console.log('loading');
},
active: function () { //所有字体已渲染
fontLoaded();
},
inactive: function () { //字体预加载失败,无效字体或浏览器不支持加载
console.log('inactive: timeout');
fontLoaded();
},
timeout: 5000 // Set the timeout to two seconds
});
}
}
async("https://cdn.jsdelivr.net/npm/[email protected]/webfontloader.min.js", asyncCb)
</script>
<img class="loading" src="/assets/loading.svg" style="display: block; margin: 6rem auto 0 auto; width: 6rem; height: 6rem;" />
<div class="container container-unloaded">
<main class="main index-page">
<article class="index-post">
<a class="abstract-title" href = "/2018/04/27/tech_level/" >
<span>技术级别的那点事</span>
</a>
<div class="abstract-content">
最近入职的伙伴都比较年轻,对于技术序列和大公司那套技术金字塔比较疑惑,所以我找到之前在百度移动的 TC资料,再结合一些大家都感兴趣的点,梳理分享出来仅做参考。
文章主要围绕几个关键字:校招、技术定级、技术晋升、TC(技术委员会)。
正文开始之前先确定以下几点认知:
那些比较极端且少量的栗子就别拿来抬杠了,如知乎上或者脉脉匿名区里那些令人瑟瑟发抖大神们…
本人仅粗略了解百度和阿里的技术序列建设,对腾讯系的没太多概念,所以不瞎扯腾讯的技术序列了。
文中的技术岗位默认指的是 前端、服务端、客户端 这三种。
虽然薪资方面网上有挺多资料,但是我毕竟不是 HR,所以也会尽量避免少谈薪资,多说技术级...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/04/27</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Interview">Interview</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Startup">Startup</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2018/03/22/blued_recruitment/" >
<span>Blued正在招聘「前端研发」</span>
</a>
<div class="abstract-content">
公司地点:北京CBD。
今年我们公司的前端研发团队还需要招 20+,对此我也很发愁,所以写下这篇文章,介绍介绍我们的团队情况和公司情况。
社会价值、梦想、使命之类的偶就不说了,这篇文章里只说那些实际的。
公司介绍Blued是北京蓝城兄弟信息技术有限公司旗下产品,于2012年年底上线,是目前国内最受欢迎、全球用户总数最多的垂直人群兴趣移动社交应用。
以下是我司发展历程的介绍:
2012年11月:Blued v1.0iOS、Android版上线;
2013年08月:获上海中路资本300万人民币天使轮投资
2014年02月:获清流资本数千万人民币A轮融资
2014年10月:获顺为资本、DCM...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/03/22</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Interview">Interview</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Startup">Startup</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2018/03/14/Review2017/" >
<span>2017小结</span>
</a>
<div class="abstract-content">
从 2010年开博就一直坚持写些杂七杂八的东西,结果 2017直接荒废了一年。
打开公众号和微博,偶尔能看见朋友的留言“怎么还不更新”,那瞬间只有一个词表达我的感觉:感动。
说实话,其实偶对 2017年还挺满意的。
工作方面有了不大不小的突破,团队伙伴们也日渐成熟,业务也眼瞅着越来越好;
生活方面看了几本喜欢的书,和家人一起旅行,搬进了老家的新家等等…
2017 得到了很多不曾想到过的东西,最重要的,觉得自己又成长了不少,对于工作和生活又有了更好的状态。
2017回顾一、个人技术过去的一年,自己的工作内容其实变化不小,虽然团队建设分去了不少精力,但是写代码还是自己的主要工作。
首先...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/03/14</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Books">Books</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Review">Review</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2017/04/30/2016流水账/" >
<span>2016流水账</span>
</a>
<div class="abstract-content">
眼瞅着2016第一季都快过去了,俺也总结总结自己在2015年的成长吧。
目录
选择
工作
生活
展望2016
选择
2013年是我工作的第四年。
那年,我晋升T5;那年,我与云姐结婚…也是在那年,我有了离京的想法,打算离开这儿南下,离开这个读书、打拼多年的地方。心想着杭州、广州或者深圳,去那里开始新的生活。
为什么要离开?孩子读书、雾霾、离老家远(湖南怀化)等问题我无法改变又忍不鸟,那么离开也算顺理成章。
当然,直到现在我还是没离开帝都,和云姐在这座城市北漂着,原因自己也讲不清,可能更多的是不甘心,希望在这个熟悉又陌生的城市里拼出点样子,再考虑是走是留。
201...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2017/04/30</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Books">Books</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Review">Review</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2016/12/24/buybuybuy/" >
<span>提升幸福感之「无线耳机」</span>
</a>
<div class="abstract-content">
转眼又是年底啦,节奏如下:双十一接黑五,然后再战双十二,现在又是剩蛋,跟着特么是圆蛋,不特么 买买买 怎么对得起自己这一年来的搬得那么多砖。
没错,我也没少剁手,如封面那款柃檬黄的耳机。
提升幸福感的方式有多种,买买买应该是最粗暴、最直接的方式。而对于广大程序员,买个无线耳机肯定是其中之一。
封面这款 Sony大法的 MDR-100ABN是我非常推荐的一款。ps:特么劳资都买了,能不推荐么…
宋仲基、鹿晗代言,Sony大法的信仰加持都不是重点,关键还带强大的降噪功能,配合着耳机的超高颜值,真心适合闷骚和明骚的筒子们。
安利下 头戴式降噪无线耳机 的好处:一、无线意味着不用重复「解线」这个...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2016/12/24</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Buybuybuy">Buybuybuy</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2016/12/10/convince/" >
<span>认知与说服</span>
</a>
<div class="abstract-content">
前些日子发表了篇 《YY一下十年后的自己》,上周三晚我顺手把这篇文章丢到了博客园的博客上,没想到评论区引起了一番有关于“大龄程序员”的讨论。
今天写这篇文章的目的其实不是为了让大家去讨论某些言论或个人,而是想表达偶冷静后的些许想法:在网络上面对不相识、无交集的陌生人,如果不能简单几句达成共识,何必强行去「说服」对方,人与人的「认知」其实各不相同,不如相忘于江湖。ps:冷静后的言论肯定是经过大脑的,但特么脾气上来的时候劳资该嘲讽还是忍不住嘲讽的。
有关讨论的截图我先放出来。文章一共收到评论数 78个,除去一半多无价值的留言,有意义的评论其实不多,几分钟就可以看完。
等看官您先看完截图,我...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2016/12/10</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Interview">Interview</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Startup">Startup</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2016/12/04/yy/" >
<span>YY一下十年后的自己</span>
</a>
<div class="abstract-content">
每到年底总是我最焦虑的时候,年龄越大情况越明显。可能越长大越是对 时光的流逝 更有感触,有感触之后就会胡思乱想。所以随手开始写下这篇文章。
人无远虑必有近忧。那么同学呀,你听说过安利么。
一直都有做总结的习惯,隔一段时间就会自我反省反省。这又到年底了,今年我又给自己怎样的答卷呢,这个恼人的问题先等到 2017年初再说吧,那会儿自然有年度总结奉上。
当下我想 “YY一下十年之后的自己”。十年后俺四十岁,那时的我最害怕的会是什么呢?
碌碌无为
胖
秃
穷
丑
健康
家庭
父母
孩子
。。。
这个念头刚起,无数糟糕的画面开始在脑海里翻滚,欲罢不能。
以上的所有项都是我担心的、害怕的,可能最...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2016/12/04</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Review">Review</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2016/11/30/weixin2/" >
<span>微信小程序首次官方分享的纪要</span>
</a>
<div class="abstract-content">
先交代备注:
这次有关小程序的分享只有技术的 QA环节,其他如产品、入口、流量、与公众号的整合等等,回答都是暂时无法给出答案或不确定;
小程序最终发布时间官方也还未确定,不过说应该就是近期;
小程序的分享环节不允许录像;
官方不会分享本次小程序的PPT,但是前排同学有拍照,已经统一按顺利放在结尾处,强烈推荐阅读;
图片较多,打开较慢,请有心理准备。
很久没参加技术相关的大会了,不过 11/23 特意去参加了微信官方组织的开发者培训班,日常安排如下:
当然,其实去听培训偶就是为了下午要分享的 微信小程序,但是没想到上午内容都非常的干货,确实有很多值得思考的地方,微信生态的商业化确实令...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2016/11/30</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "HTML">HTML</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Tech">Tech</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Startup">Startup</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2016/11/13/weixin1/" >
<span>对于前端,「微信小程序」其实不美好</span>
</a>
<div class="abstract-content">
微信小程序开放公测了,9月底我曾经写过一篇 「微信小程序」来了,其中最后一句:“谢天谢地,我居然还是个前端”。这种火爆的新事物总是令人激动,感谢这个时代。
但是,当我真作为开发者去一行行撸码,我还是忍不住翻起了白眼。
终于,11/03微信小程序正式开始公测。本着“另杀错莫放过”的原则,我也开始了自己的微信小程序学习之旅。ps:以下出现的“小程序”即微信小程序。
对小程序感兴趣的同学很多,但是申请公测的门槛着实不低,得是企业、政府、媒体等等,反正得有正儿八经资质的开发者才能搞到资格。
前阵子到处都可以见到媒体对小程序的曝光。大多都是 YY微信这个生态如何如何,开发者如何如何,又从商业...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2016/11/13</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "HTML">HTML</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Tech">Tech</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Startup">Startup</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2016/11/02/bookstore/" >
<span>《岛上书店》简评</span>
</a>
<div class="abstract-content">
按一个月看 2~3本书的节奏,一年到头肯定会读超过 20本书。其中纯技术书占三分之一,与互联网有关的书占三分之一,还有三分之一大概是人文、历史、小说之类的“杂”书。
每本有价值的书都值得被记录,不管是加深理解、记忆,还是用于将来怀念,反正读完一本书,不写点神马我会觉得失落(除非这本书真的糟到不想写),所以就有了「简评」。
「简评」可以直译为 简单的书评。当然,主观 是免不了的,剧透 是人神共愤的,有意义 是只能尽力的,但是我会努力做到 有趣的。
首先,这本书是凑单和各种书单推荐的产物;其次,只要是我自己下单选择的书,我就一定会去看,而且只要内容不过与乏味、无趣,偶都一定会认真的看完;最后...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2016/11/02</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Books">Books</a>
</div>
</div>
</article>
<!-- paginator -->
<nav class="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><span class="space">…</span><a class="page-number" href="/page/6/">6</a><a class="extend next" rel="next" href="/page/2/">NEXT ></a>
</nav>
</main>
<!-- profile -->
<div class="profile">
<img class="profile-avatar" src= /images/me.jpg >
<div class="profile-name">Darren聂微东</div>
<div class="profile-signature">
博观而约取,厚积而薄发
</div>
<div class="profile-social">
<a href="mailto:[email protected]" class="iconfont-archer email" title=email ></a>
<a href="//github.com/nieweidong" class="iconfont-archer github" target="_blank" title=github></a>
<span class="iconfont-archer wechat" title=wechat>
<img class="profile-qr" src="/images/qrcode.jpg" />
</span>
<a href="//weibo.com/darrencode" class="iconfont-archer weibo" target="_blank" title=weibo></a>
<a href="//www.zhihu.com/people/darrenwei-dong" class="iconfont-archer zhihu" target="_blank" title=zhihu></a>
</div>
<div class="friends">
<div>FRIENDS</div>
<span>
<a href= //web.blued.cn target="_black">Blued</a>
</span>
<span>
<a href= //blog.jiasm.org target="_black">Jiasm</a>
</span>
</div>
<div class="about-me">
<a href = "/about" >ABOUT ME</a>
</div>
</div>
</div>
<footer class="footer footer-unloaded">
<!-- social -->
<div class="social">
<a href="mailto:[email protected]" class="iconfont-archer email" title=email ></a>
<a href="//github.com/nieweidong" class="iconfont-archer github" target="_blank" title=github></a>
<span class="iconfont-archer wechat" title=wechat>
<img class="profile-qr" src="/images/qrcode.jpg" />
</span>
<a href="//weibo.com/darrencode" class="iconfont-archer weibo" target="_blank" title=weibo></a>
<a href="//www.zhihu.com/people/darrenwei-dong" class="iconfont-archer zhihu" target="_blank" title=zhihu></a>
</div>
<!-- powered by Hexo -->
<div class="copyright">
<span id="hexo-power">Powered by <a href="https://hexo.io/" target="_blank">Hexo</a></span>
</div>
<!-- 不蒜子 -->
<div class="busuanzi-container">
<span id="busuanzi_container_site_pv">PV: <span id="busuanzi_value_site_pv"></span>
</span>
</div>
</footer>
<!-- <span class="iconfont-archer power"></span><span id="theme-info">theme <a href="https://github.com/fi3ework/hexo-theme-archer" target="_blank">Archer</a></span> -->
</div>
<!-- toc -->
<div class="back-top iconfont-archer"></div>
<div class="sidebar sidebar-hide">
<ul class="sidebar-tabs sidebar-tabs-active-0">
<li class="sidebar-tab-archives"><span class="iconfont-archer"></span><span class="tab-name">Archive</span></li>
<li class="sidebar-tab-tags"><span class="iconfont-archer"></span><span class="tab-name">Tag</span></li>
<li class="sidebar-tab-categories"><span class="iconfont-archer"></span><span class="tab-name">Cate</span></li>
</ul>
<div class="sidebar-content sidebar-content-show-archive">
<div class="sidebar-panel-archives">
<!-- 在ejs中将archive按照时间排序 -->