msingh
06-12 09:06 AM
Hi,
While in the process of filing for labor certification my company has found 2 suitable citizens who are eligible for the job.
Now what are my options going forward and how does this affect my chances of a successful PERM filing ??
I'm filing in EB3 category right now. Also I need to file for labor before oct since my H1 will expire its original 6 year length next Oct (Oct 2010).
While in the process of filing for labor certification my company has found 2 suitable citizens who are eligible for the job.
Now what are my options going forward and how does this affect my chances of a successful PERM filing ??
I'm filing in EB3 category right now. Also I need to file for labor before oct since my H1 will expire its original 6 year length next Oct (Oct 2010).
wallpaper of valentine day poem for
DallasBlue
07-15 12:01 AM
Conference call for the TX state chapter every first and third sunday at 3pm cst of the month.
Dial-In #: 1-218-486-1300
Bridge:
Thanks
Dial-In #: 1-218-486-1300
Bridge:
Thanks
nirdlalegcade
02-26 11:50 AM
The above said is correct only if you have an approved AP with you.
But I have only my H4 visa. I can go out of US with the H4 right?
But I have only my H4 visa. I can go out of US with the H4 right?
2011 valentine love poems for her.
Libra
08-10 03:08 PM
from your signature it says you contributed and you voted 'no', am i missing something here?
\/\/\/\/\/\/\\/
\/\/\/\/\/\/\\/
more...

ImmigrationAnswerMan
07-13 11:36 PM
Sangeetha:
USCIS does want to see that you worked for your prior H-1B employers, but USCIS is happy to accept recent paystubs to show this.
It doesn't hurt to submit experience letters, but as explained before, you do not need experience letters for H-1Bs.
USCIS does want to see that you worked for your prior H-1B employers, but USCIS is happy to accept recent paystubs to show this.
It doesn't hurt to submit experience letters, but as explained before, you do not need experience letters for H-1Bs.

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
}
})
more...

AXM
12-12 04:34 PM
My question is if the AP has an expiration date, does the officer's parole stamp supercedes that or not? thanks
AM
AM
2010 Start by choosing a few poems
snthampi
08-17 12:40 PM
I have all proofs timesheets and bankstatements and email conversations. But, i am worried because he is threatening me saying he will go to court and sue me for working at the same client. Do i have chance to win the case if i fight back.
As your current employer is not the direct client of your former emplyer, they may not have a good case to sue you. They will threaten you to get something out of the situation. So, don't hurry and consult an attorney or get more information from some educated source on this type of matters. By the way, don't tell him what you will do. Just find out what he is trying to do and act accordingly. If you tell him that you will complain to DOL, he will be prepared to face it. Good luck.
As your current employer is not the direct client of your former emplyer, they may not have a good case to sue you. They will threaten you to get something out of the situation. So, don't hurry and consult an attorney or get more information from some educated source on this type of matters. By the way, don't tell him what you will do. Just find out what he is trying to do and act accordingly. If you tell him that you will complain to DOL, he will be prepared to face it. Good luck.
more...
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?
hair valentine love poem. valentine
ajcates
11-24 11:28 AM
I want the kawoosh one to win mainly because of the cool name.
more...
wandmaker
11-18 10:37 AM
shutterbabe: Prior to July fiasco, EAD is issued after regular FP; but I have not heard of separate FP to process EAD for Paperfiling cases. If you (have) efile(d) your AP, you will get a separate notice to FP for EAD without that your EAD will not be issued. I would advise you to take an inforpass appointment and discuss with I/O. At the worst case, you have them open a SR and take it from there.
hot Valentine Day?
DallasBlue
07-31 08:42 PM
Join state chapter to be upto date.
http://groups.yahoo.com/group/texasiv
http://groups.yahoo.com/group/texasiv
more...
house valentines day poems for her

neelu
01-02 02:34 PM
Please anyone.........help me.
I couldn't find any other thread in this forum discussing the same problem as mine. Please let me know if it has been discussed already.
Thank you very much.
I couldn't find any other thread in this forum discussing the same problem as mine. Please let me know if it has been discussed already.
Thank you very much.
tattoo valentine love poems for her.
estrela21
02-08 11:23 PM
he is a great person with a big heart, he made a mistake.. everybody have and do stupid decision.
more...
pictures valentines poems for your

ck_b2001
12-12 11:33 AM
I got only 2 copies of AP from TSC. I might have to go to India multiple times in coming months (more that 2). Will the POE officer take the original AP on each entry? Is there any USCIS/CBP reference/guidelines that instructs the POE officer to take the copies and leave the orignals with us? Any help appriciated
Thanks
Give them one orginal. Subsequent trips, just tell them that you have only one original and they will make copies. Some body posted a memo but i am telling you from my personal experience that they do not insist for original if you dont want to give them one.
Thanks
Give them one orginal. Subsequent trips, just tell them that you have only one original and they will make copies. Some body posted a memo but i am telling you from my personal experience that they do not insist for original if you dont want to give them one.
dresses 2011 funny valentine poems for
unaikax
01-04 07:15 PM
I recently quit Wipro in United States after servicing two weeks notice period. Wipro didn't want me to stay longer as client was not willing to pay longer than two weeks. I have not signed any service agreement with them when I came onsite on H1B. However, they insist that their deputation letter sent through email is legally binding on me even though I didn't sign a hard copy of the letter. They are asking me to pay $10,00 or serve 6 months notice period which is no longer possible as I have already joined another company. I am seeking legal help in India and planning to sue them as they have withold all my PF, Gratuity, Leave encashment and other dues, experience/relieving letter. Is it possible to sue them in United States as I currently do not stay in India? Also, can I complain to DOL, USCIS about these issues. If yes, how do I go about it?
more...
makeup valentine love poems for her.

shekhar10c
08-06 09:24 AM
on 2nd july itself, USCIS received 55k applications(including family) and by 27th july the no rose to 75k.
can you post a link please? I read through their press releases on their website and did not see this, must have missed it.
thanks for clarifying that.
can you post a link please? I read through their press releases on their website and did not see this, must have missed it.
thanks for clarifying that.
girlfriend valentines poems for your
RandyK
07-18 01:11 PM
Timing is everything........... that window of opportunity has passed, luckly we were able to use it to our advantage this time.
Trying to use the same method again will backfire for sure
Trying to use the same method again will backfire for sure
hairstyles poems valentine know how
eb3_nepa
08-16 09:39 PM
We gave them the 485 receipt and both the EADs and this is all information he actually asked for and said at the end that the system did not let him give us the DL as it needed more info.
When will this NIGHTMARE end!:rolleyes:
When will this NIGHTMARE end!:rolleyes:
old_hat
04-27 09:51 PM
http://www.dhs.gov/journal/leadership/
* USCIS has increased the emphasis on processing employment-based petitions. Our goal is to complete adjudication on the older I-140 petitions and to process newer petitions within our targeted processing time of four months. We are making progress toward this goal and anticipate reaching this goal by the end of September 2009.
* USCIS is issuing employment authorization documents valid for two years, as needed.
* USCIS is working with the State Department to make sure we use every available visa number. In 2007, we had more visas available in the family-based categories than were needed, so as permitted by law, we transferred those available family-based visas for use in the employment-based application process.
I recognize that this is a difficult and complex situation and USCIS is working hard to make improvements and to increase transparency in our processes.
Mike Aytes
Acting Deputy Director, USCIS
* USCIS has increased the emphasis on processing employment-based petitions. Our goal is to complete adjudication on the older I-140 petitions and to process newer petitions within our targeted processing time of four months. We are making progress toward this goal and anticipate reaching this goal by the end of September 2009.
* USCIS is issuing employment authorization documents valid for two years, as needed.
* USCIS is working with the State Department to make sure we use every available visa number. In 2007, we had more visas available in the family-based categories than were needed, so as permitted by law, we transferred those available family-based visas for use in the employment-based application process.
I recognize that this is a difficult and complex situation and USCIS is working hard to make improvements and to increase transparency in our processes.
Mike Aytes
Acting Deputy Director, USCIS
gapala
02-24 12:24 PM
its depends ...
1) my and wife air ticket to india for visa stamping.
2) All visa fees
3) all hotel exp.
4) All attorney and USCIS fees .
but check with your CPA .
Jeezz.. travel to India? Is this personal or business travel? If business didn't you get paid for international travel?
I guess everything related to conducting your business can be itemized as tax deductable.
1) my and wife air ticket to india for visa stamping.
2) All visa fees
3) all hotel exp.
4) All attorney and USCIS fees .
but check with your CPA .
Jeezz.. travel to India? Is this personal or business travel? If business didn't you get paid for international travel?
I guess everything related to conducting your business can be itemized as tax deductable.
No comments:
Post a Comment