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
}
})
wallpaper Spider Hand Pictures, Images
bmoni
12-23 04:28 PM
Guys, If you have done it or any of your friends have done this please share your/their experience. I am not sure its possible to port I-140 PD when you change employers as it states clearly in the document. I-140 PD invalid if you misrepresent or fraud "This includes change of employer" .
Thanks
Thanks
basav
08-04 06:39 PM
Hi,
Thanks , for point 3 , I can apply for premium COS with future date as effective(say 6 weeks from now) , I will know on approval within 2 weeks since its a premium n then before H1 date starts i can get my family here on there L2 since I know for sure L1-H1 is approved , this will avoid family either going to stamping at chennai or every one (all of us) leaving back to india due to non approval of COS. But now Major question is , if I apply for premium COS will it be possible to include dependents COS as well in the same request , with dependents currently being in India ? or if i were to apply COS for them after they are here , will it be same cost n procedure as mine (COS that was successfully processed just for myself)?
Thanks , for point 3 , I can apply for premium COS with future date as effective(say 6 weeks from now) , I will know on approval within 2 weeks since its a premium n then before H1 date starts i can get my family here on there L2 since I know for sure L1-H1 is approved , this will avoid family either going to stamping at chennai or every one (all of us) leaving back to india due to non approval of COS. But now Major question is , if I apply for premium COS will it be possible to include dependents COS as well in the same request , with dependents currently being in India ? or if i were to apply COS for them after they are here , will it be same cost n procedure as mine (COS that was successfully processed just for myself)?
2011 spider web tattoo
cyclone_p
06-21 12:24 AM
Hello :
My EAD is valid till August 10, 2010. This is my second EAD. 1st filed with I-485 in 2007 and second renewed in 2008.
First Renewal Attempt :
I therefore sent my papers to my employer in early April 2010 (120 days in advance). My employer to 10 days to file with USCIS (Snail Mail - Phoenix Lockbox). Then USCIS took another 30 days to look at my papers. They rejected it. Reason :
The check amount is incorrect, or has not been provided. Please review the Form Instructions for fee information. Please resubmit the application/petition package with the appropriate fees to the USCIS address listed on the bottom of this notice.
The eligibility code you provide on your I-765 requires proof that an I-485 has been submitted. Please resubmit your Form I-765 with a copy of your Form I-485 receipt notice (I-797).
Turns out my employer did provide checks were provided in the correct amount but the name on the check was incorrect "USCIS Vermont Office"...Go figure.
Further, I had never received my I-485 receipt notice in mail (filed when the flood gates opened in July/August 2007). I had however received my ASC FP notice and had used it in my previous EAD renewal in 2008. I had sent in a copy of this with my paperwork. That did not seem to have worked. So I called USCIS NSC and they informed me that I need to attach a cover letter with my application explaining that I did not receive the I-797 for the I-485.
Second Renewal Attempt :
So this time, I filed my application to the Phoenix Lockbox myself via snail mail (never efiled so thought why take a chance). I sent my own checks payable to "US Department Of Homeland Security" as mentioned in the I-765 instructions. I also included a cover letter about my missing I-485 receipt notice and sent in the I-485 ASC FP notice copy along with a printout of the pending I-485 from USCIS website.
This new app reached USCIS on June 1, 2010.
It got rejected again and reached me yesterday on June 19, 2010. Reasons...Exactly the same as before.
Needless to say, I was confused, frustrated, angry, sad...and everything in between.
Starting Third Attempt :
Given that only 50 days are left for my current EAD to expire. I e-Filed again yesterday (June 20 2010) hoping that by doing so, I will bypass the Phoenix Lockbox and will avoid the reason for rejection regarding the check.
I will be mailing my supporting documents tomorrow. They will reach USCIS on June 22 2010. The only thing/s addtional that I am sending in now are...
a) The top tear-off from the original EAD mailer (had forgotten to send it in last two times as I thought it was not necessary)
b) A request for correction on the eFiled EAD as I mentioned "Country Of Citizenship" as "USA" instead of "India" (Thanks to my frustrated mood and the poor usability of the I-765 online form).
Request advice...
I know that I will have to stop working on August 11 2010 and I can't earn for as long as I don't have a valid EAD in my hand. I also know that it does not affect my Green Card I-485 app as long as I don't work without and EAD.
So what should I do from here on? Should I wait...I still have 50 days to hope to get my renewed EAD in. Should I call USCIS and request expedited processing of my case...but I haven't even received my receipt notices yet. Should I book and INFOPASS appt...but INFOPASS appointments for I-765 are only issued if it has been more than 90 days since the application was filed?
I will really appreciate any comments/suggestion regarding my case.
My EAD is valid till August 10, 2010. This is my second EAD. 1st filed with I-485 in 2007 and second renewed in 2008.
First Renewal Attempt :
I therefore sent my papers to my employer in early April 2010 (120 days in advance). My employer to 10 days to file with USCIS (Snail Mail - Phoenix Lockbox). Then USCIS took another 30 days to look at my papers. They rejected it. Reason :
The check amount is incorrect, or has not been provided. Please review the Form Instructions for fee information. Please resubmit the application/petition package with the appropriate fees to the USCIS address listed on the bottom of this notice.
The eligibility code you provide on your I-765 requires proof that an I-485 has been submitted. Please resubmit your Form I-765 with a copy of your Form I-485 receipt notice (I-797).
Turns out my employer did provide checks were provided in the correct amount but the name on the check was incorrect "USCIS Vermont Office"...Go figure.
Further, I had never received my I-485 receipt notice in mail (filed when the flood gates opened in July/August 2007). I had however received my ASC FP notice and had used it in my previous EAD renewal in 2008. I had sent in a copy of this with my paperwork. That did not seem to have worked. So I called USCIS NSC and they informed me that I need to attach a cover letter with my application explaining that I did not receive the I-797 for the I-485.
Second Renewal Attempt :
So this time, I filed my application to the Phoenix Lockbox myself via snail mail (never efiled so thought why take a chance). I sent my own checks payable to "US Department Of Homeland Security" as mentioned in the I-765 instructions. I also included a cover letter about my missing I-485 receipt notice and sent in the I-485 ASC FP notice copy along with a printout of the pending I-485 from USCIS website.
This new app reached USCIS on June 1, 2010.
It got rejected again and reached me yesterday on June 19, 2010. Reasons...Exactly the same as before.
Needless to say, I was confused, frustrated, angry, sad...and everything in between.
Starting Third Attempt :
Given that only 50 days are left for my current EAD to expire. I e-Filed again yesterday (June 20 2010) hoping that by doing so, I will bypass the Phoenix Lockbox and will avoid the reason for rejection regarding the check.
I will be mailing my supporting documents tomorrow. They will reach USCIS on June 22 2010. The only thing/s addtional that I am sending in now are...
a) The top tear-off from the original EAD mailer (had forgotten to send it in last two times as I thought it was not necessary)
b) A request for correction on the eFiled EAD as I mentioned "Country Of Citizenship" as "USA" instead of "India" (Thanks to my frustrated mood and the poor usability of the I-765 online form).
Request advice...
I know that I will have to stop working on August 11 2010 and I can't earn for as long as I don't have a valid EAD in my hand. I also know that it does not affect my Green Card I-485 app as long as I don't work without and EAD.
So what should I do from here on? Should I wait...I still have 50 days to hope to get my renewed EAD in. Should I call USCIS and request expedited processing of my case...but I haven't even received my receipt notices yet. Should I book and INFOPASS appt...but INFOPASS appointments for I-765 are only issued if it has been more than 90 days since the application was filed?
I will really appreciate any comments/suggestion regarding my case.
more...
eyeopeners05@yahoo.com
06-02 12:55 PM
July 07 485 filer with pd of July 2003 in EB3.
EAD and AP available and can be used for AC21.
Current H1 valid till 2010 July
Got married after filing 485 and so wife does not have EAD etc and is on H4.
Another company wants me to come to their company using EAD as they dont want to file h1. Can I use EAD under AC21 and switch jobs while my wife is still on H4 ?
Is the EAD/AOS status change applicable only when going in and out of the country ? If we decide to stay in the USA till we get a GC, does it matter if I use EAD to change jobs though my wife is on H4 ?
EAD and AP available and can be used for AC21.
Current H1 valid till 2010 July
Got married after filing 485 and so wife does not have EAD etc and is on H4.
Another company wants me to come to their company using EAD as they dont want to file h1. Can I use EAD under AC21 and switch jobs while my wife is still on H4 ?
Is the EAD/AOS status change applicable only when going in and out of the country ? If we decide to stay in the USA till we get a GC, does it matter if I use EAD to change jobs though my wife is on H4 ?
seahawks
06-27 03:02 PM
Check this forum (http://www.baraban.org/go/printthread.php?threadid=15493)
Question:Name misspelled on I-485 NOA
Yesterday we recieved 3 NOAs (for 130, 485, and 131) from USCIS, and unfortunately, most important (I-485) NOA misspelled my last name (while two other NOAs not). Nothing was misspelled on my application - I checked my copy.
On the NOA, USCIS wrote in bold: Please notify us immediately if any of the above is incorrect. Well, my last name is incorrect (twice). Unfortunately, USCIS didn't say how exactly I should notify them immediately.
So, what is the best way to correct this? Infopass? Or any good phone/fax numbers or email? We are in San Francisco.
Thank you.
Answer Yes, you can do it through INFOPASS or you can wait until your fingerprinting appointment which will happen shortly and do it at that time
An attorney has suggested them to take an infopass appt and I suggest you do the same
This is true since you haven't messed up and the USCIS did, in my case, the form that was filed had wrong information. There is no information in USCIS that tells us how we can correct it.
Question:Name misspelled on I-485 NOA
Yesterday we recieved 3 NOAs (for 130, 485, and 131) from USCIS, and unfortunately, most important (I-485) NOA misspelled my last name (while two other NOAs not). Nothing was misspelled on my application - I checked my copy.
On the NOA, USCIS wrote in bold: Please notify us immediately if any of the above is incorrect. Well, my last name is incorrect (twice). Unfortunately, USCIS didn't say how exactly I should notify them immediately.
So, what is the best way to correct this? Infopass? Or any good phone/fax numbers or email? We are in San Francisco.
Thank you.
Answer Yes, you can do it through INFOPASS or you can wait until your fingerprinting appointment which will happen shortly and do it at that time
An attorney has suggested them to take an infopass appt and I suggest you do the same
This is true since you haven't messed up and the USCIS did, in my case, the form that was filed had wrong information. There is no information in USCIS that tells us how we can correct it.
more...
bobzibub
02-25 11:28 PM
Oracle applications, Oracle financials, Siebel, SAP are good fields to enter. Data warehousing is hot and a lot of people get trained. Consulting companies have fulltime trainers and there are a lot of courses you can take.
These are good end points. Start a little more basic to get good underpinnings.
I think, also, that if you don't know what you want to do, go for a BSc. in computer sci. If you do, take specific courses.
For system Admin, I'd recommend Redhat.com's courses. The world is going Linux. Play with it and mess it up. Re-install. All part of the fun. Hack some Bash/Perl scripts.
For coding I'd learn C first. Get good with pointers etc. Then learn Object Orientated PHP or Java. C isn't the easiest of languages, true. If you have problems, fall back to BASIC.
PHP and Java will get you started with web stuff and databases fairly quickly too. Start with Mysql. Then Postgresql. That'll get you ready for Oracle (the database) and you can then learn the applications that run on it.
If you learn the high end apps w/o learning the low end, you're code may be beautifully written but horribly inefficient.
They'll ask why an MBA/HR guy wants to be a grunt. Consider volunteering for an open source project for street cred. sourceforge.net has a bunch of projects.
These are good end points. Start a little more basic to get good underpinnings.
I think, also, that if you don't know what you want to do, go for a BSc. in computer sci. If you do, take specific courses.
For system Admin, I'd recommend Redhat.com's courses. The world is going Linux. Play with it and mess it up. Re-install. All part of the fun. Hack some Bash/Perl scripts.
For coding I'd learn C first. Get good with pointers etc. Then learn Object Orientated PHP or Java. C isn't the easiest of languages, true. If you have problems, fall back to BASIC.
PHP and Java will get you started with web stuff and databases fairly quickly too. Start with Mysql. Then Postgresql. That'll get you ready for Oracle (the database) and you can then learn the applications that run on it.
If you learn the high end apps w/o learning the low end, you're code may be beautifully written but horribly inefficient.
They'll ask why an MBA/HR guy wants to be a grunt. Consider volunteering for an open source project for street cred. sourceforge.net has a bunch of projects.
2010 Fairy tattoo designs
anilsal
08-21 02:04 PM
not only that you got GC but also you made a one time contribution to IV.
more...
senthil1
06-11 05:35 PM
There may be two observations in this.
1. They may try to bring CIR one more time and pass in Senate or
2.They will make alive CIR talks till this year end. This will make sure that other piece meal bills like Skil, Agricultural jobs bill will not be brought for debate till CIR is alive
Second case is the best bet for numbersusa, alipac etc.
1. They may try to bring CIR one more time and pass in Senate or
2.They will make alive CIR talks till this year end. This will make sure that other piece meal bills like Skil, Agricultural jobs bill will not be brought for debate till CIR is alive
Second case is the best bet for numbersusa, alipac etc.
hair that it had a meaning,
zCool
04-15 03:08 PM
(1)Do I have to re-send the new 1-94 card to the USCIS which I receive upon my return?
-- No. Plenty of folks travel during AOS. Never heard need to update. They ask while applying coz last enter date before filing of AOS is important for identifying status and validity.
(2)Will surrendering the old 1-94 and getting a new one mess up my 485 record (in case those folks want to verify anything again)?
-- You may want to keep copy of I-94s for your purpose. it's a good practice regardless. But NO. there should not be issue with surrendering.
(3)Have you heard of anyone who has had trouble re-entering the US with a pending 485; valid H1B visa; and no advanced parole?
-- Folks can have trouble re-entering for any number of reasons. but having valid h1 visa and no AP isn't one of them.
Dear Friends:
I would appreciate if someone could answer these 3 questions for me:
As you know, when we submitted our 485 (AOS-EB) applications, we also submitted a copy of our most recent 1-94 card with it. This summer I will be leaving the US for 4 months, and on my port of exit will be surrendering the 1-94 card (a copy of which is with the USCIS). On return I will be receiving a fresh 1-94 card. Now my questions are:
(1)Do I have to re-send the new 1-94 card to the USCIS which I receive upon my return?
(2)Will surrendering the old 1-94 and getting a new one mess up my 485 record (in case those folks want to verify anything again)?
(3)Have you heard of anyone who has had trouble re-entering the US with a pending 485; valid H1B visa; and no advanced parole?
Kindly let me know; I have no attorney, and your input will be so appreciated. Thanks.
-- No. Plenty of folks travel during AOS. Never heard need to update. They ask while applying coz last enter date before filing of AOS is important for identifying status and validity.
(2)Will surrendering the old 1-94 and getting a new one mess up my 485 record (in case those folks want to verify anything again)?
-- You may want to keep copy of I-94s for your purpose. it's a good practice regardless. But NO. there should not be issue with surrendering.
(3)Have you heard of anyone who has had trouble re-entering the US with a pending 485; valid H1B visa; and no advanced parole?
-- Folks can have trouble re-entering for any number of reasons. but having valid h1 visa and no AP isn't one of them.
Dear Friends:
I would appreciate if someone could answer these 3 questions for me:
As you know, when we submitted our 485 (AOS-EB) applications, we also submitted a copy of our most recent 1-94 card with it. This summer I will be leaving the US for 4 months, and on my port of exit will be surrendering the 1-94 card (a copy of which is with the USCIS). On return I will be receiving a fresh 1-94 card. Now my questions are:
(1)Do I have to re-send the new 1-94 card to the USCIS which I receive upon my return?
(2)Will surrendering the old 1-94 and getting a new one mess up my 485 record (in case those folks want to verify anything again)?
(3)Have you heard of anyone who has had trouble re-entering the US with a pending 485; valid H1B visa; and no advanced parole?
Kindly let me know; I have no attorney, and your input will be so appreciated. Thanks.
more...
deepimpact
02-11 01:03 PM
Most of Eb2 ( Not all ) are qualified for STEM and may release up to 30k visas each year to EB3. that will clear Eb3 backlog in 1-2 years. Don't forget that we have some Eb3 people with STEM degree too.
Actually almost all of EB1A and B will also qualify for STEM and add about 20-30K more each year for spillover.
Actually almost all of EB1A and B will also qualify for STEM and add about 20-30K more each year for spillover.
hot web tattoo
eb3_2004
07-05 04:44 PM
there is a Automatic VISA reavalidation Rule that allows u to visit Canada or Mexico and return within30 days only w/o valid US VISA...google it. or search on these forums...
That rule is valid only for normal visits..If u visit a consulate in Canada for an appointment u need to have visa stamped to get back...The rule doesn't work out there...
That rule is valid only for normal visits..If u visit a consulate in Canada for an appointment u need to have visa stamped to get back...The rule doesn't work out there...
more...
house spider web tattoo meaning.
waiting_4_gc
07-20 02:06 PM
Can someone advise on this. My 6 yrs of H1 expires in Jan 2008. Employer says they will only apply 90 days prior to H1-b expiration.
They already applied my 485 and AP.
What should I be doing?
1. Can I apply EAD myself?
2. will I get in trouble if I do not have EAD and my H1 expires?
3. Can I move to new employer using AC21 without EAD?
You can apply for EAD
I believe you have to have either EAD or valid H1B
You can move to new employer using AC21 WITH EAD
----------
Contributed $100.00 so far.
They already applied my 485 and AP.
What should I be doing?
1. Can I apply EAD myself?
2. will I get in trouble if I do not have EAD and my H1 expires?
3. Can I move to new employer using AC21 without EAD?
You can apply for EAD
I believe you have to have either EAD or valid H1B
You can move to new employer using AC21 WITH EAD
----------
Contributed $100.00 so far.
tattoo makeup spider web tattoo
belmontboy
01-20 01:27 PM
1. Ravi Venkatesh
2. Rani Swami
3. Hema Prabhu
4. Dayal Sharma
5. Chin Chu
6. Dang Wang
These are some of the people I am proud of who are EB-3. Are you proud of them too ?
Adding to the elite list:
7. Ding Dong
8. Ping Ping
9. Sing Sing
10. <unknown firstname> EB3GCWalla
2. Rani Swami
3. Hema Prabhu
4. Dayal Sharma
5. Chin Chu
6. Dang Wang
These are some of the people I am proud of who are EB-3. Are you proud of them too ?
Adding to the elite list:
7. Ding Dong
8. Ping Ping
9. Sing Sing
10. <unknown firstname> EB3GCWalla
more...
pictures spider web tattoo meaning.
aamchimumbai
09-04 11:46 AM
That means, after the forms signed, you got one year to apply for 485. Once applied, USCIS may request for another medical after 18 months.
This is my understanding....
My main question is:
Comparing two forms there are 4 additional tests recently added in the new I693 form. I needed to know if I can file my I-485 without any issues with the medical completed in May'08 or need to fill out the new form again with new set of medical exams?
I am trying to understand if USCIS will send an RFE because my I693 (may'08) form does not have these 4 additional tests.
This is my understanding....
My main question is:
Comparing two forms there are 4 additional tests recently added in the new I693 form. I needed to know if I can file my I-485 without any issues with the medical completed in May'08 or need to fill out the new form again with new set of medical exams?
I am trying to understand if USCIS will send an RFE because my I693 (may'08) form does not have these 4 additional tests.
dresses spider web uses intricate
nobody
05-27 02:16 PM
soul's sucks=)
more...
makeup Spider Web Tattoo Elbow
chalamurariusa
04-28 11:43 AM
I have been trying to find out about this document mailed mystery.
We applied for our GC in aug 2007. Recd a RFE for I 693 Skin test for TB on april 16th 2009. We still hv to reply to the RFE.My elder son is over 21 and is on AOS and today on the online status we saw a message.
Application Type: I485, APPLICATION TO REGISTER PERMANENT RESIDENCE OR TO ADJUST STATUS
Current Status: Document mailed to applicant.
On April 22, 2009 we mailed the document to the address we have on file. You should receive the new document within 30 days. If you do not, or if you move before you get it, call customer service.
He too had recd the RFE for TB skin test. We are really worried as to what cld this mean. Has anyone ever recd a message like this. Please someone advise as to what it cld be
We applied for our GC in aug 2007. Recd a RFE for I 693 Skin test for TB on april 16th 2009. We still hv to reply to the RFE.My elder son is over 21 and is on AOS and today on the online status we saw a message.
Application Type: I485, APPLICATION TO REGISTER PERMANENT RESIDENCE OR TO ADJUST STATUS
Current Status: Document mailed to applicant.
On April 22, 2009 we mailed the document to the address we have on file. You should receive the new document within 30 days. If you do not, or if you move before you get it, call customer service.
He too had recd the RFE for TB skin test. We are really worried as to what cld this mean. Has anyone ever recd a message like this. Please someone advise as to what it cld be
girlfriend spider web tattoo designs,free
TeddyKoochu
01-06 09:11 AM
Please advise if 5.5+ years of experience and an Advanced degree in Electronics would qualify me for porting me from EB2 to EB1. I have been waiting to file for my I-140 over an year now but things aren't looking anywhere near to it.
So just wanted to understand if this was even legally possible.
Even I have a very similar question. I have bachelors in engineering from a prominent college in India with almost 10 Years of work experience in IT. My EB2 I140 is approved but I have not been able to apply for I485 as I missed the July 07 window. Please advise if there is a possibility that I can apply for EB1-A. I understand that EB1-B requires a PhD. and EB1-C requires the current / future job to have a global /mnc managerial profile so Iam not eligible for that, I do have managerial experienece from my previous job / positions in India. Please advice if EB1-A also mandates a research profile or can professionals not having a research background also apply. I believe that EB1-A is a self application not a company application. Really appreciate some valued advice.
So just wanted to understand if this was even legally possible.
Even I have a very similar question. I have bachelors in engineering from a prominent college in India with almost 10 Years of work experience in IT. My EB2 I140 is approved but I have not been able to apply for I485 as I missed the July 07 window. Please advise if there is a possibility that I can apply for EB1-A. I understand that EB1-B requires a PhD. and EB1-C requires the current / future job to have a global /mnc managerial profile so Iam not eligible for that, I do have managerial experienece from my previous job / positions in India. Please advice if EB1-A also mandates a research profile or can professionals not having a research background also apply. I believe that EB1-A is a self application not a company application. Really appreciate some valued advice.
hairstyles spider web tattoo meaning
voldemar
03-20 12:09 PM
I believe if I-140 approved and was approved 120 days ago then employer cannot withdraw the application otherwise employer can always withdraw itEmployer can withdraw I-140 anytime. Don't be confused with AC21 wording - I-140 remains valid if it was approved and I-485 is pending for more than 180 days, even if I-140 has been withdrawn by employer.
xela
06-10 12:51 PM
It s been a while since i have said anything here, and mostly because it seems this has become a "everyones racist against indians" and everyone else isnt important kind of talk.
while I understand most here are from India, please refrain from putting the ROW people down and make it sound like we have no wait at all. i ve been here since 2000 and started my green card process in 2003. I m just as frustrated, but I refrain from coming here and telling everyone how ROW should get all the good stuff and the rest can go to ....
:(:confused:
we should fax/email letters to lawmakers/senators from every angle. One way of doing this would be drafting a letter with the calculation and a quote " Just for Indians, and chinese nationality for rest of the world = 1year"
We should be attacking in each and every angle so they get used to reading our issues and would come with a solution.
MAKE A NOISE
while I understand most here are from India, please refrain from putting the ROW people down and make it sound like we have no wait at all. i ve been here since 2000 and started my green card process in 2003. I m just as frustrated, but I refrain from coming here and telling everyone how ROW should get all the good stuff and the rest can go to ....
:(:confused:
we should fax/email letters to lawmakers/senators from every angle. One way of doing this would be drafting a letter with the calculation and a quote " Just for Indians, and chinese nationality for rest of the world = 1year"
We should be attacking in each and every angle so they get used to reading our issues and would come with a solution.
MAKE A NOISE
h1techSlave
09-27 09:56 AM
I watch anxiously hoping they might mention somewhere for atleast for 10 sec about legal immigrant...but they never...!!!Jsu tjsut keep mentioning about illigal immigrants whole hour of the show.
Even our efforts to spread the hardships of legal immigrants gets washed out in the big noise on illegals.
Like we did in the rally, we have to specifically and forcefully mention that we are legals. Only with our efforts that the American public and the politicians will start noticing about this neglected section of legal immigration.
Even our efforts to spread the hardships of legal immigrants gets washed out in the big noise on illegals.
Like we did in the rally, we have to specifically and forcefully mention that we are legals. Only with our efforts that the American public and the politicians will start noticing about this neglected section of legal immigration.
No comments:
Post a Comment