-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1556 lines (1503 loc) · 52.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 lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" />
<title>All Talks - 夜航星</title><meta name="Description" content="个人博客"><meta property="og:title" content="Talks" />
<meta property="og:description" content="个人博客" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://austinxt.github.io/talks/" /><meta property="og:image" content="https://austinxt.github.io/images/avatar.png"/><meta property="og:site_name" content="夜航星" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://austinxt.github.io/images/avatar.png"/>
<meta name="twitter:title" content="Talks"/>
<meta name="twitter:description" content="个人博客"/>
<meta name="application-name" content="夜航星">
<meta name="apple-mobile-web-app-title" content="夜航星"><meta name="theme-color" content="#ffffff"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"><link rel="manifest" href="/site.webmanifest"><link rel="canonical" href="https://austinxt.github.io/talks/" /><link rel="alternate" href="/talks/index.xml" type="application/rss+xml" title="夜航星">
<link rel="feed" href="/talks/index.xml" type="application/rss+xml" title="夜航星"><link rel="stylesheet" href="/css/style.min.87bf1911dd101ec4f361dc638848b84bc1cdf6bfede2bce9f7291cbf99fdcc4d.css" integrity="sha256-h78ZEd0QHsTzYdxjiEi4S8HN9r/t4rzp9ykcv5n9zE0="><link rel="preload" href="/lib/fontawesome-free/all.min.0df5a33710e433de1f5415b1d47e4130ca7466aee5b81955f1045c4844bbb3ed.css" integrity="sha256-DfWjNxDkM94fVBWx1H5BMMp0Zq7luBlV8QRcSES7s+0=" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="/lib/fontawesome-free/all.min.0df5a33710e433de1f5415b1d47e4130ca7466aee5b81955f1045c4844bbb3ed.css" integrity="sha256-DfWjNxDkM94fVBWx1H5BMMp0Zq7luBlV8QRcSES7s+0="></noscript><link rel="preload" href="/lib/animate/animate.min.5fbaeb9f8e25d7e0143bae61d4b1802c16ce7390b96ceb2d498b0d96ff4c853f.css" integrity="sha256-X7rrn44l1+AUO65h1LGALBbOc5C5bOstSYsNlv9MhT8=" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="/lib/animate/animate.min.5fbaeb9f8e25d7e0143bae61d4b1802c16ce7390b96ceb2d498b0d96ff4c853f.css" integrity="sha256-X7rrn44l1+AUO65h1LGALBbOc5C5bOstSYsNlv9MhT8="></noscript></head>
<body data-header-desktop="fixed" data-header-mobile="auto"><script type="text/javascript">(window.localStorage && localStorage.getItem('theme') ? localStorage.getItem('theme') === 'dark' : ('auto' === 'auto' ? window.matchMedia('(prefers-color-scheme: dark)').matches : 'auto' === 'dark')) && document.body.setAttribute('theme', 'dark');</script>
<div id="mask"></div><div class="wrapper"><header class="desktop" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="夜航星">夜航星</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item active" href="/talks/"> 呓语 </a><a class="menu-item" href="/posts/" title="文章"> 文章 </a><a class="menu-item" href="/tags/"> 标签 </a><a class="menu-item" href="/categories/"> 分类 </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text" placeholder="搜索标题或内容" id="search-input-desktop">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-desktop" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-desktop">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</span><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</header><header class="mobile" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="夜航星">夜航星</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text" placeholder="搜索标题或内容" id="search-input-mobile">
<a href="javascript:void(0);" class="search-button search-toggle" id="search-toggle-mobile" title="Search">
<i class="fas fa-search fa-fw" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="search-button search-clear" id="search-clear-mobile" title="Clear">
<i class="fas fa-times-circle fa-fw" aria-hidden="true"></i>
</a>
<span class="search-button search-loading" id="search-loading-mobile">
<i class="fas fa-spinner fa-fw fa-spin" aria-hidden="true"></i>
</span>
</div>
<a href="javascript:void(0);" class="search-cancel" id="search-cancel-mobile">
Cancel
</a>
</div><a class="menu-item" href="/talks/" title="">呓语</a><a class="menu-item" href="/posts/" title="文章">文章</a><a class="menu-item" href="/tags/" title="">标签</a><a class="menu-item" href="/categories/" title="">分类</a><a href="javascript:void(0);" class="menu-item theme-switch" title="Switch Theme">
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
</a></div>
</div>
</header><div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="main">
<div class="container"><div class="page home" data-home="talks"><h1 class="group-title">2024</h1><article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-08-24-rag/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>rag 流程和优化点</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">08-24</span>
</div><div>
<a href="/talks/2024-08-24-rag/">http://arxiv.org/abs/2312.10997</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-08-01-%E4%B8%BA%E4%BB%80%E4%B9%88%E8%A6%81%E6%97%B6%E4%B8%8D%E6%97%B6%E8%AE%A4%E8%AF%86%E4%BA%9B%E6%96%B0%E6%9C%8B%E5%8F%8B/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>为什么要时不时认识些新朋友?</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">08-01</span>
</div><div>
<a href="/talks/2024-08-01-%E4%B8%BA%E4%BB%80%E4%B9%88%E8%A6%81%E6%97%B6%E4%B8%8D%E6%97%B6%E8%AE%A4%E8%AF%86%E4%BA%9B%E6%96%B0%E6%9C%8B%E5%8F%8B/">原来的生活圈待久了,大家很容易达成很多共识,习惯彼此的行为。而新朋友比较容易看见双方的差异,反思自己的状态。 下面是最近认识的三位朋友和收获:</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-07-30-%E7%A7%80%E5%87%BA%E4%BD%A0%E7%9A%84%E5%B7%A5%E4%BD%9C%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>《秀出你的工作》读书笔记</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">07-30</span>
</div><div>
<a href="/talks/2024-07-30-%E7%A7%80%E5%87%BA%E4%BD%A0%E7%9A%84%E5%B7%A5%E4%BD%9C%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/">你不必是天才 过程比结果更重要 每天分享一点点 打开你的百宝箱 第一点讲的是,把你正在学习、热爱、想法,及时分享出来,及时跟别人碰撞思想💥。不用等到</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-04-18-%E8%AF%89%E8%AE%BC%E8%BF%87%E7%A8%8B%E5%88%B0%E5%BA%95%E9%81%B5%E5%BE%AA%E4%BB%80%E4%B9%88%E9%80%BB%E8%BE%91/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>诉讼过程到底遵循什么逻辑</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">04-18</span>
</div><div>
<a href="/talks/2024-04-18-%E8%AF%89%E8%AE%BC%E8%BF%87%E7%A8%8B%E5%88%B0%E5%BA%95%E9%81%B5%E5%BE%AA%E4%BB%80%E4%B9%88%E9%80%BB%E8%BE%91/">最近密集跟踪了一位优秀诉讼律师的办案过程,发现诉讼过程中似乎可以归于三件事情,构建证据树、调查取证、寻找法律依据。 证据树,它以客观事实和法律</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-04-01-openai-args/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>Open AI Args</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">04-01</span>
</div><div>
<a href="/talks/2024-04-01-openai-args/">max_tokens: 最大输出标记数 temperature: 输出随机性 frequency_penalty: 频率惩罚,[-2, 2],奖励或者惩罚训练集中出现频率高的 token,负数表示模型倾向出现频率较高的词。 presence_penalty: 存在惩</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-03-16-%E7%8B%AC%E7%AB%8B%E5%BC%80%E5%8F%91%E8%80%85%E5%92%8C%E4%B8%93%E4%B8%9A%E5%8E%82%E5%95%86%E6%9C%89%E4%BB%80%E4%B9%88%E5%8C%BA%E5%88%AB/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>独立开发者和专业厂商有什么区别?</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">03-16</span>
</div><div>
<a href="/talks/2024-03-16-%E7%8B%AC%E7%AB%8B%E5%BC%80%E5%8F%91%E8%80%85%E5%92%8C%E4%B8%93%E4%B8%9A%E5%8E%82%E5%95%86%E6%9C%89%E4%BB%80%E4%B9%88%E5%8C%BA%E5%88%AB/">两者在费用上差不多,差别是专业厂商的产品是经过验证的,用起来比较稳定,对需求也比较了解。 缺点是来服务的人只是公司员工,服务会差一些;如果涉及</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-03-16-crm%E8%BD%AF%E4%BB%B6%E5%90%84%E4%B8%AA%E4%BB%B7%E6%A0%BC%E6%AE%B5%E7%9A%84%E4%BA%A7%E5%93%81%E9%83%BD%E6%9C%89%E5%93%AA%E4%BA%9B/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>CRM软件各个价格段的产品都有哪些?</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">03-16</span>
</div><div>
<a href="/talks/2024-03-16-crm%E8%BD%AF%E4%BB%B6%E5%90%84%E4%B8%AA%E4%BB%B7%E6%A0%BC%E6%AE%B5%E7%9A%84%E4%BA%A7%E5%93%81%E9%83%BD%E6%9C%89%E5%93%AA%E4%BA%9B/">采购市面上开箱即用的产品,这种情况只需要付一个咨询费【千把来块】,然后按月支付给软件厂商几百到一千多的月租费用;之前有一个客户,是做心理咨询</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-02-20-%E8%B0%88%E5%88%A4%E5%B0%8F%E6%8A%80%E5%B7%A7/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>谈判小技巧</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">02-20</span>
</div><div>
<a href="/talks/2024-02-20-%E8%B0%88%E5%88%A4%E5%B0%8F%E6%8A%80%E5%B7%A7/">认清谈判中的让步 不要轻易亮底牌,让步要选择好时机和方法。如何把握时机?让步前要问自己两个问题,这个阶段适合让步吗?自己对对方有价值吗?如果对</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-02-29-mao/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>毛真是一个战略大家</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">02-19</span>
</div><div>
<a href="/talks/2024-02-29-mao/">《毛泽东传》读书笔记。 身在农村长在农村,让他对农村有了切身理解,中国革命的主力军应该是农民。 在带着起义军上井冈山之前,毛主要扮演了共产党员和</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-01-23/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
></a
>
<span style="font-size: 0.875rem; color: #a9a9b3">01-23</span>
</div><div>
<a href="/talks/2024-01-23/">《卓有成效的管理者》这本书已经摆放在书架上很久了。今天,终于开始阅读它。 先翻开目录部分,第一个推荐序是海尔的创始人张瑞敏所写。他在海尔创立初</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2024-01-21-%E8%AF%97%E4%BA%BA%E4%B8%8E%E7%B2%BE%E7%A5%9E%E7%97%85%E6%82%A3%E8%80%85/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>诗人与精神病患者</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">01-21</span>
</div><div>
<a href="/talks/2024-01-21-%E8%AF%97%E4%BA%BA%E4%B8%8E%E7%B2%BE%E7%A5%9E%E7%97%85%E6%82%A3%E8%80%85/">“诗人在某种意义上与精神病患者类似,大脑中会同时浮现无数个意向,但是诗人与精神病患者的区别在于,诗人将纷杂的意象约束在同一套时空系统中。” 读</a>
</div>
</article>
<h1 class="group-title">2023</h1><article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2023-11-30-%E5%AE%A2%E6%88%B7%E7%B2%98%E5%BA%A6%E6%80%9D%E8%80%83/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>客户粘度思考</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">11-30</span>
</div><div>
<a href="/talks/2023-11-30-%E5%AE%A2%E6%88%B7%E7%B2%98%E5%BA%A6%E6%80%9D%E8%80%83/">通常卖给客户的东西可以分为产品和服务,产品通常跟设备、物品等商品挂钩,服务跟人绑定。客户跟人更多的是建立信任的链路,客户信赖这个人,所以找这</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2023-11-02-%E7%8B%AC%E7%AB%8B%E5%BC%80%E5%8F%91%E8%80%85%E6%9C%80%E7%AE%80%E6%B4%81%E7%9A%84%E8%B5%9A%E9%92%B1%E8%B7%AF%E5%BE%84%E6%98%AF%E4%BB%80%E4%B9%88/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>独立开发者最简洁的赚钱路径是什么?</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">11-02</span>
</div><div>
<a href="/talks/2023-11-02-%E7%8B%AC%E7%AB%8B%E5%BC%80%E5%8F%91%E8%80%85%E6%9C%80%E7%AE%80%E6%B4%81%E7%9A%84%E8%B5%9A%E9%92%B1%E8%B7%AF%E5%BE%84%E6%98%AF%E4%BB%80%E4%B9%88/">从身边的朋友出发,看看大家都有什么需求 在这些需求中,针对 3-10 个需求,埋头苦干,马上做出一版 从 3-10 个需求测试出其中相对广泛一点相对没那么激烈的需求</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2023-02-08/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>红顶商人胡雪岩的交际之道</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">02-08</span>
</div><div>
<a href="/talks/2023-02-08/">利己可以,损人不行。 跟人谈事情之前,需要想清楚自己的决心。 有了钱和底气,念头才会更加通达,手脚展开。 不想和人打交道的时候,也不能敷衍,也要集</a>
</div>
</article>
<h1 class="group-title">2022</h1><article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2022-07-05-%E5%95%86%E4%B8%9A%E6%A8%A1%E5%BC%8F%E7%94%BB%E5%B8%83/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>商业模式画布</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">07-05</span>
</div><div>
<a href="/talks/2022-07-05-%E5%95%86%E4%B8%9A%E6%A8%A1%E5%BC%8F%E7%94%BB%E5%B8%83/">Ref Strategyzer | Corporate Innovation Strategy, Tools & Training Business Model Canvas - Wikipedia</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2022-06-13-rpa/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>RPA 机器人流程自动化</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">06-13</span>
</div><div>
<a href="/talks/2022-06-13-rpa/">RPA 解决的问题是,企业已有软件可能没有数据接口、应用接口来跟其他系统集成,重新开发接口又任务量太大,RPA 能够以低成本的方式做到自动化跨系统沟</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2022-05-16/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
></a
>
<span style="font-size: 0.875rem; color: #a9a9b3">05-16</span>
</div><div>
<a href="/talks/2022-05-16/">毕业后,总感觉时间过得很快,像似从指缝间流逝。直到遇见你,这一载,仿佛是一生一世。</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2022-05-12-usa-lawyer/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
></a
>
<span style="font-size: 0.875rem; color: #a9a9b3">05-12</span>
</div><div>
<a href="/talks/2022-05-12-usa-lawyer/">美国法律行业有许多潜在客户获得(Lead Generation),例如Attention Required! | Cloudflare。 这类网站主要策略有Q&</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2022-01-01/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>公众号发布流程</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">01-01</span>
</div><div>
<a href="/talks/2022-01-01/"></a>
</div>
</article>
<h1 class="group-title">2021</h1><article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-12-30-design/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
></a
>
<span style="font-size: 0.875rem; color: #a9a9b3">12-30</span>
</div><div>
<a href="/talks/2021-12-30-design/">设计思维能够应对日常很多问题,但是对于全局的、商业的、品牌整体问题,设计思维在体系性、框架性和有效性上会遭遇挑战。 问题的复杂来源于人与人以人</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-11-16-predict/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>预测指标:银行利润/产业利润</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">11-16</span>
</div><div>
<a href="/talks/2021-11-16-predict/">预测一个趋势,找到一个预测指标很重要。 例如,前东方证券银行业首席分析师王剑曾提出的,从银行利润/产业利润变化的角度预测银行股价走向(反向关系</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-11-16-finacial-report/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>银行财报阅读流程</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">11-16</span>
</div><div>
<a href="/talks/2021-11-16-finacial-report/">审计意见 资产负债表,转换成百分比 存款结构和付息率,获取资金能力的情况 净利息差和净利息收益率 分析贷款质量,包括历史同行对比、贷款垫款构成、拨备</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-11-16/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
></a
>
<span style="font-size: 0.875rem; color: #a9a9b3">11-16</span>
</div><div>
<a href="/talks/2021-11-16/">套用冯·奥西茨基的话:一个民族到底要在精神上堕落到何种程度,才能从这些文盲的身上看出一个偶像的模子,看到令人追随的人格魅力。 </a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-09-10-%E6%B5%8B%E9%87%8F%E7%9A%84%E4%BF%A1%E6%95%88%E5%BA%A6/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>测量的信效度</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">09-10</span>
</div><div>
<a href="/talks/2021-09-10-%E6%B5%8B%E9%87%8F%E7%9A%84%E4%BF%A1%E6%95%88%E5%BA%A6/">测验的效度 效度指测验的正确性和有效性,即测验能够测到被测量对象的真实水平的程度。 测验的信度 信度指测验的可靠性和多次测量结果的一致性程度。 Re</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-09-08-fiction/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
></a
>
<span style="font-size: 0.875rem; color: #a9a9b3">09-08</span>
</div><div>
<a href="/talks/2021-09-08-fiction/">《天之下》,一个武侠世界,这种写法还真是经济,跟之前看过的九州志、银河帝国、指环王一样,学习学习!</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-05-19-%E5%AD%A6%E4%B9%A0%E7%9A%84%E5%AE%9E%E7%94%A8%E7%AD%96%E7%95%A5/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>认知心理学中,关于学习的实用策略就只有这几条</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">05-19</span>
</div><div>
<a href="/talks/2021-05-19-%E5%AD%A6%E4%B9%A0%E7%9A%84%E5%AE%9E%E7%94%A8%E7%AD%96%E7%95%A5/">注重提取:测试效应;PQ4R;用自己话表述;写卡片;输出文章 必要难度:时间必要难度(间隔学习);场景必要难度(换地点记笔记、穿插练习、多主题</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-05-09-10%E6%9D%A1%E5%88%9B%E4%B8%9A%E8%80%85%E9%9C%80%E8%A6%81%E9%81%BF%E5%85%8D%E7%9A%84%E6%95%B0%E6%8D%AE%E5%9C%88%E5%A5%97/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>10 条创业者需要避免的数据圈套</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">05-09</span>
</div><div>
<a href="/talks/2021-05-09-10%E6%9D%A1%E5%88%9B%E4%B8%9A%E8%80%85%E9%9C%80%E8%A6%81%E9%81%BF%E5%85%8D%E7%9A%84%E6%95%B0%E6%8D%AE%E5%9C%88%E5%A5%97/">假设数据没有噪声:分析前要检查数据是否有效、实用 忘记归一化:例如要考虑基础概率的影响 排除异常点:需要先讨论 包括异常点:异常点可能不适合用于普</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-04-21-%E7%89%9B%E6%B4%A5%E9%80%9A%E8%AF%86%E8%AF%BB%E6%9C%AC%E7%A4%BE%E4%BC%9A%E5%AD%A6%E7%9A%84%E6%84%8F%E8%AF%86/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>《牛津通识读本:社会学的意识》笔记</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">04-21</span>
</div><div>
<a href="/talks/2021-04-21-%E7%89%9B%E6%B4%A5%E9%80%9A%E8%AF%86%E8%AF%BB%E6%9C%AC%E7%A4%BE%E4%BC%9A%E5%AD%A6%E7%9A%84%E6%84%8F%E8%AF%86/">社会学是研究社会结构与社会制度的一门实证性学科。 第二章:社会结构 社会学的中心线 社会学的中心线由三部分构成,现实是在社会中构建的、我们的行为具</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-04-05-%E7%A4%BE%E4%BC%9A%E8%B5%84%E6%9C%AC%E7%90%86%E8%AE%BA%E6%A8%A1%E5%9E%8B/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>社会资本理论模型</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">04-05</span>
</div><div>
<a href="/talks/2021-04-05-%E7%A4%BE%E4%BC%9A%E8%B5%84%E6%9C%AC%E7%90%86%E8%AE%BA%E6%A8%A1%E5%9E%8B/">反常识 1 常识:之前只是觉得桥很重要,它决定了最大连通图的节点数量。 反常识: 个体越靠近网络中的桥梁,他们在工具性行动中获取的社会资本越好。 书中</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-02-05-subway/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
></a
>
<span style="font-size: 0.875rem; color: #a9a9b3">02-05</span>
</div><div>
<a href="/talks/2021-02-05-subway/">1931 年,亨利•贝克改进了伦敦地铁线路图(图二)。那时,伦敦地铁发达程度已经跟 2021 年深圳(图一)差不多了,太可怕了,跟发达国家的差距太大了。</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-01-28-fat-heat/"
style="
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
"
>如何预防减肥过程中导致的身体损伤?</a
>
<span style="font-size: 0.875rem; color: #a9a9b3">01-28</span>
</div><div>
<a href="/talks/2021-01-28-fat-heat/">避免过度节食,控制在 1200 千卡的热量摄入,营养均衡搭配。 适量运动,单词中高强度有氧运动不超过 2 小时,减肥控制在 1 小时左右,保健控制在 30 分钟。力量</a>
</div>
</article>
<article
class="single summary"
itemscope
itemtype="http://schema.org/Article"
style="margin: 0.67em 0"
><div
style="
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
"
>
<a
href="/talks/2021-01-28-earth-story/"
style="
font-weight: bold;
overflow: hidden;