Skip to main content

怎样鉴别真正的好老板


A)一个老板逼她练习presentation,做presentation,挑刺加鼓励;
还逼他出货。  公平严格但不一定最nice。  给他visibility,
鼓励越级报告。
B)另一个老板随他便, 他努力做得好就抢他的credit,他不努力就把
什么都怪他。  平时很nice,但是分配不公平。

老中要学会知道谁真正为你好, 当然是A)。
要对这些人好,不要拆他们的台。

烙印老板一般都是B)。
很多不懂事的老中就会进烙印老板
的圈套。  为了$2000高一点的报酬,
而为烙印的鸠占鹊巢大业添砖加瓦而
不自知。   加班几年,给小印抢功劳
养肥了, 把你用残了,把你过河拆桥。


很多老中就是这样把创造热情,
雄心壮志蹉跎成cynicism,
再也不想当软工,
就被挤出去,转业的转业,跳槽的跳槽。
再也不相信公平,多劳多得的”美国梦“。

其实美国梦是真的, 人都是希望
得到公平对待,并公平对待别人。 
但是烙印B)却口头一套,手上一套,
比较坑爹。


http://gengwg.blogspot.com/

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