Skip to main content

17 month OPT延期 一点经验


估计很多学校的HR都不太熟悉OPT延期手续,特别是不知道OPT延期申请递交后,就能合
法工作。所以OPT到期前一个月,就警告要你打包走人。所以建议OPT延期提早申请,最
起码提前一个月。

如果申请过晚,OPT延期没正式批准就不能工作,请参考以下方法。
1.用certified mail邮寄OPT申请材料。第一证明你已经寄了,第二网上能查到USCIS已
经收到了。

2.给USCIS打电话。直接选择你receipt number弄丢了,然后接通话务员。他们会说一
堆你听不太懂的东西,回答yes或者no就行。一般材料寄出10天还没有收到回复,话务
员会escalate your phone call,把你转到另外一个部门,然后让他们帮你查材料是否
寄到,你的case是否进入他们的系统。不过他们一般会要你等15天左右再打电话查询。
一点提示:只要你寄的支票被cash了,你就case就进入系统了。

3.我的receipt就是过了15天(包括周末)收到的。拿到收据以后,把下面这一段话发
给HR,然后就应该能说服HR了。
Can the student work with an expired employment authorization document while
a 17-month extension of OPT is pending?

Yes. 8 CFR 214.2(f)(11)(i)(C) and 8 CFR 247a.12(c)(6)(iv) automatically
extend the student’s work authorization for up to 180 days while the
student’s 17-month extension application is pending.

4.OPT的申请费必须是personal check。估计系里面不能报销。

5.老板写的支持信需要写明工作起止时间,job description等,就和offer letter差
不多。

祝各位能早日绿了,不再受身份的困扰。

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