Skip to main content

我的绿卡之路


说是绿卡之路,其实到最后拿到绿卡也一直没肯定自己走得是条什么路
只是把自己的经历拿出来晒晒,希望给大家有点启发

从12年1月份开始办理eb1a申请,一共递交了三次,具体情况如下

1)12年2月份提交,文章15,review15,citation 130, 提交tsc,diy+直接pp,被
0100rfe后denied
2)12年7月份提交,文章18,review20,citation 160,提交nsc,diy+pp after 2
weeks,被0002rfe后咨询版上著名的三大律师,x律师建议withdraw重新办新case,y律
师拒绝,说citation200以上再找他,z律师说可以试试,后提交rfe后被denied,事后z
律师表示意外,说今年只有两个像我这样的case被denied了,愿意帮助我重新办case,
表示感谢后拒绝了。
3)12年下半年经历了人生最大的一次变故,开始自我怀疑自我否定,幸亏ld一直坚定
不移的陪着我,做出了很大牺牲。13年1月再次提交,所有的材料除了日期一字不改,
文章20,review25,citation230,提交nsc,diy+non pp,这次提交的时候没有任何的
感觉,8月份获批140,9月份提交485,11月份获批ead/ap,12月份获批绿卡

拿到绿卡时,我和ld什么感觉都没有,没有开心,没有激动,也没有庆祝,到现在还没
跟双方的hr说,想着过完年再说。告诉父母时,父母是开心的,接着又怯怯的问我们“
春节能回来过年了吧?”,却只能跟他们抱歉的说一句“对不起“,因为还有其他事情
要处理。

这也只是我个人的case,不想掺杂大多的个人因素
各位看官看了之后也不要轻易得出结论,是diy还是请律师,是直接pp还是non-pp,个
人选择而已,对于你个人case而言,无借鉴意义。

绿卡只是人生的一小站,我们的很多朋友都恭喜我们,说解决了人生中的一件大事,我
们却毫无欣喜之情,可能每个人想要的东西都不一样,每个人想走的道路也不一样,走
过绿卡之路,一路荆棘,却到头来不知道自己为什么要走这条路,或许是随大流,或许
是无路可走,唯一知道的是摆在人生面前的还有很多其他路要选择,要走。

自己的路自己走,everyone needs to find his/her own way.

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