Skip to main content

标  题: 被通知减薪25%,感觉很郁闷

http://gengwg.blogspot.com/发信人: Dreamer (不要问我从哪里来), 信区: Dreamer
标  题: 被通知减薪25%,感觉很郁闷
发信站: BBS 未名空间站 (Mon Jul 20 14:51:57 2015, 美东)

在油气行业,大环境不好是不争的事实,不过没想到发生在自己身上,还是很郁闷。
我的表现算中规中矩,去年一年税前21万左右。平时开销也挺大,都是根据这个收入来
的。
全年觉得一个人也没什么精力投资股票,就在这儿和很多中国人一样买了四套二十万左
右的SFH出租
自己觉得也没想亏待自己,买了个五十几万的自己住。
觉得以后工资总是会涨,利率又那么低。

结果现在减薪,一年少好几万,顿时觉得有压力,倒不担心身份问题,刚工作就eb1a解
决了绿卡,拿到手也好几年了。

另外觉得不爽的就是我这个level的,peer pressure很大。和我一年进来的有个老中,
前几年默默无闻,最近搞出一个专利,公司给他promote了。刚才在cafe聊天,他说他
涨了工资。涨了多少我不知道,知道应该为他高兴,但是还是心理很酸楚。告诉自己做
好自己就行了,但是,人啊,有嫉妒心。别拍我,我也是个俗人。

本来想今年换个bmw 5系开开,现在估计也没戏了。当然我的2013年的雅阁也还可以,
就是太大妈了。

唉唉唉,抱怨一下。

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