kumargn
11-24 05:23 PM
you can use any of the consulates in india.
but usually dates opens up if any cancellation. check vfs site often. nowadays it is easier to get appt than it used to be.
disclaimer: I'm not an immigration attroney, so consult one for your situations as laws/procedures are changing often.
Thanks arnet ,
As you mentioned i kept checking the chennai consulate, and it opened up like a blessing in disguise, with slots again and i was able to get my dates .Only problem was it forced me to cancel my earlier appointment and redo all the application again .That was because i had booked an appointment with Mumbai consulate in distress of not finding any with chennai .
but usually dates opens up if any cancellation. check vfs site often. nowadays it is easier to get appt than it used to be.
disclaimer: I'm not an immigration attroney, so consult one for your situations as laws/procedures are changing often.
Thanks arnet ,
As you mentioned i kept checking the chennai consulate, and it opened up like a blessing in disguise, with slots again and i was able to get my dates .Only problem was it forced me to cancel my earlier appointment and redo all the application again .That was because i had booked an appointment with Mumbai consulate in distress of not finding any with chennai .
wallpaper ~Amory Lovins
Green.Tech
09-16 03:37 PM
Will call the rest during my next break :)
Thanks abqguy!
Thanks abqguy!
phillyag
07-20 02:01 PM
Can someone advise on this. My 6 yrs of H1 expires in Jan 2008. Employer says they will only apply 90 days prior to H1-b expiration.
They already applied my 485 and AP.
What should I be doing?
1. Can I apply EAD myself?
2. will I get in trouble if I do not have EAD and my H1 expires?
3. Can I move to new employer using AC21 without EAD?
They already applied my 485 and AP.
What should I be doing?
1. Can I apply EAD myself?
2. will I get in trouble if I do not have EAD and my H1 expires?
3. Can I move to new employer using AC21 without EAD?
2011 me was by Amory Lovins,
dbevis
December 5th, 2003, 11:13 PM
Could you put a link up to that plug in? I really like that.
I was playing around with it again tonight - I posted a couple more examples in the gallery area, under "landscapes".
This is not a plugin, persay. It's a PaintShop Pro script - not PhotoShop. Here's what the script does:
Split to RGB, discard G & B
"Clarify" (twice) at a high value to deepen the contrast range.
Adjusts the luminance channel to further enhance contrast.
Colorizes the image with a hue value of 160 and saturation a low setting of 20 to slightly shift grays towards blues.
I then added the original full-color image in as a layer and merged the two with partial opacity in (I think) "hue" mode.
The Clarify operation gives it an "old" look by accentuating and muddling the contrast. The lumininance adjustment makes the overall appearance more 'harsh'. The shift towards blue tends to simulate a bit of fading (like an old snaphot, I guess).
The painting-like effect comes from merging in the colors from the original.
Here's the actual script file (it's in the "Python" programming language):
--------------------------------------
from JascApp import *
def ScriptProperties():
return {
'Author': '',
'Copyright': '',
'Description': '',
'Host': 'Paint Shop Pro',
'Host Version': '8.00'
}
def Do(Environment):
App.Do( Environment, 'SplitToRGB', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'FileClose', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'FileClose', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Clarify', {
'Strength': 4,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Clarify', {
'Strength': 4,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'HistogramAdjustment', {
'LuminanceChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 245,
'HighClipLimitPercentage': 0.01,
'LowClipLimit': 2,
'LowClipLimitPercentage': 0.01,
'MaxOutput': 255,
'MinOutput': 0
},
'RedChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'GreenChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'BlueChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'TargetChannel': 0,
'OverlayResultHistogram': App.Constants.Boolean.true,
'HistogramEditMode': App.Constants.HistogramEditMode.Luminance,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'IncreaseColorsTo16Million', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Colorize', {
'Hue': 160,
'Saturation': 20,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
I was playing around with it again tonight - I posted a couple more examples in the gallery area, under "landscapes".
This is not a plugin, persay. It's a PaintShop Pro script - not PhotoShop. Here's what the script does:
Split to RGB, discard G & B
"Clarify" (twice) at a high value to deepen the contrast range.
Adjusts the luminance channel to further enhance contrast.
Colorizes the image with a hue value of 160 and saturation a low setting of 20 to slightly shift grays towards blues.
I then added the original full-color image in as a layer and merged the two with partial opacity in (I think) "hue" mode.
The Clarify operation gives it an "old" look by accentuating and muddling the contrast. The lumininance adjustment makes the overall appearance more 'harsh'. The shift towards blue tends to simulate a bit of fading (like an old snaphot, I guess).
The painting-like effect comes from merging in the colors from the original.
Here's the actual script file (it's in the "Python" programming language):
--------------------------------------
from JascApp import *
def ScriptProperties():
return {
'Author': '',
'Copyright': '',
'Description': '',
'Host': 'Paint Shop Pro',
'Host Version': '8.00'
}
def Do(Environment):
App.Do( Environment, 'SplitToRGB', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'FileClose', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'FileClose', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Clarify', {
'Strength': 4,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Clarify', {
'Strength': 4,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'HistogramAdjustment', {
'LuminanceChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 245,
'HighClipLimitPercentage': 0.01,
'LowClipLimit': 2,
'LowClipLimitPercentage': 0.01,
'MaxOutput': 255,
'MinOutput': 0
},
'RedChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'GreenChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'BlueChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'TargetChannel': 0,
'OverlayResultHistogram': App.Constants.Boolean.true,
'HistogramEditMode': App.Constants.HistogramEditMode.Luminance,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'IncreaseColorsTo16Million', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Colorize', {
'Hue': 160,
'Saturation': 20,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
more...
gc_chahiye
02-10 06:24 PM
Weigh in with % raise and take decision. If its around 15%-20% raise with
good benefits etc then move..
cheers
Iad
the spouse is the primary applicant. The OP is dependent/secondary applicant
OP can take even a 3000% raise, change jobs to a completely unrelated field, do whatever he/she wants to do, whenever he/she wants to.
good benefits etc then move..
cheers
Iad
the spouse is the primary applicant. The OP is dependent/secondary applicant
OP can take even a 3000% raise, change jobs to a completely unrelated field, do whatever he/she wants to do, whenever he/she wants to.
sprash
10-15 06:00 PM
My lawyer strongly suggests not to leave US unless you have your AP in hand or a valid visa stamped.
more...
matreen
09-05 05:40 PM
Please don't give incorrect answers.
All three corporation types (C-Corp, S-Corp, and LLC) have limited liability to its shareholders.
The main difference in these corp types are
1. How much record keeping is done
2. The way taxes are computed and filed with IRS
3. The kind of expenses allowed to deduct
4. C-Corp and LLC can carryover profits to next year(s), but S-Corp has to pass on profit (or loss) to the shareholders at the end of every calendar year.
For S-Corp, the shareholders must be Permanent Resident or US Citizen.
I have corporation of my own and this is C-Corp (due to kind of expenses I can deduct and/or write-off). I did all the incorporation work myself without any help from CPA. Incorporation is pretty straight forward and very easy. There are good books in Nolo Press on Corporate Incorporation.
____________________________________
Proud Indian American and Legal Immigrant
Thanks, nice reply.
Question: I am on EAD and inovked AC21 and working with new employer. I am planning to register a company confused which one to go with LLC or C Corp., by the way I live in California, San Jose. I heard that if you register a LLC in California every year you have to around $800 tax fee, weather you do a business or not, is it true?
If I go with C-Corp, shall I liable to $800 as well, any ideas??
What is the deference between LLC and C-Corp? I know every state has deferent laws but I would appreciate if someone can answer my questions from California state.
Thanks in advance.
All three corporation types (C-Corp, S-Corp, and LLC) have limited liability to its shareholders.
The main difference in these corp types are
1. How much record keeping is done
2. The way taxes are computed and filed with IRS
3. The kind of expenses allowed to deduct
4. C-Corp and LLC can carryover profits to next year(s), but S-Corp has to pass on profit (or loss) to the shareholders at the end of every calendar year.
For S-Corp, the shareholders must be Permanent Resident or US Citizen.
I have corporation of my own and this is C-Corp (due to kind of expenses I can deduct and/or write-off). I did all the incorporation work myself without any help from CPA. Incorporation is pretty straight forward and very easy. There are good books in Nolo Press on Corporate Incorporation.
____________________________________
Proud Indian American and Legal Immigrant
Thanks, nice reply.
Question: I am on EAD and inovked AC21 and working with new employer. I am planning to register a company confused which one to go with LLC or C Corp., by the way I live in California, San Jose. I heard that if you register a LLC in California every year you have to around $800 tax fee, weather you do a business or not, is it true?
If I go with C-Corp, shall I liable to $800 as well, any ideas??
What is the deference between LLC and C-Corp? I know every state has deferent laws but I would appreciate if someone can answer my questions from California state.
Thanks in advance.
2010 Paul Hawken, Amory Lovins,
sandy_anand
10-25 10:56 PM
Will USCIS release updated Pending I-485 numbers as published that they will do every quarter....
To whom is the question directed? :confused:
To whom is the question directed? :confused:
more...
meridiani.planum
02-28 03:46 PM
Can anybody please help in answering below questions on my case? I really appreciate your help. This is urgent for me.
#1: I am working for Company A (current company). My GC processing details (with current company):
1. Labor Approved.
2. I-140 Approved with priority date of Aug 2006 (Category -EB2)
3. I-485 - NOT filed
#2: I am on 6th year of H1-B. My current H1-B is valid till Jan 29, 2011 (less than 365 days from today).
I want to change job and join Company B (new company) for excellent offer and life long stability.
As per my understanding, for continuous H1-B extension & GC approval on existing priority date, I must stay with existing company(A). But attorney of new company(B) is saying he will be able to handle my H1-B extension and may be able to save my priority date also by filing new PERM & I-140. I am not sure whether attorney of new company(B) is correct or not. Can anybody please help in answering below questions?
Ques : If new company(B) transfers H1-B and USCIS will grant H1-B for 3 years based on approved I-140 with current company(A):
A. Can USCIS revokes extended period ( after Jan 29, 2011) if current company(A) revokes their approved I-140 before new company(B) gets approval of new PERM and I-140?
B. Can new company (B) start new PERM application during my extension period (after Jan 29, 2011)?
C. Can new company (B) transfer Priority date even if existing company(A) revokes their I-140?
A. The validity of the extended H1 if the underlying I-140 is revoked is also more or less ok: almost all lawyers say a revoke does not matter (even lawyers from a couple of the top immigration law firms in the country that I had spoken when I was in that same boat a couple of years ago) . Some say because regulations are unclear, the USCIS could in theory decide suddenly that the H1 is not valid, but even they have never heard of this really happening. They say the law leaves a possiblity of this open by being unclear.
B. yes, new company can start another PERM
C. yes, new company can transfer PD even if the I-140 Is revoked. The USCIS has thus far taken a position that PD porting is not possible only if the I-140 was revoked by USCIS because of fraud by the previous employer. 'Normal' revoking has not made a difference.
#1: I am working for Company A (current company). My GC processing details (with current company):
1. Labor Approved.
2. I-140 Approved with priority date of Aug 2006 (Category -EB2)
3. I-485 - NOT filed
#2: I am on 6th year of H1-B. My current H1-B is valid till Jan 29, 2011 (less than 365 days from today).
I want to change job and join Company B (new company) for excellent offer and life long stability.
As per my understanding, for continuous H1-B extension & GC approval on existing priority date, I must stay with existing company(A). But attorney of new company(B) is saying he will be able to handle my H1-B extension and may be able to save my priority date also by filing new PERM & I-140. I am not sure whether attorney of new company(B) is correct or not. Can anybody please help in answering below questions?
Ques : If new company(B) transfers H1-B and USCIS will grant H1-B for 3 years based on approved I-140 with current company(A):
A. Can USCIS revokes extended period ( after Jan 29, 2011) if current company(A) revokes their approved I-140 before new company(B) gets approval of new PERM and I-140?
B. Can new company (B) start new PERM application during my extension period (after Jan 29, 2011)?
C. Can new company (B) transfer Priority date even if existing company(A) revokes their I-140?
A. The validity of the extended H1 if the underlying I-140 is revoked is also more or less ok: almost all lawyers say a revoke does not matter (even lawyers from a couple of the top immigration law firms in the country that I had spoken when I was in that same boat a couple of years ago) . Some say because regulations are unclear, the USCIS could in theory decide suddenly that the H1 is not valid, but even they have never heard of this really happening. They say the law leaves a possiblity of this open by being unclear.
B. yes, new company can start another PERM
C. yes, new company can transfer PD even if the I-140 Is revoked. The USCIS has thus far taken a position that PD porting is not possible only if the I-140 was revoked by USCIS because of fraud by the previous employer. 'Normal' revoking has not made a difference.
hair Amory Lovins and others:
ames
03-05 02:22 PM
ames, post your picture in your own thread with a title for it under the Just Draw Yourself sectoin of the forums HERE (http://www.kirupa.com/forum/forumdisplay.php?f=152).
This thread is for the list of entries and to notify big K of your entry if it's not added to the list of entries within 24 hours.
Nice Job by the way.
Hello and thanks for letting me know Lord Rahl. Sorry about that - I am just new here. I posted my own thread for it to hopefully be entered. And thank you for your compliment! I also like your self portrait drawing! I like to sketch with pen and ink or pencil myself. I have seen some great entries so far! :)
This thread is for the list of entries and to notify big K of your entry if it's not added to the list of entries within 24 hours.
Nice Job by the way.
Hello and thanks for letting me know Lord Rahl. Sorry about that - I am just new here. I posted my own thread for it to hopefully be entered. And thank you for your compliment! I also like your self portrait drawing! I like to sketch with pen and ink or pencil myself. I have seen some great entries so far! :)
more...
kartikiran
11-09 04:07 PM
Hey Krish2005, I see that you have a long wait before getting green card. I am not sure whether killing time by posting these would help you...:rolleyes:
Anyway, to answer your thoughts, it might be informative on a more relevant science based forum than an immigration forum.
Trying to see how it is relevant here?...:confused:
Maybe some of us might be aware on the importance of umbilical chord and cord blood. They are life savers as they contain stem cells which can be used to treat hematopoietic and genetic disorders.
Let me tie this to an important activity that happens in southern part of india (maybe its prevalent too in entire india - not sure though).
Whenever a baby is born, the umbilical chord is cut and a clip is put up in the baby's navel end with the umbilical chord part extending out. In a matter of few days the external portion will heal and fall off.
This is then taken to a goldsmith who in turn stuffs this into a small golden (or silver depending upon one's capacity) and seals them air tight (mind this air tight) using fire. this is then tied along with a thread and is generally worn around the hips of babies.
Maybe our ancestors knew that this part of tissue might help in healing some disorders for the babies. Who knows better than them. Many of us indians would have worn this without much aware of its importance.
Hope that I have submitted a informative post here.
Anyway, to answer your thoughts, it might be informative on a more relevant science based forum than an immigration forum.
Trying to see how it is relevant here?...:confused:
Maybe some of us might be aware on the importance of umbilical chord and cord blood. They are life savers as they contain stem cells which can be used to treat hematopoietic and genetic disorders.
Let me tie this to an important activity that happens in southern part of india (maybe its prevalent too in entire india - not sure though).
Whenever a baby is born, the umbilical chord is cut and a clip is put up in the baby's navel end with the umbilical chord part extending out. In a matter of few days the external portion will heal and fall off.
This is then taken to a goldsmith who in turn stuffs this into a small golden (or silver depending upon one's capacity) and seals them air tight (mind this air tight) using fire. this is then tied along with a thread and is generally worn around the hips of babies.
Maybe our ancestors knew that this part of tissue might help in healing some disorders for the babies. Who knows better than them. Many of us indians would have worn this without much aware of its importance.
Hope that I have submitted a informative post here.
hot Amory Lovins and L. Hunter
piyu7444
04-01 02:32 PM
What was your exact PD (Day?) Nov 21 2006
2. Which service center did you file with? Texas
3. What day did you file in July? Are you in any special category with EB2 like NIW? No special category and I filed on Jul 1 and my application reached USCIS on Jul 2
4. What is your country of chargeability? Are you cross chargeable to any other country? India and no crosscharge.........
Hope this helps..
2. Which service center did you file with? Texas
3. What day did you file in July? Are you in any special category with EB2 like NIW? No special category and I filed on Jul 1 and my application reached USCIS on Jul 2
4. What is your country of chargeability? Are you cross chargeable to any other country? India and no crosscharge.........
Hope this helps..
more...
house This is R-House, a recently
keerthi
07-14 01:04 AM
Hello Ruben,
Can you help me out on the visa? My employer had sent you an email last week to aruben@srrlaw.us with the subject name "Keerthi Shankar".
Earnestly waiting for your reply.
Thanks.
Can you help me out on the visa? My employer had sent you an email last week to aruben@srrlaw.us with the subject name "Keerthi Shankar".
Earnestly waiting for your reply.
Thanks.
tattoo Aspen led by Amory Lovins,
cgs
11-21 09:19 AM
just sent a mail to cbs.
more...
pictures The Lovins study was courteous
starving_dog
06-13 01:17 PM
Was that 2007 you were referring to?
dresses Dr. Amory B. Lovins auf der
jediknight
09-17 01:28 AM
Thanks to everyone who signed the petition.
I believe in freedom of speech but Dobbs is using the CNN platform to spew hate. A legitimate debate is fine but hate speech is not ok.
I used to believe that ignore him was the best way to deal with him but after seeing some of the so called Tax parties, I am starting to think that ignoring him does not work.
Please also post this to other web forums, facebook, twitter and send emails to your friends and colleagues asking them to sign the petition.
- JK
I believe in freedom of speech but Dobbs is using the CNN platform to spew hate. A legitimate debate is fine but hate speech is not ok.
I used to believe that ignore him was the best way to deal with him but after seeing some of the so called Tax parties, I am starting to think that ignoring him does not work.
Please also post this to other web forums, facebook, twitter and send emails to your friends and colleagues asking them to sign the petition.
- JK
more...
makeup Amory Lovins#39; House (美国
dilbert_cal
04-27 12:37 PM
for_gc
PDs are typically recaptured at I-140 stage. Since your EB2 140 is already approved, you cannot use this process.
But I believe there is another state at which you can recapture PD. i.e. @485 stage. You would need to talk to your lawyer - or search for it in immigration forums. If say EB2 dates are current for your EB3 PD , you can file 485 and with that application itself submit the EB3 140 approval AND ask for PD transfer. One of our lawyers had once commented you can port PD at either 140 or 485 stage - we never followed up on the 485 part as we all wanted to keep it safe and at 140 stage. Check with your lawyer and you still have a good chance.
PDs are typically recaptured at I-140 stage. Since your EB2 140 is already approved, you cannot use this process.
But I believe there is another state at which you can recapture PD. i.e. @485 stage. You would need to talk to your lawyer - or search for it in immigration forums. If say EB2 dates are current for your EB3 PD , you can file 485 and with that application itself submit the EB3 140 approval AND ask for PD transfer. One of our lawyers had once commented you can port PD at either 140 or 485 stage - we never followed up on the 485 part as we all wanted to keep it safe and at 140 stage. Check with your lawyer and you still have a good chance.
girlfriend Free gimme some lovinsheet
iv_only_hope
02-17 10:10 AM
Well, no other sites have posted this. Murthy, AILA etc. so its difficult establishing credibility. Also, dont you find it strange that he says EB3 India wont move? It has been at 2001 since long time (excluding anomalies). If that wont move this year when will it move. Are there so many eb3s ? especially with ppl porting to eb2s?
hairstyles Although Lovins#39; house is high
eb3_nepa
04-16 11:21 PM
Dont the bill have to be placed in federal register after the Prez signs it, for 90 days for it to be law? I remember so from the PERM regulation timeline.
Do you have any kind of documentation or a Link for this by any chance?
Do you have any kind of documentation or a Link for this by any chance?
jonty_11
08-03 05:19 PM
Any answers to this questions ?
I hate to say this...but if u are not on honest talking terms with ur employer...then u r not really in EB category.....
I hate to say this...but if u are not on honest talking terms with ur employer...then u r not really in EB category.....
yabadaba
06-25 02:32 PM
ask the lawyer what he was thinking
No comments:
Post a Comment