Skip to main content

成就感----愉快生活的基础

成就感----愉快生活的基础 2012-03-10 07:03:00
     眼下,许多人把当了官或挣了大钱或取得了科研成果看成是有成就,不错能够有此作为说明他是下了一番功夫才取得。但对于每一个普通人来说,你也时时在取得着或多或少的成就,每一个人都不能忽视自己的成就,都应该有成就感,因为这是你愉快生活的基础。
什么是成就感呢?它是指在你做一件事或从事一项工作中,自己的个体潜能得以充分的展示和发挥,充分体现出自己的价值,从而使自己得到极大的满足,产生愉快或成功的感觉,是 自我实现需要的成就欲,它是人的一种最高层次的需要。
其实,在现实生活中,每个人都会有成就,举个例子:宝鸡一位没上过学的普通农村妇女袁宝霞,面对生活的困境,她没有怨天尤人,靠拉架子车赶古会卖小吃生活,没有集市时,便去打工,在砖场拉土,每趟的报酬只有8分钱,但她拉的土比男的都多,每天要拉60多趟,就是这样她用母亲的责任、勤劳的双手把3个年幼的孩子培养成大学生。三个大学生就是她这位普通母亲的成就,能够培养出三位大学生就是她的成就感。
前不久,中央电视台播放的擂台赛节目中,一位普通的年轻焊接女工,用焊枪将7个捆绑在灯泡上的钢丝切割断,战胜了所有对手取得了第一名,她的技术不得不让人叹服。取得了第一名这就是她一名普通女工的成就,能够用焊枪切割断捆绑在灯泡上的钢丝而灯泡完好无损就是她的成就感。
上 面两个例子是取得辉煌成就的;往小了说,你有一个幸福美满的家庭,有个上了名牌大学的孩子,你有做菜的好手艺,能做出一桌好饭菜,这都是你的成就。有的的 会绘画、有的人会摄影,还有的人喜欢唱歌跳舞,甚至有的人会木工、瓦匠活,这些都是成就,当你在自己有才能的领域一展身手,获得大家的赞许是,就会有成就 感,有了成就感你也就有了幸福生活的基础。
如果一个人总是感到自己一无所是,整天愁眉苦脸,他的个人生活、家庭生活一定不会愉快。
人必须有自信心,坚信自己是成功的,是会有成就的。对成就感的渴望是每个人与生俱来的,每个人都希望自己的工作、生活富有意义,都希望自己能够承担更多工作、家庭责任,能够使自己的能力得以施展,并且得到的人们认可,这就是成就感。
有了成就感就有了工作、生活的动力,它会使你觉得工作、生活有奔头,有目标。每个人都应该发现并发挥出自己的特长,建立起工作、生活的成就感,使自己的工作时时都有新成就,使自己的生活幸福美满。

Comments

Popular posts from this blog

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

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