Skip to main content

标  题: Re: 被老板多次口头警告,求建议

发信人: mbp (Mac Book Pro), 信区: JobHunting
标  题: Re: 被老板多次口头警告,求建议
发信站: BBS 未名空间站 (Tue Oct 11 19:27:24 2016, 美东)

这个情况比较棘手。
不过我建议斗,斗不过再走。我的背景是10年类似的IT经历,这方面经验比较丰富。
悄悄做这两件事情,千万不能走漏风声,特别是peer和阿三。

1,skip level : discuss w/ your boss' boss. Do not complain. Just tell him/
her you want some advice of being more successful. Never say anything
negative about your boss.

2, check w/ HR.  ask HR the general requirement about review.

下三路才是走人。

Good luck!

【 在 scroon (mitbbs) 的大作中提到: 】
: 背景:7年半经验码农、有绿卡。
: 3个月前入职现在的工作,不是FLG,但也算一线公司,坐标纽约,这是我毕业后的第二
: 份工作。
: 第一份工作是在一个银行,呆了7年多,换了三任老板、拿了绿卡后才走的。自认为干
: 的挺好,被promote过三次,走的时候已是VP title(虽然VP在银行不值钱)
: 现在这份工作面试时的hiring manager是个华人大哥。但入职的时候莫名其妙变成了现
: 在的烙印老板。
: 我入职一个月左右的时候就碰到了mid year review,老板委婉的告诉我我并有达到他
: 的期望 - 只主要问题出在交活不够快。(入职一个月。。。。) review结果是三项
: meet
: ...................

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