Skip to main content

移民经验分享:我的EB1A绿卡申请之旅(图)

http://gengwg.blogspot.com/  两周前终于收到了绿卡,在这个论坛学习到了很多,也在这里写写我的经验,分享给大家。

  和这里的大部分人不一样,我博士毕业后就一直在公司工作,公司办了EB2,但排期很长。期间也上过这个版看EB1,自己的条件和大家相比,实在太弱,没有review, 没有reward, paper很少,再加上自己在公司做得比较顺利,没想到跳槽,所以办EB1A这个事情从来没有认真执行过。

  去年因为LD需要work permit, 我开始考虑怎么样能够快速解决绿卡。公司不愿意sponsor EB1b, L1代价也很大,需要到海外工作一年。思前想后,最后决定硬着头皮上EB1A. 把材料寄给了论坛着名的两家事务所,不出意料,基本都认为希望不大。我查了很多资料,读了网上其他律师的成功案例后,觉得我虽然不能申请Review 和Authorship, 但可以考虑其他criteria。最后找到一个律师给了类似的意见,说值得一试,并承诺24小时之内会及时回复任何邮件和电话,7天之内交付推荐信和petition letter.  考虑到我最需要的是时间,并且论坛很多人的经验是,最核心的闪光点都得自己挖掘,我对律师的期望值也很低,所以就匆匆忙忙签了合同。

  我的材料和论坛相比,最强的反倒是contribution,因为在公司里做的项目比较容易说明business impact,所以我从来不担心totality会不满足,欠缺的是如何补足另外两个criteria. 我最后选择了leading role 和high salary. 我自己有一个团队, 我就在petition letter 里介绍了一下我是怎么领导我的组完成了多个项目。High salary的claim其实也蛮tricky的,因为多高算高根本没有确定的数目,这个比得是同地区同行业相同职位的人,所以绝对数高并不能完全justify。我自己在几个网站上找了跟工资相关的数据,比如美国劳工部,payscale, glassdoor 等等,然后从多个数据说明自己在95% 以上。最后律师建议再加上一条authorship,因为他注意到我发表的文章虽然很少,但citation还可以,甚至放在网上没有发表的文章也有引用,所以就决定把所有文章,不管有没有发表,包括conference abstract, presentation都归在了authorship里。

图片来源:新浪博客
  140递上去之后,很顺利,pp后两天就批准了。485RD 是去年12月中旬, 两月份收到了EAD/AP, 三月底两人绿卡都批了。现在LD又找到新的工作,大半年的事终于暂告一个段落。

  把自己的这段经验写下来,做一个纪念,也希望给论坛的其他人一些新的思路,最后祝大家都顺利早绿!

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 /opt/course/1/context_default_no_kubectl.sh , but without the use of k

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 checking a shared sec