Skip to main content

一个海归的近2年感受波折



希望此贴能给还在迷茫中的人们找到些方向

我是个骑墙派,也是个折腾派,人活着就是为了折腾,初到美国,挺想留下,折腾到了
绿卡,也空虚了不少,现在想来,依然对这样的空虚有点害怕,害怕未来还是会继续空
虚下去,可国内,也不是一方净土,开始回来是好的,现在也好的,可我已经真心无法
忍受环境,水,食物和空气,这三样人赖以生存的东西,已经变得忍无可忍

这跟一二线城市无关,而是整个中国的问题。前阵子去了个山清水秀的地方,原以为可
以躲过雾霾,发现不是,这是个区域性问题,整个中国的大部分地区无法幸免。我从来
不矫情,因为我自认为这些问题应该不是问题,可回来2年后,真心感觉自己的身体在
被环境侵蚀,说不清楚到底什么地方不好,就感觉到抵抗力也差了,之前在美国1年不
会生一次感冒,在中国老感冒,我只能把不清不楚的原因归结为这样糟糕的环境

事实上,在国内,工资是还不错的,税是比较低的,相对而言,住宿,服务,以及吃也
比较方便,也方便照顾老人,可逐渐的,我意识到,这些其实在国外也能得到,至于所
谓的成就感,越发觉得和人有关,事实上,你即使当上了一个高层,赚到更高的工资,
你依然离不开家庭,依然离不开水空气食物这些最基本的需求,也许回国只是为了追求
那20%在美国无法得到的地位感或者成就感,但你却失去了最基本的80%

如果说回国有什么收获,这2年还是有点收获的,一方面国内的一些工作,往往比美国
的专业工作其实视角更广,接触的东西更多,在美国不少人做个小螺丝钉,在国内,往
往能接触更多的部门,更能从全局范围来看待一份专业工作,而且速度更快,更有效率
。另外,国内有不少投机机会,即使现在的状况下,某些地方买房还是能带来不少的收
益。但这些不值得一提,最重要的,是我觉得亲情的改善,之前长期的生活在国外,和
父母等亲情也疏远了,回国可以经常和父母去自驾游,感受颇深,可我意识到,这个问
题,和在中国无关,只要有心,在哪儿都能实现

以我的感受,中国未来5年会受到环境的惩罚,各种癌变会增加不少,坦白说,这是我
一个新的马甲,我曾是海归派,但经历了2年后,我意识到一个问题真的不是黑白清晰
的,也许海归对很多人依然是不错的选择,可能有更高的工资和更受人尊敬的地位,但
是,对于一个到而立之年的我来说,我逐渐意识到,家人的健康,生活的平和,以及环
境食物的重要,至少对于我目前这个阶段,是那最基本的80%。

我打算今年中期继续归海,没有办法,对于那种只有一张船票的人来说,海归还是慎重些

Comments

Popular posts from this blog

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

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