Skip to main content

标  题: Re: 认知心理学(稀有生物)博后 求职业发展或转行建议。

发信人: workingha (high), 信区: JobHunting
标  题: Re: 认知心理学(稀有生物)博后 求职业发展或转行建议。
发信站: BBS 未名空间站 (Fri Feb 17 21:25:26 2017, 美东)

1.  学术类。
我的建议是别做学术了,你做不过那帮年轻人。而且你的文凭是国内的,找教职工作真
的是个障碍。我想你是做脑认知的吧,这个真的是百无一用的书生玩意儿。哪怕就是麦
吉尔zatorre, pell这些牛组的科研,我觉得也就那么回事。社会不需要
的知识,AI和你的专业关系不大。

2. 用户体验,
不知道

3. 研究支持类(高校行政类)。
这个没有机缘巧合,很难。

4. .其他心理学研究类。问卷开发,心理测量等。
需求不多,但是可以去试试。

5.专利代理人。
难,不需要这个专业的。

1.  科技类创业。
先打工,再创业。要不然败家非常快。

2.  污水处理技术与设备,出口国内 。
国内有关系可以干。

3.  其他一般进出口公司。
小打小闹可以,作大了需要很多的社会资源。

4.  移民留学中介。
如果你有稳定的国内客户群体,可以做。没有的话,别干,竞争非常大。

5.  开餐馆,杂货店,很辛苦,相对低级。
还是那句话,先打工,再创业。开餐馆业不能开中餐馆,恶性竞争太多。

6.  旅游公司,华人自己人竞争市场也不大。或者北美打猎游。但有出事故风险。
还是那句话,先打工,再创业。

7.  婚介公司,国内不是有很多人梦想着嫁到北美来嘛。但这玩艺儿有点像拉皮条。
夕阳产业。大家沟通都用QQ,Wechat的时代了,这个行业进入了夕阳。

8.  办期刊杂志。优势是国外没有文化管制,较容易。但盈利能力是个问题。
这个需要太多的社会资源。如果你能办个科研杂志,让国内的人来投稿,应该没有问题
,但是你需要时SCI,SSCI的杂志,还要操心impact factor,这个也难。但是如果你做
成了,确实很有钱。但是这个生意是npg做的。

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