Skip to main content

罗胖60秒:阅历是个好东西吗?

 

1.昨天我看到一段话,说:“阅历是个好东西。但是阅历如果不能带来对纯真的珍视、对善良的尊重、对艰辛的体谅,那么这种阅历一文不值。

2.这段话特别好。因为我们身边有一个很普遍的倾向,就是把工具本身看成目的。一个人有阅历就是好的?那可不一定。他的阅历完全可能教给他一些非常糟糕的东西。

3.同样道理,很多人还主张孩子要吃苦。其实吃苦本身没价值。如果吃苦不是因为追求一个值得的目标,且吃了苦之后,自己的能力还得到了显著提升,那这种吃苦就一文不值

4.这种把用上某种工具当成解决方案的倾向,在企业里也很普遍。你们公司做新媒体了吗?你们公司搞数字化转型了吗?背后的思维模式都一样。有一次我问一位挺大的组织的管理者,请问你的头号使命是什么?他说,就是防止任何人把手段当成目的

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...