Skip to main content

关于老中今年只有7000 H1B 的一点感想


今年老中H1B只有印度人的1/7, 7000余人。

按统计,每年在美留学的老中共有10万+(新生+老生),这个比例确实低了些。但是,
这个10万+是当年所有学生签证的总和,考虑到读本科、硕士和PhD的不同类型,大概平
均4年毕业,也就是目前每年毕业老中大概10万/4=2.5万。这样一算,其实也不用太悲
观,大约1/3-1/4的人留下来了。

烙印猛就猛在ICC直接从印度大量搬运。IT行业老中的生存环境确实堪忧。所以在此强
烈呼吁一下,理工科的在校生,能转专业到CS要趁早,这个行业的老中,太少了。
为什么要转CS?请看各专业LCA统计数据,CS完胜:
http://www.foreignlaborcert.doleta.gov/pdf/h_1b_temp_visa.pdf

2012中印H1B对比:
http://www.uscis.gov/sites/default/files/USCIS/Resources/Report

印度:168,367
中国:  19,850

2013上半年的PERM统计:
INDIA 12,404
CHINA 1,336

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