Skip to main content

标  题: 我也快被雷了,发帖留念。

FatWallet Coupons and Deals发信人: majiayi (马甲乙), 信区: Working
标  题: 我也快被雷了,发帖留念。
发信站: BBS 未名空间站 (Sun Nov  8 21:04:35 2015, 美东)

印度大妈当manager,大妈平时不怎么说话。 也没有什么 1 对 1. 也没team meeting
。 

我们组两个full time 和一个contractor。 因为历史原因这个contractor 工作时间最
长。 大妈就把contractor 定为team lead,分配任务。 因为某些原因contractor 从
不解析为什么这样做那样做。整个application 也没文档。contractor 也不怎么分配
给我任务。 我自己也有问题,没什么抱怨过,工作是有分配给我才做,不分配给我不
去争取。年初的时候刚做support 的时候我还missed掉了两次错误。 还有一些其他个
人原因。但我知道这个contractor 说了很多对我不利的话。

在上星期review 的时候manager 突然说我not met。  说我不能独立工作。   因为我
也不太喜欢这个工作,我也就傻傻的解析了几句,没做太多反驳。 manager 就说另一
个full time 做得比我好, 能挑contractor 的错,而我不能。 这个做了一年半的工
作肯定会丢了。

不写太多了,开始找工作。警惕印度人,特别是印度大妈,特别是很安静的印度大妈。

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