Skip to main content

给OPT回国返签的一点经验

by abl 回国之前,不知道听多少人说,千万别回阿,会如何如何,担心这样那样
就连很多签证还在有效期内的人都因为OPT不敢回国
但我铁了心要回去一趟,之前做了很多考古,不知所以然,一度还想去墨西哥或加拿大
签,然后再回国,但是都预约不上。由于时间紧张(预了两周回国时间),所以还是回
去了
走之前打电话预约,上海的排到了下一个月,显然也不行,就定了面签时间最早的广州
,虽然路途遥远很折腾,最后还不得不跑了两趟广州(后面详说)
准备的材料依照jhq,该有的都有了
主要是i-20,offer letter, EAD card, 单位的信,学校的成绩单(当时学位证书还没
拿到),其实最后签证官就看了i-20和offer letter,单位的信是我硬塞给他的,没什
么用
i-20如果有不止一份的话给他最新的那份就可以了
最后给了check,虽然我不着急,但是也等了两个月才clear,中间打电话催什么的都试
过,没什么用,不过还没有急到发email和传真,所以不知道效果。听说这段时间check
的很多
关于check,有点我事后觉得要注意的地方
(可能我的情况有点特殊)
我在美国读的专业不是敏感专业,所以第一次出国的时候没有被check
我一直心存侥幸,希望这次也顺利,不过我的工作属于敏感专业,那个签证官好像新手
,折腾了半天,问了上司,最后才给我check的,原因就是我工作的专业。但是中间他
问我个问题,这次去美国是回原来的学校还是去工作的单位?因为我机票已经定了,而
且网上有人说最好把机票的行程写上(有份表里面要填的),这样不容易被check,所
以我就只好如实回答去工作的单位。我想如果我当时回答回原来学校的话,不一定被
check,因为那些表和材料他看的很不仔细,主要靠问我。都说广州签证容易过,结果
还不如上海。还有那里不给南方四省之外的地方寄签证,所以我最后只好又跑了一趟广
州取签证
罗嗦了些,希望对以后OPT想回国的人有帮助
个人的感受是opt真没什么可怕的

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