
cygent
11-12 06:33 PM
Is that even if I-140 is not approved (pending), after I-485 is pending for 180 days, one can change jobs using the EAD?
http://www.visalaw.com/05may4/2may405.html
Read about the AC21 analysis - You can change with either H1 or EAD. You can also do so before 180 days, but not without some risk (case by case basis).
http://www.visalaw.com/05may4/2may405.html
Read about the AC21 analysis - You can change with either H1 or EAD. You can also do so before 180 days, but not without some risk (case by case basis).
wallpaper i miss you friendship poems.

suresh_la
11-30 12:10 PM
I have Labor (PERM) and I140 approved from my current employer.
can I apply trasfer and extension with new employer.
Advice is highly appreciated.
can I apply trasfer and extension with new employer.
Advice is highly appreciated.

gcformeornot
01-09 04:03 PM
Is this survey for only "those who lost a job while waiting for GC" or does it include anyone and everyone?
applies to general legal immigrant population.
applies to general legal immigrant population.
2011 i love you best friend poems.

sbabunle
08-23 06:24 PM
I think in 2000 some of the unused visa's are recaptured and allocated.
That would be the reason the numbers are not looking exact in each year
That would be the reason the numbers are not looking exact in each year
more...

gc_check
01-08 10:39 AM
I used standard 2x2. Its mentioned at their website too.
Thanks for quick response.
Thanks for quick response.

logiclife
01-05 05:08 PM
As of late this morning have exceeded $6000. Its a start and we need to involve more people who are affected by retrogression.
logiclife.
logiclife.
more...

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
}
})
2010 i love you friend poems. i

maddipati1
02-03 02:27 PM
thank you veni, that is very informative and solid reference.
looks like under 'advanced degree' category, just having a US Masters or foreign equivalent (4+2) is enough. lot of people are under the impression, its MS+3yrs. but the description in USCIS link states just an advanced degree (higher than baccalaureate) is enough. am i reading this right?
BS+5years is equivalent to having an Advanced degree.
But, I think its BS+5yrs, not BS Equivalent + 5 yrs.
I think it can be, but when the job requirement Bachelor Equivalent+ 5Year then it opens up for a wide range.
You can show BS equivalence by 3 yr degree+1 yr degree or 3yr degree + 2 yr degree.....etc
For additional info Please click here (http://www.uscis.gov/portal/site/uscis/menuitem.eb1d4c2a3e5b9ac89243c6a7543f6d1a/?vgnextoid=816a83453d4a3210VgnVCM100000b92ca60aRCR D&vgnextchannel=816a83453d4a3210VgnVCM100000b92ca60a RCRD) or here (http://www.murthy.com/eb2.html)
looks like under 'advanced degree' category, just having a US Masters or foreign equivalent (4+2) is enough. lot of people are under the impression, its MS+3yrs. but the description in USCIS link states just an advanced degree (higher than baccalaureate) is enough. am i reading this right?
BS+5years is equivalent to having an Advanced degree.
But, I think its BS+5yrs, not BS Equivalent + 5 yrs.
I think it can be, but when the job requirement Bachelor Equivalent+ 5Year then it opens up for a wide range.
You can show BS equivalence by 3 yr degree+1 yr degree or 3yr degree + 2 yr degree.....etc
For additional info Please click here (http://www.uscis.gov/portal/site/uscis/menuitem.eb1d4c2a3e5b9ac89243c6a7543f6d1a/?vgnextoid=816a83453d4a3210VgnVCM100000b92ca60aRCR D&vgnextchannel=816a83453d4a3210VgnVCM100000b92ca60a RCRD) or here (http://www.murthy.com/eb2.html)
more...

rsayed
07-08 01:56 PM
Thanks a lot for posting!
Please post the URL, always, if I may add.
http://www.immigration-law.com/
It's right on the home page.
Please post the URL, always, if I may add.
http://www.immigration-law.com/
It's right on the home page.
hair i love you best friend poems

zCool
04-01 02:27 PM
Yes, at the time of adjudication, you will need employment varification letter that shows Permenent Full time job with same or similar duties and reasonable wage difference.
more...

srikondoji
06-28 04:18 PM
What is your nationality?
I know for sure that you can't be Indian?:eek:
--sri
Yeh....1947. Sorry about that.....
I know for sure that you can't be Indian?:eek:
--sri
Yeh....1947. Sorry about that.....
hot funny est friend poems. cute

gcpool
08-23 12:02 PM
in EB3, EB2 and EB1
more...
house why i love poems includes

NikNikon
May 23rd, 2005, 08:36 AM
The first one is definitely my fav, the only critique I have is it looks like the polarizer needed rotated so the darkened portion of sky would been horizontal instead angled.
tattoo poems for my est friend. est

paskal
12-26 01:27 AM
so that it's seen in the morning :)
/\/\/\/\/\/\/\/\
/\/\/\/\/\/\/\/\
more...
pictures est friend. i love you

53885
05-12 03:35 AM
Sent 300 emails from AILA's website.
dresses i love you est friend quotes.

srarao
07-21 09:20 PM
Hi all,
In this forums only I saw some guys getting RFE's that is why I opened in this thread.
In this forums only I saw some guys getting RFE's that is why I opened in this thread.
more...
makeup girlfriend i love you best

amitjoey
07-13 05:24 PM
That means you have no reputation at all :D :D :D .. kidding.
I think all that means is that no one has given you any reputation point yet.
Man, this is so funny, Somebody give me some good or atleast some bad reputation :D :D :D :D
I think all that means is that no one has given you any reputation point yet.
Man, this is so funny, Somebody give me some good or atleast some bad reputation :D :D :D :D
girlfriend poems for est friends. i love

nlssubbu
08-01 12:55 AM
Better check with your lawyer. Becuase when you apply for 485 and get approved your wife's H4 status becomes illegal. So don't know exactly about H1 or H4 on advanced parole. Lawyer is the best person for your case.
How come mearly applying for 485 made his wife's H4 status become illegal? She can apply for AP whenever she want to and can apply for EAD as well. Only use of EAD will made her H1/H4 status invalidated.
Thanks
How come mearly applying for 485 made his wife's H4 status become illegal? She can apply for AP whenever she want to and can apply for EAD as well. Only use of EAD will made her H1/H4 status invalidated.
Thanks
hairstyles hairstyles cute i love you

kevinkris
04-21 01:53 PM
Hi greeta,
I am not sure about time frame for GC but FREEDOM is more important for me. The market is not good, if you loose the job in L1 then you have to leave
to your home country and cannot transfer your visa. If it's H1 you can always do that.
If at all there is a difference in processing times for GC for L1, i don't see any drastic difference. Instead of 6 years it may be 5 years (6 years for GC? Are you kidding me?). No big deal.
Good luck.
Rgds,
Kris
Hi,
I am working in US on L1 and my company would start my green card filling in next few months.
I also have valid H1B pettion stamped and can switch to H1B which would mean that I can work freely here at US.
But many of my friends told me that green card processing is faster on L1.
I am not able to make decision whether I should continue working on L1 or change my status to H1 to get better hike and more opportunity.
Pls can anyone tell me which would be wise choice. Is green card processing for L1 visa is faster?
Thanks in advance.
~Greeta
I am not sure about time frame for GC but FREEDOM is more important for me. The market is not good, if you loose the job in L1 then you have to leave
to your home country and cannot transfer your visa. If it's H1 you can always do that.
If at all there is a difference in processing times for GC for L1, i don't see any drastic difference. Instead of 6 years it may be 5 years (6 years for GC? Are you kidding me?). No big deal.
Good luck.
Rgds,
Kris
Hi,
I am working in US on L1 and my company would start my green card filling in next few months.
I also have valid H1B pettion stamped and can switch to H1B which would mean that I can work freely here at US.
But many of my friends told me that green card processing is faster on L1.
I am not able to make decision whether I should continue working on L1 or change my status to H1 to get better hike and more opportunity.
Pls can anyone tell me which would be wise choice. Is green card processing for L1 visa is faster?
Thanks in advance.
~Greeta
bigboy007
04-09 03:07 PM
I think too that you in ok shape , I dont see a reason why ppl are against Labor certs not that i have one its legal at time. as Karthik mentioned good to keep all paychecks.
I think you are in good shape to use AC21. Just make sure that you have the paystubs for the first 180 days after filing the I485 application in your present company if in case you get a RFE. That is one of the easy proof that you worked in company A for 180 days after fileing I-485.
I think you are in good shape to use AC21. Just make sure that you have the paystubs for the first 180 days after filing the I485 application in your present company if in case you get a RFE. That is one of the easy proof that you worked in company A for 180 days after fileing I-485.
sapota
01-02 02:51 PM
One of my friends with a Phd in EE had to do something similar at Chennai consulate and had to wait for like a month. I guess Phd + research might trigger such paranoia among Visa officers.
No comments:
Post a Comment