-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLife_10.html
700 lines (507 loc) · 19.3 KB
/
Life_10.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Life - West Wong
</title>
<link href="atom.xml" rel="alternate" title="West Wong" type="application/atom+xml">
<link rel="stylesheet" href="asset/css/foundation.min.css" />
<link rel="stylesheet" href="asset/css/docs.css" />
<script src="asset/js/vendor/modernizr.js"></script>
<script src="asset/js/vendor/jquery.js"></script>
<script type="text/javascript">
function before_search(){
var searchVal = 'site: ' + document.getElementById('search_input').value;
document.getElementById('search_q').value = searchVal;
return true;
}
</script>
</head>
<body class="antialiased hide-extras">
<div class="marketing off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<nav class="top-bar docs-bar hide-for-small" data-topbar>
<section class="top-bar-section">
<div class="row">
<div style="position: relative;width:100%;"><div style="position: absolute; width:100%;">
<ul id="main-menu" class="left">
<li id=""><a target="_self" href="index.html">Home</a></li>
<li id=""><a target="_self" href="archives.html">Archives</a></li>
</ul>
<ul class="right" id="search-wrap">
<li>
<form target="_blank" onsubmit="return before_search();" action="https://google.com/search" method="get">
<input type="hidden" id="search_q" name="q" value="" />
<input tabindex="1" type="search" id="search_input" placeholder="Search"/>
</form>
</li>
</ul>
</div></div>
</div>
</section>
</nav>
<nav class="tab-bar show-for-small">
<a href="javascript:void(0)" class="left-off-canvas-toggle menu-icon">
<span> West Wong</span>
</a>
</nav>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li><a target="_self" href="index.html">Home</a></li>
<li><a target="_self" href="archives.html">Archives</a></li>
<li><label>Categories</label></li>
<li><a href="Design.html">Design</a></li>
<li><a href="Life.html">Life</a></li>
<li><a href="Work.html">Work</a></li>
<li><a href="Misc.html">Misc</a></li>
</ul>
</aside>
<a class="exit-off-canvas" href="#"></a>
<section id="main-content" role="main" class="scroll-container">
<script type="text/javascript">
$(function(){
$('#menu_item_index').addClass('is_active');
});
</script>
<div class="row">
<div class="large-8 medium-8 columns">
<div class="markdown-body home-categories">
<div class="article">
<a class="clearlink" href="15252662126996.html">
<h1>你需要一个理由留下来 - 2018</h1>
<div class="a-content">
<div class="a-content-text">
<p>感觉自己手机里应用太多了,会分散注意力,所以想要精简一番。</p>
<p>把留下来的应用备份一下理由。</p>
<h2><a id="%E9%A6%96%E5%B1%8F%E5%B8%B8%E7%94%A8%EF%BC%88%E6%88%96%E5%B8%8C%E6%9C%9B%E5%B8%B8%E7%94%A8%EF%BC%89" class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>首屏常用(或希望常用)</h2>
<ul>
<li>TickTick:<strong>免费</strong>/但够用的 GTD 应用/个人使用(存疑,是否内置的 Reminders 无法满足需求?)</li>
<li>MindNode:收费/<strong>iCloud 同步</strong>/思维导图软件,个人使用</li>
<li>MWeb:收费/<strong>iCloud 同步</strong>/Markdown 多终端软件/个人使用(本文使用的编辑器)</li>
<li>Reeder:收费/支持 Feedly 的 RSS 软件/避免使用今日头条类软件</li>
<li>WeRead:设计较好的读书软件/基本免费读书</li>
<li>Aurora Dictionary:收费/极简的字典应用,查单词很专注</li>
<li>Tide:白噪音软件/每日精美壁纸</li>
</ul>
<h2><a id="%E8%8B%B9%E6%9E%9C%E8%BD%AF%E4%BB%B6%EF%BC%88%E6%88%96%E8%8B%B9%E6%9E%9C%E9%A3%8E%E6%A0%BC%E6%88%96%E9%80%82%E9%85%8Dapple-watch%E7%9A%84%E8%BD%AF%E4%BB%B6%EF%BC%89" class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>苹果软件(或苹果风格或适配 Apple Watch 的软件)</h2>
<ul>
<li>苹果开机预装的软件(部分为基础功能,部分为学习设计风格之用)</li>
<li>iWorks 3 件套(其实没啥用,为了偶尔看此类格式的文档)</li>
<li>Clips:简单拍照</li>
<li>Aurora Recorder:Apple Watch 上录音后传到 iPhone 上</li>
<li>Reminder:提醒事项的代替者,更具苹果风格的非苹果软件</li>
</ul>
<p>以下单独列几个好用的内置 App</p>
<ul>
<li>Wallet:各种卡</li>
<li>Notes:简单</li>
<li>Calendar:简单</li>
</ul>
<h2><a id="%E5%85%B6%E5%AE%83%E7%AC%AC%E4%B8%89%E6%96%B9%E8%BD%AF%E4%BB%B6" class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>其它第三方软件</h2>
<ul>
<li>腾讯手机管家:联系人提醒,骚扰短信拦截,习惯养成,Wi-Fi 连接</li>
<li>Didi:打车呗</li>
<li>ScanScan:简单/OCR</li>
<li>Shadowrocket:看网速的</li>
<li>Price Tag:收藏应用</li>
<li>AppZapp:记录下载过的应用(强迫症)</li>
<li>WolframAlpha:智能搜索引擎</li>
<li>Teambition:偶尔在手机上处理下工作相关的任务</li>
<li>石墨文档:在手机上直接分享文档给同事</li>
<li>Outliner Pro:收费/<strong>iCloud 同步</strong>/大纲软件,个人使用</li>
<li>Workflow:iOS 上的 automator</li>
<li>Slack:不喜欢钉钉</li>
<li>AliPay:钱</li>
<li>招商银行:最好用的银行客户端</li>
<li>淘票票:可以添加票到 Wallet(就这一个)</li>
<li>美团:玩(支付宝内嵌了饿了么)</li>
<li>我的南京:在南京工作,装一个呗</li>
<li>QQ Music:听歌加下载</li>
<li>时光相册:可以分享(关闭自动备份,手动在网页上备份)</li>
<li>Picsew:长图拼接</li>
<li>TIM:协同版 QQ(腾讯文档)</li>
<li>WeChat:还没想好怎们办</li>
<li>Telegram X:纯粹</li>
<li>Medium:看设计相关的文章</li>
<li>Mirror:在手机上看 Sketch 设计稿</li>
<li>Figma Mirror:在手机上看 Figma 设计稿</li>
<li>Bangon:查看 Bandwagon 使用情况</li>
<li>Japanese:查日语单词</li>
<li>Duolinguo:学法语</li>
<li>Minecraft:我的世界啊</li>
<li>Infinite Jets:打飞机</li>
<li>DingTalk:工作呗</li>
</ul>
<p>接下来几个工作相关应用省略</p>
<p>我删了一半的应用!!!</p>
<p>敬请期待下一篇:《以什么理由而删掉你》</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2018/05/03</span>
<span>posted in </span>
<span class="posted-in"><a href='Life.html'>Life</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="15184902047078.html">
<h1>2018 春季书荐</h1>
<div class="a-content">
<div class="a-content-text">
<p>@王瑞青</p>
<p><img src="media/15184902047078/15184902296121.png" alt="" /></p>
<p>如下:</p>
<p><img src="media/15184902047078/15184902640952.png" alt="" /></p>
<p>为何制定了周全的计划并严格执行,却还是发生了进度滞后或预算超支的悲剧?在这个充满不确定性的时代,这种单向的、过度强调规范性的管理方式只会让你止步不前。“Scrum之父”、《敏捷革命》作者杰夫·萨瑟兰博士帮助你停止折腾,事半功倍。他开发了一套简单的系统,让团队持续不断地利用外部反馈信息去协调独立思考的个体,实现团队成员的自我组织和自我优化,采用这种新思维可以将工作效率提高 12 倍。Scrum 的诞生被盛赞为应获“管理学的诺贝尔奖”,已在全球 500 强企业及硅谷新创公司中掀起一场敏捷革命。</p>
<hr />
<p><img src="media/15184902047078/15184904367142.png" alt="" /></p>
<p>《自控力》是斯坦福大学最受欢迎心理学课程。作者麦格尼格尔教授吸收了心理学、神经学和经济学等学科的最新洞见,为斯坦福大学继续教育项目开设了一门叫做“意志力科学”的课程,参与过这门课程的人称其能够“改变一生”。这门课程就是《自控力》一书的基础。</p>
<hr />
<p><img src="media/15184902047078/15184906556893.png" alt="" /></p>
<p>《十日谈》是欧洲文学史上第一部现实主义巨著。它讲述了 10 个青年男女在 1348 年佛罗伦萨瘟疫流行时,避难于别墅里发生的事情。他们在 10 天时间里讲了 100 个故事,故名《十日谈》,所讲故事包罗万象,有历史事件、民间故事也有传说。透过这些故事,作者歌颂了现实生活,赞美爱情,谴责禁欲主义和封建贵族、天主教会的荒淫无耻。整本书散发人性自由之光。意大利评论界把薄伽丘的《十日谈》和但丁的《神曲》相媲美,称之为《人曲》。</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2018/02/13</span>
<span>posted in </span>
<span class="posted-in"><a href='Life.html'>Life</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="row">
<div class="large-6 columns">
<p class="text-left" style="padding-top:25px;">
<a href="Life_9.html">« Prev Page</a>
</p>
</div>
<div class="large-6 columns">
<p class="text-right" style="padding-top:25px;">
</p>
</div>
</div>
</div>
</div><!-- large 8 -->
<div class="large-4 medium-4 columns">
<div class="hide-for-small">
<div id="sidebar" class="sidebar">
<div id="site-info" class="site-info">
<h1>West Wong</h1>
<div class="site-des"></div>
<div class="social">
<a target="_blank" class="rss" href="atom.xml" title="RSS">RSS</a>
</div>
</div>
<div id="site-categories" class="side-item ">
<div class="side-header">
<h2>Categories</h2>
</div>
<div class="side-content">
<p class="cat-list">
<a href="Design.html"><strong>Design</strong></a>
<a href="Life.html"><strong>Life</strong></a>
<a href="Work.html"><strong>Work</strong></a>
<a href="Misc.html"><strong>Misc</strong></a>
</p>
</div>
</div>
<div id="site-categories" class="side-item">
<div class="side-header">
<h2>Recent Posts</h2>
</div>
<div class="side-content">
<ul class="posts-list">
<li class="post">
<a href="17319103266708.html">创业记 202411</a>
</li>
<li class="post">
<a href="17286907061177.html">2024 冬季书荐</a>
</li>
<li class="post">
<a href="17236807479993.html">2024 秋季书荐</a>
</li>
<li class="post">
<a href="17225879177233.html">创业记 202408</a>
</li>
<li class="post">
<a href="17181637581908.html">2024 夏季书荐</a>
</li>
</ul>
</div>
</div>
</div><!-- sidebar -->
</div><!-- hide for small -->
</div><!-- large 4 -->
</div><!-- row -->
<div class="page-bottom clearfix">
<div class="row">
<p class="copyright">Copyright © 2015
Powered by <a target="_blank" href="http://www.mweb.im">MWeb</a>,
Theme used <a target="_blank" href="http://github.com">GitHub CSS</a>.</p>
</div>
</div>
</section>
</div>
</div>
<style>.mweb-charts{background:#fff;}
body{ box-sizing: border-box;
margin: 0 auto;}
@media print{
pre, code, pre code {
overflow: visible !important;
white-space: pre-wrap !important; /* css-3 */
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap !important; /* Opera 4-6 */
white-space: -o-pre-wrap !important; /* Opera 7 */
word-wrap: break-word !important; /* Internet Explorer 5.5+ */
}
html,body{margin:0;padding:4px;}
}
div.code-toolbar {
position: relative;
}
div.code-toolbar > .toolbar {
position: absolute;
z-index: 10;
top: .3em;
right: .2em;
transition: opacity 0.3s ease-in-out;
opacity: 0;
}
div.code-toolbar:hover > .toolbar {
opacity: 1;
}
/* Separate line b/c rules are thrown out if selector is invalid.
IE11 and old Edge versions don't support :focus-within. */
div.code-toolbar:focus-within > .toolbar {
opacity: 1;
}
div.code-toolbar > .toolbar > .toolbar-item {
display: inline-block;
}
div.code-toolbar > .toolbar > .toolbar-item > a {
cursor: pointer;
}
div.code-toolbar > .toolbar > .toolbar-item > button {
background: none;
border: 0;
color: inherit;
font: inherit;
line-height: normal;
overflow: visible;
padding: 0;
-webkit-user-select: none; /* for button */
-moz-user-select: none;
-ms-user-select: none;
}
div.code-toolbar > .toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span {
color: inherit;
font-size: .8em;
padding: 4px .5em;
background: #f5f2f0;
background: rgba(224, 224, 224, 0.4);
box-shadow: 0 2px 0 0 rgba(0,0,0,0.2);
border-radius: .5em;
}
div.code-toolbar > .toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
color: inherit;
text-decoration: none;
}
</style>
<style type="text/css">
figure{margin: 0;padding: 0;}
figcaption{text-align:center;}
/* PrismJS 1.14.0
http://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
text-shadow: none;
background:#b3d4fc;
}
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #F7F7F7;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
pre[class*="language-"].line-numbers {
position: relative;
padding-left: 3.8em;
counter-reset: linenumber;
}
pre[class*="language-"].line-numbers > code {
position: relative;
white-space: inherit;
}
.line-numbers .line-numbers-rows {
position: absolute;
pointer-events: none;
top: 0;
font-size: 100%;
left: -3.8em;
width: 3em; /* works for line-numbers below 1000 lines */
letter-spacing: -1px;
border-right: 1px solid #999;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.line-numbers-rows > span {
pointer-events: none;
display: block;
counter-increment: linenumber;
}
.line-numbers-rows > span:before {
content: counter(linenumber);
color: #999;
display: block;
padding-right: 0.8em;
text-align: right;
}
</style>
<script src="asset/js/foundation.min.js"></script>
<script>
$(document).foundation();
function fixSidebarHeight(){
var w1 = $('.markdown-body').height();
var w2 = $('#sidebar').height();
if (w1 > w2) { $('#sidebar').height(w1); };
}
$(function(){
fixSidebarHeight();
})
$(window).load(function(){
fixSidebarHeight();
});
</script>
</body>
</html>