Skip to main content

中国人内推和老外内推的区别

发信人: fashr (Time is money, friend!), 信区: JobHunting
标  题: 中国人内推和老外内推的区别
发信站: BBS 未名空间站 (Sun Oct  5 05:13:32 2014, 美东)

工作了一段时间,发现所谓内推也是千差万别
下面只谈entry level的职位
我见过几家大公司老外招人,内推到几乎匪夷所思,毫不要求的地步。一般只要内推的
人把简历递交给管事的老外manager,老外只看背景合适不合适,内推的人跟管事的关
系不太差 ,过来面试就随便聊天就要了,而这个背景宽泛的惊人。例如这个职位要求
工程类背景,只要应聘人是工程类专业毕业就铁定能通过面试,无论是机械、材料还是
IE,civil,人家都不在乎,大公司全部都提供完整的培训,负责把你从完全不懂花费
高额薪水培训成为资深工程师,因为事实上,工业界那些东西,在学校里面很少有人能
够接触到,所以老外manager一般都不太在乎。

中国人内推,关系一般人,一般都要经过复杂面试。不但要看国内国外学校,还要考察
你的只是背景是不是合适,念书期间所做课题是不是相关,基本都要求过来就能干活,
而且门槛会设置的非常高。

中国人内推,关系很好的人,就是另外一个样子,完全是任人唯亲。见到过,背景几乎
毫不相关的人,管事的中国人也能把你招进来。

上述几个人,最后进了公司,干起活来并没有太大差别。不过中国人在北美普遍很艰难
,所以一般心理都看不得别人一步登天,即使关系比较好的同学,很多国人心理都跨不
过这道坎。

不过,要想在美国编制一到对自己有利的关系网,还真的靠雪中送炭
http://gengwg.blogspot.com/

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