Skip to main content

标  题: Re: 转行要慎重

发信人: SpringIsGone (DogFish), 信区: Biology
标  题: Re: 转行要慎重
发信站: BBS 未名空间站 (Tue Jun 13 11:47:31 2017, 美东)

不转行的话博士毕业10年,也就5-6万,除非当上PI。而且越往后走失业风险越大。我
2009年博士毕
业,现在工资也不到5万,又回到3年前薄厚的工资水平了。我们这50来岁的PhD
research associate都是4万多。有几个RAP能达到10万的?我以前实验室的RAP都50多
岁的,就是6万多,有的老板好点也就是7万5。老板钱一旦没钱了照样滚蛋。我们实验
室一个干了15年的老中RAP就转到另一个不靠NIH funding的实验室做staff scientist
了。至少生活有点保障。

我现在也正在上cs ms的先修课。我毕业能达到6万就很满足了。毕竟fresh毕业生,跟
我博士毕业8年不到5万比强多了。我干到退休能达到8万就开心死了。转行的没几个追
求事业辉煌的,就是找个安稳的饭碗。你是学计算机的,不知道为啥总在这混。就算生
物信息的,也跟纯生物不是一个档次的。在我们学校,纯生物硕士技术员3万多,生物
信息硕士能拿到6万。你如果真想混生物圈,建议你去做实验,别写code。干完5年再回
来给大家指点江山。

【 在 mitbbsrobot (机器人) 的大作中提到: 】
: 版上很多人认为转行了,就成功了,就要年入30万了,并且拿出自己转入的系的前辈做
: 论证。这种论调,和刚刚入学的时候,认为自己能发nature当教授一样,都是把极少数
: 的现象当做普遍现象。
: 我认识不少转行的,以读MS为例,整体来说,比同期本科毕业来的小弟弟小妹妹混得好
: ,毕竟年龄大了几岁,阅历也多了一些。但是,重点是,大部分人在毕业2年的时候,
: 收入不会超过15万,我认识的样本,起薪都不到10万,也就六七万的样子,跳了一两次
: 之后,在毕业后2-3年,基本都在10万到15万之间,地点是类似亚特兰大达拉斯奥斯汀
: ,湾区稍微高点,就是糊口温饱而已,离成功还差的老远。
: 客观来说,这基本和research assistant professor在一个档次,转行要慎重

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