-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path170314-GC4-follow-ur-heart-debuguself.html
1087 lines (917 loc) · 41.3 KB
/
170314-GC4-follow-ur-heart-debuguself.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 xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title> 怂怼录
/ 是也乎( ̄▽ ̄)
/ ZoomQuiet.io </title>
<!-- Using the latest rendering mode for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Open Graph tags -->
<meta property="og:type" content="article"/>
<meta property="og:slug" content="170314-GC4-follow-ur-heart-debuguself"/>
<meta property="og:url" content="https://blog.zoomquiet.io/170314-GC4-follow-ur-heart-debuguself.html"/>
<meta property="og:description" content="怂怼录 怂怼解 和合技 和合技层 和合嗯哼 和合之焉 和合效果 和合协同 好个中文 佩哥哥 世上可有 诗寿 知情咒 知情咒制造 …"/>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://blog.zoomquiet.io/theme/css/bootstrap.min.css" type="text/css"/>
<link href="https://blog.zoomquiet.io/theme/css/font-awesome.min.css" rel="stylesheet">
<link href="https://blog.zoomquiet.io/theme/css/bootstrap-glyphicons.css" rel="stylesheet">
<link href="https://blog.zoomquiet.io/theme/css/pygments/github.css" rel="stylesheet">
<link rel="stylesheet" href="https://blog.zoomquiet.io/theme/css/style.css" type="text/css"/>
<!-- add emojify into Pelican
<link rel="stylesheet" href="https://blog.zoomquiet.io/theme/css/emojify.min.css" type="text/css" />
<script src="https://blog.zoomquiet.io/theme/js/emojify.js"></script>
-->
<!-- JavaScript plugins (requires jQuery) -->
<script src="//code.jquery.com/jquery.min.js"></script>
<link href="https://blog.zoomquiet.io/feeds/all.atom.xml" type="application/atom+xml" rel="alternate"
title=" ATOM Feed"/>
<!-- 240317 init. -->
<meta name="google-adsense-account" content="ca-pub-2551113274411029">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2551113274411029"
crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--
<a href="https://blog.zoomquiet.io" class="navbar-brand"></a>
-->
<a href="https://blog.zoomquiet.io" class="navbar-brand">
<img src="https://blog.zoomquiet.io/theme/logo.png"/>
<span class="violet-site">.io </span>
</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a href="http://zoomquiet.io">大妈</a></li>
<li><a href="https://www.youtube.com/@Chaos42DAMA">油管</a></li>
<li><a href="/pages/friendly-links.html">友链</a></li>
<li><a href="/pages/affiliate.html">好物</a></li>
<li><a href="/pages/zoomquiet.html">关于</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://blog.zoomquiet.io/feeds/all.atom.xml"><i class="icon-rss-sign"></i>rss</a></li>
<li><a href="https://blog.zoomquiet.io/archives.html"><i class="icon-th-list"></i>Archives</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</nav>
<!-- /.navbar -->
<div class="container">
<div class="row">
<div class="col-lg-9">
<section id="content">
<article>
<header class="page-header">
<h1>
<a href="https://blog.zoomquiet.io/170314-GC4-follow-ur-heart-debuguself.html">
怂怼录
</a>
</h1>
</header>
<div class="entry-content">
<div class="panel">
<div class="panel-body">
<footer class="post-info">
<!--
<span class="label label-default">Date</span>
-->
<span class="published">
<i class="icon-calendar"></i>2017-03-14 00:00
</span>
<!--
<span class="label">By</span>
<i class="icon-user"></i>
<a href="https://blog.zoomquiet.io/author/zoomquiet.html">Zoom.Quiet</a>
-->
<span class="label label-default">Category</span>
<a href="https://blog.zoomquiet.io/category/imho.html">IMHO</a>
<span class="label label-default">Tags</span>
<a href="https://blog.zoomquiet.io/tag/imho.html">IMHO</a>
,
<a href="https://blog.zoomquiet.io/tag/write.html">write</a>
</footer><!-- /.post-info --> </div>
</div>
<hr>
<div class="toc">
<ul>
<li><a href="#_1">怂怼录</a><ul>
<li><a href="#_2">怂怼解</a></li>
<li><a href="#_3">和合技</a><ul>
<li><a href="#_4">和合技层</a></li>
<li><a href="#_5">和合嗯哼</a></li>
<li><a href="#_6">和合之焉</a></li>
<li><a href="#_7">和合效果</a></li>
<li><a href="#_8">和合协同</a></li>
</ul>
</li>
<li><a href="#_9">好个中文</a><ul>
<li><a href="#_10">佩哥哥</a></li>
<li><a href="#_11">世上可有</a></li>
<li><a href="#_12">诗寿</a></li>
<li><a href="#_13">知情咒</a></li>
<li><a href="#_14">知情咒制造</a></li>
<li><a href="#opening">opening</a></li>
<li><a href="#_15">新世界</a></li>
<li><a href="#_16">真正的自由</a></li>
<li><a href="#_17">坐而后家</a></li>
<li><a href="#_18">立之以诚</a></li>
<li><a href="#calling">calling</a></li>
<li><a href="#_19">买买买</a></li>
<li><a href="#_20">不得嗯哼</a></li>
<li><a href="#_21">坑道</a></li>
<li><a href="#_22">第一人称</a></li>
</ul>
</li>
<li><a href="#_23">醉点</a><ul>
<li><a href="#_24">嫑点赞</a></li>
<li><a href="#_25">挖坑不埋</a></li>
<li><a href="#_26">放弃</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#316">3:16 之俕</a><ul>
<li><a href="#_27">随随缘缘</a></li>
<li><a href="#_28">忘记...</a></li>
<li><a href="#_29">修行之道</a><ul>
<li><a href="#_30">膜拜</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<h1 id="_1">怂怼录<a class="headerlink" href="#_1" title="Permanent link">¶</a></h1>
<p>~来自 GC4 课程中的互动, 记录各种情景中的私人体会, 具体哪些场景的触发? 您猜~</p>
<h2 id="_2">怂怼解<a class="headerlink" href="#_2" title="Permanent link">¶</a></h2>
<div class="highlight"><pre><span></span><code>从心出发 对心发声
直觉通读 入耳走心
任意不畅 和合点矣
先找怼点 再修其诚
文气图画 如经似诵
字平易读 其义弗微
好中文哉 永存内心
怂怼而出 是也乎哉
</code></pre></div>
<h2 id="_3">和合技<a class="headerlink" href="#_3" title="Permanent link">¶</a></h2>
<div class="highlight"><pre><span></span><code>百年和合好事磨 几经和合定和合
从此和合传天下 也含和合技连脉
</code></pre></div>
<h3 id="_4">和合技层<a class="headerlink" href="#_4" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>合而不同 和而同气
合再进阶 和复顺气
和合嵌套 永无止境
</code></pre></div>
<h3 id="_5">和合嗯哼<a class="headerlink" href="#_5" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>一周不断探和合 七天末绝扣字眼
但使文章雅洁平 中文好样不使空
</code></pre></div>
<h3 id="_6">和合之焉<a class="headerlink" href="#_6" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>大道三千 早融生活
中外一样 入心入脑
唯难提取 须依场景
万般困顿 本心何如
录之念之 和矣合焉
</code></pre></div>
<h3 id="_7">和合效果<a class="headerlink" href="#_7" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>高雅概念去 平易述行藏
效果释嗯哼 中文好模样
</code></pre></div>
<h3 id="_8">和合协同<a class="headerlink" href="#_8" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>此间有真义 规模化魔咒
单打一何则 无量众合哉
</code></pre></div>
<p><img alt="170330e2mgrp" src="http://upload-images.jianshu.io/upload_images/27562-d6fce6d8e1b8c1b8.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<h2 id="_9">好个中文<a class="headerlink" href="#_9" title="Permanent link">¶</a></h2>
<blockquote>
<p>无趣只得是自已 世界从来太精彩
无胆去闯茶米油 唯放心思横竖捺</p>
</blockquote>
<h3 id="_10">佩哥哥<a class="headerlink" href="#_10" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>如丝如缕 无形无相
菩提心树 柢园布施
能得几何 且写且改
是也乎哉 ( ̄▽ ̄)
</code></pre></div>
<p><img alt="wp170330-anti-die-fish" src="http://upload-images.jianshu.io/upload_images/27562-353a35c935c580b2.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><img alt="wp170330-anti-line-book" src="http://upload-images.jianshu.io/upload_images/27562-5aaab78bf124c360.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><img alt="170328-anti-break-grp" src="http://upload-images.jianshu.io/upload_images/27562-da35cbca7bc25855.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><img alt="170330-anti-d" src="http://upload-images.jianshu.io/upload_images/27562-b37302f186737c74.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<div class="highlight"><pre><span></span><code>百无禁忌 千般好
万里无云 星光闪
亿样记忆 水流过
唯有家人 安心过
</code></pre></div>
<h3 id="_11">世上可有<a class="headerlink" href="#_11" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>世上可有任何速度,比买书的更迅捷?
世上可有任何建议,比老师的话语更可信?
世上可有任何箴言,比上帝的话语更慈悲?
世上可有任何嗯哼,比大妈的话更足繁不及道?
世上可有任何课程,比好中文更加不务正业?
世上可有任何... 是也乎,( ̄▽ ̄)
</code></pre></div>
<h3 id="_12">诗寿<a class="headerlink" href="#_12" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>外衍越小 内涵越大
内涵越大 解读越多
解读越多 流传越广
流传越广 使用越多
使用越多 变化越繁
变化越繁 适用越深
适用越深 存在越长
</code></pre></div>
<h3 id="_13">知情咒<a class="headerlink" href="#_13" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>以汝已知 以汝弗知
以己已知 以己弗知
</code></pre></div>
<h3 id="_14">知情咒制造<a class="headerlink" href="#_14" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>和合技 主妇流 知情咒
好中文 佩哥哥 是也乎
</code></pre></div>
<h3 id="opening">opening<a class="headerlink" href="#opening" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>open u mind
try u never try
be happy
to writing
</code></pre></div>
<h3 id="_15">新世界<a class="headerlink" href="#_15" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>无论我们看或是不看
世界总是在哪儿
不增不减
只是
我
是否
真心愿意
去积极探寻那些
永远探寻不尽的世界
</code></pre></div>
<h3 id="_16">真正的自由<a class="headerlink" href="#_16" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>人之初性本惰
动物性为主时
好吃好睡好玩
社会性浓重后
尊重自我实现
囿于社会结构
消费能力为尚
商品渴求无度
即便生产赛高
为了攀比荣耀
必创无谓侈品
破除这个魔咒
并非靠提境界
重定人之意义
现代放弃意义
追求科学力量
上帝必须先殆
科技才能无惧
只从资本指挥
上天入地奔月
更快更多更强
人却没了追求
只余自由买卖
生产资料根源
谁控谁定意义
社会资本主义
都仅求个生存
竭力保持增长
否则一切崩坏
未来共产义义
增长不为消费
发展附带增长
崇创始性劳动
劳动即人意义
可乍个过渡去
导师不知道啊
也没谁敢去试
所以是也乎哉
╮(╯▽╰)╭
</code></pre></div>
<h3 id="_17">坐而后家<a class="headerlink" href="#_17" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>做,而后做梦
读,而后整理
理,而后触感
感,而后发觉
觉,而后得定
定,而后发慧
慧,而后储能
能,而后文涌
</code></pre></div>
<h3 id="_18">立之以诚<a class="headerlink" href="#_18" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>立其诚 无对错
记当下 持续补
皆原创 理解深
字才平 会他人
尽全功 新技got
</code></pre></div>
<h3 id="calling">calling<a class="headerlink" href="#calling" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>神性蕴在所有人 却罕有能唤出时
但遇他她它或祂 立地成佛一刹那
</code></pre></div>
<h3 id="_19">买买买<a class="headerlink" href="#_19" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>千金难买我喜欢 随心随性起用先
待到无法忍受时 再说升级它器物
</code></pre></div>
<h3 id="_20">不得嗯哼<a class="headerlink" href="#_20" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>嗯哼只因辞穷 说到微妙之所
懵然发现没词 难以精确描述
好在大家脑补 只需音节补句
</code></pre></div>
<h3 id="_21">坑道<a class="headerlink" href="#_21" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>文章本天成 妙手偶得之
挖坑不可埋 格调靠坑堆
挖得九十九 神作自此成
</code></pre></div>
<h3 id="_22">第一人称<a class="headerlink" href="#_22" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>我就是那朵白莲花
出污泥而不染
人群中总是最先看到我
躲也不行
怎么办啊
我就是这般美的出尘
为了天地这一抹灵气
我也只能忍受你们的注目
继续我的求学之路…
</code></pre></div>
<blockquote>
<p>~ 芙蓉教主一世
4200天前</p>
</blockquote>
<h2 id="_23">醉点<a class="headerlink" href="#_23" title="Permanent link">¶</a></h2>
<div class="highlight"><pre><span></span><code>视而不见 最最常见
非不明义 自认弗要
何以判决 超纲经验
未先尝试 脑补视之
何以之破 保持傻瓜
是也乎哉 ( ̄▽ ̄)
</code></pre></div>
<blockquote>
<p>请公开讨论,令众受益……눈_눈</p>
</blockquote>
<p><img alt="wp150321-ask-dama" src="http://upload-images.jianshu.io/upload_images/27562-3d7a47fc376f7b3a.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<h3 id="_24">嫑点赞<a class="headerlink" href="#_24" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>点赞一秒钟
放弃思考无
以为且明白
实则忘脑后
好问题或值
视汝愿怼否
</code></pre></div>
<h3 id="_25">挖坑不埋<a class="headerlink" href="#_25" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>挖坑不埋真君子
授人以渔不予鱼
嗟来之食无营养
种子自粪成珍馐
大家同一天空下
我知我感即同你
先尝回答为什么
再来印证是也乎
╮(╯▽╰)╭
</code></pre></div>
<h3 id="_26">放弃<a class="headerlink" href="#_26" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>凡是可以快速放弃的
要么是不重要的问题
要么只是自己不重视
</code></pre></div>
<h1 id="316">3:16 之俕<a class="headerlink" href="#316" title="Permanent link">¶</a></h1>
<div class="highlight"><pre><span></span><code>停之顿之 往未知欲
能之力之 才得尝试
今之现之 终于累也
弱水三千 只取一瓢
今之现之 学会拒绝
做之行之 唯愿我意
</code></pre></div>
<h3 id="_27">随随缘缘<a class="headerlink" href="#_27" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>随心随性 缘来缘去
我述我法 但信或不
无碍吾心 是也乎哉
</code></pre></div>
<h3 id="_28">忘记...<a class="headerlink" href="#_28" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>忘记的就是不重要的
不知道就是不必要的
事实往往不是这样的
( ̄⊥ ̄)
</code></pre></div>
<h2 id="_29">修行之道<a class="headerlink" href="#_29" title="Permanent link">¶</a></h2>
<div class="highlight"><pre><span></span><code>关注大师的言行
跟随大师的举动
和大师一并修行
领会大师的意境
成为真正的大师
look to the master
follow the master
walk with the master
see through the master
become the master
</code></pre></div>
<blockquote>
<p>http://www.catb.org/~esr/faqs/hac</p>
</blockquote>
<h3 id="_30">膜拜<a class="headerlink" href="#_30" title="Permanent link">¶</a></h3>
<div class="highlight"><pre><span></span><code>膜拜向来有门槛
一心向佛无香火
寺门无径后殿入
上帝救赎有票卖
无钱只得下地狱
知行合一为那般
拜前自证已入境
</code></pre></div>
</div>
<!-- /.entry-content -->
<hr />
<section class="comments" id="comments">
<h3>Comments</h3>
<script src="https://utteranc.es/client.js"
repo="ZoomQuiet/ZoomQuiet.io"
issue-term="url"
theme="github-light"
crossorigin="anonymous"
async>
</script>
<hr />
</section>
<h4><a href="https://www.youtube.com/@Chaos42DAMA">大妈的多重宇宙 - <b>YouTube</b></a></h4>
全新自媒体系列...科学幻想,读书,说故事...
<!--
<hr />
<h4>自怼圈/年度番新</h4>
<img alt="DU22.8" src="https://ipic.zoomquiet.top/2022-08-19-220819DU22.8.jpeg!/fw/420" />
<br />
<a href="https://du.101.camp/about/">关于 ~ DebugUself with DAMA ;-)</a>
![](https://ipic.zoomquiet.top/2022-03-31-220331DU6y_zip.jpg)
<h3>蟒营®编程思维提高班 Python版/<b>第14期</b> 正在报名</h3>
<h4>精品小班/ 永久答疑</h4>
<blockquote><p>
<ul>
<li>
开始报名: <b>2020.10.27</b> </li>
<li>
报名截止: <b>2020.11.22</b> </li>
<li>
正式开课: <b>2020.11.29</b> </li>
<li>
课程结束: <b>2021.01.10</b> </li>
<li>
介绍文章:
<ul>
<li>
<a href="https://blog.101.camp/nc/200811-ZoomQuiet-wtf-coding-mind/">蟒营®/ 为什么编程思维不用学就有?</a>
</li>
<li>
<a href="https://blog.101.camp/nc/200816-ZoomQuiet-wtf-online-course/">拙见/ 什么是网课?</a>
</li>
<li>
<a href="https://blog.101.camp/nc/200908-ZoomQuiet-fake-learnning/">蟒营®/ 伪编程学习</a>
</li>
<li>
<a href="https://blog.101.camp/nc/200915-ZoomQuiet-3not-see/">蟒营®/ 视而不见</a>
</li>
<li>
<a href="https://blog.101.camp/nc/200917-ZoomQuiet-3not-ask/">蟒营®/ 惑而不问</a>
</li>
<li>
<a href="https://blog.101.camp/nc/200918-ZoomQuiet-3not-learn/">蟒营®/ 思而不学</a>
</li>
<li>
<a href="https://blog.101.camp/nc/200630-ZoomQuiet-10py-wtf-can-coding/">蟒营®/ 到底如何算"会编程"?</a>
</li>
<li>
<a href="https://blog.101.camp/nc/200703-ZoomQuiet-10py-wtfc-0/">蟒营®/ 到底改变了什么?</a>
</li>
<li>
...<a href="https://blog.101.camp/nc/">NC: 嗯哼蟒营 — 蟒营™ 怂怼录</a>
</li>
</ul>
</li>
</ul>
<b>扫描</b>报名:
<a href="https://jinshuju.net/f/Mv5nGU">
<img alt="101camp14py"
src="http://101.zoomquiet.top/res/14py/%E8%9F%92%E8%90%A5%C2%AE%E7%BC%96%E7%A8%8B%E6%80%9D%E7%BB%B4%E6%8F%90%E9%AB%98%E7%8F%AD_14%E6%9C%9F_%E6%8A%A5%E5%90%8D%E8%A1%A8_256.png"/>
</a>
</p></blockquote>
<h2>蟒营®式 原创课程</h2>
<p>
<img alt="theory101camp_v3"
src="http://ydlj.zoomquiet.top/ipic/2020-10-04-theory101camp_v3.jpg"/>
</p>
<blockquote>
<p>
官网: <b>
<a href="https://py.101.camp/">py.101.camp</a>
</b>
</p>
</blockquote>
<br/>
任何问题可先进入知识星球<b>(免费)</b>咨询:
<br/>
<img alt="FAQ"
src="http://ydlj.zoomquiet.top/ipic/2020-02-28-FAQ101camp-qr.jpeg?imageView2/2/w/360"/>
-->
<!----
<hr />
点击注册~> 获得 <b>100$</b> 体验券:
<a
href="https://www.digitalocean.com/?refcode=e7b7cdc66376&utm_campaign=Referral_Invite&utm_medium=Referral_Program&utm_source=badge"><img
src="https://web-platforms.sfo2.digitaloceanspaces.com/WWW/Badge%202.svg"
alt="DigitalOcean Referral Badge" /></a>
<hr />
<p>订阅 substack 体验古早写作:
<br />
<a href="https://zoomquiet.substack.com/p/pycoder587">Zoom.Quiet’s Chaos42 | Substack</a>
<iframe src="https://zoomquiet.substack.com/embed" width="360"
style="border:1px solid #EEE; background:white;" frameborder="0" scrolling="no"></iframe>
</p>
-->
<!--
<hr />
<p>关注公众号, 持续获得相关各种嗯哼:
<br />
<img alt="zoomquiet"
src="https://ipic.zoomquiet.top/2021-12-27-zoomquiet-%E6%A0%87%E5%87%86%E8%89%B2%E7%89%88580.jpg!/fw/420" />
</p>
![](https://ipic.zoomquiet.top/2022-03-31-2020-10-21-zoomquiet-%E6%A0%87%E5%87%86%E8%89%B2%E7%89%88580.jpg)
<blockquote><p>
<ul>
<li>
<a href="https://mp.weixin.qq.com/s/FqDJWQQcthEuGHAPPEzUKA">
拙见/ 但得呢喃
</a></li>
<li>
<a href="https://mp.weixin.qq.com/s/Hvu22TO1HKK2H8rnbPWcig">
拙见/ 但得呢喃+1
</a></li>
<li>
<a href="https://mp.weixin.qq.com/s/w7m2BwIDsntnLl2vCDuP9g">
拙见/ 但得呢喃+2
</a></li>
<li>
<a href="https://mp.weixin.qq.com/s/HXXfikoYfGV4zqf8-oOlgw">
拙见/ 但得呢喃+3
</a></li>
<li>
<a href="https://mp.weixin.qq.com/s/uFdOHc_u9SqHPKhW9qXz7g">
拙见/ 但得呢喃+4
</a></li>
<li>
<a href="https://mp.weixin.qq.com/s/CZUUmuZ2tDZU0gRAyTHz5w">
拙见/ 如此平庸又如此美好
</a></li>
<li>
<a href="https://mp.weixin.qq.com/s/A-javC9noWxEUeTDaJoWiw">
拙见/ 如何开始弛放?
</a></li>
</ul>
</p></blockquote>
<hr />
<h3>蟒营®编程思维提高班Python版</h3>
**2021.01.11** 因大妈再次创业暂停定期开设, 转换为预约触发:
<ul>
<li>
+ 任何问题, 随时邮件提问可也:
<pre>[email protected]</pre>
</li>
</ul>
-->
<hr />
<h3>任何问题</h3>
随时邮件提问可也:
<pre>[email protected]</pre>
<hr />
<script src="https://liberapay.com/zoomquiet/widgets/button.js"></script>
<noscript><a href="https://liberapay.com/zoomquiet/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></noscript>
<!--
<li>
+ 扫描预约入群, 学员每满 42 人即启动新一期训练营 ;-)
</li>
<li>
<img alt="101camp22.7" src="https://ipic.zoomquiet.top/2022-08-19-220819pre101camp.jpeg!/fw/420" />
</li>
<h4>追问</h4>
<blockquote>
<p>
任何问题, 随时邮件提问可也:
<br />
<i>
</i>
</p>
</blockquote>
-->
</article>
</section>
<hr/>
<sub>
Copyright 2001-2023 by Zoom.Quiet
<br/>
Content licensed under the Creative Commons
<b>attribution-noncommercial-sharealike</b> License.
<br/>
Contact me via
, <code><a href="mailto:[email protected]">mail</a>
</code>
,<code><a href="http://github.com/ZoomQuiet">github</a>
</code>
or
<code><a href="http://gitlab.com/zoomquiet">gitlab</a>
</code>.
Tip me via
<!--
<style>.bmc-button img{width: 35px !important;margin-bottom: 1px !important;box-shadow: none !important;border: none !important;vertical-align: middle !important;}.bmc-button{padding: 7px 10px 7px 10px !important;line-height: 35px !important;height:51px !important;min-width:217px !important;text-decoration: none !important;display:inline-flex !important;color:#ffffff !important;background-color:#FF813F !important;border-radius: 5px !important;border: 1px solid transparent !important;padding: 7px 10px 7px 10px !important;font-size: 28px !important;letter-spacing:0.6px !important;box-shadow: 0px 1px 2px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;margin: 0 auto !important;font-family:'Cookie', cursive !important;-webkit-box-sizing: border-box !important;box-sizing: border-box !important;-o-transition: 0.3s all linear !important;-webkit-transition: 0.3s all linear !important;-moz-transition: 0.3s all linear !important;-ms-transition: 0.3s all linear !important;transition: 0.3s all linear !important;}.bmc-button:hover, .bmc-button:active, .bmc-button:focus {-webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;text-decoration: none !important;box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;opacity: 0.85 !important;color:#ffffff !important;}
</style>
<link href="https://fonts.lug.ustc.edu.cn/css?family=Cookie" rel="stylesheet">
<a class="bmc-button" target="_blank" href="https://www.buymeacoffee.com/zoomquiet"><img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a coffee"><span style="margin-left:15px;font-size:28px !important;">Buy me a coffee</span></a>
<style>.bmc-button img{width: 35px !important;margin-bottom: 1px !important;box-shadow: none !important;border: none !important;vertical-align: middle !important;}.bmc-button{padding: 7px 10px 7px 10px !important;line-height: 35px !important;height:51px !important;min-width:217px !important;text-decoration: none !important;display:inline-flex !important;color:#ffffff !important;background-color:#FF813F !important;border-radius: 5px !important;border: 1px solid transparent !important;padding: 7px 10px 7px 10px !important;font-size: 28px !important;letter-spacing:0.6px !important;box-shadow: 0px 1px 2px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;margin: 0 auto !important;font-family:'Cookie', cursive !important;-webkit-box-sizing: border-box !important;box-sizing: border-box !important;-o-transition: 0.3s all linear !important;-webkit-transition: 0.3s all linear !important;-moz-transition: 0.3s all linear !important;-ms-transition: 0.3s all linear !important;transition: 0.3s all linear !important;}.bmc-button:hover, .bmc-button:active, .bmc-button:focus {-webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;text-decoration: none !important;box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important;opacity: 0.85 !important;color:#ffffff !important;}
</style>
<link href="https://fonts.lug.ustc.edu.cn/css?family=Cookie" rel="stylesheet">
<a class="bmc-button" target="_blank" href="https://www.buymeacoffee.com/zoomquiet"><img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a coffee"><span style="margin-left:15px;font-size:28px !important;">Buy me a coffee</span></a>
-->
<!--
<code><a href="https://www.gittip.com/ZoomQuiet/">gittip</a>
</code>.
-->
||
<a href="http://blog.zoomquiet.io/feeds/all.atom.xml">(ATOM)</a>
</sub>
</div>
<div class="col-lg-3 well well-sm" id="sidebar">
<aside>
<!--
<section>
<ul class="list-group-zip">
<li class="list-group-item">
<h4><i class="icon-asterisk icon-large"></i>Links</h4></li>
<li class="list-group-item-zip">
<a href="https://101.camp/">
蟒营™ 课程框架
</a>
</li>
<li class="list-group-item-zip">
<a href="https://py.101.camp/">
蟒营™Py入门班
</a>
</li>
<li class="list-group-item-zip">
<a href="https://fm.101.camp/">
蟒营™ 电台
</a>
</li>
<li class="list-group-item-zip">
<a href="https://blog.101.camp/">
蟒营™ 怂怼录
</a>
</li>
<li class="list-group-item-zip">
<a href="https://du.101.camp/">
蟒营™ 自怼圈
</a>
</li>
<li class="list-group-item-zip">
<a href="https://www.bmpi.dev/">
构建我的被动收入
</a>
</li>
<li class="list-group-item-zip">
<a href="https://yixuan.li/">
Yixuan · 厨娘界元老
</a>
</li>
<li class="list-group-item-zip">
<a href="http://www.huyuning.com/">
阿宁 inner space
</a>
</li>
</ul>
</section>
-->
<section>
<ul class="list-group list-group-flush">
<li class="list-group-item"><h4>
<i class="icon-th icon-large"></i>Categories</h4></li>
<li class="list-group-item">
<a href="https://blog.zoomquiet.io/category/ann.html">
<i class="icon-folder-open icon-large"></i>ANN
</a>
<a href="https://blog.zoomquiet.io/feeds/ann.atom.xml">
<i class="icon-rss-sign"></i>
</a>
</li>
<li class="list-group-item">
<a href="https://blog.zoomquiet.io/category/imho.html">
<i class="icon-folder-open icon-large"></i>IMHO
</a>
<a href="https://blog.zoomquiet.io/feeds/imho.atom.xml">
<i class="icon-rss-sign"></i>
</a>
</li>
<li class="list-group-item">
<a href="https://blog.zoomquiet.io/category/murmur.html">
<i class="icon-folder-open icon-large"></i>MurMur
</a>
<a href="https://blog.zoomquiet.io/feeds/murmur.atom.xml">
<i class="icon-rss-sign"></i>
</a>
</li>
<li class="list-group-item">
<a href="https://blog.zoomquiet.io/category/oldtouch.html">
<i class="icon-folder-open icon-large"></i>OldTouch
</a>
<a href="https://blog.zoomquiet.io/feeds/oldtouch.atom.xml">
<i class="icon-rss-sign"></i>
</a>
</li>
<li class="list-group-item">
<a href="https://blog.zoomquiet.io/category/pythonic.html">
<i class="icon-folder-open icon-large"></i>Pythonic
</a>
<a href="https://blog.zoomquiet.io/feeds/pythonic.atom.xml">
<i class="icon-rss-sign"></i>
</a>
</li>
<li class="list-group-item">
<a href="https://blog.zoomquiet.io/category/sweekly.html">
<i class="icon-folder-open icon-large"></i>SWEEKLY
</a>
<a href="https://blog.zoomquiet.io/feeds/sweekly.atom.xml">
<i class="icon-rss-sign"></i>
</a>
</li>
<li class="list-group-item"><h4><i class="icon-comment icon-large"></i>Social</h4></li>
<!--
<li class="list-group-item"><a href="https://ZoomQuiet.io">
-->
<li class="list-group-item-zip">
<a href="https://ZoomQuiet.io"><i
class="icon-Root-sign icon-large"></i>Root
</a></li>
<!--
<li class="list-group-item"><a href="https://github.com/ZoomQuiet/ZoomQuiet.io">
-->
<li class="list-group-item-zip">
<a href="https://github.com/ZoomQuiet/ZoomQuiet.io"><i
class="icon-GitHub-sign icon-large"></i>GitHub
</a></li>
<!--
<li class="list-group-item"><a href="https://www.youtube.com/@Chaos42DAMA">
-->
<li class="list-group-item-zip">
<a href="https://www.youtube.com/@Chaos42DAMA"><i
class="icon-大妈的多重宇宙-sign icon-large"></i>大妈的多重宇宙
</a></li>
<!--
<li class="list-group-item"><a href="https://www.douban.com/people/zoomq/">
-->
<li class="list-group-item-zip">
<a href="https://www.douban.com/people/zoomq/"><i
class="icon-豆瓣-sign icon-large"></i>豆瓣
</a></li>
<!--
<li class="list-group-item"><a href="http://weekly.pychina.org/">
-->
<li class="list-group-item-zip">
<a href="http://weekly.pychina.org/"><i
class="icon-蟒周刊-sign icon-large"></i>蟒周刊
</a></li>
<!--
<li class="list-group-item"><a href="https://weekly.rs.101.so/">
-->
<li class="list-group-item-zip">
<a href="https://weekly.rs.101.so/"><i
class="icon-锈周刊-sign icon-large"></i>锈周刊
</a></li>
<!--
<li class="list-group-item"><a href="https://gitlab.com/ZoomQuiet">
-->
<li class="list-group-item-zip">
<a href="https://gitlab.com/ZoomQuiet"><i
class="icon-gitlab-sign icon-large"></i>gitlab
</a></li>
<!--
<li class="list-group-item"><a href="http://wiki.woodpecker.org.cn/moin/ZoomQuiet">
-->
<li class="list-group-item-zip">
<a href="http://wiki.woodpecker.org.cn/moin/ZoomQuiet"><i
class="icon-啄木鸟-sign icon-large"></i>啄木鸟
</a></li>
<!--
<li class="list-group-item"><a href="http://wiki.zoomquiet.io">
-->
<li class="list-group-item-zip">
<a href="http://wiki.zoomquiet.io"><i
class="icon-维基-sign icon-large"></i>维基
</a></li>
<!--
<li class="list-group-item"><a href="https://org.zoomquiet.io/pyblosxom/">
-->
<li class="list-group-item-zip">
<a href="https://org.zoomquiet.io/pyblosxom/"><i
class="icon-旧blog-sign icon-large"></i>旧blog
</a></li>
<!--
<li class="list-group-item"><a href="https://xhh.club/">
-->
<li class="list-group-item-zip">
<a href="https://xhh.club/"><i
class="icon-小红花Club-sign icon-large"></i>小红花Club
</a></li>
</ul>
</section>
<section>
<!-- 230807++XHH.club suport -->
<script type="text/javascript">
// 可修改,摘要将显示在这个选择器选中的元素之上。
var _xhh_selector = ".entry-content";
// 以下部分不要改动
var _xhh_service_url = 'https://xhh.club/summarize-this/';
(function() {
var smmr = document.createElement("script");
smmr.src = "https://xhh.club/static/js/summarize_this.js";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(smmr, s);
})();
</script>
<ul class="list-group-zip">
<li class="list-group-item">
<h4><i class="icon-tint icon-large"></i>Powerded By</h4></li>