Skip to main content

找工作时的心态

sophiashs (14|爱生活爱TC) 于 (Tue Jun  1 23:08:47 2010, 美东) 提到:

最后说说找工作时的心态。概括一句话,就是从绝望中寻找希望。

前面说了,找工作的唯一途径就是找,因为只有咱找工作,不可能工作来找咱,在最后
签下offer前要永远坚持不懈,斗志昂扬的找。这话说来容易,做起来太难。先讲个我
自己的教训。我自己因为一个心仪公司的面试,前后就至少耽搁了一个多月找工作。之
前是准备on site,心里紧张/兴奋;面试回来是急切/忐忑;被据了之后就很沮丧很沮
丧。。。这前后一个多月,都没法静下心来找别的工作。对于找工作新手,又是自己特
别喜欢的公司,可能谁都有患得患失的心情,但是我太投入了,让自己沉浸在这种负面
心情中的时间太久了,潜在地错过了很多机会。有时候找工作和谈恋爱有点像,如果不
去爱,就不会受伤害。所以最好不要爱上一个公司,一个职位,因为咱找的只是一份工
作,他们也不会love you back。投完一个或面试完一个,就把它放到archive里(文档
整理工作还是要做好),尽快move on。

另外我很感激我找工作过程中,有我lg和我师姐一直帮我打气。在我灰心丧气question
我自己的时候,我lg总是鼓励我;在我‘祥林嫂’的时候充当耐心的听众,并且安慰我
。我师姐要飙悍许多,我一跟她jjww,她就说‘你才投几份简历呐,你没资格在这儿
jjww,接着投简历去。’我师姐是一我特别服的人,有魄力有决心,做事巨麻利,是那
种我觉得只要她想干啥就一定能干成的人。所以每次跟她通电话的时候,我都觉得她是
个巨坚强的精神依靠。人生会有很多坎,就像车轮陷在一个泥坑里,身处其中,人情绪
低落,靠自己力量不容易尽快走出来。这时候有身边的朋友能开导鼓励一下自己,就像
推车子一样,推过这道坎也就过去了。千万不要把自己封闭起来,越想约负面。我觉得
我lg和我师姐这两种朋友是大家在找工作的时候都必须的,前者让我有个可靠的港湾可
以暂时歇息,后者是一股劲风,能push我再次起航,这样才能一路走得远。(当然,自
己心里就无比强大的人就更好了。)

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