-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1998 lines (815 loc) · 57.7 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 mist use-motion" lang="en">
<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 name="theme-color" content="#222">
<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="/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.4" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="Leaf Photo, iOS" />
<meta name="description">
<meta property="og:type" content="website">
<meta property="og:title" content="Alicia's Blog">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="Alicia's Blog">
<meta property="og:description">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Alicia's Blog">
<meta name="twitter:description">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Mist',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
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>Alicia's Blog</title>
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?cbbd9aa76d6f5e7b8019ca96dba4e7e2";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="en">
<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">Alicia's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">[LEAF Photo]作者</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>
</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 />
Home
</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>
<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/2020/04/06/Full-Stack-Development/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alicia">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Alicia's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2020/04/06/Full-Stack-Development/" itemprop="url">Full Stack Development</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="Post created" itemprop="dateCreated datePublished" datetime="2020-04-06T10:59:03+08:00">
2020-04-06
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="全栈"><a href="#全栈" class="headerlink" title="全栈"></a>全栈</h1><p>本文主要是看过极客时间“左耳朵耗子”《左耳听风》课程的一篇总结,由于这个课程涵盖的知识面积非常广,所以没有像原课程名字那样富有诗意,姑且这篇总结就叫做全栈开发吧。我这里会将原文内容提炼,有些精华领悟了就没有在这里码字,喜欢的话大家可以去购买课程。</p>
<h1 id="管理"><a href="#管理" class="headerlink" title="管理"></a>管理</h1><h3 id="技术领导力"><a href="#技术领导力" class="headerlink" title="技术领导力"></a>技术领导力</h3><p>具有技术领导力的工程师所具有的特质:<strong>能够发现并简单优雅地解决问题</strong>,<strong>了解不同方案的优缺点</strong>,<strong>代码高性能、可复用、可扩展、易维护</strong>,<strong>能够用正确方式管理团队</strong>,<strong>发挥每个人潜力以及提高团队效能</strong>,并具有<strong>创新能力</strong>。</p>
<p>为了具备以上特质需要有<strong>扎实的基础技术</strong>,<strong>非同一般的学习能力</strong>,<strong>坚持做正确的事</strong>,<strong>不断提高对自己的要求标准</strong>。以上几点中,要做到做正确的事可以包括:<strong>提高效率</strong>,<strong>自动化</strong>,<strong>掌握前沿技术</strong>,<strong>知识密集型</strong>,<strong>技术驱动</strong>。同时,我认为坚持做正确的事也是最难的,它受到太多外在因素的影响。</p>
<p>对于一个普通的开发人员来说,写代码的过程中,你明明发现有个地方需要重构优化,但是你做了得不到任何利益,不做的话也没有人说你,你愿意花自己的时间加班做这个工作么,我想几十个人里才能挑出一个人愿意这样做的,受益的看起来是公司,其实是你自己。</p>
<p>对于一个管理者,谁都知道代码审核作用很大,但是有几个公司能做到真正的代码审核,不忙的时候什么都可以做,只要一忙起来神马都是浮云,然后进入恶性循环。</p>
<h3 id="领导"><a href="#领导" class="headerlink" title="领导"></a>领导</h3><p>让大家追随 Leader 的素质包括:<strong>赢得他人的信任</strong>,<strong>开放的心态</strong>,<strong>以身示范</strong>,<strong>保持热情和冲动</strong>,<strong>抓住事物本质</strong>,<strong>描绘令人向往的方向</strong>,<strong>为他人创造机会</strong>。</p>
<h1 id="分布式技术"><a href="#分布式技术" class="headerlink" title="分布式技术"></a>分布式技术</h1><p>高性能:缓存、负载均衡、异步调用(消息队列)、数据镜像(读写分离)、数据分区</p>
<p>高可用:拆分、冗余、限流降级、多活、监控及 DevOps</p>
<h3 id="高可用"><a href="#高可用" class="headerlink" title="高可用"></a>高可用</h3><p>可用性 = 平均故障前时间/(平均故障前时间 + 平均修复时间)</p>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2020/04/06/Full-Stack-Development/#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/2019/12/30/2019-book-list/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alicia">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Alicia's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/12/30/2019-book-list/" itemprop="url">2019 book list</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="Post created" itemprop="dateCreated datePublished" datetime="2019-12-30T20:59:03+08:00">
2019-12-30
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="今年看过的工作类图书"><a href="#今年看过的工作类图书" class="headerlink" title="今年看过的工作类图书"></a>今年看过的工作类图书</h1><p>过去的一年工作重心不再偏向 iOS,所以也没有看任何跟 iOS 相关的书籍,走过程序员退休的年龄,之后会考虑向大前端(iOS & Android & Web)方向发展,同时兼顾 Java 后台路线,接受新的技术挑战。</p>
<p>《从零开始学架构》</p>
<p>介绍 Java 后台架构的一本书籍,真的能做到零基础也能对后台架构有一个较全面的认识。</p>
<p>前段时间做 Android 的朋友年底工作述职,被其他部门老大问到对后台技术高并发如何处理,我相信看过这本书的话,他也就不会抱怨为什么问移动客户端工程师后台的技术问题了,机会总是给有准备的人,你总是对现状不满,不知道如何努力就不努力,状态停滞不前又能怪谁没给你机会呢?看看不相关的技术也许对眼前的工作没有什么帮助,但是它能开阔视野和思路,今后工作中跟其他人沟通也不至于鸡同鸭讲。</p>
<p>《区块链——通往资产数字化之路》</p>
<p>这本书英文名字 Master Bitcoin 缩写 MB,MB 对于很多了解区块链的人来说不会陌生,豆瓣评分 9.0 。不管是从技术角度的剖析还是应用角度的讲解都非常全面到位,相对于《区块链革命》这本讲区块链会给人们生活带来什么改变的介绍书籍,通过 MB 你能够对区块链有一个比较具象的认识,而且书中介绍了加密算法、椭圆曲线加密算法、默克尔树等等对密码学的介绍也相当有趣。</p>
<p>《智能时代》</p>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2019/12/30/2019-book-list/#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/2019/07/24/Architecture/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alicia">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Alicia's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/07/24/Architecture/" itemprop="url">Architecture</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="Post created" itemprop="dateCreated datePublished" datetime="2019-07-24T13:04:34+08:00">
2019-07-24
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>最近在看后台相关的技术书籍,总结一下架构相关的知识。</p>
<h2 id="复杂度"><a href="#复杂度" class="headerlink" title="复杂度"></a>复杂度</h2><p>软件架构:一些列相关的抽象模式,用于指导大型软件系统各个方面的设计。</p>
<p>架构设计的目的:解决软件系统复杂度带来的问题</p>
<h3 id="高性能"><a href="#高性能" class="headerlink" title="高性能"></a>高性能</h3><p>高性能带来的复杂度主要体现在:单机计算机内内部为了高性能带来的复杂度;多台计算机集群为了高性能带来的复杂度</p>
<h4 id="单机复杂度"><a href="#单机复杂度" class="headerlink" title="单机复杂度"></a>单机复杂度</h4><p>最关键的地方就是操作系统,操作系统和性能相关的就是进程和线程。</p>
<p>要考虑高性能的软件系统,需要考虑如多进程、多线程、进程间通信、多线程并发等技术点</p>
<p>扫盲一下几种常见的服务器</p>
<p>Apache<br>Apache HTTP Server(简称 Apache)是 Apache 软件基金会的一款开放源码的 WEB 服务器软件</p>
<p>优点:稳定、开源、跨平台,适合处理动态请求<br>缺点:不支持高并发</p>
<p>发展时期很长,它兴起的年代,互联网产业远远比不上现在。所以它被设计为一个重量级的。在 Apache 上运行数以万计的并发访问,会导致服务器消耗大量内存。操作系统对其进行进程或线程间的切换也消耗了大量的 CPU 资源,导致 HTTP 请求的平均响应速度降低。</p>
<p>Nginx<br>同 Apache 一样都是一种 WEB 服务器,是轻量级高并发 HTTP 服务器和反向代理服务器。<br>优点:轻量级、高并发、处理静态文件好消耗内存少,提供负载均衡<br>缺点:需要配合其他后端使用,没有 Apache 稳定</p>
<p>正向代理最大的特点是客户端非常明确要访问的服务器地址<br>反向代理,”它代理的是服务端,代服务端接收请求”,主要用于服务器集群分布式部署的情况下,反向代理隐藏了服务器的信息</p>
<p>常见的网站架构有:Nginx + php、Nginx + tomcat、Nginx + apache + php 等</p>
<table>
<thead>
<tr>
<th>名称</th>
<th style="text-align:right">是否支持多进程</th>
<th style="text-align:center">是否支持多线程</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nginx</td>
<td style="text-align:right">是</td>
<td style="text-align:center">是</td>
</tr>
<tr>
<td>JBoss</td>
<td style="text-align:right">否</td>
<td style="text-align:center">是</td>
</tr>
<tr>
<td>Redis</td>
<td style="text-align:right">否</td>
<td style="text-align:center">否</td>
</tr>
<tr>
<td>Memcache</td>
<td style="text-align:right">否</td>
<td style="text-align:center">是</td>
</tr>
</tbody>
</table>
<p>以上 Redis 是单进程单线程的,但是它的效率不比单进程多线程的同样基于内存的 KV 数据库 Memchache 差,官方提供的数据是可以达到 10万+ 的 QPS(每秒查询次数)。原因是它是基于内存存储,数据查找类似于 HashMap 时间复杂度是 O(1);数据结构简单;单线程模式不用上下文切换和竞争条件;使用多路 I/O 复用模型,非阻塞 IO。“多路”指多个网络连接,“复用”指复用同一个线程。多路 I/O 复用技术可以让单个线程高效的处理多个连接请求。</p>
<h4 id="集群的复杂度"><a href="#集群的复杂度" class="headerlink" title="集群的复杂度"></a>集群的复杂度</h4><ul>
<li>任务分配:每台机器都可以处理完整的业务任务</li>
</ul>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2019/07/24/Architecture/#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/2019/01/05/Technical-Management/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alicia">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Alicia's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/01/05/Technical-Management/" itemprop="url">Technical Management</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="Post created" itemprop="dateCreated datePublished" datetime="2019-01-05T19:58:45+08:00">
2019-01-05
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>过去的一年急于知识的输入却忽略了输出,导致很多东西看过就忘了或者没有深刻理解。最近看书的时候总把书中的标题看作问题,然后自己思考再将自己的想法和书中观点进行对比加深理解,所以用这个方式对技术管理类问题做个整理。</p>
<blockquote>
<p>《跃迁 从技术到管理的硅谷路径》<br>这里列出的书名,是指从本书中找到的问题,下面的详情结合了作者观点,并加入了一些自己的见解和补充。</p>
</blockquote>
<ul>
<li>如何帮助团队成员成长</li>
</ul>
<p>不要陷入静态思维。<br>不要用固定的眼光看待下属,不要因为下属曾经的能力在某一个级别上,就在很长时间内都觉得他没有成长;不要关注下属的错误,而是主动帮助他从错误中成长;不要为了团队目标而忽略下属的个人目标;给下属的反馈或者评价应该是帮助他提升的,而不是模棱两可的说你不够努力,你没有进步;要给下属分配稍有挑战性的任务,而不是为了保证项目进度将任务一直分配给你觉得值得信任的人。</p>
<p>让组员经常做一些总结,研究原理或者深入一些的知识;推荐图书让大家阅读;并进行知识分享;同时鼓励组员对工具类代码进行开源。</p>
<ul>
<li>项目延期了怎么办</li>
</ul>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2019/01/05/Technical-Management/#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/12/30/2018-book-list/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alicia">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Alicia's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/12/30/2018-book-list/" itemprop="url">2018 book list</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="Post created" itemprop="dateCreated datePublished" datetime="2018-12-30T18:02:15+08:00">
2018-12-30
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="今年看过的工作类图书"><a href="#今年看过的工作类图书" class="headerlink" title="今年看过的工作类图书"></a>今年看过的工作类图书</h3><p>记得去年在博客里写过要今年要多看些技术书籍,结果好像技术类书籍阅读的数量并没有增多,主要是目标转变导致的吧,所以不打算给明年下明确的读书目标,能阅读引发思考的书籍就好。</p>
<blockquote>
<p>《深入理解计算机系统》 </p>
</blockquote>
<p>看完 CSAPP 这本书突然觉得大学学过的什么《操作系统》那本书简直烂得不行了,大学的时候完全不知道学的这些玩意儿对实际应用有什么指导。只恨自己上学不努力,不说当时能不能学会这些深奥的东西,眼界至少都被局限了。看这书的时候查了下卡内基梅隆大学,这个学校据说什么专业的人都会编程,如果每天不学习到凌晨三四点都无法跟上节奏。哎…</p>
<blockquote>
<p>《程序员的自我修养 —— 链接、加载和库》</p>
</blockquote>
<p>主标题应该是出版社起的吧,真的不是很喜欢这种俗气的名字。这本书在七八年前大致翻阅过,对它基本上没有什么印象,当时对知识的积累不够,看不太下去。这次看就觉得轻松了很多。书这种东西就是这样,你想要通过看一本经典的了解所有知识,但是看完经典的书又觉得没看一样,因为好些内容无法理解,所以不要奢求看了一本书就什么都学会。</p>
<blockquote>
<p>《Thinking in UML - 大象》</p>
</blockquote>
<p>UML 从没有好好学过,看了两篇帖子就以为自己会用了,殊不知比细节的话简直弱爆了,所以特意买了书了解一些细节,例如组合和聚合的差异等。</p>
<blockquote>
<p> 《TCP/IP 详情 卷一》</p>
</blockquote>
<p>这本书也是八年前就买的,当时是准备面试同事推荐看的书,也是曾经不知所云,现在基本上能看进去,但是也不完全都能理解。能看得进去,是因为工作中遇到一些弱网优化等问题引发,还有在看这本书之前看了下面这本《图解 TCP/IP》。</p>
<blockquote>
<p>《图解 TCP/IP》</p>
</blockquote>
<p>这本书算是比较浅出,如果看上面那本书觉得有些吃力,建议先看看这本。如果觉得做 iOS 对理解网络的知识没有什么意义,建议去找找移动端网络优化相关的文章看看。</p>
<blockquote>
<p>《*OS Interals: Volume one》</p>
</blockquote>
<!--noindex-->
<div class="post-button text-center">
<a class="btn" href="/2018/12/30/2018-book-list/#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/09/01/Source-Code-Learning-BeeHive/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alicia">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Alicia's Blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/09/01/Source-Code-Learning-BeeHive/" itemprop="url">Source Code Learning - BeeHive</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="Post created" itemprop="dateCreated datePublished" datetime="2018-09-01T16:44:38+08:00">