Redian新闻
>
TSC EB1B PP被NOID 了, 大家给帮帮忙出出主意吧
avatar
TSC EB1B PP被NOID 了, 大家给帮帮忙出出主意吧# Immigration - 落地生根
l*n
1
说实话,LinkedIn 是我面试过的相当拖拉的公司。看到不少人因电话面试3,4天就感觉
没戏了,我都忍不住地想,太着急了。以下是我的经历,相当拖拉。我写得也挺拖拉,
但希望对面试他家的朋友有所帮助。
1.初接触
在去年6月,我通过版上的一朋友推荐,到现在大概8个月了,才算结束。当然这其中也
有我的因素。
我给那朋友发了email包括我的简历,他并没有回,所以我一直不知道是有人推荐,也不
知道推荐人名字。直到后来recuiter问(可能是为了confirm reference bonus),才想
起来查以前发出的email。
recuiter到7月中旬才联系我。我还以为他在网上找到的我呢。我只在linkedin放了简
单的简历,也没有对外公开。记得但是对被发现感到比较惊奇。但是,我看了一下job
description,不很match.我就把面试推了。但是表示了对公司的强烈兴趣,并同意看看
他家其他的工作,有合适的联系他。
到十月中旬,recruiter又联系我。但是,我此时在中国,正好度一个一个月的长假。
只好在十一月再面试。面试SET position.
2.初次phone(recruiter)
基本上只是问了些情况,了解下情况,没有技术问题。被告知会“很快”安排技术面试
。鉴于我对很快的理解,在一周时催了一下。第一次技术phone面试被安排到十一月中
旬。
3.第一次技术phone interview
共有两个面试官,一个是lead,另一个是shadow.
共有两道coding题。第一个是判断一个string是否为数。得考虑负数,既带小数点的数
。需要注意不能存在多个小数点。
第二个是求pow(double b, int n),一开始我给的方案是简单连乘,复杂度O(n)后来想
到一个olog(n)方法:
public double pow(double a, int b) throws Exception {
if(a==0 && b<0) throw new Exception();
boolean isNegative = false;

// check whether b is negative.
if(b < 0) {
isNegative = true;
b = b * -1;
}

double currentBase = a;
double val = 1;
while(b != 0)
{
int oriB = b;
b = oriB >> 1;
if(b << 1 != oriB)
val *= currentBase;
currentBase *= currentBase;
}


// In case of negative exp number.
if(isNegative)
{
val = 1 / val;
}

return val;
}
3.第二次技术phone interview
面试官是刚到LinkedIn的,说话语速很快。可能是对她的新position (management role)很满意,也可能是我们的背景比较相似,滔滔不绝地介绍她自己花了大概15分钟。我这个急呀。
基本是上问了只一道coding题:two sum 的变体:
设计一class, with two methods:
Save(int input):
add a number, input to the collection of integers
Test(int target)
Test whether there exist two numbers, whose sum is the target. Return true is such two number exist, false otherwise.
我说见过这道题,她让我讲思路。我说了保持sorted数组,从两头向中间找的做法。她说不是很一样,我们用另一种做法。我就用了hashtable:
public class TwoSum {
public void save(int input)
{
int originalCount = 0;
if(h.containsKey(input))
{
originalCount = (int)h.get(input);
}
h.put(input, originalCount + 1);
}

public boolean test(int test){
Iterator i = h.keySet().iterator();
while(i.hasNext()){
int c = i.next();

if(h.containsKey(test - c))
{
boolean isDouble = test == c * 2;
int frequency = (int)h.get(c);
boolean appearOnlyOnce = (frequency == 1);
if(!(isDouble && appearOnlyOnce ))
return true;
}
}

return false;
}
Hashtable h = new Hashtable();
}
(未完待续)
avatar
M*8
2
十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
. 也给后来的童鞋做个参考.
US PHD, postdoc, now working at a large biotech company. 申请了4条,
-Published materials written by others (>150 citation and work being
extensively discussed by high level review articles)
-Publications. (9 articles, 2 first author, 7 in English)
-Original contribution (9 reference letters, 1 international)
-Reviewer. (6 reviews)
(有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)
IO 的答复很具体,按新guideline来分俩步走.
Part I, criteria evaluation. 不承认published material by others, citation不
算. 似乎没看到 work being discussed by review articles的部分. 承认后三条.
Part II, overall merit evaluation. 说The beneficiary has met at least two
criteria and established the beneficiary meets the minimum eligibility
requirement for this classification. 但是没有足够证据说明the beneficiary is
recognized internationally. 又逐条说承认的三条, 每一条都够了criteria, 但不够
说明 outstanding.
另外还要job offer letter 和 ability to pay. Can not believe 公司律师竟然没交
job offer letter. 这个好说, 交上就是了. ability to pay说提供了evidence
pertaining to its parent company’s finance. 但是 failed to submit any
evidence which establishes its ability to pay the proffered wage.这个具体该
是个什么东西才能证明呢.
公司律师是个大忽悠, 总说strong case没问题. 都NOID了, 还说没问题.不过是在扣新
guideline. 重新组织一下材料再要两推荐信就行了. 可他也说新guideline后他就还没
做过案子. 实在不敢再信他. 拜托大家给出出主意怎样对付吧. 多谢啦.
avatar
l*a
3
牛人面经,先顶后看

【在 l*****n 的大作中提到】
: 说实话,LinkedIn 是我面试过的相当拖拉的公司。看到不少人因电话面试3,4天就感觉
: 没戏了,我都忍不住地想,太着急了。以下是我的经历,相当拖拉。我写得也挺拖拉,
: 但希望对面试他家的朋友有所帮助。
: 1.初接触
: 在去年6月,我通过版上的一朋友推荐,到现在大概8个月了,才算结束。当然这其中也
: 有我的因素。
: 我给那朋友发了email包括我的简历,他并没有回,所以我一直不知道是有人推荐,也不
: 知道推荐人名字。直到后来recuiter问(可能是为了confirm reference bonus),才想
: 起来查以前发出的email。
: recuiter到7月中旬才联系我。我还以为他在网上找到的我呢。我只在linkedin放了简

avatar
l*2
4
BLESS!
avatar
l*a
5
这个 olog(n)的写法很奇怪
avatar
a*e
6
What is your office IO number?

【在 M***8 的大作中提到】
: 十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
: 十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
: . 也给后来的童鞋做个参考.
: US PHD, postdoc, now working at a large biotech company. 申请了4条,
: -Published materials written by others (>150 citation and work being
: extensively discussed by high level review articles)
: -Publications. (9 articles, 2 first author, 7 in English)
: -Original contribution (9 reference letters, 1 international)
: -Reviewer. (6 reviews)
: (有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)

avatar
l*n
7
基本思路是,n表示为二进制,对应非0位,乘在该位上相应的base.
example:
9 => 1 0 0 1
pow: b^8 * b = b^9

【在 l*****a 的大作中提到】
: 这个 olog(n)的写法很奇怪
avatar
T*k
8
Bless
What a crazy IO officer, 3 criteria met but a RFE.

【在 M***8 的大作中提到】
: 十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
: 十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
: . 也给后来的童鞋做个参考.
: US PHD, postdoc, now working at a large biotech company. 申请了4条,
: -Published materials written by others (>150 citation and work being
: extensively discussed by high level review articles)
: -Publications. (9 articles, 2 first author, 7 in English)
: -Original contribution (9 reference letters, 1 international)
: -Reviewer. (6 reviews)
: (有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)

avatar
i*e
9
看lz是在面试时候现想的,这很不容易~

【在 l*****n 的大作中提到】
: 基本思路是,n表示为二进制,对应非0位,乘在该位上相应的base.
: example:
: 9 => 1 0 0 1
: pow: b^8 * b = b^9

avatar
M*8
10
IO 1111
avatar
l*n
11
不敢当。功课没做足。过后发现其实有人post类似的解法。当时也是受到提醒。面试官
说能否提高performance,才想到的。
大牛去Google了?

【在 i**********e 的大作中提到】
: 看lz是在面试时候现想的,这很不容易~
avatar
H*7
12
你这 第一条 “Published materials written by others” 是指的 媒体报道吧?
单独 文章引用 本来就不是用来证明这个的。 “extensively discussed by high
level review articles” 倒是可以,但看样子,你没有这方面的证明。
你要回复这方面,很简单,就2条:找找看你的文章等有没有 “extensively
discussed by high level review articles”; 还有 有没有 媒体报道。
看来是你的律师瞎搞,自己都不清楚怎么证明,乱claim. 这可不是要两封推荐信就能
证明的。
"ability to pay" , 以前有ID提到过 要公司的税表啥的。

十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
. 也给后来的童鞋做个参考.
US PHD, postdoc, now working at a large biotech company. 申请了4条,
-Published materials written by others (>150 citation and work being
extensively discussed by high level review articles)
-Publications. (9 articles, 2 first author, 7 in English)
-Original contribution (9 reference letters, 1 international)
-Reviewer. (6 reviews)
(有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)
IO 的答复很具体,按新guideline来分俩步走.
Part I, criteria evaluation. 不承认published material by others, citation不
算. 似乎没看到 work being discussed by review articles的部分. 承认后三条.
Part II, overall merit evaluation. 说The beneficiary has met at least two
criteria and established the beneficiary meets the minimum eligibility
requirement for this classification. 但是没有足够证据说明the beneficiary is
recognized internationally. 又逐条说承认的三条, 每一条都够了criteria, 但不够
说明 outstanding.
另外还要job offer letter 和 ability to pay. Can not believe 公司律师竟然没交
job offer letter. 这个好说, 交上就是了. ability to pay说提供了evidence
pertaining to its parent company’s finance. 但是 failed to submit any
evidence which establishes its ability to pay the proffered wage.这个具体该
是个什么东西才能证明呢.
公司律师是个大忽悠, 总说strong case没问题. 都NOID了, 还说没问题.不过是在扣新
guideline. 重新组织一下材料再要两推荐信就行了. 可他也说新guideline后他就还没
做过案子. 实在不敢再信他. 拜托大家给出出主意怎样对付吧. 多谢啦.

【在 M***8 的大作中提到】
: 十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
: 十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
: . 也给后来的童鞋做个参考.
: US PHD, postdoc, now working at a large biotech company. 申请了4条,
: -Published materials written by others (>150 citation and work being
: extensively discussed by high level review articles)
: -Publications. (9 articles, 2 first author, 7 in English)
: -Original contribution (9 reference letters, 1 international)
: -Reviewer. (6 reviews)
: (有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)

avatar
p*2
13
这几天忙,没注意看。你的第一面的题我都碰到了。
avatar
h*5
14
Bless! 这个1111就是给我发NOID的那个家伙。

【在 M***8 的大作中提到】
: IO 1111
avatar
q*x
15
大牛在A吧?

【在 l*****n 的大作中提到】
: 不敢当。功课没做足。过后发现其实有人post类似的解法。当时也是受到提醒。面试官
: 说能否提高performance,才想到的。
: 大牛去Google了?

avatar
M*8
16
hiblue5, would you mind sharing some of your experience with IO1111 with me.
You could sent it to my personal mailbox in bbs.Thanks a lot
avatar
s*n
17
面的是Linkedin什么岗位呢?
貌似都是很多programming skills
avatar
M*8
18
Hiblue5, just saw your response in PM. Thank you so much! Hopefully this IO
is not a killer just like you said :)
avatar
l*a
19
for double, we should not use if(a==0)
please NIU man confirm

【在 l*****n 的大作中提到】
: 说实话,LinkedIn 是我面试过的相当拖拉的公司。看到不少人因电话面试3,4天就感觉
: 没戏了,我都忍不住地想,太着急了。以下是我的经历,相当拖拉。我写得也挺拖拉,
: 但希望对面试他家的朋友有所帮助。
: 1.初接触
: 在去年6月,我通过版上的一朋友推荐,到现在大概8个月了,才算结束。当然这其中也
: 有我的因素。
: 我给那朋友发了email包括我的简历,他并没有回,所以我一直不知道是有人推荐,也不
: 知道推荐人名字。直到后来recuiter问(可能是为了confirm reference bonus),才想
: 起来查以前发出的email。
: recuiter到7月中旬才联系我。我还以为他在网上找到的我呢。我只在linkedin放了简

avatar
E*r
20
bless!

【在 M***8 的大作中提到】
: 十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
: 十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
: . 也给后来的童鞋做个参考.
: US PHD, postdoc, now working at a large biotech company. 申请了4条,
: -Published materials written by others (>150 citation and work being
: extensively discussed by high level review articles)
: -Publications. (9 articles, 2 first author, 7 in English)
: -Original contribution (9 reference letters, 1 international)
: -Reviewer. (6 reviews)
: (有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)

avatar
f*e
21
同意这个,看lz是面SET,以他对这道题的表现,觉得有点可惜,应该面SE。
不过也许SET跟SE的待遇是差不多的,而且现在SET据说特别少也许promotion更
快?linkedin今年hiring据说是要double,小team可能升得更快吧。再不过,
哎,突然想到lz既然上来发面经了,多半最后没有去L,说上面那些都没用了。
不知道牛人最后去了哪。

【在 i**********e 的大作中提到】
: 看lz是在面试时候现想的,这很不容易~
avatar
M*8
22
HH7, thank you very much for your help.
I actually provided evidence for "my works being extensively discussed by
high level review articles" for the "published material by others / media
report", but it seems the IO did not see it at all.
I am thinking since he didn't acknowledge this criteria and has said I met
the other three, I will use this evidence to strengthen contribution and
authorship?
My biggest trouble is how to demonstrate the overall internationally
outstanding...
avatar
p*i
23
非牛,来confirm一下
floating point的数都不能直接跟0比较
应该
const double sigma = 1e-6;
fabs(a) < sigma

【在 l*****a 的大作中提到】
: for double, we should not use if(a==0)
: please NIU man confirm

avatar
F*k
24
"International outstanding"是不是可以通过来自多个国家的 reference letter 和
citation 来证明,我的材料里列举了引用来自的国家。
Anyway, 我8/25 eb1b pp 刚刚递出去,和你背景大概类似,也很紧张。
Best wishes, bro!!

【在 M***8 的大作中提到】
: HH7, thank you very much for your help.
: I actually provided evidence for "my works being extensively discussed by
: high level review articles" for the "published material by others / media
: report", but it seems the IO did not see it at all.
: I am thinking since he didn't acknowledge this criteria and has said I met
: the other three, I will use this evidence to strengthen contribution and
: authorship?
: My biggest trouble is how to demonstrate the overall internationally
: outstanding...

avatar
i*h
25
理论上没问题
但实际工作中都是用阈值的
浮点数就是麻烦

【在 p*i 的大作中提到】
: 非牛,来confirm一下
: floating point的数都不能直接跟0比较
: 应该
: const double sigma = 1e-6;
: fabs(a) < sigma

avatar
M*8
26
I have one letter from Europe and listed the 11 countries from where the
citation came. But it seems the IO didn't see it at all.
Bless you as well.



【在 F*********k 的大作中提到】
: "International outstanding"是不是可以通过来自多个国家的 reference letter 和
: citation 来证明,我的材料里列举了引用来自的国家。
: Anyway, 我8/25 eb1b pp 刚刚递出去,和你背景大概类似,也很紧张。
: Best wishes, bro!!

avatar
p*i
27
是啊,说的就是用的时候

【在 i***h 的大作中提到】
: 理论上没问题
: 但实际工作中都是用阈值的
: 浮点数就是麻烦

avatar
w*9
28
bless
avatar
b*8
29
他们家题库就这么大么。。lz的题我一面都做到
我的感觉是他们虽然反应比较慢,但态度很专业,挺喜欢这个公司的,也决定继续接触
avatar
F*k
30
Thank you - I recall my attorney once mentioned in case of RFE it probably
not only need to mention new evidences, but also lists out the existing
evidences that IO might missed.
Bless!!

【在 M***8 的大作中提到】
: I have one letter from Europe and listed the 11 countries from where the
: citation came. But it seems the IO didn't see it at all.
: Bless you as well.
:
: 和

avatar
l*a
31
我是不是也该接触一下呢?

【在 b********8 的大作中提到】
: 他们家题库就这么大么。。lz的题我一面都做到
: 我的感觉是他们虽然反应比较慢,但态度很专业,挺喜欢这个公司的,也决定继续接触

avatar
P*8
32
Bless!
avatar
l*n
33
选了Linkedin,马上要上班了.感觉公司还是比较有活力。先发他家面经是因为好像感兴
趣的朋友较多。phone interview其实也算不上泄密。版上朋友愿意接触的,可以联系
我,虽然我还没搞清他家推荐如何工作。
上个月onsite了4个,两个Dev, 两个test.倒是都拿到了。本人也倾向dev,但是综合考
虑后还是继续做testing的工作。
一般来说,高title的SET要求不多。所以到达一定level后如果还做IC的话,上升的空
间不大。但是也不是绝对的。像我要做的feature,我感觉搭一个好的框架来测试要远比
开发产品本身难得多。做测试也可以接触到更多的技术。
牛人就太不敢当了。本人比较自大,但充其量也只能定义自己为庸人。按照三番版另一
个帖子:
“说了半天原来是household收入,这个西雅图双软工轻轻松松就有了吧。自从去年微软
大规模涨工资以来,公司稍微工作几年的就超过15万了,senior engineer至少17、18
万。这样两个都在微软工作的(只要不懒、不笨)全家收入都不止35万。”
我绝对是超级笨人。不找块豆腐撞死都是在有点厚颜无耻。
楼上对a==0的讨论make sense.

【在 f**e 的大作中提到】
: 同意这个,看lz是面SET,以他对这道题的表现,觉得有点可惜,应该面SE。
: 不过也许SET跟SE的待遇是差不多的,而且现在SET据说特别少也许promotion更
: 快?linkedin今年hiring据说是要double,小team可能升得更快吧。再不过,
: 哎,突然想到lz既然上来发面经了,多半最后没有去L,说上面那些都没用了。
: 不知道牛人最后去了哪。

avatar
b*a
34
如果NIW已批,可走EB1a by DIY.

【在 M***8 的大作中提到】
: 十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
: 十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
: . 也给后来的童鞋做个参考.
: US PHD, postdoc, now working at a large biotech company. 申请了4条,
: -Published materials written by others (>150 citation and work being
: extensively discussed by high level review articles)
: -Publications. (9 articles, 2 first author, 7 in English)
: -Original contribution (9 reference letters, 1 international)
: -Reviewer. (6 reviews)
: (有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)

avatar
r*n
35
这样子啊.....头一次知道
可是没事瞎说有啥目的啊

【在 f**e 的大作中提到】
: 同意这个,看lz是面SET,以他对这道题的表现,觉得有点可惜,应该面SE。
: 不过也许SET跟SE的待遇是差不多的,而且现在SET据说特别少也许promotion更
: 快?linkedin今年hiring据说是要double,小team可能升得更快吧。再不过,
: 哎,突然想到lz既然上来发面经了,多半最后没有去L,说上面那些都没用了。
: 不知道牛人最后去了哪。

avatar
H*7
36
citation 的油灯图是用来证明你的international recognition的。
你虽然提了。但估计是你的组织结构比较乱,IO 不愿意去翻来翻去找。
把你的材料再重新整理一下,用简洁明了的结构,别搞太多小分项。比如你要claim 3
条,就列3条,然后一条一条去用材料去证明。
祝好运!

【在 M***8 的大作中提到】
: HH7, thank you very much for your help.
: I actually provided evidence for "my works being extensively discussed by
: high level review articles" for the "published material by others / media
: report", but it seems the IO did not see it at all.
: I am thinking since he didn't acknowledge this criteria and has said I met
: the other three, I will use this evidence to strengthen contribution and
: authorship?
: My biggest trouble is how to demonstrate the overall internationally
: outstanding...

avatar
h*w
37
mark
avatar
s*t
38
我的情况和你差不多。也是TSC EB1B PP,也是IO1111。
也是scholar, review, contribution过了,total不够international,给了一个NOID。
我还有一个已经开始生产的patent,结果这个io完全无视。给我的noid里面提都没提这
一条。
下个星期就30天了,又偏偏又是长周末,郁闷中。

【在 M***8 的大作中提到】
: 十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
: 十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
: . 也给后来的童鞋做个参考.
: US PHD, postdoc, now working at a large biotech company. 申请了4条,
: -Published materials written by others (>150 citation and work being
: extensively discussed by high level review articles)
: -Publications. (9 articles, 2 first author, 7 in English)
: -Original contribution (9 reference letters, 1 international)
: -Reviewer. (6 reviews)
: (有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)

avatar
p*g
39
I would rather do it myself instead of using a company's attorney.
I know you probably have no choice. But NIOD is not the end, you still have
a good chance to win your case.
avatar
s*x
40
bless
avatar
p*h
41
Bless!
avatar
C*y
42
要集中火力,你claim的太多了,自找麻烦。建议只用
-Publications. (9 articles, 2 first author, 7 in English)
没什么好讲的
-Original contribution (9 reference letters, 1 international)
把第一项内容放这里,要突出贡献是international的。
-Reviewer. (6 reviews)
没有offer letter,就可以直接拒绝的,所以给你你NOID,觉得这个才是没有批准的主
要原因。
avatar
C*y
43
千万不要相信公司的律师!这是血的教训呀。
//Bless 好好回复,希望满大的,你的case已经非常strong了

【在 M***8 的大作中提到】
: 十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
: 十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
: . 也给后来的童鞋做个参考.
: US PHD, postdoc, now working at a large biotech company. 申请了4条,
: -Published materials written by others (>150 citation and work being
: extensively discussed by high level review articles)
: -Publications. (9 articles, 2 first author, 7 in English)
: -Original contribution (9 reference letters, 1 international)
: -Reviewer. (6 reviews)
: (有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)

avatar
v*k
44
推荐人找的中国人太多了吧?或者是在美国的太多?
avatar
M*8
45
Thanks a lot for everybody's blessing. I am full of energy to work on this
now.
I didn't really have a choice about the attorney :(
I had 9 reference, 1 from France, 8 from US.
2 from industry (1 Chinese), 2 journal editors, 5 professors.
Among them 3 are independent.
avatar
M*8
46
bless you as well ...

NOID。

【在 s*******t 的大作中提到】
: 我的情况和你差不多。也是TSC EB1B PP,也是IO1111。
: 也是scholar, review, contribution过了,total不够international,给了一个NOID。
: 我还有一个已经开始生产的patent,结果这个io完全无视。给我的noid里面提都没提这
: 一条。
: 下个星期就30天了,又偏偏又是长周末,郁闷中。

avatar
s*n
47
Strong enough case for EB1B like LZ got the NOID. It seems likely that USCIs
raised the bar of the EB1 (EB1A and EB1B) yet. I am also scared.....
avatar
M*8
48
绿卡批了以后一直也没抽时间写续贴,总觉得欠大家点啥似地。
In the spirit of better late than never,写下我NOID后的经历供后来的同学们参考
8/2011 受到NOID
10/2011, I-140 approval
11/2011, I-485 filing
8/2012, card received
具体操作如下:
PartI,criteria evaluation, 首先感谢他承认我claimed 4 条中的 3 条(把这3条做
实)。没有纠结他不承认published material by others, citation不算这一点,3条
足够了
PartII, overall merit,针对他说我"没有足够证据说明the beneficiary is
recognized internationally,承认的三条, 每一条都够了criteria, 但不够说明
outstanding",我逐条进行了驳斥和加强.
Publications.又找原推荐人之一的一位editor说明他们杂志多了不起,我的工作多好
,多大影响力啥地,其实原推荐信里都有,车轱辘话再说一遍
Reviewer. 又找原推荐人之一的一位editor说明他们杂志多了不起,作他们editor多不
容易,车轱辘话再说一遍
Original contribution,这条说的最多,又加了两推荐信,一新人一旧人,欧洲的,
律师用了“respecfully disagree”,把推荐信里有关国际影响的段落都引出来。我又
做了个油灯图(感谢本版一下),还加上了从上次到这次准备材料的4个月里,引用国
家从十几蹦到了二十几,包括India这样不是Scientific advanced的国家,足以证明
wide spread international recognization
Overall 的感觉是只要针对移民官的问题逐个有理有据的回答,他也就satisfied了。
再次重申,公司的律师不能指望,这次又是我一个人从头忙到尾,他draft的回稿没把
我气个跟头,打电话把他骂了一通。他脾气倒是好,说understand you are very
frustrated, we all want the petition to be the best it could be,, so does he
... ;-)
最后祝愿大家新年里都顺利,心想事成 :)
*******************************************************
发信人: Mag18 (mag), 信区: Immigration
标 题: TSC EB1B PP被NOID 了, 大家给帮帮忙出出主意吧
发信站: BBS 未名空间站 (Sun Aug 28 15:10:32 2011, 美东)
十分伤心郁闷中. NIW 08年9月批的, 实在等不急了,最近用公司的律师递的EB1B PP.
十天后来了NOID. 按新guideline来评审的.大家给帮帮忙出出主意怎样对付吧. 多谢啦
. 也给后来的童鞋做个参考.
US PHD, postdoc, now working at a large biotech company. 申请了4条,
-Published materials written by others (>150 citation and work being
extensively discussed by high level review articles)
-Publications. (9 articles, 2 first author, 7 in English)
-Original contribution (9 reference letters, 1 international)
-Reviewer. (6 reviews)
(有个小travel award 和 a few membership, 怕惹麻烦petition letter没敢提)
IO 的答复很具体,按新guideline来分俩步走.
Part I, criteria evaluation. 不承认published material by others, citation不
算. 似乎没看到 work being discussed by review articles的部分. 承认后三条.
Part II, overall merit evaluation. 说The beneficiary has met at least two
criteria and established the beneficiary meets the minimum eligibility
requirement for this classification. 但是没有足够证据说明the beneficiary is
recognized internationally. 又逐条说承认的三条, 每一条都够了criteria, 但不够
说明 outstanding.
另外还要job offer letter 和 ability to pay. Can not believe 公司律师竟然没交
job offer letter. 这个好说, 交上就是了. ability to pay说提供了evidence
pertaining to its parent company’s finance. 但是 failed to submit any
evidence which establishes its ability to pay the proffered wage.这个具体该
是个什么东西才能证明呢.
公司律师是个大忽悠, 总说strong case没问题. 都NOID了, 还说没问题.不过是在扣新
guideline. 重新组织一下材料再要两推荐信就行了. 可他也说新guideline后他就还没
做过案子. 实在不敢再信他. 拜托大家给出出主意怎样对付吧. 多谢啦.
avatar
M*8
49
up
avatar
f*s
50
这个非常之好!解决了我一个心头大患。
从你这个案例可以很明显看出claim多项根本就没有任何问题,即使RFE中不承认,也可
以不理他,直接奔向partII。

【在 M***8 的大作中提到】
: up
avatar
M*8
51
claim太多也不好吧。我是觉的可以把published material 的证据用于加强original
contribution才把俩合并的。Claim的每一项还是要差不多吧
avatar
L*S
52
gxgx, thanks for sharing
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。