Skip to main content

为什么励志的书不能读



第一个原因:励志的书,让你关注自己。这个出发点就根本性地错了。

一个人不需要关注自己,他需要关注的是他面对的事物。一个人关注自己,他就沉不下
来了。我相信你们都有过这种经验:当你的注意力集中到做的事情上面时,心态就会出
奇地安定。相反,如果一个人把注意力集中到自己身上,并且不停告诉自己,应该成为
一个什么什么样的人,不客气地说,这个人其实是个浮躁的人。

对,专注力是极其重要的。是把事情做好的决定因素。要有好的专注力,就得“忘我”
。而一本励志的书,则是不停地提醒那个“我”的存在。

第二个原因:励志的书,让你不知不觉迷失自我。

自我是什么?自我就是你可以最大程度契入社会的那个点。这句话什么意思?这句话的
意思是,自我是一个互动的概念,是一个需要寻找的答案。一个人,要不停地试探,不
停地调整,在这个过程中培养自己的眼光和判断力,从而发现社会的“薄弱之处”,然
后用自己的独特之处去弥补这个“空缺”。这就意味着,一切教条都是不靠谱的。励志
的书,都在教你怎么变成一块合格好用的砖。事实是,社会并不是一栋楼房,而是一个
千疮百孔的不规则不稳定的建筑物,一个人要做的是发现那个最适合自己的“孔”。一
个努力把自己变成一块好用的砖的人,会发展为总以为自己不对。其实不是你不对,是
你还没找到那个“孔”。

所以关键是要有实事求是,随机应变的能力

让自己野一点,让孩子野一点。保持饥渴就行了,一切教条都是多余。

第三个原因:励志的书,让你丧失了寻找答案的能力。

励志的书,往往给人一种错觉,好像答案就在那本书里。这是很不好的错觉。

要树立的观念是:跟生活比,跟不断变化的事实比,书永远是过时的智慧。真正的智慧
,只能从你的实践中来。要有个这个自信:我们是创造智慧的主题,而不只是接受智慧
的主题。

孩子有疑问,来问你。你的反应是什么?前方百计以他理解的方式告诉他答案?你错了
。你方便地告诉了他答案,他就不用去寻找去探索了。你最好成为和他一起探险的伙伴
,而不是去做他的老师,哪怕是一个平易近人温和可亲的老师,也不要做。你做了他的
老师,将来他大了,就喜欢做别人的老师。

好为人师是可恶的,正如我现在说话的这副德性。不要把孩子培养成这样。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...