letstalklc
10-08 11:17 AM
Yes, there is only one queue, you go ahead and ask them for the status of your application, it's passed 15 month period.
Because of Fragomen audits the DOL audit queue is very big and after announcing dol that they will release the special audited cases to regular queue, but they did nothing as of now.
Because of Fragomen audits the DOL audit queue is very big and after announcing dol that they will release the special audited cases to regular queue, but they did nothing as of now.
wallpaper Vestido de fiesta para una

jonty_11
02-20 05:38 PM
guys, why even bother waste your time on this. Please help IV gear up a movement to end retrogression. Please donate, make other IV aware...and send in ur stories......How do u think number crunching will help us....apart from making us feel worse.
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 Vestidos de Novia en rojo
mchhokar
05-15 03:23 PM
Is it ok to file H1b while L1 is on appeal.. IS USCIS ok with this fact.. Filing the visas simultaneously under two categorie?
more...
sroyc
11-09 01:24 AM
I think they are talking about the number of receipts that were issued in September, not the number of AOS filings.
why more filers in Sept than June? I thought most PDs were better in June than in Sept...
why more filers in Sept than June? I thought most PDs were better in June than in Sept...
ItIsNotFunny
04-19 10:58 AM
Yes I have a BIG update.
Let us not ask for any updates on our site. IV core should not be forced to post update on the site.
I happened to see
our thread
http://immigrationvoice.org/forum/showthread.php?t=3563
quoted on Alipac site.
http://www.alipac.us/modules.php?name=Forums&file=viewtopic&t=57004&highlight=h1b
They even note down our small ideas
http://www.alipac.us/modules.php?name=Forums&file=viewtopic&t=55431&highlight=h1b
They watch every action and block our attempts. We need to be patient and not ask IV core to give us updates ahead of time. If you read their forum, you will know that when we post about a bill or a senator, these guys also call those lawmakers and start opposing the work we did. So please do not keep asking for updates ahead of time.
Funny!
Let us not ask for any updates on our site. IV core should not be forced to post update on the site.
I happened to see
our thread
http://immigrationvoice.org/forum/showthread.php?t=3563
quoted on Alipac site.
http://www.alipac.us/modules.php?name=Forums&file=viewtopic&t=57004&highlight=h1b
They even note down our small ideas
http://www.alipac.us/modules.php?name=Forums&file=viewtopic&t=55431&highlight=h1b
They watch every action and block our attempts. We need to be patient and not ask IV core to give us updates ahead of time. If you read their forum, you will know that when we post about a bill or a senator, these guys also call those lawmakers and start opposing the work we did. So please do not keep asking for updates ahead of time.
Funny!
more...

swamy
01-02 12:22 PM
just appeal with excellent documentation - you should be fine. hope your transcripots were validated by some education service here as thats what i've heard is done if one doesnt have an us degree.
2010 Vestidos De Gala

sledge_hammer
07-01 12:43 PM
I am in the same situation currently.
My company's attorneys believe that mine is not an AC21 case because I am going from Software Engineer (per PERM) to Lead Software Engineer, with substantial pay hike.
They are sending me papers for H-1B amendment and extension only (extension because my H-1B will expire soon).
Why is there a need to invoke AC21 in your case? Is there substantial change in responsibilities?
I am also in a simlar situation except that the job location is same but job position going to be Sr. Programmer analyst for the same employer who is sponsoring my GC and for whom i am working for last 6 + yrs.
According to our company attorney and HR, i am eligible for promotion using the AC-21 and they are preparing my AC-21 package to USCIS.
In the AC-21 letter to USCIS it is clearly mentioned that i will be using AC-21 provision of the immigration law to accept the new position for the same employer. HR also verified that this is a natural progression for my job position.
Anyways i would suggest please talk to your HR and company attorney as they would know the best course of action for you. Remember in the immigration world even if you think u r into similar situation with other person, it may not be true in all cases.
My company's attorneys believe that mine is not an AC21 case because I am going from Software Engineer (per PERM) to Lead Software Engineer, with substantial pay hike.
They are sending me papers for H-1B amendment and extension only (extension because my H-1B will expire soon).
Why is there a need to invoke AC21 in your case? Is there substantial change in responsibilities?
I am also in a simlar situation except that the job location is same but job position going to be Sr. Programmer analyst for the same employer who is sponsoring my GC and for whom i am working for last 6 + yrs.
According to our company attorney and HR, i am eligible for promotion using the AC-21 and they are preparing my AC-21 package to USCIS.
In the AC-21 letter to USCIS it is clearly mentioned that i will be using AC-21 provision of the immigration law to accept the new position for the same employer. HR also verified that this is a natural progression for my job position.
Anyways i would suggest please talk to your HR and company attorney as they would know the best course of action for you. Remember in the immigration world even if you think u r into similar situation with other person, it may not be true in all cases.
more...
jsb
01-28 09:24 AM
Sorry for the stupid question.
Is it necessary to inform CIS about job change using AC21?
Few of my friends havent informed.
Please read posts above. There is no need to send anything to USCIS unless asked.
Is it necessary to inform CIS about job change using AC21?
Few of my friends havent informed.
Please read posts above. There is no need to send anything to USCIS unless asked.
hair de vestidos para gorditas,
Ramba
12-23 04:11 PM
If i-485 has been pending for more than 6 months and I suddenly get laid off can i leave the country and come back when it's approved? Or can I leave the country and come back in a few months with or without job offer?
No you cant do that. One should not leave country when 485 pending. Once you laid off from sponsor you can not do counsural processing also. Travelling in AP should be for a mimimum period. It will be big mistake, if you leave country without job offer. No one knows when they issue RFE for employment verification during your 485 pending period. If you do not have job when they issue RFE, thats it. Bottomline is, it is better to be employed during 485 pending and stay in the country to reply any RFE.
No you cant do that. One should not leave country when 485 pending. Once you laid off from sponsor you can not do counsural processing also. Travelling in AP should be for a mimimum period. It will be big mistake, if you leave country without job offer. No one knows when they issue RFE for employment verification during your 485 pending period. If you do not have job when they issue RFE, thats it. Bottomline is, it is better to be employed during 485 pending and stay in the country to reply any RFE.
more...

aillarramendi
10-01 12:22 PM
Is the PD for AOS same than Consular Processing??
I'm asking because is supposed that they assign visas per country or not assign but is a limit of maximum 7% (I believe) of the visas per country.
So, if a person in EB3 with PD of July 2005 ROW (Rest of the World) applied for AOS in June 2007 and the USCIS approved the Green Card, why is that?
The PD is not current for EB3 ROW so, why the approved?
Is because the unused visas of the country was not completely used for consular processing and then the USCIS is using those visas for the same country but for AOS?
I don't understand why applications that are not current are getting GC approvals?
Thanks.
I'm asking because is supposed that they assign visas per country or not assign but is a limit of maximum 7% (I believe) of the visas per country.
So, if a person in EB3 with PD of July 2005 ROW (Rest of the World) applied for AOS in June 2007 and the USCIS approved the Green Card, why is that?
The PD is not current for EB3 ROW so, why the approved?
Is because the unused visas of the country was not completely used for consular processing and then the USCIS is using those visas for the same country but for AOS?
I don't understand why applications that are not current are getting GC approvals?
Thanks.
hot premamas incluso Vestidos
sujijag
03-11 06:33 PM
If someone does this - its fraud, if they do it themselves - its legitimate.
Seek Lawyer's help, asking such qns in forums only creates backlash ;)
Seek Lawyer's help, asking such qns in forums only creates backlash ;)
more...
house vestidos de gala para gorditas
walking_dude
11-25 06:01 PM
To all IV members (and others), who have decided not to participate in the rally due to various reasons, I request you to give a very serious thought, and consideration, before reaching the final decision.
It's highly critical that we do this Rally and/or Lobby Day before CIR 2009 is introduced. If we miss the CIR next year, it may be difficult to get any relief to our community for many years. I agree with you that times are tough. But if we don't act now, it'll keep getting tougher & tougher.
I don't live near DC, and if you are too, understand where you are coming from. However, there is still several months time for the planned rally. If you book in advance, you should be able to lock-in a lower airfare on a budget airline. It may be a good idea to cash-in any Frequent flyer miles etc. you might be having ( I'm just throwing ideas here)
Get in touch with your State chapter or nearest state active chapter. If enough members like you step forward, you guys can sponsor a few members willing to participate.
If you still think you can't, please pledge or contribute donations/contributions for the planned Rally. If enough members like you, step forward IV may be to sponsor some members willing to participate, but can't due to economic hardship (out of job etc.) IV would also need funds to organize an event of this magnitude, to advertise it and arrange it.
If you decide to contribute now, you can do so by clicking the 'Contribute' option on the Homepage. If you decide to pledge, please post your pledge of support here.
I am confident that we will make it a success with your support.
It's highly critical that we do this Rally and/or Lobby Day before CIR 2009 is introduced. If we miss the CIR next year, it may be difficult to get any relief to our community for many years. I agree with you that times are tough. But if we don't act now, it'll keep getting tougher & tougher.
I don't live near DC, and if you are too, understand where you are coming from. However, there is still several months time for the planned rally. If you book in advance, you should be able to lock-in a lower airfare on a budget airline. It may be a good idea to cash-in any Frequent flyer miles etc. you might be having ( I'm just throwing ideas here)
Get in touch with your State chapter or nearest state active chapter. If enough members like you step forward, you guys can sponsor a few members willing to participate.
If you still think you can't, please pledge or contribute donations/contributions for the planned Rally. If enough members like you, step forward IV may be to sponsor some members willing to participate, but can't due to economic hardship (out of job etc.) IV would also need funds to organize an event of this magnitude, to advertise it and arrange it.
If you decide to contribute now, you can do so by clicking the 'Contribute' option on the Homepage. If you decide to pledge, please post your pledge of support here.
I am confident that we will make it a success with your support.
tattoo vestidos de noche para gorditas. Este vestido combina; Este vestido combina

pmat
01-31 02: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
I don't think that the priority date is lost if the I-140 is revoked. If it is revoked because of fraud then only you may lose the priority date. If your I-140 was genuine and you have a copy of the approval, you can still use the old priority date even if the company revokes the I-140.
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
I don't think that the priority date is lost if the I-140 is revoked. If it is revoked because of fraud then only you may lose the priority date. If your I-140 was genuine and you have a copy of the approval, you can still use the old priority date even if the company revokes the I-140.
more...
pictures Novias sin complejos
toprasad
06-10 12:39 AM
Received RFE for primary applicant (myself) and spouse.
Please submit evidence of lawful presence from October 1998 until August 17, 2007.
The documents may include the following:
A) a photo copy of form I-797 for all extensions and change of status
B) photo copy of form I-20 or IAP66 school records (front and back) including all school annotations
c) Photocopy (front and back) of applicant's Form I-94 Arrival/Departure Record
Below is my immigration timeline
CLASS ------ VALID FROM ------ VALID TO ------ Comments
H1-B -------- 5/16/1995 -------- 5/17/1998
H1-B -------- 5/17/1998 -------- 5/17/2001
H1-B -------- 12/23/1999 ------- 6/30/2001
H1-B -------- 7/1/2001 --------- 9/30/2001
0-1 --------- 10/3/2001 ------ 10/1/2004 ------ Stamped in Chennai
EAD --------- 8/4/2004 -------- 8/3/2005 ------- EB1 denied 1/15/2005
0-1 --------- 5/13/2005 ------- 5/12/2008 ------ Stamped in Chennai
0-1 --------- 4/3/2007 --------- 3/13/2010
0-1 ---------- 5/2/2207 --------- 5/12/2009
After 1/15/05 (EB-1 denial)
- Left the country on 6/15/05 (less than 6 months)
- During this time, applied for O-1 visa and got approved
- Got visa stamping in Chennai with O-1 visa
Do you see any issues with my response ?
Please submit evidence of lawful presence from October 1998 until August 17, 2007.
The documents may include the following:
A) a photo copy of form I-797 for all extensions and change of status
B) photo copy of form I-20 or IAP66 school records (front and back) including all school annotations
c) Photocopy (front and back) of applicant's Form I-94 Arrival/Departure Record
Below is my immigration timeline
CLASS ------ VALID FROM ------ VALID TO ------ Comments
H1-B -------- 5/16/1995 -------- 5/17/1998
H1-B -------- 5/17/1998 -------- 5/17/2001
H1-B -------- 12/23/1999 ------- 6/30/2001
H1-B -------- 7/1/2001 --------- 9/30/2001
0-1 --------- 10/3/2001 ------ 10/1/2004 ------ Stamped in Chennai
EAD --------- 8/4/2004 -------- 8/3/2005 ------- EB1 denied 1/15/2005
0-1 --------- 5/13/2005 ------- 5/12/2008 ------ Stamped in Chennai
0-1 --------- 4/3/2007 --------- 3/13/2010
0-1 ---------- 5/2/2207 --------- 5/12/2009
After 1/15/05 (EB-1 denial)
- Left the country on 6/15/05 (less than 6 months)
- During this time, applied for O-1 visa and got approved
- Got visa stamping in Chennai with O-1 visa
Do you see any issues with my response ?
dresses fiesta ideal para

chanduv23
08-02 05:30 PM
create a yahoogroups or googlegroups and start adding people in, maybe you can have one group for FL initially and then divide norrth and south
more...
makeup Vestido de fiesta para un
Berkeleybee
05-17 01:22 PM
BerkeleyBee,
Thanks for opening a seperate thread for this.
Looking at the proceedings for the last 2 days i feel those opposed to immigration r using the delaying tactic to somwhow push out and kill the bill. It also looks like some form of the bill will come out eventually.
There are enough provisions in the bill which will have a significant effect on retrogression when it becomes a law.
As the bill progresses in the senate and in the conference, they may push out the effective date ( for the bill to become a law) to get the house aboard.
I wonder if we can ask for some non controversial portions of the bill such as capturing unused VISA numbers (they must be 90K) to become law immediatly. This will ease retrogression significantly as there will be no country limits for those numbers.
Can we ask any Senator to bring such an amendment.
(remember those who r here illegally and who need to wait for 8 years to apply for G.C can wait an year more. Need i say about those stuck in the Employment based categories.)
--MC
Mchundi,
I understand your anxiety. To answer your questions:
There is no chance of having any single set of provisions "become law immediately."
Unfortunately, we have to let this current round of discussions on CIR play out. What should we root for? That amendments to the current CIR that basically gut the bill fail. If the bill survives these amendments then we stand a good chance of succeeding in our efforts.
For strategic reasons, we cannot disclose everything we know about behind the scenes agreements.
Hang in there!
best,
Berkeleybee
Thanks for opening a seperate thread for this.
Looking at the proceedings for the last 2 days i feel those opposed to immigration r using the delaying tactic to somwhow push out and kill the bill. It also looks like some form of the bill will come out eventually.
There are enough provisions in the bill which will have a significant effect on retrogression when it becomes a law.
As the bill progresses in the senate and in the conference, they may push out the effective date ( for the bill to become a law) to get the house aboard.
I wonder if we can ask for some non controversial portions of the bill such as capturing unused VISA numbers (they must be 90K) to become law immediatly. This will ease retrogression significantly as there will be no country limits for those numbers.
Can we ask any Senator to bring such an amendment.
(remember those who r here illegally and who need to wait for 8 years to apply for G.C can wait an year more. Need i say about those stuck in the Employment based categories.)
--MC
Mchundi,
I understand your anxiety. To answer your questions:
There is no chance of having any single set of provisions "become law immediately."
Unfortunately, we have to let this current round of discussions on CIR play out. What should we root for? That amendments to the current CIR that basically gut the bill fail. If the bill survives these amendments then we stand a good chance of succeeding in our efforts.
For strategic reasons, we cannot disclose everything we know about behind the scenes agreements.
Hang in there!
best,
Berkeleybee
girlfriend Vestidos de Fiesta para
hydboy77
04-27 11:53 PM
if what you said is correct then if dates move forward then people at NSC are going to get far more GC than TSC because 485 applications have been pre processed at NSC and TSC will not be able to match NSC in issuing GC
No TSC is not. TSC goes by priority date and not processing date. TSC I have seen follows different processing style. For e.g. if your namecheck/security check or some kind of check is pending they dont send you FP notice. Also they process applications if your PD is current/close to recent bulletin.
No TSC is not. TSC goes by priority date and not processing date. TSC I have seen follows different processing style. For e.g. if your namecheck/security check or some kind of check is pending they dont send you FP notice. Also they process applications if your PD is current/close to recent bulletin.
hairstyles Vestidos para asistir a una
leo2606
09-24 03:50 PM
Any thoughts
kaisersose
08-03 06:29 PM
whatever is the reason of revoking ? I just want to know if employer revokes an approved I140 withing 180 days of filling, will the employee know about it.
thanks!
You cannot know about a revoked I-140.
But if you filed a 485 based on that 140, then since 140 denial/revoking automatically closes the 485, you will get a denial notice for the 485 and that is how you know.
thanks!
You cannot know about a revoked I-140.
But if you filed a 485 based on that 140, then since 140 denial/revoking automatically closes the 485, you will get a denial notice for the 485 and that is how you know.
Aah_GC
06-02 01:46 PM
I am just wondering if kaiserrose can get his wife an EAD as well - doesn't that make both on AOS-pending status?
No comments:
Post a Comment