desi3933
02-26 06:04 PM
Original LCA salary is like 58k and current one is 40k
Odd are that you are out of status and this may prevent you seeking another change of status.
Please consult your attorney.
_________________
Not a legal advice.
Odd are that you are out of status and this may prevent you seeking another change of status.
Please consult your attorney.
_________________
Not a legal advice.
wallpaper So how does Mariah Carey,
mudigondag
05-27 12:56 PM
Does anyone know how many days prior to expiration of EAD, we can file for extension?
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
}
})
2011 Mariah Carey Pregnant with
va2000
10-10 09:30 AM
My lawyer told me that using EAD will not effected H4 status . It is good to get extensions on H4 along with H1 even you use your EAD to be safer side if some thing wrong with 485
more...
neodyn55
07-30 11:45 PM
If you don't know the answer, please don't reply. Just because this person asked about getting GC through his/ her baby, it does not mean the person is here illegally or if even this person is in the US. I friend of mine died in an accident in Mumbai and he is survived by his wife and two kids (the kids were born here in the US). His wife asked me the same question and after asking my lawyer, I had to tell her that there is no way she can apply for GC through her children unless her children turn 21.
Oh don't be such a sourpuss. This is an internet forum, and the last I checked, there was no forum rule stating replies had to be relevant, to the point, and incredibly boring. What are you, a Hitler wannabe? No one's holding a gun to your head and forcing you to read the replies anyway. If it's that important, then the OP should ask a lawyer instead of posting in a free internet forum.
Lighten up.
Oh don't be such a sourpuss. This is an internet forum, and the last I checked, there was no forum rule stating replies had to be relevant, to the point, and incredibly boring. What are you, a Hitler wannabe? No one's holding a gun to your head and forcing you to read the replies anyway. If it's that important, then the OP should ask a lawyer instead of posting in a free internet forum.
Lighten up.
ivar
02-07 09:41 AM
Congratulations Ivar.
Thank you, Pappu, tonyHK12, amitjoey, tushbush, gk_2000, manish1905, larun, extra_mint.
Thank you, Pappu, tonyHK12, amitjoey, tushbush, gk_2000, manish1905, larun, extra_mint.
more...
cjagtap
08-21 11:16 AM
throw a party now,we will definitely be there..
2010 Mariah Carey, who suffered a
lazycis
05-01 12:52 PM
If I-485 is still pending, you can try to use AC21 and port old I-140 to new employer. Nothing to lose, a lot to gain if it works out. AC21 is not clearly defined and it's not codified in regulations so you have a good chance to prevail. The only problem I see is that the old employer no longer exists. Termination of the employer's business is one of the reasons for automatic revocation of I-140 (see 8 CFR 205.1(a)(iii)(D)). However if old employer was simply merged into another company, you can argue that business was not terminated.
more...
GCwaitforever
08-17 08:58 AM
I would not advise people to move to UK without a job offer either. I read in the documents that the VISA is granted for 2 years.
hair Singer, Mariah Carey, Life,
eb3retro
06-17 05:51 AM
Years and years of waiting? no kidding. Look at my priority date. And there are people waiting before me. You used a pre-approved labor and have been waiting in the GC queue from what 2006? Dude, in today's world, a reasonable wait for eb3-is anywhere between 10-15 years and eb2 is atleast 5-6 years. I am not mad that you used a pre-approved labor, though in my personal opinion, its a taboo. I am just saying you are lucky enough that you may get your green card much quickly than people like us who have been waiting atleast 8-10 years and trust me, people like your case, usually should be happy.
Well, I understand that. But, when the stars line up finally, I don't want to see my application having problems because I used a pre-approved labor.
it would be encouraging to hear from folks who got their GC and used pre-approved labor. Years and years of wait should yield something, and just not plain disappointment.
Well, I understand that. But, when the stars line up finally, I don't want to see my application having problems because I used a pre-approved labor.
it would be encouraging to hear from folks who got their GC and used pre-approved labor. Years and years of wait should yield something, and just not plain disappointment.
more...
waitingnwaiting
11-29 02:43 PM
Any news on this?Will they give EAD?
Please ask the lawyer who said that and let us know if this is happening.
Please ask the lawyer who said that and let us know if this is happening.
hot The diva who is pregnant with
illinois_alum
05-27 09:35 PM
See answers in Blue below
Can you please help, if there are some instructions handy. I am having difficulty for following fields
1. Manner of Last Entry : I think it should be PAR:PAROLEE YES. I USED SAME FOR MY WIFE
2. Current Immigration Status : Again think should be PAR:PAROLEE YES
3. There is a field where it asks for previous EAD's. I am not sure of the date when i applied last time, what date i should put, the date from which EAD is valid ?
I take this has to be the date of application. We didn't remember the exact application date for one of the EADs - we entered an approximate Date
4. Also i have applied for EAD twice, do we need to put the information for both of them. The information is not required...but its better to enter it
5. Other Names/Aliases : I think it should be 'None' in my case as i never had any other name, am i right or should it be left blank.
6. for Eligibility status i think the value should be : (c)(9) FILED I-485 YES
I am in EB2, pririty date Aug 2006. last entry to US Jan 2010 using Advance Parole.
Thanks and appreciate your help.
Can you please help, if there are some instructions handy. I am having difficulty for following fields
1. Manner of Last Entry : I think it should be PAR:PAROLEE YES. I USED SAME FOR MY WIFE
2. Current Immigration Status : Again think should be PAR:PAROLEE YES
3. There is a field where it asks for previous EAD's. I am not sure of the date when i applied last time, what date i should put, the date from which EAD is valid ?
I take this has to be the date of application. We didn't remember the exact application date for one of the EADs - we entered an approximate Date
4. Also i have applied for EAD twice, do we need to put the information for both of them. The information is not required...but its better to enter it
5. Other Names/Aliases : I think it should be 'None' in my case as i never had any other name, am i right or should it be left blank.
6. for Eligibility status i think the value should be : (c)(9) FILED I-485 YES
I am in EB2, pririty date Aug 2006. last entry to US Jan 2010 using Advance Parole.
Thanks and appreciate your help.
more...
house mariah carey cover life and
ursosweet
10-02 08:55 PM
so when is a visa no. allocated?
say, i filed in july when visa bulletin was current and now its retrogressed to 2004. my PD is 2006. so can it happen that if all runs smooth and application is complted, i can get my GC, even tough visa bulletin may not have yet cut past my PD? so in a nut shell, visa no. is given when 485 is recipted or when its approved?
say, i filed in july when visa bulletin was current and now its retrogressed to 2004. my PD is 2006. so can it happen that if all runs smooth and application is complted, i can get my GC, even tough visa bulletin may not have yet cut past my PD? so in a nut shell, visa no. is given when 485 is recipted or when its approved?
tattoo Mariah Carey Pregnant With
calif
12-07 04:16 PM
* * *
more...
pictures Mariah Carey is dealing with
raju123
05-15 10:45 AM
^^^^^ Please vote here
Only 215 votes for EB2 India?
Assuming an equal number for EB3 India, EB2 China, and EB3 China, we have a total of 856 people who have applied for PD?
We have more than 8000 members, so are we to assume the 7000 and odd members are ROW?
Something doesn't add up.
Can ROW people please have a poll for yourselves?
Only 215 votes for EB2 India?
Assuming an equal number for EB3 India, EB2 China, and EB3 China, we have a total of 856 people who have applied for PD?
We have more than 8000 members, so are we to assume the 7000 and odd members are ROW?
Something doesn't add up.
Can ROW people please have a poll for yourselves?
dresses Mariah#39;s babies daddy recently
gjoe
10-05 11:07 AM
Are you a lawyer? :)
Lawsuit was done few years ago by Rajiv Khanna. Its big business for the lawyers. End result: nothing. So if you want to throw your money to the lawyers, be my guest.
God helps those who help themselves and not to those who throw money to the lawyers. If you want to help yourself, then help IV.
If we have a strong case we won't end up in monetory loses. BTW USCIS has plenty of money now to pay with all those new fees they collected for the applications.
Lawyers will charge money for their service, but finding a good lawyer is what we have to do.
PS: Pardon my typos and spellings
Lawsuit was done few years ago by Rajiv Khanna. Its big business for the lawyers. End result: nothing. So if you want to throw your money to the lawyers, be my guest.
God helps those who help themselves and not to those who throw money to the lawyers. If you want to help yourself, then help IV.
If we have a strong case we won't end up in monetory loses. BTW USCIS has plenty of money now to pay with all those new fees they collected for the applications.
Lawyers will charge money for their service, but finding a good lawyer is what we have to do.
PS: Pardon my typos and spellings
more...
makeup is mariah carey pregnant
invincibleasian
01-31 03:18 PM
As per the law, your H1B will still be valid even in if I-140 is revoked. However, the only flip side is one will lose the old priority date.
For sure, this is exactly outlined in the law. I have known some cases who are working successfully and legally on H1Bs even after their I-140s revoked (by the way one of them is in 8th year of H1B)
Im 100% sure about what i said. For better clarification, one can contact murthy.com or rajiv.s.khanna
You cannot lose priority date after i140 is approved unless revoked for fraud!
For sure, this is exactly outlined in the law. I have known some cases who are working successfully and legally on H1Bs even after their I-140s revoked (by the way one of them is in 8th year of H1B)
Im 100% sure about what i said. For better clarification, one can contact murthy.com or rajiv.s.khanna
You cannot lose priority date after i140 is approved unless revoked for fraud!
girlfriend Despite being pregnant with
vin13
09-30 02:57 PM
i just called USCIS to find out when i would be recieving the mail...a very nice lady told me that it is taking 30 days for us to get the mail. Even though they say they have mailed.
She said one more thing which I am not sure how far I would beileve....she said:
"It does not matter what the visa bulletein dates show as you have already filed the applications..so all you need to look at is Processing dates."
i asked her then even if the visa bulletein dates are not current for my case then do we have any chance of getting the gc...she said yes...if yours come under the processing dates.
I am not sure what to make of this.....
She said one more thing which I am not sure how far I would beileve....she said:
"It does not matter what the visa bulletein dates show as you have already filed the applications..so all you need to look at is Processing dates."
i asked her then even if the visa bulletein dates are not current for my case then do we have any chance of getting the gc...she said yes...if yours come under the processing dates.
I am not sure what to make of this.....
hairstyles mariah carey pregnant with
morpheus
04-06 11:06 AM
Does anyone know if the latest Frist amendment to the bill would still allow H1's etc to file for 218 as outlined above? I did some more reading and I am still confident the analysis above is an option for many H1's like myself.
Frankly I'd be happy to wait six years for a GC if it meant I could be out of this continual H1/LC/140/485 rat-race. Being able to be self employed would be a huge positive for me. I'm already on my second LC and I am involved in founding my second new company. For executives the H1/GC process is useless because you frequently get promoted or change titles, and by the time your LC is near processing it's likely that the original application is no longer supportable. Plus, if you own equity in the company that opens a whole can of worms that the USCIS will object to.
I don't care if 218D is supposed to be for 'illegal' immigrants. Hell, I'll learn Spanish! Via con dios! Obras son amores y no buenas razones!
Frankly I'd be happy to wait six years for a GC if it meant I could be out of this continual H1/LC/140/485 rat-race. Being able to be self employed would be a huge positive for me. I'm already on my second LC and I am involved in founding my second new company. For executives the H1/GC process is useless because you frequently get promoted or change titles, and by the time your LC is near processing it's likely that the original application is no longer supportable. Plus, if you own equity in the company that opens a whole can of worms that the USCIS will object to.
I don't care if 218D is supposed to be for 'illegal' immigrants. Hell, I'll learn Spanish! Via con dios! Obras son amores y no buenas razones!
thomachan72
04-15 03:52 PM
My LC is still in process after auditing (EB2). My employer wants to 'drastically' cut back my salary due the national depression, which is particularly affecting the field my company is operating in (sub-primes). If he does that, and I accept it, is LC in jeopardy? We filed back in September 2007 with a certain salary and now it will be lower. Do we have to communicate the change to the DOL? And if yes, what will happen? Do we have to re-file? Thank you to everybody for all the info you can give me! Really!:(
For your H1b labor aproval the company has provided both the salary they are offering you as well as the prevailing wages for that particular job catagory. I dont think it is legal for the company to pay you below what was guranteed while hiring you, particulary as it goes against the basic requirement for H1b, which is to pay equal to or above the prevailing wages. Now due to economic depression, if the prevailing wages have decreased and the labor department has taken that into account maybe things might be different. See, the basic question is whether I can obtain a H1b worker promising 100K and later pay him 65k, citing general conditions like recession?
For your H1b labor aproval the company has provided both the salary they are offering you as well as the prevailing wages for that particular job catagory. I dont think it is legal for the company to pay you below what was guranteed while hiring you, particulary as it goes against the basic requirement for H1b, which is to pay equal to or above the prevailing wages. Now due to economic depression, if the prevailing wages have decreased and the labor department has taken that into account maybe things might be different. See, the basic question is whether I can obtain a H1b worker promising 100K and later pay him 65k, citing general conditions like recession?
BumbleBee
08-16 04:42 PM
Please be aware that experience gained at sponsoring employer can not be counted towards fulfilling minimum qualification requirement for labor certification. You must prove your qualification to the job prior to joining the sponsoring employer... minor details.
So if you are planning to file a new EB2 application with same employer, just count your experience till the point you joined the company, anything afterwards is not admissible.
BumbleBee
So if you are planning to file a new EB2 application with same employer, just count your experience till the point you joined the company, anything afterwards is not admissible.
BumbleBee
No comments:
Post a Comment