由买买提看人间百态

topics

全部话题 - 话题: invalide
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
p*i
发帖数: 411
1
int myatoi(const string& str) {
const int n = str.size();
int curr = 0; // current index
while ((curr < n) && (isspace(str[curr]))) curr++; // skip leading
spaces
int sign = 1; // positive
if (str[curr] == '-') {
sign = -1; curr++;
}
if (curr == n)
throw runtime_error("Invalid input");
// prepare overflow check
int base, extra;
if (sign == 1) {
base = numeric_limits::max() / 10;
extra = numeric_limits::max() % 10;
... 阅读全帖
f*******t
发帖数: 7549
2
来自主题: JobHunting版 - amazon面试题目讨论贴2
#include
#include
#include
#define ENTRYNOTFOUND 0
#define ENTRYFOUND 1
#define NOTCOMPLETE 2
struct Trie;
void FindWords(Trie *root);
struct Trie
{
Trie();
~Trie();
Trie *children[26];
bool isEnd;
};
Trie::Trie()
{
for(int i = 0; i < 26; i++)
children[i] = NULL;
isEnd = false;
}
Trie::~Trie()
{
for(int i = 0; i < 26; i++) {
if(children[i]) {
delete children[i];
children[i] = NULL;
}
}
}
... 阅读全帖
m*****k
发帖数: 731
3
来自主题: JobHunting版 - Google 面题
for Q2:
int sum=0;
for (char c in yourString)
{
if(c=='(')
{
sum++;
}
else
{
sum--;
}
if(sum<0)
{
return "invalid";
}
}
if(sum!=0)
{
return "invalid";
}
return "valid";
d**e
发帖数: 6098
4
来自主题: JobHunting版 - 前段时间的面试
算是invalid,但前面一部分可以输出a[b,但c]就是invalid了,因为有右边的]但没见
到[在前面,第一个[因为是()里面,所以已经算是escape了
f*********m
发帖数: 726
5
来自主题: JobHunting版 - 两道google的题
能否用backtracking?从左到右每个位置都有机会取值1~9,某一位invalid的条件是根
据这一位前面各位的取值以及D,I情况,这一位小于1或者大于9。若某一位invalid,
则backtrack,前一位取另一个值。
不过麻烦了些。
f*****n
发帖数: 35
6
来自主题: JobHunting版 - rocket fuel 面试题
一道RF的面试题:
有N个ad, (n是million级别的)
每个ad的表示为(id, value)
比如:
121 -> new
130 -> new york
145 -> new york time square
156 -> new york department store
假设有一 query = new york department store
规定ad中每个单词都包含在query中时,这个ad为valid (即ad是query的子集)
上述例子中ad 121, 130, 156是valid的,145是invalid
问:
如何设计一个solution,使得
vector getValid(string query) (返回所有valid的ad的id)这个函
数在worst case时复杂度也能小于O(n),面试官的说法是does not depend on N.
整个solution可以分两个阶段,第一阶段是preprocessing,这个可以是O(n)的,但是
第二阶段query阶段,也即调用函数getValid(),必须小于O(n)
... 阅读全帖
f*****n
发帖数: 35
7
来自主题: JobHunting版 - rocket fuel 面试题
一道RF的面试题:
有N个ad, (n是million级别的)
每个ad的表示为(id, value)
比如:
121 -> new
130 -> new york
145 -> new york time square
156 -> new york department store
假设有一 query = new york department store
规定ad中每个单词都包含在query中时,这个ad为valid (即ad是query的子集)
上述例子中ad 121, 130, 156是valid的,145是invalid
问:
如何设计一个solution,使得
vector getValid(string query) (返回所有valid的ad的id)这个函
数在worst case时复杂度也能小于O(n),面试官的说法是does not depend on N.
整个solution可以分两个阶段,第一阶段是preprocessing,这个可以是O(n)的,但是
第二阶段query阶段,也即调用函数getValid(),必须小于O(n)
... 阅读全帖
s********3
发帖数: 60
8
网上有看到阿三用 GBC (另一个类似ITU的可以给 40 hour cpt 的学校)申请h1b,然
后 h1b approved 但是 change of status denied. 因为移民局觉得 他们的 f1 是
invalid for cpt reason.
quote:
"I am also having same issue.I have applied for status change from F1(CPT)
to H1.H1 got approved but with denial notice.
Denail notice says that since you have submitted evidence that job offered
by the Employer is required part of CPT program ,it does not meet defination
of CPT .hence the benificiary is not continuing to maintain status pursuant
It is no... 阅读全帖
s********3
发帖数: 60
9
网上有看到阿三用 GBC (另一个类似ITU的可以给 40 hour cpt 的学校)申请h1b,然
后 h1b approved 但是 change of status denied. 因为移民局觉得 他们的 f1 是
invalid for cpt reason.
quote:
"I am also having same issue.I have applied for status change from F1(CPT)
to H1.H1 got approved but with denial notice.
Denail notice says that since you have submitted evidence that job offered
by the Employer is required part of CPT program ,it does not meet defination
of CPT .hence the benificiary is not continuing to maintain status pursuant
It is no... 阅读全帖
a********r
发帖数: 76
10
来自主题: JobHunting版 - OPT延期要取消?
从这里 http://www.immigration-law.com/ 看到的消息:
08/13/2015: Shock-Bomb News - Federal District Court in DC Vacates STEM OPT
17-Month Extension Rule on 08/12/2015 Effective 02/12/2016, Subject to
Procedural Rectification
The court finds that the STEM OPT 17-month extension was enacted with the
defective notice and comment required for the rule making and this rule is
invalid. Considering the impact of the decision, the court stays effective
date of invalidation of the rule for six months through Febru... 阅读全帖
z****7
发帖数: 53
11
The final rule seeks to clarify when an I-140 petition (and its priority
date) can be retained. Currently, an I-140 petition is automatically
withdrawn when a labor certification is invalidated, the petitioner dies/
business is closed or the petitioning employer withdraws the petition (most
common). Under the current USCIS practice, withdrawal of an I-140 by the
employer generally does not affect the sponsored employee’s ability to
retain their priority date but, currently, revocation of an I-1... 阅读全帖

发帖数: 1
12
也就是说现在的政策是即使雇主取消I-140或者被自动revoke也不影响PD,但是会影响
h1b的renew。
新的政策是180天后雇主无法取消1-140并且也不会自动revoke,更不会影响h1b的
review。
那如果不到180天还是会自动revoke,那这样看我的140早就自动revoke了,无论新政策
还是旧的政策。
The final rule seeks to clarify when an I-140 petition (and its priority
date) can be retained. Currently, an I-140 petition is automatically
withdrawn when a labor certification is invalidated, the petitioner dies/
business is closed or the petitioning employer withdraws the petition (most
common). Under the current USCIS practice,... 阅读全帖
j**********r
发帖数: 3798
13
这有什么好想的,invalidate cache就行了。如果怕撑不住,不invalidate,重新load
一遍,这中间不保证一致。
A********l
发帖数: 184
14
cache会有写入。不少于10个字


: 这有什么好想的,invalidate cache就行了。如果怕撑不住,不invalidate,重
新load

: 一遍,这中间不保证一致。

j**********r
发帖数: 3798
15
这有什么好想的,invalidate cache就行了。如果怕撑不住,不invalidate,重新load
一遍,这中间不保证一致。
A********l
发帖数: 184
16
cache会有写入。不少于10个字


: 这有什么好想的,invalidate cache就行了。如果怕撑不住,不invalidate,重
新load

: 一遍,这中间不保证一致。

c******e
发帖数: 39
17
we did the same with the agent when we gave the first offer. there was no
contingency either. the agent told us that if, for example, our loan is not
given, the offer automatically became invalid. if the seller does not fix
the problem after the inspection, the offer will also automatically become
invalid.
our agent is a very good one. I totally trust him.
f********i
发帖数: 8412
18
I got either a "Service is not available. Please try again later." message,
or a message as shown below:
Your order attempt failed. Possible reasons include:
• The billing information that was entered does not match the
billing information for this card.
• Your credit card number or expiration date is invalid.
• The credit card security code that was entered is invalid.
If you try again and still cannot complete your order, you may need to
contact your issuing bank. Yo... 阅读全帖
r***t
发帖数: 110
19
刚买的korger vgc,是usbank的。冲红鸟用卡号后四位做pin,显示invalid pin。打卡
后的电话查balance是对的,设了新密码,今天去冲,还是invalid pin的错误。换了另
外一张从Simon mall买的卡冲红鸟就没问题了。
请问有人知道是怎么回事么?
b***s
发帖数: 176
20
来自主题: Money版 - 请问怎么激活Mango新卡
网上压根就没有激活的选项。打电话第一次有人接,给我转到自动激活语音,但是输入
卡号一直说invalid。再打一次也一直是invalid卡号:(
s*********0
发帖数: 303
21
来自主题: NextGeneration版 - 验孕结果两次显示无效
就是对照说明书上的图,有几种invalid的图示,我的就是其中之一,而且两个不同牌
子测出来都一样,都是在Invalid的图示里
t***h
发帖数: 40
22
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELATE DISTRICT
DIVISION TWO
Wan (aka Winnie) Tin ) Case #: B222712
)
Plaintiff and Respondent, ) (Sup. Ct. No. CK71139)
v. )
Los Angeles County Superior Court )
)
In re Joshua Tin )
)
----------------------------------------------------------------)
APPELLANT’S... 阅读全帖
w***1
发帖数: 9
23
【 以下文字转载自 Military 讨论区 】
发信人: yecao (野草), 信区: Military
标 题: 看一看美国的司法腐败, 法官是怎样把一个无故孩子从妈妈身
发信站: BBS 未名空间站 (Fri Nov 23 20:28:00 2012, 美东)
这是真人真事, 请大家舆论支持。
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELATE DISTRICT
DIVISION TWO
Wan (aka Winnie) Tin ) Case #: B222712
)
Plaintiff and Respondent, ) (Sup. Ct. No. CK71139)
v. )
Los Angeles County Superior Court )
... 阅读全帖
B*****I
发帖数: 1378
24
☆─────────────────────────────────────☆
tshch (大丈夫) 于 (Mon Nov 19 03:35:51 2012, 美东) 提到:
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELATE DISTRICT
DIVISION TWO
Wan (aka Winnie) Tin ) Case #: B222712
)
Plaintiff and Respondent, ) (Sup. Ct. No. CK71139)
v. )
Los Angeles County Superior Court )
)
In re Joshua Tin )
... 阅读全帖
y***o
发帖数: 145
25
请看这法律问件, 美国的法官是怎样腐败, 把孩子从妈妈身边强走的。请舆论只持。
IN THE COURT OF APPEAL OF THE STATE OF CALIFORNIA
SECOND APPELATE DISTRICT
DIVISION TWO
Wan (aka Winnie) Tin ) Case #: B222712
)
Plaintiff and Respondent, ) (Sup. Ct. No. CK71139)
v. )
Los Angeles County Superior Court )
)
In re Joshua Tin )
)
-------------------------------------... 阅读全帖
d****g
发帖数: 7460
26
来自主题: Parenting版 - 小孩胆子小懦弱,怎么办?
咋把幼儿园说的那么可怕。。其实有时候小孩子自制力差,抢来抢去也正常。抢人的孩
子有时一转身还成为朋友拉。没听说小孩子被教的太Defensive反而被告状打人吗,或
者反而不合群吗?
要我说要相信娃的处世能力。你只需要"revalidate"他,说XX抢人的东西是不对的,
He is not making friends doing that。不要胡教。不要Invalidate。让娃自己
Figure out怎么
process。他要是不在乎,move on了,你为什么一定要教他打回去?你确信Bully或者
insecurity不是这么被教出来的?
最要推的是娃"玩"的本领。会"玩"的孩子朋友多。老被"invalidate"的孩子不会
"玩"。
u*****a
发帖数: 6276
27
Quote:
4. Do HYP discriminate against Asian-Americans?
To address the question of whether HYP discriminate against Asian-Americans,
it is instructive to review the Department of Education Office of Civil
Rights’ (OCR) findings from its investigation into this matter. In 1990,
OCR concluded that Harvard did not discriminate against Asian-Americans on
the basis of race but rather that Asians were disadvantaged by Harvard’s
admissions preferences for legacies (children of alumni) and recruited
ath... 阅读全帖
s*****e
发帖数: 6053
28
来自主题: Parenting版 - [合集] 对爬藤这件事的新认识
☆─────────────────────────────────────☆
uvachja (鹤立鸡群) 于 (Fri Apr 10 10:46:22 2015, 美东) 提到:
他进的藤校有:Columbia, Yale
http://talk.collegeconfidential.com/discussion/comment/18336253
YaleDad2019
Posts: 1
Registered User
New Member
04-07-2015 at 5:30 pm
Decision: Accepted
(Posted for my son)
Objective:
[*] SAT I (breakdown): 2300 (750 R, 800 M, 750 W)
[*] ACT (breakdown): 34C
[*] SAT II: 800 Math, 740 Chemistry
[*] Unweighted GPA (out of 4.0): 3.96 UW
[*] Rank (percentile if rank is unavailable)... 阅读全帖
y*****8
发帖数: 18140
29
来自主题: PennySaver版 - jcpenney - $10 off $25 coupon 8/3-8/6
今天去了没用成,说是Invalid. 胖子扫不过,手输也说是Invalid 炯!
l*****t
发帖数: 2851
30
来自主题: PennySaver版 - 感恩节staples的免费东西的rebate
你确定这个吗?所有的 rebate都是要 "Validation in progress.'
这个之后会有"complete或者invalid''
"Validation in progress.'只是表示没有审核完,并不表示通过了亚.
我曾经在""Validation in progress.'"之后 收到过"invalid".
a**********1
发帖数: 2720
31
来自主题: PennySaver版 - 被Staples的rewardrebate搞晕了
刚开始搞staples,虽然也在精华区考过古,还是问题多多。。。
这周买了文件夹,相纸,打印纸,整理箱在同一单上。Rebate倒是没问题,相纸和打印
纸都提交上去了,两个最后只出来28刀的rewards,实在搞不懂是不是文件夹的reward
被miss掉了。虽然没有校对UPC,但heavy牌的文件夹应该没错吧?
这还不是最糟糕的。上个月买了软件的easy rebate,两个都出问题了。之前我记得版
上说easy rebate网上提交就可以了,不需要寄材料,所以没寄出任何东西。现在
rebate出问题了。搞不明白,paperless的rebate还需要补交什么材料?
Promotion Name: Get a $59.99 Visa (R) Prepaid Card on Kaspersky Internet
Security 2013 1 User (SKUs 957338, 982927) at Staples
Submission Type: PAPERLESS
Status Date: 12-09-2012
Status Detail: Inval... 阅读全帖
b*******9
发帖数: 13548
32
不是abuse
他家官网写了
一个household 5个账户啊÷
http://www.mycokerewards.com/mobile/rules.do
Limit: 1 Account per person, 5 Accounts per household and 10 Accounts per
physical address, but only 1 Account per individual, under all circumstances
including an Account created on a Branded Site. The person who is the
authorized email account holder of the email address indicated when
registering must provide date of birth information when registering for an
Account and will be deemed to be the Member. When a Membe... 阅读全帖
G****y
发帖数: 3537
33
来自主题: PennySaver版 - gap 10off 过期了...
过期个屁,是GAP把所有CODE都INVALID了。
玩不起就不要玩,要INVALID就在10号CODE生效之前就做,然后发邮件通知,这样大家
也理解,知道不能用就不浪费时间了。
s********3
发帖数: 22
34
一朋友在国内,要买两个coach包,但国内的卡下不单,让我用我的信用卡下单,然后
邮寄到美国一个中转地址,于是我就在coach.com下单,我尝试所有的信用卡,都说
invalid security code,没办法给客服打电话,客服说可以电话订购,于是就电话订
购了。10多天过去了,还没有发货,今天上网站一看,status是 call custom service
,于是给客服打电话,说是order取消了,因为地址的问题,具体她也不知道为什么。
联系了国内的朋友,他又发给我另外一个中转地址,结果还是显示invalid security
code,没办法又给客服打电话,客服告诉我以后我都不能在coach网站买东西了,原因
她也不清楚,她还打电话给相关人问原因,因为下班了没找到人,说是明天会打电话告
诉我原因。有没人有人遇到过这种情况啊,是不是coach怀疑我有倒卖嫌疑啊?头一次
在coach官网买包啊
c****i
发帖数: 323
35
来自主题: PennySaver版 - staples KAV倒赚,time to use GCs
我的也说invalid, upc missing, 怎么回事啊?
We received rebate information for the following product(s):
Kaspersky Anti-Virus 1 user., Kaspersky Anti-Virus 1 user., Kaspersky Anti-
Virus 1 user.
Unfortunately, the requirements for the promotion(s) were not met, and your
rebate submission(s) was invalidated for the following reason(s):
Kaspersky Anti-Virus 1 user Missing UPC
l******o
发帖数: 1072
36
我再次回了封信到国务院的J visa部门问仔细,如下:
-----Original Message-----
From: xxx
Sent: Wednesday, October 03, 2012 8:29 AM
To: FMJVisas
Subject: Re: Question about enter US after J1 wavier granted
Dear Visa Specialist,
Thank you for your information.
If I understand correctly, based on your info, I can use my current valid J-
1 visa to travel and re-enter the USA, and my J-1 waiver will still
effective and will not become invalid because I continue using J-1 visa
after the wavier granted. Is this what you mean?... 阅读全帖
l******o
发帖数: 1072
37
我再次回了封信到国务院的J visa部门问仔细,如下:
-----Original Message-----
From: xxx
Sent: Wednesday, October 03, 2012 8:29 AM
To: FMJVisas
Subject: Re: Question about enter US after J1 wavier granted
Dear Visa Specialist,
Thank you for your information.
If I understand correctly, based on your info, I can use my current valid J-
1 visa to travel and re-enter the USA, and my J-1 waiver will still
effective and will not become invalid because I continue using J-1 visa
after the wavier granted. Is this what you mean?... 阅读全帖
s**u
发帖数: 9035
38
See
发信人: Dumma (初大), 信区: Postdoc
标 题: 分享:DOS的回复,waiver/J1 visa re-enter
发信站: BBS 未名空间站 (Wed Apr 17 18:55:22 2013, 美东)
我的去信:
Dear DOS officer,
I hold a J1-type visa and my current J1 visa for re-entering US will expire
in October 2013.
I plan to travel outside US and re-enter using the current visa before the
expiration date. I also plan to submit an application for a J1 visa waiver
before I leave US for the trip. I have two questions as following.
1) Does the application for J1 visa waiver affe... 阅读全帖
D***a
发帖数: 471
39
我的去信:
Dear DOS officer,
I hold a J1-type visa and my current J1 visa for re-entering US will expire
in October 2013.
I plan to travel outside US and re-enter using the current visa before the
expiration date. I also plan to submit an application for a J1 visa waiver
before I leave US for the trip. I have two questions as following.
1) Does the application for J1 visa waiver affect me using my current J1
visa to re-enter US? Or in other words, will the application for J1 visa
waiver invalidate my... 阅读全帖
s**u
发帖数: 9035
40
来自主题: Postdoc版 - J1 waiver
不能继续延, see
发信人: BCPHD11 (BB), 信区: Postdoc
标 题: Re: 一个复杂的J1情况
发信站: BBS 未名空间站 (Thu Jun 21 02:25:36 2012, 美东)
最接近官方说法,http://photos.state.gov/libraries/china/196482/PDF%20File/20100223%20Webchat%20Transcript.pdf
Li Qingmin: 尊敬的签证官,您好!J1身份赴美,适用 2年归国服务的限制。回国
后又申请 B1/B2 签证去美国开会,或 F2探亲,回国服务 2年的时间起始点是否将
从持 B1/B2 签证或 F2 签证回国后的日期开始重新计算 2年的时间。换句话说
B1/B2签证或 F2签证短期赴美的时间是否计算在 2年归国服务期当中。谢谢!
Beijing NIV Unit: 是的。B1/B2 签证或 F2签证短期赴美的时间是计算在 2 年归国服
务期当中。
发信人: Dumma (初大), 信区: Postdoc
标 题: 分享:DOS的回复,waiver/J1 visa ... 阅读全帖
s**u
发帖数: 9035
41
发信人: BCPHD11 (BB), 信区: Postdoc
标 题: Re: 一个复杂的J1情况
发信站: BBS 未名空间站 (Thu Jun 21 02:25:36 2012, 美东)
最接近官方说法,http://photos.state.gov/libraries/china/196482/PDF%20File/20100223%20Webchat%20Transcript.pdf
Li Qingmin: 尊敬的签证官,您好!J1身份赴美,适用 2年归国服务的限制。回国
后又申请 B1/B2 签证去美国开会,或 F2探亲,回国服务 2年的时间起始点是否将
从持 B1/B2 签证或 F2 签证回国后的日期开始重新计算 2年的时间。换句话说
B1/B2签证或 F2签证短期赴美的时间是否计算在 2年归国服务期当中。谢谢!
Beijing NIV Unit: 是的。B1/B2 签证或 F2签证短期赴美的时间是计算在 2 年归国服
务期当中。
发信人: Dumma (初大), 信区: Postdoc
标 题: 分享:DOS的回复,waiver/J1 visa re-enter
发信... 阅读全帖
s**u
发帖数: 9035
42
Before DOS FR your case, you transfer your J visa, it is fine.
On or after that day, you are subject to new 212(e).
See
See
发信人: Dumma (初大), 信区: Postdoc
标 题: 分享:DOS的回复,waiver/J1 visa re-enter
发信站: BBS 未名空间站 (Wed Apr 17 18:55:22 2013, 美东)
我的去信:
Dear DOS officer,
I hold a J1-type visa and my current J1 visa for re-entering US will expire
in October 2013.
I plan to travel outside US and re-enter using the current visa before the
expiration date. I also plan to submit an application for a J1 visa w... 阅读全帖
s**u
发帖数: 9035
43
来自主题: Postdoc版 - J1 waiver后,J2可以回国吗?
Read below post
http://www.mitbbs.com/article3/Postdoc/31284159_0_tp.html
发信人: Dumma (初大), 信区: Postdoc
标 题: 分享:DOS的回复,waiver/J1 visa re-enter
发信站: BBS 未名空间站 (Wed Apr 17 18:55:22 2013, 美东)
我的去信:
Dear DOS officer,
I hold a J1-type visa and my current J1 visa for re-entering US will expire
in October 2013.
I plan to travel outside US and re-enter using the current visa before the
expiration date. I also plan to submit an application for a J1 visa waiver
before I leave US for the trip. I have two q... 阅读全帖
s**u
发帖数: 9035
44
来自主题: Postdoc版 - J1 waiver后,J2可以回国吗?
Read below post
http://www.mitbbs.com/article3/Postdoc/31284159_0_tp.html
发信人: Dumma (初大), 信区: Postdoc
标 题: 分享:DOS的回复,waiver/J1 visa re-enter
发信站: BBS 未名空间站 (Wed Apr 17 18:55:22 2013, 美东)
我的去信:
Dear DOS officer,
I hold a J1-type visa and my current J1 visa for re-entering US will expire
in October 2013.
I plan to travel outside US and re-enter using the current visa before the
expiration date. I also plan to submit an application for a J1 visa waiver
before I leave US for the trip. I have two q... 阅读全帖
s**u
发帖数: 9035
45
来自主题: Postdoc版 - Reentry US after J1 waiver approval
See
http://www.mitbbs.com/article3/Postdoc/31284159_0_tp.html
发信人: rgzhou (rgzhou), 信区: Postdoc
标 题: Re: J1 waiver办理中,是否可transfer或撤销
发信站: BBS 未名空间站 (Thu Apr 25 13:18:27 2013, 美东)
刚刚收到DOS的回复,他们的回复和"Sunfic"的说法一样的.具体email如下,希望对以后
的人有帮助.
Thank you for contacting the Student/Exchange Visitor Visa Center.
The Department of State’s Bureau of Educational & Cultural Affairs (ECA)
is
solely responsible for the accreditation, management, and oversight of all
U.S. exchange programs, and J-1 change of categ... 阅读全帖
s**u
发帖数: 9035
46
来自主题: Postdoc版 - J1豁免回国问题
发信人: Dumma (初大), 信区: Postdoc
标 题: 分享:DOS的回复,waiver/J1 visa re-enter
发信站: BBS 未名空间站 (Wed Apr 17 18:55:22 2013, 美东)
我的去信:
Dear DOS officer,
I hold a J1-type visa and my current J1 visa for re-entering US will expire
in October 2013.
I plan to travel outside US and re-enter using the current visa before the
expiration date. I also plan to submit an application for a J1 visa waiver
before I leave US for the trip. I have two questions as following.
1) Does the application for J1 visa waiver affect m... 阅读全帖
s**u
发帖数: 9035
47
来自主题: Postdoc版 - J1 豁免后 transfer
See
在NIH, J1第五年是不可以Transfer的, 全部是自己先搞定Waiver, 新的单位直接办理
H1B
所以你只要找到新单位,可以直接办理H1B, O1 visa
找不 到, 可以先在一个学校挂着, 混F1 visa
发信人: rgzhou (rgzhou), 信区: Postdoc
标 题: Re: J1 waiver办理中,是否可transfer或撤销
发信站: BBS 未名空间站 (Thu Apr 25 13:18:27 2013, 美东)
刚刚收到DOS的回复,他们的回复和"Sunfic"的说法一样的.具体email如下,希望对以后
的人有帮助.
Thank you for contacting the Student/Exchange Visitor Visa Center.
The Department of State’s Bureau of Educational & Cultural Affairs (ECA)
is
solely responsible for the accreditation, management, and oversight ... 阅读全帖
s**u
发帖数: 9035
48
来自主题: Postdoc版 - J1 豁免后 transfer
See
在NIH, J1第五年是不可以Transfer的, 全部是自己先搞定Waiver, 新的单位直接办理
H1B
所以你只要找到新单位,可以直接办理H1B, O1 visa
找不 到, 可以先在一个学校挂着, 混F1 visa
发信人: rgzhou (rgzhou), 信区: Postdoc
标 题: Re: J1 waiver办理中,是否可transfer或撤销
发信站: BBS 未名空间站 (Thu Apr 25 13:18:27 2013, 美东)
刚刚收到DOS的回复,他们的回复和"Sunfic"的说法一样的.具体email如下,希望对以后
的人有帮助.
Thank you for contacting the Student/Exchange Visitor Visa Center.
The Department of State’s Bureau of Educational & Cultural Affairs (ECA)
is
solely responsible for the accreditation, management, and oversight ... 阅读全帖
s**u
发帖数: 9035
49
发信人: rgzhou (rgzhou), 信区: Postdoc
标 题: Re: J1 waiver办理中,是否可transfer或撤销
发信站: BBS 未名空间站 (Thu Apr 25 13:18:27 2013, 美东)
刚刚收到DOS的回复,他们的回复和"Sunfic"的说法一样的.具体email如下,希望对以后
的人有帮助.
Thank you for contacting the Student/Exchange Visitor Visa Center.
The Department of State’s Bureau of Educational & Cultural Affairs (ECA)
is
solely responsible for the accreditation, management, and oversight of all
U.S. exchange programs, and J-1 change of category requests. To contact
ECA
regarding this matter, they can ... 阅读全帖
s**u
发帖数: 9035
50
发信人: Dumma (初大), 信区: Postdoc
标 题: 分享:DOS的回复,waiver/J1 visa re-enter
发信站: BBS 未名空间站 (Wed Apr 17 18:55:22 2013, 美东)
我的去信:
Dear DOS officer,
I hold a J1-type visa and my current J1 visa for re-entering US will expire
in October 2013.
I plan to travel outside US and re-enter using the current visa before the
expiration date. I also plan to submit an application for a J1 visa waiver
before I leave US for the trip. I have two questions as following.
1) Does the application for J1 visa waiver affect m... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)