
americandesi
07-05 04:50 PM
I have got my canadian PR approval for me and my wife and have sent the passports to the Canadian Consulate in NYC for immigrant visa stamping. To get my PR card I have to land in Canada before Dec 19, 2007 when the visa expires.
I have not traveled outside the US after I got my H1B and am planning to go to Canada for stamping H1B for me H4 for my wife.
Would there be any problem for me to land in Canada since I will not be landing there with the intention to settle but will return after getting my H1B stamped in a couple of days.
Anyone gone through my kind of situation before. Please send me a PM.
I am concerend about being denied entry in Canada and then I will be nowhere because I cannot return to US without a vaid H1B stamp.
Why do you think you would be denied entry in canada? You are legal to enter Canada with your PR approval. There is no question of "intent" when you are already approved for permanent residency.
I have not traveled outside the US after I got my H1B and am planning to go to Canada for stamping H1B for me H4 for my wife.
Would there be any problem for me to land in Canada since I will not be landing there with the intention to settle but will return after getting my H1B stamped in a couple of days.
Anyone gone through my kind of situation before. Please send me a PM.
I am concerend about being denied entry in Canada and then I will be nowhere because I cannot return to US without a vaid H1B stamp.
Why do you think you would be denied entry in canada? You are legal to enter Canada with your PR approval. There is no question of "intent" when you are already approved for permanent residency.
wallpaper This photo is photoshop made

sanjay02
06-29 06:38 PM
Follow directions in your interview letter with list of things to take. Have all the originals and photocopies. If your case is straight forward , I dont think you need an attorney or else if you think you need an attorney find a local person in your area who can accompany you.
I had an interview last Feb 2009, my case was pre-adjucated. My PD is 2005.
I had an interview last Feb 2009, my case was pre-adjucated. My PD is 2005.

raj2007
06-21 03:54 AM
IN the same context, how about EAD.
If I file I-485 and lets say the dates retrogess and my PD is not current, then as mentioned and if an EAD is not yet issued does the EAD issuance and I-485 both are "suspended" till PD becomes current or is it just the I-485...
I guess what I want to ask is that is EAD linked to PD date ?
No you will get all the benefits of I-485 filing lik EAD and AP. Only your 485 processing will suspend till your PD are current again.
If I file I-485 and lets say the dates retrogess and my PD is not current, then as mentioned and if an EAD is not yet issued does the EAD issuance and I-485 both are "suspended" till PD becomes current or is it just the I-485...
I guess what I want to ask is that is EAD linked to PD date ?
No you will get all the benefits of I-485 filing lik EAD and AP. Only your 485 processing will suspend till your PD are current again.
2011 osama bin laden cia. osama bin

prashantkh
08-23 02:30 PM
in EB3, EB2 and EB1
Not Enough :rolleyes:
Not Enough :rolleyes:
more...

dbevis
December 5th, 2003, 11:13 PM
Could you put a link up to that plug in? I really like that.
I was playing around with it again tonight - I posted a couple more examples in the gallery area, under "landscapes".
This is not a plugin, persay. It's a PaintShop Pro script - not PhotoShop. Here's what the script does:
Split to RGB, discard G & B
"Clarify" (twice) at a high value to deepen the contrast range.
Adjusts the luminance channel to further enhance contrast.
Colorizes the image with a hue value of 160 and saturation a low setting of 20 to slightly shift grays towards blues.
I then added the original full-color image in as a layer and merged the two with partial opacity in (I think) "hue" mode.
The Clarify operation gives it an "old" look by accentuating and muddling the contrast. The lumininance adjustment makes the overall appearance more 'harsh'. The shift towards blue tends to simulate a bit of fading (like an old snaphot, I guess).
The painting-like effect comes from merging in the colors from the original.
Here's the actual script file (it's in the "Python" programming language):
--------------------------------------
from JascApp import *
def ScriptProperties():
return {
'Author': '',
'Copyright': '',
'Description': '',
'Host': 'Paint Shop Pro',
'Host Version': '8.00'
}
def Do(Environment):
App.Do( Environment, 'SplitToRGB', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'FileClose', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'FileClose', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Clarify', {
'Strength': 4,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Clarify', {
'Strength': 4,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'HistogramAdjustment', {
'LuminanceChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 245,
'HighClipLimitPercentage': 0.01,
'LowClipLimit': 2,
'LowClipLimitPercentage': 0.01,
'MaxOutput': 255,
'MinOutput': 0
},
'RedChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'GreenChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'BlueChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'TargetChannel': 0,
'OverlayResultHistogram': App.Constants.Boolean.true,
'HistogramEditMode': App.Constants.HistogramEditMode.Luminance,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'IncreaseColorsTo16Million', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Colorize', {
'Hue': 160,
'Saturation': 20,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
I was playing around with it again tonight - I posted a couple more examples in the gallery area, under "landscapes".
This is not a plugin, persay. It's a PaintShop Pro script - not PhotoShop. Here's what the script does:
Split to RGB, discard G & B
"Clarify" (twice) at a high value to deepen the contrast range.
Adjusts the luminance channel to further enhance contrast.
Colorizes the image with a hue value of 160 and saturation a low setting of 20 to slightly shift grays towards blues.
I then added the original full-color image in as a layer and merged the two with partial opacity in (I think) "hue" mode.
The Clarify operation gives it an "old" look by accentuating and muddling the contrast. The lumininance adjustment makes the overall appearance more 'harsh'. The shift towards blue tends to simulate a bit of fading (like an old snaphot, I guess).
The painting-like effect comes from merging in the colors from the original.
Here's the actual script file (it's in the "Python" programming language):
--------------------------------------
from JascApp import *
def ScriptProperties():
return {
'Author': '',
'Copyright': '',
'Description': '',
'Host': 'Paint Shop Pro',
'Host Version': '8.00'
}
def Do(Environment):
App.Do( Environment, 'SplitToRGB', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'FileClose', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'FileClose', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'SelectDocument', {
'SelectedImage': 0,
'Strict': App.Constants.Boolean.false,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Clarify', {
'Strength': 4,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Clarify', {
'Strength': 4,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'HistogramAdjustment', {
'LuminanceChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 245,
'HighClipLimitPercentage': 0.01,
'LowClipLimit': 2,
'LowClipLimitPercentage': 0.01,
'MaxOutput': 255,
'MinOutput': 0
},
'RedChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'GreenChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'BlueChannel': {
'Appearance': 0,
'Gamma': 1,
'HighClipLimit': 255,
'HighClipLimitPercentage': None,
'LowClipLimit': 0,
'LowClipLimitPercentage': None,
'MaxOutput': 255,
'MinOutput': 0
},
'TargetChannel': 0,
'OverlayResultHistogram': App.Constants.Boolean.true,
'HistogramEditMode': App.Constants.HistogramEditMode.Luminance,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'IncreaseColorsTo16Million', {
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})
App.Do( Environment, 'Colorize', {
'Hue': 160,
'Saturation': 20,
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Default,
'AutoActionMode': App.Constants.AutoActionMode.Match
}
})

gc_aspirant_prasad
12-07 08:42 PM
Most Project managers who get their GC in EB1 category are here on L1 A visa.
more...

solaris27
02-24 01:26 PM
i don't know but he put it there
2010 Osama Bin Laden is dead!

srikondoji
01-25 06:53 PM
When decision making people or people at the top talk, then i believe there is a sense of realization about us.
Atleast this should provide an easy opening of our case with top leaders.
I am not saying that is it, they are dispatching GCs through Fed-Ex?
If they did, i would be really surprised.
Atleast this should provide an easy opening of our case with top leaders.
I am not saying that is it, they are dispatching GCs through Fed-Ex?
If they did, i would be really surprised.
more...

srkamath
08-05 06:15 PM
It is illegal for the foreign employee to pay or to reimburse the employer (or even agree to a reduced salary) to cover the costs of the foreign labor certification process. There are no exceptions to this - there is no varied interpretation either. The labor certification will be denied or revoked if the foreign applicant had any role to play in the recruitment process.
Disclaimer - This is my understanding, i'm not a lawyer.
Disclaimer - This is my understanding, i'm not a lawyer.
hair photoshop, osama bin laden

jonty_11
01-16 04:43 PM
Yes , I am planning to take the test too......
more...

Ramba
01-23 06:51 PM
Sorry for little confusion.
What I mean was,
- I filed I-485 for me and my wife
- then after 180 days I switched to a new company with H1B transfer.
- So, I am still in H1B status.
- But my wife (secondary applicant) is using EAD based on I-485 and working.
Which means we used AC21 for portability of our I-140 and I-485 cases.
Now, we are planning to travel home to India. My wife need to use AP and I will still be using H1B visa.
So, my question was, whether there will be issue at Port of Entry when primary applicant(which is me) is still in H1B visa with pending I-485 and my wife is using EAD with AP?
Normally if both have independent valid travel document, you are fine. It does not make any difference if primary use H1B and spouse use AP, but it may confuse the IO at POE, if they ask lot of questions, (who is your employer, Are you working for GC sponsering employer etc..)
IO at POE may not know all the rules regarding AC21/485/AP/H1 etc.. If you are entering in H1, the natural tendency that your spose will enter in H4. If you answer properly, you are fine..
What I mean was,
- I filed I-485 for me and my wife
- then after 180 days I switched to a new company with H1B transfer.
- So, I am still in H1B status.
- But my wife (secondary applicant) is using EAD based on I-485 and working.
Which means we used AC21 for portability of our I-140 and I-485 cases.
Now, we are planning to travel home to India. My wife need to use AP and I will still be using H1B visa.
So, my question was, whether there will be issue at Port of Entry when primary applicant(which is me) is still in H1B visa with pending I-485 and my wife is using EAD with AP?
Normally if both have independent valid travel document, you are fine. It does not make any difference if primary use H1B and spouse use AP, but it may confuse the IO at POE, if they ask lot of questions, (who is your employer, Are you working for GC sponsering employer etc..)
IO at POE may not know all the rules regarding AC21/485/AP/H1 etc.. If you are entering in H1, the natural tendency that your spose will enter in H4. If you answer properly, you are fine..
hot of Osama Bin Laden:

iviviv
11-01 09:34 PM
refile labor.
more...
house Dead Osama bin Laden Photo Was

vsc
01-31 06:31 PM
hi beuhler....if i understand your reply correctly, you meant that as long as there is proof that your marraige date(marraige certificate) is prior to gc approval notice...there is 6 months to file for the i485 for the wife even though she may be in india at the time of marraige?
tattoo Osama bin Laden image released

GCBy3000
08-24 11:32 AM
I dont think people who are affected by retrogression are living life with some principles. If they are in this situation, itis because of their own decisions. Again as redcard said, coming here on F1 is for study and not for GC. Coming here in H1B is for work and not soley for GC. May be the individual knows in advance there is possibility of getting one.
Doing MS or PhD, you could very well do in your home country. Why did you choose US on first place. I have seen people who are unable to get H1b, getting F1 and coming to US. By the way I am not blaming all F1's here. . By doing MS or PhD, your original intention of coming to US is well achieved. Then if you decide to go into H1, then you join the people who are here in H1 irrespective of their degrees. Intention of H1 is to work and sometimes even to apply for GC. So cribbing too much on having a MS is not good.
I bet there will be a huge number of people if given an opportunity to get pre-approved labor, they will get it somehow. You and I did not come across one.
Stop crying.. no one forced you to come here to study.. you came by choice like the other people who came here to work on H1... you decided to stay here for working, again no one forced you ... you decided to apply for GC again no one forced you... you decided to join a good company who would not substitute a labor .. again no once forced you... you had options like all the other people who came here on BS or whatever degree.. maybe you made the wrong move when it came to GC and the other people made a smarter move.. so don't cry on that.. if you wish to cry .. cry for the labor substitution rule.. it will help
Doing MS or PhD, you could very well do in your home country. Why did you choose US on first place. I have seen people who are unable to get H1b, getting F1 and coming to US. By the way I am not blaming all F1's here. . By doing MS or PhD, your original intention of coming to US is well achieved. Then if you decide to go into H1, then you join the people who are here in H1 irrespective of their degrees. Intention of H1 is to work and sometimes even to apply for GC. So cribbing too much on having a MS is not good.
I bet there will be a huge number of people if given an opportunity to get pre-approved labor, they will get it somehow. You and I did not come across one.
Stop crying.. no one forced you to come here to study.. you came by choice like the other people who came here to work on H1... you decided to stay here for working, again no one forced you ... you decided to apply for GC again no one forced you... you decided to join a good company who would not substitute a labor .. again no once forced you... you had options like all the other people who came here on BS or whatever degree.. maybe you made the wrong move when it came to GC and the other people made a smarter move.. so don't cry on that.. if you wish to cry .. cry for the labor substitution rule.. it will help
more...
pictures Enter the “Osama bin Laden

ajju
02-27 02:48 PM
I have the file numbers etc since I got finger print notice last year so am set up online to track the applications. But just haven't see the receipt notices come through. Should I be concerned?
If your lawyer filed on your behalf.. the receipts might've just went to him... Check with your lawyer...
If your lawyer filed on your behalf.. the receipts might've just went to him... Check with your lawyer...
dresses Pic of osama bin laden

pmb76
07-17 01:16 PM
DOS and USCIS are slow. But it would be really helpful if the IV code team can provide some update on our site. I believe over 2.5 hours have passed since the last update regarding some update in 1 hour. I guess we can't do anything if it takes more time but an update always helps! Thank you.
Please have some patience. IV core are working professionals like you and me. This is not their full time job and they are doing this in their spare time. They will update us as soon as the news is out.
Please have some patience. IV core are working professionals like you and me. This is not their full time job and they are doing this in their spare time. They will update us as soon as the news is out.
more...
makeup of Osama Bin Laden#39;s dead
Scythe
11-25 07:08 PM
All the buttons should be put into one jpeg, so we can see them all side by side. 2 rows with 5 buttons each.
girlfriend osama bin laden jokes_07.

nixstor
07-01 01:26 PM
I am not sure if I am reading this right or not, go this page
http://www.imminfo.com/resources/cis-sop-aos/3-7.html
and read the first para. It says G-325A has to be processed only if the applicant has entered the US in non immigrant status less than one year prior to current calendar date of review.
So any one who has entered US before (07/02/06) will have their G-325A trashed? I was under the impression that USCIS does use the biographic information to check with local law enforcement for the the past 5 years as stated in the G-325A. Any ideas?
Guys,
Can some read the SOP in the above quote and figure out what they are trying to say?
http://www.imminfo.com/resources/cis-sop-aos/3-7.html
and read the first para. It says G-325A has to be processed only if the applicant has entered the US in non immigrant status less than one year prior to current calendar date of review.
So any one who has entered US before (07/02/06) will have their G-325A trashed? I was under the impression that USCIS does use the biographic information to check with local law enforcement for the the past 5 years as stated in the G-325A. Any ideas?
Guys,
Can some read the SOP in the above quote and figure out what they are trying to say?
hairstyles Osama+dead+photoshop+sky+

mambarg
07-27 07:04 PM
How did the attorney sign the form when you had not signed.
I had to visit my attorney's office and sign all the paperwork in his office before he filed my app.
I belileve if the attorney is remote, then he needs to send fedex package to sign the docs.
Attorney signs only as a rep if there is legal issues or court apperance is required.
Applicants signature is used to prepare the EAD card . USCIS scans the signature of applicant.
I had to visit my attorney's office and sign all the paperwork in his office before he filed my app.
I belileve if the attorney is remote, then he needs to send fedex package to sign the docs.
Attorney signs only as a rep if there is legal issues or court apperance is required.
Applicants signature is used to prepare the EAD card . USCIS scans the signature of applicant.
immilaw
12-08 08:48 AM
Called Senator Tom Price - 770-565-4990. Was asked the Bill #.
What's the Bill # and which house is it being introduced in?
Lets not start a seperate thread. We already have one http://immigrationvoice.org/forum/showthread.php?t=2483 for these messages. Please post your messages there.
What's the Bill # and which house is it being introduced in?
Lets not start a seperate thread. We already have one http://immigrationvoice.org/forum/showthread.php?t=2483 for these messages. Please post your messages there.
vallabhu
01-02 12:37 PM
I am from ATL
I don't know what is excellent documentation
we sent the syllabubs signed by registrar of Osmania
eduction evaluation done by a prof from GA sate university
and my transcripts.
next time i will add a recommendation letter from employer.
deos any know how long it is taking to process such appeals.
I don't know what is excellent documentation
we sent the syllabubs signed by registrar of Osmania
eduction evaluation done by a prof from GA sate university
and my transcripts.
next time i will add a recommendation letter from employer.
deos any know how long it is taking to process such appeals.
No comments:
Post a Comment