eagerr2i
08-08 11:23 AM
Basically, you get 1 credit for a quarter of year, so 4 credits a year. If you have lived and worked 8 full years and 6 months for the year when you came and 6 months the year you depart from the country, you will,be fine. So bottom line is 40 quarters i.e. 10 Years i.e (1 quarter is 3 months) of gainfully employed time and having paid SS Taxes.
wallpaper funny jokes about men.
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
}
})
lazycis
09-28 08:35 PM
Hello Everyone,
I need to find someone that can help me to file the Mandamus my name is been stuck over 2 years now and the USCIS still telling me it's PENDING....Please help me if anyone know a good lawyer that can file Mandamus.....
Thanks
Anan:confused:
Check this
http://en.wikibooks.org/wiki/FBI_name_check
Ask any questions here
http://boards.immigrationportal.com/showthread.php?p=1781629
Here is the sample complaint:
http://boards.immigration.com/attachment.php?attachmentid=16571&d=1182786004
Your PD does not have to be current (it changes from month to month), if it was current at some time in the past, that will be enough.
Fight for your rights!
I need to find someone that can help me to file the Mandamus my name is been stuck over 2 years now and the USCIS still telling me it's PENDING....Please help me if anyone know a good lawyer that can file Mandamus.....
Thanks
Anan:confused:
Check this
http://en.wikibooks.org/wiki/FBI_name_check
Ask any questions here
http://boards.immigrationportal.com/showthread.php?p=1781629
Here is the sample complaint:
http://boards.immigration.com/attachment.php?attachmentid=16571&d=1182786004
Your PD does not have to be current (it changes from month to month), if it was current at some time in the past, that will be enough.
Fight for your rights!
2011 funny quotes and sayings about men. Quotes and Sayings on Winning funny
mrajatish
04-02 01:01 PM
Friends,
I know we have very good slides on high skilled immigrant's contributed to American economy and why they are necessary. One of the questions we are going to have to answer while presenting to our employer next week is
1. In the long run, How does America benefit from giving you and me GC?
2. In the short run, why should an employer care to fight for your GC?
Please treat this as a very serious effort to collect positive data points for an extremely important presentation to one of the leading proponents of high skilled immigration - if we have enough data points, this person might testify in Congress/Senate for us.
Core IV folks, please help us in this effort if you have pointers.
Thanks,
Raj
I know we have very good slides on high skilled immigrant's contributed to American economy and why they are necessary. One of the questions we are going to have to answer while presenting to our employer next week is
1. In the long run, How does America benefit from giving you and me GC?
2. In the short run, why should an employer care to fight for your GC?
Please treat this as a very serious effort to collect positive data points for an extremely important presentation to one of the leading proponents of high skilled immigration - if we have enough data points, this person might testify in Congress/Senate for us.
Core IV folks, please help us in this effort if you have pointers.
Thanks,
Raj
more...
Vitriol
04-13 09:12 AM
Gurus, your inputs please: Can I take up a position in India with an American Firm while on H1B?
pappu
10-01 11:03 AM
Once your Priority date of a category is current and namechecks are cleared, it is First in first out within the country quota. At that time, earlier priority dates do not matter at all. What matters is how early you applied for your I485 (date the application was physically received by the center, and not the date a notice was sent).
more...
paskal
08-22 03:02 PM
This sound like a good idea...our first option is to attend the rally. But if for some reason we are not able to make it...we can identify a place in all the states on the same day to show support for the DC rally.. I tried to find someone in Buffalo...but noone responded..dont know whether I will be able to attend the rally in DC.
if no one responds here, please find a friend in Buffalo to travel with you!
or in Rochester or Syracuse or something. Plesae help spread the word about the rally. The University most definitely has affected folks- in fact it has oodles of them! let us know hoe we can help you with motivating people to come...if you could collect enough people...one bus could start in Buffalo and work it's way down...
if no one responds here, please find a friend in Buffalo to travel with you!
or in Rochester or Syracuse or something. Plesae help spread the word about the rally. The University most definitely has affected folks- in fact it has oodles of them! let us know hoe we can help you with motivating people to come...if you could collect enough people...one bus could start in Buffalo and work it's way down...
2010 funny women quotes. Funny Men
jettu77
11-19 10:04 AM
I also received only 2 AP papers. Does it matter.
I checked my case online on 11/09/07 and found that AP of my spouse and
myself have been approved.
Today my attorney sent the document and on my spouse's AP document
the Date issued is //199 at the top right corner. It should have been a correct date and not //199
and in the paragraph below
.....presentation of the original of this document prior to //199 allows a customs....
I think it is the mistake of USCIS and I will follow up with my Attorney and also USCIS on monday.
If anyone had this same issue please reply as to what needs to be done.
Thank you...
I checked my case online on 11/09/07 and found that AP of my spouse and
myself have been approved.
Today my attorney sent the document and on my spouse's AP document
the Date issued is //199 at the top right corner. It should have been a correct date and not //199
and in the paragraph below
.....presentation of the original of this document prior to //199 allows a customs....
I think it is the mistake of USCIS and I will follow up with my Attorney and also USCIS on monday.
If anyone had this same issue please reply as to what needs to be done.
Thank you...
more...
mammoy2k
11-13 08:04 AM
I would appreciate if any of you could shed light on the following scenario:
If 485 is pending for over six months and someone switched the job using AC21 for a position which would require extended stay [upto 2-3 years] outside the US. Would it any way impact the GC process? Given that priority date is 2007, it is unlikely(?) that 485 would be adjusted in that time.
Thanks
If 485 is pending for over six months and someone switched the job using AC21 for a position which would require extended stay [upto 2-3 years] outside the US. Would it any way impact the GC process? Given that priority date is 2007, it is unlikely(?) that 485 would be adjusted in that time.
Thanks
hair funny quotes on men. funny quotes on men. funny; funny quotes on men. funny
estrela21
02-08 10:50 PM
Some questions before I answer.
1) Did you get married in a church or did you reserve a church for marriage?
2) If you are not married how do you start immigration paper work?
If you want to start paperwork, you need to get married.If you have to get married, you need to get married before March 31.If you have to get married before March 31, you need to get your marriage license before that.If you already got married why do you need license?If you are talking about marriage certificate for applying immigration, you can apply it on line.If he goes to jail on March 31st then ask him to apply for parol to come out.
well i got marriage ceremony , not civil yet...because i didn't know since he have this problem in court. and he says that they would let him out once he's in jail.. the chance of he goes to jail is 50 50... if goes he will get about 18 months. will still can do my papers?
1) Did you get married in a church or did you reserve a church for marriage?
2) If you are not married how do you start immigration paper work?
If you want to start paperwork, you need to get married.If you have to get married, you need to get married before March 31.If you have to get married before March 31, you need to get your marriage license before that.If you already got married why do you need license?If you are talking about marriage certificate for applying immigration, you can apply it on line.If he goes to jail on March 31st then ask him to apply for parol to come out.
well i got marriage ceremony , not civil yet...because i didn't know since he have this problem in court. and he says that they would let him out once he's in jail.. the chance of he goes to jail is 50 50... if goes he will get about 18 months. will still can do my papers?
more...
pitha
08-04 05:07 PM
I too dont have an A# on my my I-140 approval. Does the I140 receipt notice have an A# on it. I dont have the receipt for the i140.
I have the notice of action for my I-140 approval. It doesn't mention an A# anywhere. Are you sure about this?
I have the notice of action for my I-140 approval. It doesn't mention an A# anywhere. Are you sure about this?
hot funny birthday quotes for men.
saileshdude
06-25 11:00 AM
You could argue that you don't need to have a job now, just that you need to be in a "same or similar"position when the 485 is approved. if your priority date is very backlogged, you have lots of time to find a job.
Would this kind of RFE response be acceptable ? If the RFE asks for employment letter and you send a response that you dont have a job and also that you are not required to have one until your Priority date becomes current, I think your AOS can be denied. Based on the memo you can argue that but I am not sure if anyone has actually done this and their AOS has continued to be processed.
Please elaborate if you can on this.
Would this kind of RFE response be acceptable ? If the RFE asks for employment letter and you send a response that you dont have a job and also that you are not required to have one until your Priority date becomes current, I think your AOS can be denied. Based on the memo you can argue that but I am not sure if anyone has actually done this and their AOS has continued to be processed.
Please elaborate if you can on this.
more...
house funny quotes about men being
chintals
09-03 01:33 PM
How did you do that? can you please provide info?
The phone number to call and would they need any information from me?
1) Call 800 and convince the person to escalate to 2nd level and speak to IIO
2) Call 800 and choose cases were seperated option which will go to respective service center and talk to IO.
Some folks are helpful and some are not.. It all depends how you approach and how you can convince.. good luck. Other option is go to Infopass.
The phone number to call and would they need any information from me?
1) Call 800 and convince the person to escalate to 2nd level and speak to IIO
2) Call 800 and choose cases were seperated option which will go to respective service center and talk to IO.
Some folks are helpful and some are not.. It all depends how you approach and how you can convince.. good luck. Other option is go to Infopass.
tattoo funny quotes about men. funny quotes for men; funny quotes for men
smisachu
06-08 03:28 PM
Hi
I wanted to know how long it took for I-140 approval. I also got Labor by PERM filed in Dec05 and will be filing I-140, EB2.
Thanks
I wanted to know how long it took for I-140 approval. I also got Labor by PERM filed in Dec05 and will be filing I-140, EB2.
Thanks
more...
pictures funny quotes for men. funny
Michael chertoff
10-06 03:36 PM
Troll alert. Avoid responding to these posts.
just a humble question.. whats wrong in responding to this kind of posts. i dont see anything wrong in suggesting or helping other people like us.
atleast he is not posting anything bad against IV or any religion or anything negative.
MC
just a humble question.. whats wrong in responding to this kind of posts. i dont see anything wrong in suggesting or helping other people like us.
atleast he is not posting anything bad against IV or any religion or anything negative.
MC
dresses Funny Retirement Quotes Words;
Humhongekamyab
11-10 03:04 PM
By volunteering she is taking away a job of a US worker so the answer is no.
more...
makeup Whitelack Men#39;s Funny
Krilnon
03-04 07:28 PM
It hasn't even been 23 hours yet, calm down! :P
girlfriend funny birthday quotes for men.
mhathi
03-19 12:57 PM
PD is checked both at the time of filing and approval of 485. Once filed, the 485s are processed based on RD. If at the time of adjudication the PD is not current, the file is kept in the "pre-adjudicated" pile until the PD becomes current again for that particular application.
This is my understanding.
This is my understanding.
hairstyles Great Men Quotes is a
shsk
07-16 11:36 PM
Hi,
My attorney is requesting that I need to submit Tax return for filing AOS.
I had sent W2 forms
Is tax return separate from W2 , I am confused..:confused:
Pls help
My attorney is requesting that I need to submit Tax return for filing AOS.
I had sent W2 forms
Is tax return separate from W2 , I am confused..:confused:
Pls help
desidas
01-22 10:55 AM
<bump>
Lucky7
12-05 06:38 AM
with this type of money and job, you should have filed for EB2.. why EB3
At the time i was 2 semesters away from my Masters plus the mess my previous attorney had caused, my new attorney felt comfortable filing under EB3 because he felt i would have problems at the I-140 stage if i did not compete my Masters by that time.
In 2001 my attorney expected to have my GC by 2003 the latest and he was not counting on this mess with DBEC.
Hope all of us are through with this nightmare by end of 2007.
At the time i was 2 semesters away from my Masters plus the mess my previous attorney had caused, my new attorney felt comfortable filing under EB3 because he felt i would have problems at the I-140 stage if i did not compete my Masters by that time.
In 2001 my attorney expected to have my GC by 2003 the latest and he was not counting on this mess with DBEC.
Hope all of us are through with this nightmare by end of 2007.
No comments:
Post a Comment