Skip to main content

决定你的成就的八个因素


最近跟朋友谈起大学同学来,已经毕业十几年了,大学同学们俨然都成了家庭已经工作的
中流砥柱.谈起每个同学取得的成就,试图归纳一些因素,到底什么决定了你能取得的成
就. 也许还有其他因素没有考虑到,不过下面的八个因素是我现在能想到的.

NO.8 背景: 背景是说你有个好爸爸.其实把它放到最后一位,并不是说重要性最低,而是
作为平常人,或者说我的同学当中,实在没有特别突出背景的人.当然,即便是普通的环境
,也是有不同的,不同环境长大的人,会有不同的优势特长.尤其要取得巨大成就的人,背
景也成了个必要条件.

NO.7 配偶: 我愿意把配偶的重要性说的比家庭背景更重要,因为这个人时时刻刻的影响
着你.不过影响有多方面的,一个强大的配偶,可能促进你的成就,但也可能让你成为促进
她进步的因素.

NO.6 聪慧: 虽然一直觉得人跟人是没有太大差别的.但些许的差别还真能造成巨大的成
就差异.事半功倍可能就是说这种人.因为一点点的优势,却可能造成巨大的资源优势.

NO.5努力: 个人努力是我们每天都能做的事情.只是这个可能也是最辛苦的一件事情.这
很重要,但不是更重要.

NO. 4运气:机遇相对于背景,我认为是更常见.对于任何一个人,这个世界都有太多的机
会了.只是可能一次都没把握住.

NO. 3 坚持: 聊起老同学时,我发现,如果为了一个目标坚持10年了的,都或多或少在那
个领域作出了一些成绩.

NO. 2性格: 很多人说性格决定命运,深以为然.一个人的性格决定了你的举止行为.不是
说,人95%的行为是潜意识的么?这个潜在的意识,也就是人的性格决策.

NO.1选择:如果说什么比性格更重要,我觉得是一个人制定的目标,所做的选择.当我看老
同学情况的时候,我发现一个问题,理想有多高,人就能走多远.不要怀疑自己的能力,通
过你的性格,和坚持,你的目标总会实现的.如果你开始的目标制定过低,这个你的选择本
身就很清贫,一个人的成就也就被限定了.

我觉得这些因素,如果想取得巨大成功的话,几乎每一项都是非常重要,甚至必要的.其实
这些因素也是互相关联的.不过这是我的一点人生感悟罢了.

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