Skip to main content

馬上自我檢視》5大徵兆出現,別怕換工作

http://gengwg.blogspot.com/
馬上自我檢視》5大徵兆出現,別怕換工作

美國《富比世》雜誌(Forbes)指出了上班族該勇敢換工作的5大徵兆:

1.工作吃力不順手:
如果你覺得總是做不好、無法達到要求,很可能這不是你發揮所長的好工作。
2.不想和別人討論自己的工作:
當別人問起你的工作,你卻不想談時,很可能代表你心裡並不認同它。
3.留下僅是為了薪水:
與其把自己困在不喜歡的工作裡,不妨多接觸新事物、多嘗試,尋找符合特長、又提供不錯待遇的工作機會。
4.只有獲得負面評價:
如果別人給你的回饋意見都是負面的,除了花時間抱怨或沮喪,不妨檢視是否有更讓你能表現突出的工作。
5.感覺自己不屬於團隊:
和同事搭不上話、無法融入、在團隊中沒有歸屬感,代表你不適合這個環境,或是找不到共同理念,往往只會愈做愈不開心。

不同國家的白領上班族,對換工作的主要動機也不同:
6種動機:
更好的薪酬
更符合能力的工作
工作生活平衡
升遷機會
更有挑戰性的工作
自我提升的機會

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