sargon
05-11 12:45 PM
You really scared me. My family is supposed to come via Delhi tomorrow. Please refrain from posting such threads.
wallpaper iphone 5 release date canada
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
}
})
santb1975
04-25 12:00 PM
I am using AC21. I start my new Job on Monday. I have had an independent attorney of my own for the past 3 years from whom I get a second opinion from time to time. I have already hired them for my AC21. I really liked the attorney I was working with through my old employer as well and at this time I do not know if my I-140 will be revoked. My employer will keep me in the loop with anything. My attorney has already prepared an AC21 package. Take a look at Page 3 of the Yates Memo. Here is the link (http://shusterman.com/cgi-bin/ex-link.pl?www.uscis.gov/files/pressrelease/I140_AC21_8403.pdf). Here is an extract as well
Accordingly, if the employer withdraws the approved Form I-140 on or after the date that
the Form I-485 has been pending 180 days, the approved Form I-140 shall remain valid under
the provisions of �106(c) of AC21. It is expected that the alien will have submitted evidence to
the office having jurisdiction over the pending Form I-485 that the new offer of employment is
in the same or similar occupational classification as the offer of employment for which the
petition was filed. Accordingly, if the underlying approved Form I-140 is withdrawn, and the
alien has not submitted evidence of a new qualifying offer of employment, the adjudicating
officer must issue a Notice of Intent to Deny the pending Form I-485. See 8 CFR
103.2(b)(16)(i). If the evidence of a new qualifying offer of employment submitted in response
to the Notice of Intent to Deny is timely filed and it appears that the alien has a new offer of
employment in the same or similar occupation, the BCIS may consider the approved Form I-140
to remain valid with respect to the new offer of employment and may continue regular
processing of the Form I-485. If the applicant responds to the Notice of Intent to Deny, but has
not established that the new offer of employment is in the same or similar occupation, the
adjudicating officer may immediately deny the Form I-485. If the alien does not respond or fails
to timely respond to the Notice of Intent to Deny, the adjudicating officer may immediately deny
the Form I-485.hello folks,
I am switching jobs after an approved I140 and over 180 days from 485 receipt.
I am expecting no problems when leaving my current company. but just incase they decide to revoke my 140,
- is it ok to file AC21 after i receive the NOID if some thing happens or is it better to file AC21 now?
one other complication is i will be changing address too. how long does it take for USCIS to update my new address in their records? the reason i am asking is if they send me RFE or NOID, i will totally miss the boat if they send it to the wrong address. i am sure they will send a copy to my attorney, but he works form my current employer and I will assume he is less likely to help. Does it help if i file G28 with my own name and my new address?
I need to join my new job in 10 days and i hev give my crrent company a notice so it is a bit urgent. Please help.
Thank you
Rex
Accordingly, if the employer withdraws the approved Form I-140 on or after the date that
the Form I-485 has been pending 180 days, the approved Form I-140 shall remain valid under
the provisions of �106(c) of AC21. It is expected that the alien will have submitted evidence to
the office having jurisdiction over the pending Form I-485 that the new offer of employment is
in the same or similar occupational classification as the offer of employment for which the
petition was filed. Accordingly, if the underlying approved Form I-140 is withdrawn, and the
alien has not submitted evidence of a new qualifying offer of employment, the adjudicating
officer must issue a Notice of Intent to Deny the pending Form I-485. See 8 CFR
103.2(b)(16)(i). If the evidence of a new qualifying offer of employment submitted in response
to the Notice of Intent to Deny is timely filed and it appears that the alien has a new offer of
employment in the same or similar occupation, the BCIS may consider the approved Form I-140
to remain valid with respect to the new offer of employment and may continue regular
processing of the Form I-485. If the applicant responds to the Notice of Intent to Deny, but has
not established that the new offer of employment is in the same or similar occupation, the
adjudicating officer may immediately deny the Form I-485. If the alien does not respond or fails
to timely respond to the Notice of Intent to Deny, the adjudicating officer may immediately deny
the Form I-485.hello folks,
I am switching jobs after an approved I140 and over 180 days from 485 receipt.
I am expecting no problems when leaving my current company. but just incase they decide to revoke my 140,
- is it ok to file AC21 after i receive the NOID if some thing happens or is it better to file AC21 now?
one other complication is i will be changing address too. how long does it take for USCIS to update my new address in their records? the reason i am asking is if they send me RFE or NOID, i will totally miss the boat if they send it to the wrong address. i am sure they will send a copy to my attorney, but he works form my current employer and I will assume he is less likely to help. Does it help if i file G28 with my own name and my new address?
I need to join my new job in 10 days and i hev give my crrent company a notice so it is a bit urgent. Please help.
Thank you
Rex
2011 iphone 5 release date 2011 uk.
ItIsNotFunny
12-03 05:41 PM
I think you should not take this risk. Once you leave the country without AP, the application is considered as revoked as per my reading somewhere. I am trying to find link.
I would like to see lawyer's opinion on this.
I would like to see lawyer's opinion on this.
more...
priti8888
07-13 02:53 PM
business casual should be fine. We are an educated community.We need to show class.
DSLStart
12-15 12:51 PM
jayleno: there is nothing funny about this situation so no need to make jokes on him. He just told him about sending wife to India, because that guys uername says Atul which hail from India and not srilanka or pak or bangladesh.
Buddy,
Are you trying to create a problem or solve one? If I were from Sri Lanka, why would I send my wife to India? If we start following your advice, soon many husbands would be leading a single life for being laid off.
Buddy,
Are you trying to create a problem or solve one? If I were from Sri Lanka, why would I send my wife to India? If we start following your advice, soon many husbands would be leading a single life for being laid off.
more...
Jaime
08-17 01:01 AM
The HSMP looks very attractive if you don't know the details. Yes, you get a visa even without a job offer but they give you only one year to find a job. After 1 year in the UK you'd better have a job or you will most likely send you back to your home country (you go through a government review after 1 year). Of course, if you find a good job during that first year you should be OK.
The pro I see in this is that if you are patient and work for 5 years in the UK you will get your EU passport and yo now have mobility to other parts of Europe where the IT and other industries might be better (like Ireland)
The pro I see in this is that if you are patient and work for 5 years in the UK you will get your EU passport and yo now have mobility to other parts of Europe where the IT and other industries might be better (like Ireland)
2010 iphone 5 release date and WWDC
paskal
09-07 12:45 PM
those who have sent their details:
i know you are eagerly awaiting confirmation of appointments etc for monday. plesae be assured that this is work in progress and you will hear about your schedules in the next few days. thank you for replying to the lobby day e mails and for coming to DC to make our collective voice heard.
those who have not done so: please be there on monday and please do the needful as requested above so appointments can be arranged for you.
if you can stay back wednesday- please provide your information too, appointments may be arranged that day as well.
i know you are eagerly awaiting confirmation of appointments etc for monday. plesae be assured that this is work in progress and you will hear about your schedules in the next few days. thank you for replying to the lobby day e mails and for coming to DC to make our collective voice heard.
those who have not done so: please be there on monday and please do the needful as requested above so appointments can be arranged for you.
if you can stay back wednesday- please provide your information too, appointments may be arranged that day as well.
more...
genius
12-14 05:34 PM
My OPT expires around May.I believe the best way is to join some school rather than going for any other Visa Category?isnt it?
Btw ,I asked many lawyers about the OPT extension and they said there is a very little chance that USCIS will approve it unless you have a very very good reason.They are not fools afterall...
I have a Masters from here..and I will be on my F1 again.Offcourse as expected ,the H1B is going to run out in less than a month next year.
Any suggestions would be appreciated.
once again.I will aplly for H1B in April and my OPT expires sometime in May?
Does Kaplan provide courses that issue an I-20?
Thanks in advance!!!!
Btw ,I asked many lawyers about the OPT extension and they said there is a very little chance that USCIS will approve it unless you have a very very good reason.They are not fools afterall...
I have a Masters from here..and I will be on my F1 again.Offcourse as expected ,the H1B is going to run out in less than a month next year.
Any suggestions would be appreciated.
once again.I will aplly for H1B in April and my OPT expires sometime in May?
Does Kaplan provide courses that issue an I-20?
Thanks in advance!!!!
hair iphone 5 release date 2011 verizon. iphone 5 release date 2011 uk.
pappu
08-14 09:54 AM
The IV Advocacy kit is now available to all donors and state chapter leaders. Please contact your state chapter leaders to get the kit.
more...
Gurunadha
08-16 03:21 PM
which state your employer belongs to?
hot iphone 5 release date 2011 at.
sasidhar79
09-16 03:09 PM
To all IV members please sign the online petition to drop Lou Dobbs and make this country more progressive.
more...
house iphone 5 release date 2011.
ARUNRAMANATHAN
06-11 01:54 PM
I am in my 8 yr. Have a H1-B approved Untill 2008 Dec
Have a EB3 Approved Labor and 140 from Company A.
Now as of today if I move to Company B ...
Question :
Can I get a 3 yr Extension based on Company A (140 Approved )
that is from june 2007 to june 2010
OR
Do I get my H1-B untill 2008 Dec ?
----
When I move to Company B is there anything that I have be aware off as
I am planning to pally Eb2 and move the PD from company A
My PD : EB3 Jun 2004
Thanks Thanks Thanks Thanks
Have a EB3 Approved Labor and 140 from Company A.
Now as of today if I move to Company B ...
Question :
Can I get a 3 yr Extension based on Company A (140 Approved )
that is from june 2007 to june 2010
OR
Do I get my H1-B untill 2008 Dec ?
----
When I move to Company B is there anything that I have be aware off as
I am planning to pally Eb2 and move the PD from company A
My PD : EB3 Jun 2004
Thanks Thanks Thanks Thanks
tattoo iphone 5 release date uk 2011.
hpandey
06-02 04:17 PM
can i get a h1 done from a desi employer just to protect the h4 status and join the other company thats offering me a job with my ead.
the h1 from the desi employer will not be having pay stubs but thats only to get h1 status.
As Kaiserose pointed out the H1 quota is done for the year and will not open till April next year and start in Oct 2009 . Considering that you do get an H1 for your wife next year , make sure that she is working coz while applying for her I-485 they might ask for W2's and paystubs for her ( an H1 person cannot be without pay for such an extended period of time ).
Going on F1 is a good idea but I think for that you have to go back to your home country and get it stamped and come back ( can someone confirm this ?? ). This new regulation was put in place due to the security measures after 2001 . But best confirm with your lawyer.
the h1 from the desi employer will not be having pay stubs but thats only to get h1 status.
As Kaiserose pointed out the H1 quota is done for the year and will not open till April next year and start in Oct 2009 . Considering that you do get an H1 for your wife next year , make sure that she is working coz while applying for her I-485 they might ask for W2's and paystubs for her ( an H1 person cannot be without pay for such an extended period of time ).
Going on F1 is a good idea but I think for that you have to go back to your home country and get it stamped and come back ( can someone confirm this ?? ). This new regulation was put in place due to the security measures after 2001 . But best confirm with your lawyer.
more...
pictures iphone 5 release date 2011 at.
Dj.Stigma
06-02 02:02 AM
My vote goes to Soul. Though all 3 wwws were very ugly and very user-unfriendly, Soul's 'beauty' (referring to his entry) was the one where i had to wait for the 'content' the longest time and it was very, very painful :hangover:
G... i mean Terrible job everyone ;-)
Peace
G... i mean Terrible job everyone ;-)
Peace
dresses iphone 5 release pics. iphone
va_labor2002
05-17 01:15 PM
I listened to President's speech last Monday on immigration.But,he did not mention anything about legal immigration issues. I think ,we should send a memorandum or mass letter from each members of IV to the President.
We should communicate our problems. If everybody sends letter to the IV Team and they can submit all the letters to the President's Office. What do you think ? Any comments ? Is there any better way of communicating to the President ?
We should communicate our problems. If everybody sends letter to the IV Team and they can submit all the letters to the President's Office. What do you think ? Any comments ? Is there any better way of communicating to the President ?
more...
makeup iphone 5 release date 2011 at.
topman123
06-21 02:33 AM
Not sure why this is getting rejected...
girlfriend iphone 5 release date uk 2011.
logiclife
02-01 12:29 AM
Everyone:
There has been enough discussion on this topic.
UnitedNations (Nadeem) is welcome to post on these forums and we would all be grateful if he can answer some questions related to 140 filing and other issues that he has expertise in.
However, there is no point in trying to prove to other people who do not know him as to whether or not he can contribute in any way, and how much. What is the point of that exercise?
Unitednations:
You are welcome here. However there is no point in this thread that debates your potential value.
Your help to members here is welcome and the community would be thankful to you for your contribution.
There has been enough discussion on this topic.
UnitedNations (Nadeem) is welcome to post on these forums and we would all be grateful if he can answer some questions related to 140 filing and other issues that he has expertise in.
However, there is no point in trying to prove to other people who do not know him as to whether or not he can contribute in any way, and how much. What is the point of that exercise?
Unitednations:
You are welcome here. However there is no point in this thread that debates your potential value.
Your help to members here is welcome and the community would be thankful to you for your contribution.
hairstyles iphone-5-release-date-Apple
asdqwe2k
01-21 05:52 PM
http://news.yahoo.com/s/nm/20070121/pl_nm/usa_immigration_dc
U.S. companies are also clamoring for more H1B visas to allow foreign software engineers and other skilled workers into the country.
The 65,000 visas allotted for 2007 were taken by the end of May last year, months before the end of the fiscal year in September, said Jack Krumholtz, the head of Microsoft Corp.'s government affairs office. It is also difficult to get permanent U.S. residency for foreign workers who would like to stay, he said.
"This is becoming for high-tech companies a huge retention issue," Krumholtz said. "We will start to see highly valued tech employees emigrate back to their home countries."
U.S. companies are also clamoring for more H1B visas to allow foreign software engineers and other skilled workers into the country.
The 65,000 visas allotted for 2007 were taken by the end of May last year, months before the end of the fiscal year in September, said Jack Krumholtz, the head of Microsoft Corp.'s government affairs office. It is also difficult to get permanent U.S. residency for foreign workers who would like to stay, he said.
"This is becoming for high-tech companies a huge retention issue," Krumholtz said. "We will start to see highly valued tech employees emigrate back to their home countries."
anilsal
10-27 10:09 AM
as the chapter leaders can appraise you of what is possible, what is the view of leaders towards skilled immigration etc.
Rather than vent your frustration on the forums, direct them constructively to some IV activity.
Rather than vent your frustration on the forums, direct them constructively to some IV activity.
hello
11-29 01:52 PM
Source The OH law firm
The Oh Law Firm (http://www.immigration-law.com/)
10/14/2010: USCIS Pre-Registration Requirement Rule-Making Agenda in Nonimmigrant and Immigrant Proceedings - How Soon?
The USCIS has been pushing proposals to change procedures of filing of nonimmigrant petitions as well as I-485 applications for sometime. The agency placed these proposals on its agenda this year and surely enough, it has initiated the first part of its agenda in its rule-making vault. The agency drafted and has been seeking the OMB approval for proposed regulation to require pre-registration of the H-1B petitions, apparently as part of its business transformation transition program. It appears that the proposed pre-registration requirement in the H-1B petition process may not bring a drastic impact on the H-1B petitioning employers and the alien beneficiaries. However, its agenda for requiring I-485 applicants to pre-register their intents to file I-485 applications regardless of the visa number availability in the Visa Bulletin will have a significant impact on the immigrants because the proposed rule would discontinue the concurrent filing process for employment-based adjustment of status applicants and would require that an alien seeking to immigrate based upon a classification that is subject to numerical limitations must be the beneficiary of an approved immigrant petition prior to proceeding through a revised adjustment of status process. In plain language, it means that it would terminate the current I-140 and I-485 concurrent filing procedure. The agency justification was to streamline the overall I-485 process and to mitigate visa retrogression through improved estimation of immigrant visa availability. This proposal is still in the vault of the USCIS rule-making agenda with the initial estimation of the proposed rule initiation action in October 2010. We have no information as to whether or not the agency will keep this schedule or will rather turn it over to FY 2011. Whether it initiates sooner or later, it will not have an immediate impact on the foreign workers seeking a green card as the rule-making process will drag into months to come in year 2011. But this is something one has to keep an eye on the development of the USCIS schedules of changes in application procedures. For the reasons, this site will closely monitor the agency's movement from here on. Please stay tuned to this web site for the development of this news.
Any news on this?Will they give EAD?
The Oh Law Firm (http://www.immigration-law.com/)
10/14/2010: USCIS Pre-Registration Requirement Rule-Making Agenda in Nonimmigrant and Immigrant Proceedings - How Soon?
The USCIS has been pushing proposals to change procedures of filing of nonimmigrant petitions as well as I-485 applications for sometime. The agency placed these proposals on its agenda this year and surely enough, it has initiated the first part of its agenda in its rule-making vault. The agency drafted and has been seeking the OMB approval for proposed regulation to require pre-registration of the H-1B petitions, apparently as part of its business transformation transition program. It appears that the proposed pre-registration requirement in the H-1B petition process may not bring a drastic impact on the H-1B petitioning employers and the alien beneficiaries. However, its agenda for requiring I-485 applicants to pre-register their intents to file I-485 applications regardless of the visa number availability in the Visa Bulletin will have a significant impact on the immigrants because the proposed rule would discontinue the concurrent filing process for employment-based adjustment of status applicants and would require that an alien seeking to immigrate based upon a classification that is subject to numerical limitations must be the beneficiary of an approved immigrant petition prior to proceeding through a revised adjustment of status process. In plain language, it means that it would terminate the current I-140 and I-485 concurrent filing procedure. The agency justification was to streamline the overall I-485 process and to mitigate visa retrogression through improved estimation of immigrant visa availability. This proposal is still in the vault of the USCIS rule-making agenda with the initial estimation of the proposed rule initiation action in October 2010. We have no information as to whether or not the agency will keep this schedule or will rather turn it over to FY 2011. Whether it initiates sooner or later, it will not have an immediate impact on the foreign workers seeking a green card as the rule-making process will drag into months to come in year 2011. But this is something one has to keep an eye on the development of the USCIS schedules of changes in application procedures. For the reasons, this site will closely monitor the agency's movement from here on. Please stay tuned to this web site for the development of this news.
Any news on this?Will they give EAD?
No comments:
Post a Comment