-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1640 lines (770 loc) · 53.3 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 pisces use-motion" lang="zh-Hans">
<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="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.0" />
<meta property="og:type" content="website">
<meta property="og:title" content="jump56">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="jump56">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="jump56">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
sidebar: {"position":"left","display":"post","offset":12,"offset_float":0,"b2t":false,"scrollpercent":false},
fancybox: true,
motion: true,
duoshuo: {
userId: '0',
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> jump56 </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<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">jump56</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>
</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 />
首页
</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 />
归档
</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 />
标签
</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/postgres-backup-and-recover/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Josh">
<meta itemprop="description" content="">
<meta itemprop="image" content="https://avatars2.githubusercontent.com/u/5901894?s=360">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="jump56">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/postgres-backup-and-recover/" itemprop="url">
PostgreSQL 的备份与恢复
</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">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-03-27T17:06:45+08:00">
2018-03-27
</time>
</span>
<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/technique/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
<!--noindex-->
<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="/postgres-backup-and-recover/#comments" itemprop="discussionUrl">
<span class="post-comments-count hc-comment-count" data-xid="postgres-backup-and-recover/" itemprop="commentsCount"></span>
</a>
</span>
<!--/noindex-->
</div>
</header>
<div class="post-body" itemprop="articleBody">
</div>
<div>
</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/in-learning-log/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Josh">
<meta itemprop="description" content="">
<meta itemprop="image" content="https://avatars2.githubusercontent.com/u/5901894?s=360">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="jump56">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/in-learning-log/" itemprop="url">
In-Learning 时间管理(轻松地进步式工作方式)
</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">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2017-12-15T19:10:17+08:00">
2017-12-15
</time>
</span>
<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/startup/" itemprop="url" rel="index">
<span itemprop="name">创业</span>
</a>
</span>
</span>
<!--noindex-->
<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="/in-learning-log/#comments" itemprop="discussionUrl">
<span class="post-comments-count hc-comment-count" data-xid="in-learning-log/" itemprop="commentsCount"></span>
</a>
</span>
<!--/noindex-->
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>一直觉得工作应该是轻松地、有节奏感的。</p>
</blockquote>
<h2 id="引言:关于-GTD"><a href="#引言:关于-GTD" class="headerlink" title="引言:关于 GTD"></a>引言:关于 GTD</h2><p><a href="https://en.wikipedia.org/wiki/Getting_Things_Done" target="_blank" rel="external">GTD</a> 是 Getting Things Done 的首字母缩写。</p>
<p>GTD 可以简单地理解为一种整理思绪的方案。</p>
<blockquote>
<p>准备一个篓(notebook),将你脑子里面想到的任何想要做的事情扔到篓里面。刻意地去练习,会为大脑减负。<br>GTD 认为放在篓里面的事情是 <strong>一定会</strong> 得到处理的,已经在篓里面的事情就不会再占用大脑的精力。</p>
</blockquote>
<p>需要特别说明的是,它简单到让很多人不相信它有用!所以请给 <code>GTD</code> 一点空杯心态。</p>
<h2 id="In-Learning-的粗糙故事"><a href="#In-Learning-的粗糙故事" class="headerlink" title="In-Learning 的粗糙故事"></a>In-Learning 的粗糙故事</h2><p>在 Intel 有过短暂的 3 个月工作经历,那时奔着学 <code>Python</code> 去的,没错,就是那个现在小学生都会的 <code>Python</code>。</p>
<p>新员工是可以领取一个纸质笔记本的,长这样:</p>
<img src="/in-learning-log/paper-notebook.jpg" alt="Intel 办公纸质笔记本" title="Intel 办公纸质笔记本">
<p>拿到手时很郁闷,中间为什么有条竖线!这种笔记本怎么用呢?无意地决定左边写 todo 的事项,右边写学习的笔记。</p>
<p>因为抱着学习的目的来的,所以最后右边写得比左边丰富许多。</p>
<p>todo 的事项是可以与 GTD 理念一致的。</p>
<p>每天这样记录着,最后发现,左边的事项用来做工作的周总结月度总结很有效,对右边的学习笔记的总结可以加深学过的知识。</p>
<p>我们的标题是“进步式”工作方式,而不断地总结是很有效的进步方式。这个笔记本就给了总结以凭据。后面的工作中使用 <a href="https://evernote.com/intl/zh-cn/" target="_blank" rel="external">Evernote</a> 替代了纸质笔记本。</p>
<p>所以 In-Learning 的 In 指 Intel,Learning 指学会东西后的进步。</p>
<h2 id="开始了解-In-Learning"><a href="#开始了解-In-Learning" class="headerlink" title="开始了解 In-Learning"></a>开始了解 In-Learning</h2><p><strong>当我们理解 In-Learning 的时候,我们理解什么?</strong></p>
<p><strong>第一点</strong>,要理解 GTD 的方式给我们带来的大脑减负,达到使用 GTD 工具轻松地处理事情。</p>
<p>比如你周六有 3 件事情要做:</p>
<ol>
<li>买羽绒服</li>
<li>陪朋友办理护照</li>
<li>参加某一学科的考试</li>
</ol>
<p>可是今天才周二哦,那么接下来的周三周四周五,这三件事都会时不时跳到你的脑子中来,而跳出来又有什么用,时机未到,无法执行。</p>
<p>这时借助 GTD 工具,将这 3 件事记录到我们上面提到的<code>笔记本左边</code>。没完还有还有哦,重要来啦,<code>心里暗示</code>。刻意地告诉自己这 3 个事情已经记录到 GTD 工具了,而我是一个遵循 GTD 理念让事情得到有效处理的人,这 3 件事情如果未变异成其他事情,他们就再也不能在我脑海中停留,只要出现,立即清除。</p>
<p>这里可能会有个问题了,为什么事情放到 GTD 工具就会被执行,因为 GTD 要求我们定期整理这个篓。当你吃饱喝足还没犯困的时候,你从篓里面挑出一件事情出来做,一次只允许挑出一件事。完成后,回顾整个篓里面的情况,再挑出下一件。所有的事项都是你主动去观全局决定优先级后,挑出来执行的,而不是他们自己在你脑海跳来跳去,你掌控着。你什么都不用记,你掌控着。</p>
<p><strong>第二点</strong>,善于总结。</p>
<p>我们要进步嘛,就要把学过的东西多多总结。温故知新,加强记忆什么的这些道理太多。</p>
<p><strong>当我们想尝试 In-Learning 的时候,我们是怎么操作的?</strong></p>
<p>首页,我们要<strong>建立 In-Learning 表格</strong></p>
<img src="/in-learning-log/in-learning-form-demo.png" alt="Intel In-Learning 表格示例" title="Intel In-Learning 表格示例">
<p>从示例可以看到,In-Learning 是以周为单位的,这也是从 Intel 学来的工作节奏。</p>
<p>在每周初始,建立这样的表格。将所有在脑子里的本周事项,安排到指定的日期去执行。</p>
<p><code>WW50</code> 表示第 50 周</p>
<p><code>TASK 2017-12-11 [Mon.]</code> 表示 2017-12-11 星期一 的任务</p>
<p>这里与 GTD 是有区别的,因为它只能记录一周,所以并不能完全清空你的大脑事项。所以有时,可以一次建立未来好几周的 In-Learning 表格。</p>
<p>建立 In-Learning 表格之后,就可以<strong>按事项来执行</strong>,执行的过程中,遇到问题,通过搜索求教得到答案后,以标题 + 内容的方式记录在对应日期的右边。</p>
<p>如果今天的事情没有完成,就迁移到下个执行日。标注为 <code>Last task</code></p>
<p>比如示例里面的<code>设计商品详情</code>在周二没有完成,刚迁移到周三的<code>Last task(设计商品详情)</code>(括号为中文标点)</p>
<img src="/in-learning-log/in-learning-form-demo-delay.png" alt="Intel In-Learning 迁移到下个执行日" title="Intel In-Learning 迁移到下个执行日">
<p>最后是<strong>总结</strong>,在每周结束,每两周,月度结束后进行总结,频次自己把控。总结要生成一个总结报表,这个报表没有固定格式。</p>
<p>我要一家公司供职时,一般建立两个笔记本:</p>
<p>比如公司名称为<code>上海笨笨有限责任公司</code>,对应建立<code>笨笨工作日志</code>和<code>笨笨笔记</code>两个笔记本</p>
<p>In-Learning 表格记录在 <code>笨笨工作日志</code>,总结和其他杂项记录在<code>笨笨笔记</code>。</p>
<p>回头望,执行 In-Learning 时间管理的这两年的哪个月哪一天做了什么,学到了什么都很清楚。</p>
<h2 id="In-Learning-示例"><a href="#In-Learning-示例" class="headerlink" title="In-Learning 示例"></a>In-Learning 示例</h2><p>示例人物:徐漫漫</p>
<p><strong>TA的画像</strong><br><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div><div class="line">4</div><div class="line">5</div><div class="line">6</div><div class="line">7</div><div class="line">8</div><div class="line">9</div><div class="line">10</div></pre></td><td class="code"><pre><div class="line">年龄:26</div><div class="line">职业:运营</div><div class="line">交友宣言:(好吧,这条不重要!)</div><div class="line">大学专业:电子商务<本科></div><div class="line">工作城市:深圳</div><div class="line">简单介绍:</div><div class="line">徐漫漫同学已经毕业 4 年,在两家公司做过运营,可是总觉得是个运营菜鸟,</div><div class="line">还没有明确清楚的方案变成运营 basic 级的达人。</div><div class="line">工作日的工作都有运营总监的规划或者指引,完成的也算合格。</div><div class="line">周末多是和好友一起出去玩,深圳也是一个特别适合阳光的年轻人开心玩耍的城市。</div></pre></td></tr></table></figure></p>
<p>我们来分析下(乱猜下):</p>
<blockquote>
<p>电子商务这个专业本身就是一个很坑的专业,学计算机知识就不能开发应用,学商务知识又不足开辟市场。<br>而运营这个岗位也是不好量化、标准多样的。<br>……</p>
</blockquote>
<p>简介里面透出一个痛点:没有明确清楚的方案变成运营 basic 级的达人。也就是想成为一名及格的运营。</p>
<p>In-Learning 时间管理(轻松地进步式工作方式)能不能做什么?<br>我认为是可以的。</p>
<p>能不能将这个目标转化为简单执行?(只记录不思考的效率是很高的呀~)<br>左边日志,<br>右边知识点。</p>
<p>这中间应该缺少一张 map,这个 <u>map</u> 不是指引地理位置的,而是指导思维的图,现在专业的说法好像是<code>思维导图</code>。<br>由于我们说了徐漫漫并不清楚如何才能成为及格运营,这里的导图只是把她知道的运营涉及的点列出来,所以它应该是随着执行、见识而定时更新的。</p>
<p>(再次声明,示例为假设,我并没有任何运营经验,切勿照搬。只是为了讲解 In-Learning 的示例)</p>
<img src="/in-learning-log/demo-mind-map.png" alt="Intel 及格运营的拆分(定时更新)" title="Intel 及格运营的拆分(定时更新)">
<p>接下来就徐漫漫就只要做两件事了:</p>
<ol>
<li>定期更新思维导图</li>
<li>用 In-Learning 时间管理来实现目标</li>
</ol>
<p>目标确定(慢着,目标确定了吗?目标不是还应该有时间节点的吗?传说的 deadline 不能少啊。暂设 deadline 为 2018-12-31。),<br>执行开始,逐个击破。</p>
<p>比如,<code>2018WW01</code>,周日或者周一的时候,In-Learning 表格如下:</p>
<img src="/in-learning-log/in-learning-demo-1.png" alt="Intel 一周开始时" title="Intel 一周开始时">
<p>周五或者周六一周结束的时候,In-Learning 左边和右边都丰富了。</p>
<img src="/in-learning-log/in-learning-demo-2.png" alt="Intel 一周结束时" title="Intel 一周结束时">
<p>徐漫漫抱着自己的目标按 In-Learning 时间管理执行了 3 个月,突然发现 map 已经不用更新,因为他已经和很多线下线上的同行交流过,确定自己已经完成了菜鸟到合格的蜕变。</p>
<p>这里大家不要误以为 In-Learning 时间管理让你学习得更快了,In-Learning 时间管理只是让你的学习更明确了。<br>其实从你人生长河来看,也可以理解成学习更快了,因为如果你的学习是混沌的,那么很多时间的学习是无效的甚至负面的。</p>
<p>故事(示例)到这里,于满欣慰的笑了。</p>
<p>于满是谁,徐漫漫的好朋友吧!</p>
<h2 id="如何验证对你是否有用?"><a href="#如何验证对你是否有用?" class="headerlink" title="如何验证对你是否有用?"></a>如何验证对你是否有用?</h2><p>验证对你是否有用其实很简单,定了目标, In-Learning 时间管理来执行。<br>两三个月后,不管目标是否达成,回顾看下面几个问题的答案是不是 Yes:</p>
<ol>
<li>工作是不是感觉轻松了?</li>
<li>工作是不是有一种节奏感?</li>
<li>日志轨迹是否能在不管目标达成与否的时候都给你某些启发和收获?</li>
</ol>
<p>但是,我重点要说的是<code>浅尝辄止</code>或者<code>无敬畏心</code>地低要求是谈不上验证的。</p>
<p>让工作轻松并不是让你以后都不思考了,是让你从思考工作中解脱出来,思考如何工作。</p>
<p><code>浅尝辄止</code>的思维方式可能只从一个角度来看待 GTD 和 In-Learning 时间管理。看了博文,想了想,GTD 就是一个待办事项,In-Learning 时间管理就是一个待办事项的扩展,也简单。这里没有魔法我就没兴趣了,倘若有魔法就是骗人的了。</p>
<p><code>无敬畏心</code>地低要求,不敬畏就会随意,执行随意了,效果自然也随意了。<br>比如文内提到的括号是中文标点,用英文标点怎么了?体现的内容没有变化,怎么就不能变通?……</p>
<p>一瓶雪碧已经喝完,就写到这里吧……</p>
</div>
<div>
</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/ui-toolkit-workflow/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Josh">
<meta itemprop="description" content="">
<meta itemprop="image" content="https://avatars2.githubusercontent.com/u/5901894?s=360">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="jump56">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/ui-toolkit-workflow/" itemprop="url">
连接UI设计师与前端工程师的框架
</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">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2017-09-27T14:42:55+08:00">
2017-09-27
</time>
</span>
<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/technique/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
<!--noindex-->
<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="/ui-toolkit-workflow/#comments" itemprop="discussionUrl">
<span class="post-comments-count hc-comment-count" data-xid="ui-toolkit-workflow/" itemprop="commentsCount"></span>
</a>
</span>
<!--/noindex-->
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>一般团队里面,UI 会出一个产品的视觉规范。而这个规范里面包括的组件部分,其实是能够与前端工程师有共同语言的。</p>
<p>组件化,这个词在各个职业,各个行业都越来越被提及。连 Motorola 都生产了一部组件化的手机。</p>
<img src="/ui-toolkit-workflow/shoutem-ui-standard.jpeg" alt="连接UI设计师与前端工程师的框架" title="连接UI设计师与前端工程师的框架">
</div>
<div>
</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/e-commerce-journey/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Josh">
<meta itemprop="description" content="">
<meta itemprop="image" content="https://avatars2.githubusercontent.com/u/5901894?s=360">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="jump56">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/e-commerce-journey/" itemprop="url">
我与电子商务的15年
</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">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2017-09-27T14:14:29+08:00">
2017-09-27
</time>
</span>
<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/startup/" itemprop="url" rel="index">
<span itemprop="name">创业</span>
</a>
</span>
</span>
<!--noindex-->
<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="/e-commerce-journey/#comments" itemprop="discussionUrl">
<span class="post-comments-count hc-comment-count" data-xid="e-commerce-journey/" itemprop="commentsCount"></span>
</a>
</span>
<!--/noindex-->
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>03年开始接触当当网,至今近15年了。</p>
<h2 id="高中的烘培鸡时代"><a href="#高中的烘培鸡时代" class="headerlink" title="高中的烘培鸡时代"></a>高中的烘培鸡时代</h2><blockquote>
<p>烘培鸡好吃吗?<br>别问我,我也没有吃过。</p>
</blockquote>
<p>高二那年,国子借给我一本杂志《电脑爱好者》。里面有一篇文章介绍如何搭建一个属于自己的烘培鸡。</p>
<p>烘培鸡是 <code>homepage</code> 的直译,个人主页的意思。</p>
<p>接下来我用了近两周时间,才拥有了一个只有一行文字的个人主页,在那个没有QQ空间、没有博客的年代,我居然没有去炫耀。</p>
<p>我记得,只有晚上能够偷偷去网吧一条街上网。我还在东湖边上的电脑店里面花十多块钱购买了一张软盘,然后这张盘塞进某网吧的某主机后,掉进去了。</p>
<p>我还记得,中午在寝室午休的时候,枕边只有一个口琴和一张手记的搭建个人主页笔记,看着笔记发了近一周的呆才明白 index.html 这个名称不是能随便改的。</p>
<h2 id="个人主页和当当网怎么有联系?"><a href="#个人主页和当当网怎么有联系?" class="headerlink" title="个人主页和当当网怎么有联系?"></a>个人主页和当当网怎么有联系?</h2><p>那时去网吧,除了听看光良和林俊杰的MV就是在软件下载站里面找小巧的可以做网页的软件。</p>
<p>此外,还可以干另外一件事,就是登录邮箱,虽然并没有人会给我写<code>E-mail</code>。</p>
<p><code>30M</code>左右容量的126邮箱有一个广告链接到了当当网的当当联盟,就是这个神奇的点击,开启了我和电子商务的关系。</p>
<p>我第一次知道了电子商务网站还有这种操作。</p>
<p>CPS,当然我还不知道这个概念,但是我已经知道了个人主页的拥有者,可以将当当网的广告条放到自己的主页里面,有人通过链接购买了商品就能够主页拥有者就能拿到佣金。</p>
<p>那时我觉得这好难!那应该是 03年。</p>
<p>后来高考考得特别差,不愿意相信高考重要的我在考试完成之后,第一时间炫耀了我的个人主页,只不过多了几行文字而已。</p>
<h2 id="BSTAR-联盟"><a href="#BSTAR-联盟" class="headerlink" title="BSTAR 联盟"></a>BSTAR 联盟</h2><p>时间:大学</p>
<p>当事人:我和室友</p>
<p>我们一起穿过一个 Z 形的小道,走进邻居大学的大门,向前走 500米左右,右小拐,有一块信息栏。<br>我手里拽着一沓广告单,内容大意为:加入 BStar 联盟,让你拥有个人主页并且月入10元。贴了之后,就立即逃离了。</p>
<p>BSTAR联盟 是个什么东西呢?</p>
<p>当时阿里妈妈刚出来,是对标 Google Adsense 的,竞争的优势就是点击广告的价值为 0.2元/点击。而且没有任何防作弊手段。<br>于是我就注册了一个和讯博客(因为只有这个博客可以挂广告代码),每天给自己点击,一个月提现了近 100元。<br>所以我就天真地以后大家都可以用这个方法,旁边寝室的同学也注册了,也点击了,很OK啊,于是我觉得可以让大家都来。</p>
<p>这就是 BSTAR联盟。</p>
<p>后来参加了一次武汉东湖大酒店举行的阿里妈妈站长大会,看到了很多站长偶像,才发现这行有的是套路,而没有套路的人是低效的。</p>
<h2 id="大二暑假做了位开心的网管"><a href="#大二暑假做了位开心的网管" class="headerlink" title="大二暑假做了位开心的网管"></a>大二暑假做了位开心的网管</h2><p>一群不回家的男生,租了个房间,决心展示自己的生存实力。<br>有一位同学比较厉害:做话务员什么的,每天早出晚归,看着就觉得有成就感,每天打很多电话。<br>剩下的都找不到什么像样的工作,陆续回家了。<br>朋友的朋友介绍我去家网吧做网管,200元一个月,我觉得挺好挺开心的。</p>
<p>租的房间有一台老式电脑,空闲的时候,我就在做一个叫“感悟”的网站。</p>
<p>想法是任何人都可以把自己的几十个字的简短感悟发布出来,听听,多像现在的 twitter 和 微博。<br>可惜那个时候只是刚学会切图,后端代码完全不会,学都学不会的那种,一个 session 我搬着书看来看去想不明白。<br>而且班内没有一个同学有同样的兴趣,也没有人可以交流。</p>
<blockquote>
<p>当自己想做的事情,因为自己能力有限无法实现时,总是会感觉有一点点无奈!</p>
</blockquote>
<p>这个片段的电商呢?</p>
<p>好像记得这个时候有个 yahoo 联盟出来了,和阿里有着很暧昧的关系的平台,在研究这个。</p>
<h2 id="我做了一个京东"><a href="#我做了一个京东" class="headerlink" title="我做了一个京东"></a>我做了一个京东</h2><p>毕业找了 3 个月没有找到工作,朋友介绍到“丫口兔”做网站开发,一个类似于京东的B2C网站。</p>
<p>京东诞生于电脑城,丫口兔也依托于电脑城;<br>京东卖3C,丫口兔也卖3C;<br>那时候还没有京东快递,丫口兔里面我兼职快递;<br>京东商城界面并不好看,丫口兔里面我用 Fireworks 制作了一个广告海报,把美工比下去了。</p>
<p>那时候,旁边做招聘的公司有钱赚,似乎想把我们吃掉。故意请我们所有技术吃饭,不带老板。<br>而我对他说了句很傻的话:如果我有100万我一定投在丫口兔。</p>
<p>丫口兔零零星星的订单,招聘网站的广告位却很好卖。</p>
<h2 id="分销:走了对的路,却发现自己不是对的人"><a href="#分销:走了对的路,却发现自己不是对的人" class="headerlink" title="分销:走了对的路,却发现自己不是对的人"></a>分销:走了对的路,却发现自己不是对的人</h2><p>无聊的时候,在阿里妈妈论坛写一了一个帖子,被在深圳某超市上班的小新看到。<br>他说他看了帖子就知道我是一个善良的人,我不知道什么是善良,但感觉这位比我小一岁的潮汕人思考得比我多很多。</p>
<p>我们一起去义乌借住大学同学峰兄的家里,我带了近3个月工资 8000元,他好像也带了和我差不多的钱。<br>最开始住在同学奶奶家,后来搬到同学小店面里面,最后搬到同学家的车库。</p>
<p>感觉自己和小新比起来,差得很远,IQ不低却不善思考,更不善与人交际,吃苦也不及他。</p>
<p>近一年后回深圳,找了份网站开发的工作,那时候我才知道开始有自信写点程序,但依旧是菜鸟中的菜鸟。一直想写一个好一点的分销系统。</p>
<blockquote>
<p>当自己想做的事情,因为自己能力有限无法实现时,总是会感觉有一点点无奈!</p>
</blockquote>
<h2 id="传销-VS-分销"><a href="#传销-VS-分销" class="headerlink" title="传销 VS 分销"></a>传销 VS 分销</h2><p>来上海是因为通过QQ群找了份工作,滑稽的是面试成功不是因为技术,而是诚实。<br>上海这家公司就是做分销软件的,一个桌面应用。一下子置身于高手之中,只有努力成长。</p>
<p>这个公司的软件销售模式是用户通过销售软件本身赚钱,而不是分销商品。当时我立即想到了传销,在这里工作的很长一段时间我都在想传销和直销的区别。<br>后台我认为如果销售的东西是没有价值的就是传销,后台被很多人否定,原因是有没有价值不好衡量。<br>在一个现实的社会,只要有钱总能给自己一个保护伞。</p>
<p>所以我也不去追究这些概念,也不去追究什么法律,但是我内心是有一个判断的。</p>
<h2 id="有感觉"><a href="#有感觉" class="headerlink" title="有感觉"></a>有感觉</h2><p>对人有感觉是没有道理的,<br>对电子商务有感觉也是很奇怪的,<br>对网站开发有兴趣好像已经很久了,为什么兴趣可以持续这么久。</p>
<blockquote>
<p>世界在进步,社会并没有</p>
</blockquote>
<p>时代在变,概念在变,社会的本质可能难以变,因为人性难变,也没有谁说有必须变。</p>
<p>网站联盟、CPS、点击广告任务、SEO、分销、淘宝数据包、阿里巴巴的山东骗子、长沙的好心健身会所老板、B2B2C、LightInTheBox、速卖通、口袋通、有量……</p>
<p>每个词汇后面都有当下的思考!</p>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>