Skip to main content

在US读CS的Phd真要5-6年,每周60-80工作小时

发信人: SuperCary (Cary), 信区: CS
标  题: 在US读CS的Phd真要5-6年,每周60-80工作小时?
关键字: 读书,phd,cs,gre,toefl
发信站: BBS 未名空间站 (Sun Mar 25 02:11:40 2012, 美东)

先说说自己的基本情况。我是国内985高校的CS的master,毕业已经四五年了,一直在外企从事软件开发工作。打算考GRE和TOEFL,读一个master或者phd(考察中),希望拿到学位能留在US工作。

在UCI一个prof的主页上看到下面的要求。看完后有点悲催了。一方面是觉得人家人家教授知道咱的动机,另一方面是对研究生的要求感觉非常高,最后就是 对自己今后的人生充满迷茫。不知道US的master和phd,自己一个马上奔三的人能否坚持下来。或许,自己一直是一个人的缘故,不喜欢目前太稳定的工 作,总觉得这辈子就这么过去了没意思。可能如果我已经建立了家庭,或许就不会想着继续上学(离开中国)。其实自己是个喜欢研究技术的人,一方面总感觉专业 上有那么多东西需要学习,但是时间实在有限;另一方面总逃不开外界(社会风气以及自己的圈子)对自己的影响,无法很专注的投入,担心自己的生活没有物质保 障。

一句话,搞不清自己,加上父母反对。迷茫,焦虑,崩溃。

Quote:
Be Passionate: Getting a Ph.D. shouldn't only be about immigrating into the United States — yet for many of our applicants, that appears to be the prime motivation. Ask yourself: does the area that I am applying for really interest me sufficiently that I want to be spending 5-6 years working in it, 60-80 hours a week? Successfully completing your Ph.D. requires an enormous amount of self-motivation. The dirty little secret of graduate education is that the drop out rate hovers around 50% — chances are very high that you won't make it unless you seriously love your research subject. The prospect of a better life after graduating is not normally sufficient to pull people through the hardship that graduate school really is. You may also want to read Doug Comer's very relevant web page “Notes on the Ph.D. Degree”.

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