Skip to main content

天生我材必有用


读博士的point有3个: 1)你想做教授 2)你不想做教授但是你很enjoy你的research 3)
你不想做教授但是你的博士的research对你将来的career有很重要的作用。
如果你的不是以上三种,你读博士的Benefit本身就很小,5年以后你会觉得浪费了5年
。但是你已经读了3年了,有沉默成本在里面,所以如果要quit也要好好想清楚。

有3种情况是应该quit的,不管你读了多久了 1)你强烈不喜欢你的research,到了一去
实验室就depress的地步 (这样好下去横竖拿不到PhD不如早早走人) 2)你的skillset导
师不是很欣赏,导师欣赏的skillset你没有,而你又不能再换老板了(或者等导师把你
踢出去,nice一点的导师不踢走你但是你的日子也不好过) 3)你的老板是极品,而你又
不能再换老板了(永远不要给极品干活,会被榨干最后一滴血,还什么都得不到。这种
情况牛校比较多)。如果你是以上3种,你不quit PhD就是跟自己过不去。

有情况是可读可不读的:你不讨厌你的research,但是也不喜欢, paper也能勉强发,
但是比较痛苦,老板比较nice,愿意给你放水。这种情况可以读完找工作,如果你觉得
没有成就感,也可以先工作,take one year for leave,然后工作开心了就走,不高
兴了就回来。

不要叫自己是loser,天生我材必有用。拿不到博士的人可能是不适合作科研,或者不适
合做某一个领域。但不一定是loser.非要不计较代价一条路走到黑的才loser

Comments

  1. 读博士就是一种投资,拿五年时间换一个dr's degree.有博士学位进工业界和学术
    界都可以,没有只能进工业界了,但是工作中,博士说的话和硕士说的话对老板来说,
    分量是不一样的。还有,博士学位是跟你一辈子的,即使你回国也有机会去高校或国企
    拿个铁饭碗,没有博士学位就免谈了。我身边有不少朋友读到一半就跑了的,望三思。

    ReplyDelete

Post a Comment

https://gengwg.blogspot.com/

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