Skip to main content

我这几年的经历


一直都想发一篇博文,讲讲我这几年的经历,一直没有空,现在正好在国外培训,所以
有机会和大家分享一下:

2006年5月,终于拿到美国某普通大学的PHD的offer,专业属于生物类,极其兴奋的来
到美国,当时我刚结婚,老婆在国内top城市有待遇不错而且稳定的工作,所以和老婆
约定,我先来美国,第二年老婆再过来!

来了美国一年,想转一个比较应用的研究领域(以前做的比较基础),本来以为在校内
转很容易,结果居然被拒,而且被老板知道,当时就准备kick out我,后来是系主任说
话才留住我,妈的,你美国人转专业转校,你们觉得没什么,老子转专业就不行啊!!
!后来郁闷了半年,真不想读PHD了,我又不喜欢做研究,毕业还有做薄厚,长路漫漫
啊,我老婆过来怎么办呢?当时父母极力劝说我完成博士学位,后来我完全不理会父母
的想法,有的时候父母的想法真是害死人,后来仔细考虑了后,决定让老婆先不过来了
,继续国内工作(后来证实,此决定极其英明),我索性完全quit生物研究,读了一个
2年的比较应用的硕士专业(有奖学金,不过是小学校),期间老婆想在国内买房,我
完全支持,还好这2,3年还在美国赞了点钱(这个决定也很英明,目前房价翻番,而且
我们没有任何还贷压力,赞老婆一个)。这段期间,我回国2次,老婆过来2次,所以我
们感情没有受很大影响不过依然很辛苦!

硕士毕业后本来准备在美国干一年再回国,后来发现国内的工作比美国好找,直接杀回
去了,起薪真不高,10万多一点,不过和老婆在一起,有房住不愁,找家里人借钱买了
辆车,很开心;工作了2年多,跳槽一次,目前20多一点,也不高,不过我也比较满足
,我老婆赚的比我多一些,两人差不多40到50左右。去年刚有了儿子,今年过年前又买
了套房(首付的钱是自己攒的和家里给的,还有借了一部分),年底准备装修入住,以
前的房子就给老人住,他们可以帮忙带小孩!

说到这里,我想给大家说的是,大家真的要仔细冷静的考虑自己的工作和生活,我不是
晒幸福,我回国的时候,很多人鄙视我,说应该让老婆跟我过来,这样对家庭好,比较
平衡,说我没有出息,回去跟老婆混。还好我脸皮比较厚,当时只有我最好的哥们支持
我,现在他也博士毕业回国了,在国内干得很不错!我说这些话,其实就是想说,人不
可以从众,你的决定一定要自己下,要为自己活,别为别人活,每个人的情况不一样!

另外,我还想说的就是,我不是贬低学生物的人,如果你热爱生物,合适做faculty,
做生物非常好!不过,如果你不喜欢生物,赶快放手,赶快去工作,只有工作了,你才
会发觉你选择的余地其实很大,因为你的视野开阔了很多。

好了,就说到这里吧,欢迎拍砖!

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