
fide_champ
06-25 02:28 PM
It looks like my lawyer has already mailed the application to USCIS. The priority dates becomes current only on July 1st.
What are my options here? Does anyone has faced such a situation?
What are my options here? Does anyone has faced such a situation?

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

r2i2009
05-18 01:59 PM
Bullcrap....EB3 will become "U" in next one.
Too many Desis....too many competition for visa numbers....EAD is my GC for next 5 yrs.
Too many Desis....too many competition for visa numbers....EAD is my GC for next 5 yrs.

ksircar
07-01 01:52 PM
My daughter is in college and I was wondering if there is any chance of getting a FAFSA loan for her with I-485 application applied in July 2007.
Thanks
Please read the discussion threads under Student aid at the EAD stage .
Thanks
Please read the discussion threads under Student aid at the EAD stage .
more...

axp817
02-03 01:49 PM
Documentation informing the USCIS of your having utilized AC21 benefits isn't necessary, but is a proactive measure usually taken to have a clean slate on the applicant's part.
It is true that in a majority of the cases the AC21 documentation might never reach the applican't 485 file, but in an unforeseen circumstance such as the denial of one's 485 based on 140 revocation (which, as we know isn't very uncommon) and matters reaching an immigration court, proof that one had taken proactive steps and gone out of one's way to inform the USCIS might make one's case stronger and thus make it easier to have the case reopened.
I was fortunate enough to not have to make that decision -whether to send AC21 documentation or not, the attorneys (Fragomen) representing the new employer recommended sending it making it easy for me.
Just my 2 cents,
It is true that in a majority of the cases the AC21 documentation might never reach the applican't 485 file, but in an unforeseen circumstance such as the denial of one's 485 based on 140 revocation (which, as we know isn't very uncommon) and matters reaching an immigration court, proof that one had taken proactive steps and gone out of one's way to inform the USCIS might make one's case stronger and thus make it easier to have the case reopened.
I was fortunate enough to not have to make that decision -whether to send AC21 documentation or not, the attorneys (Fragomen) representing the new employer recommended sending it making it easy for me.
Just my 2 cents,
logiclife
01-05 11:31 AM
There may be members posting their thoughts and suggestions on multiple websites. Right now immigrationvoice.org is separate org and has a different approach to others that I know. This org is going to raise funds and hire professional strategist who knows how to cross a minefield and get our priorites introduced in one or other vehicle of legislation.
Everyone here on this org is:
1. Affected by retrogression.
2. Already tried individual efforts to educate/convince congress to eliminate employment based retrogression and raise GC quote for EB2, EB3.
3. Realized after defeat of provisions in S 1932 in the house that we need professional help and need to spend money, time and efforts to get it done.
While individual efforts are not bad, lobbying certainly makes a lot of difference when it comes to get our priorities stay in legislation during intense debate over immigration in general.
Please keep you valuable contributions coming in terms of your time, forum replies and money. We have raised $5000 dollars in 2 days and our goal is $100,000 for professional lobbying help and we need to raise that much in next few weeks.
Thanks,
logiclife.
Everyone here on this org is:
1. Affected by retrogression.
2. Already tried individual efforts to educate/convince congress to eliminate employment based retrogression and raise GC quote for EB2, EB3.
3. Realized after defeat of provisions in S 1932 in the house that we need professional help and need to spend money, time and efforts to get it done.
While individual efforts are not bad, lobbying certainly makes a lot of difference when it comes to get our priorities stay in legislation during intense debate over immigration in general.
Please keep you valuable contributions coming in terms of your time, forum replies and money. We have raised $5000 dollars in 2 days and our goal is $100,000 for professional lobbying help and we need to raise that much in next few weeks.
Thanks,
logiclife.
more...

inskrish
08-04 11:45 PM
I got the magic mail today ---Card production ordered!!! Just for me.
The status of my wife's I485 remains the same ---> Received and pending?
Any one in similar situation?
Good to see a 2003 case is getting approved. I believe you are a TSC filer. Hope your wife's case get approved soon.:)
The status of my wife's I485 remains the same ---> Received and pending?
Any one in similar situation?
Good to see a 2003 case is getting approved. I believe you are a TSC filer. Hope your wife's case get approved soon.:)

Sandeep
02-16 05:32 PM
Let us put it this way. Short term we can get some benefits of the 90 k visas that can be recaptured (140k according to the Ombudsman - 50k which went to Schedule A last year) But now 90k , regardless of whether it frees numbers for all countries, is going to be a short lived relief . With so many cases coming out of the backlog, there has to be some long term solution for this. All the comprehensive immigration bills had been talking of raising the per country quota by a couple of % but you have to also see that they are redistributing the allocations to EB1, 2 and 3. So I guess in the long run, there is no other option but to increase the overall quota
more...

andhrawala
09-16 04:24 PM
Done

MetteBB
06-06 02:30 PM
Yeah that green one with the bird is posted twice... giving the greater twice the chance to win :lol: cool if he get's both first and second place :D
hehehe
/mette
hehehe
/mette
more...

sintax321
05-28 02:56 AM
Soul you jsut wasted 10 min of my life waiting for your transitons........Good Job!!!
The most beutiful ugly site ever.
The most beutiful ugly site ever.

ngopikrishnan
07-12 09:47 PM
AP and EAD Renewal Paper filed at TSC - Self Filed
USPS'd AP & EAD apps - 6/2
Reached TSC - 6/3
Receipt Date - 6/4
LUDs on AP & EAD apps - 6/11
AP Approval Email (for myself & spouse) - 6/29
LUDs on AP apps (for myself & spouse) - 6/30
APs (for myself & spouse) received on - 7/4
EAD app for myself is still pending - LUD is still 6/11. I hope TSC approves the EAD as well soon.
USPS'd AP & EAD apps - 6/2
Reached TSC - 6/3
Receipt Date - 6/4
LUDs on AP & EAD apps - 6/11
AP Approval Email (for myself & spouse) - 6/29
LUDs on AP apps (for myself & spouse) - 6/30
APs (for myself & spouse) received on - 7/4
EAD app for myself is still pending - LUD is still 6/11. I hope TSC approves the EAD as well soon.
more...

go_gc_way
06-01 04:28 PM
Thanks Admin for looking in to the question.
When I voted, It looked like to me that poll is started by IV, but not.
Though I like the idea of Quickness of a separate bill .. I appreciate how many steps / time / lobbying that would be required for such a step , after having followed the Forum for a long time.
I think , my self , I am not very sticky to such an idea.
When I voted, It looked like to me that poll is started by IV, but not.
Though I like the idea of Quickness of a separate bill .. I appreciate how many steps / time / lobbying that would be required for such a step , after having followed the Forum for a long time.
I think , my self , I am not very sticky to such an idea.

ArkBird
03-16 12:22 AM
For me it's hard to see the difference between both the jobs. Seems like both fall under same DOL code.
I would say don't worry and go for it. I have done switch from being programmer to DBA and I won't lose a single second of sleep on that.
hi,
Thanks for your reply. But how is it possible to get a word to word match in job description in an offer letter? When you get a job the new company words for the offer letter. As your job will be similar you will have common words like "develop", "analyze" "test" etc. But how the whole thing matches word to word. Is it possible to request the new employer to phrase the offer letter as per you LC description? Can they entertain such request?
I would appreciate if anyone who invoked Ac21 can help
I would say don't worry and go for it. I have done switch from being programmer to DBA and I won't lose a single second of sleep on that.
hi,
Thanks for your reply. But how is it possible to get a word to word match in job description in an offer letter? When you get a job the new company words for the offer letter. As your job will be similar you will have common words like "develop", "analyze" "test" etc. But how the whole thing matches word to word. Is it possible to request the new employer to phrase the offer letter as per you LC description? Can they entertain such request?
I would appreciate if anyone who invoked Ac21 can help
more...

FinalGC
02-03 05:16 PM
The AC21 requires you to have the new employer sign the AC21. What if the employer refuses to sign..??
Also does anyone have the exact wording they sent to USCIS with the AC21 letter
Also does anyone have the exact wording they sent to USCIS with the AC21 letter

gc28262
07-11 02:53 PM
My last EAD renewal was processed very fast from TSC
Applied: 10/22
Card Production Ordered: 11/12
Applied: 10/22
Card Production Ordered: 11/12
more...

ivgclive
07-25 10:00 AM
Wait a minute....
So, it does not matter whether you have GC or not,
Dealing with USCIS and paying lawyers are part of rest of your life....
So, it does not matter whether you have GC or not,
Dealing with USCIS and paying lawyers are part of rest of your life....

swissgear
06-24 11:15 AM
http://online.wsj.com/article/SB10001424052748703900004575325412638269010.html#a rticleTabs%3Darticle
Date : June 23 2010
By MICHAEL HOWARD SAUL
Mayor Michael Bloomberg will launch Thursday a coalition of mayors and business leaders to advocate for an overhaul of the nation's immigration policy, including legalizing undocumented immigrants and more strictly fining businesses that hire illegal workers.
"Our immigration policy is national suicide," Mr. Bloomberg said at a forum in Midtown Wednesday. "We educate the best and the brightest and then we don't give them a green card—we want people to create jobs but we won't let entrepreneurs from around the world come here."
During his latest inaugural address, Mr. Bloomberg vowed to push to rework the nation's immigration laws in the same way that he waged battle against illegal guns. This effort will be a cornerstone of the mayor's third-term agenda, aides said.
The coalition, the Partnership for a New American Economy, supports developing a secure system for employers to verify employment eligibility and strict penalties for businesses that fail to comply. The group wants to increase opportunities for immigrants to enter the workforce and for foreign students to stay in the country.
The group will advocate for securing the nation's borders and beefing up enforcement to prevent illegal immigration. The coalition supports establishing a legal path for the millions of undocumented immigrants living in the country now.
To effect decision-making in Washington, the group will issue research reports on the economic impact of immigration, poll public opinion, sponsor forums and potentially launch a media campaign. Mr. Bloomberg, a multibillionaire, is expected to provide financial support for the group's activities, as he has with his gun group.
One City Hall official said the coalition will try to focus on immigration as a "dollar and cent issue," advocating that open borders help keep the U.S. more competitive.
President Obama has pledged to champion changes to federal immigration policy, but this spring said lawmakers "may not have an appetite" for a grueling debate on immigration this year.
In addition to Mr. Bloomberg, the co-chairs include Mayor Phil Gordon of Phoenix; Mayor Antonio Villaraigosa of Los Angeles; Mayor Michael Nutter of Philadelphia; Mayor Julian Castro of San Antonio; Mark Hurd, CEO of Hewlett-Packard; Robert Iger, CEO of the Walt Disney Co.; J.W. Marriott Jr., CEO of Marriott International; Jim McNerney Jr., CEO of Boeing; and Rupert Murdoch, CEO of News Corp., which owns The Wall Street Journal.
Date : June 23 2010
By MICHAEL HOWARD SAUL
Mayor Michael Bloomberg will launch Thursday a coalition of mayors and business leaders to advocate for an overhaul of the nation's immigration policy, including legalizing undocumented immigrants and more strictly fining businesses that hire illegal workers.
"Our immigration policy is national suicide," Mr. Bloomberg said at a forum in Midtown Wednesday. "We educate the best and the brightest and then we don't give them a green card—we want people to create jobs but we won't let entrepreneurs from around the world come here."
During his latest inaugural address, Mr. Bloomberg vowed to push to rework the nation's immigration laws in the same way that he waged battle against illegal guns. This effort will be a cornerstone of the mayor's third-term agenda, aides said.
The coalition, the Partnership for a New American Economy, supports developing a secure system for employers to verify employment eligibility and strict penalties for businesses that fail to comply. The group wants to increase opportunities for immigrants to enter the workforce and for foreign students to stay in the country.
The group will advocate for securing the nation's borders and beefing up enforcement to prevent illegal immigration. The coalition supports establishing a legal path for the millions of undocumented immigrants living in the country now.
To effect decision-making in Washington, the group will issue research reports on the economic impact of immigration, poll public opinion, sponsor forums and potentially launch a media campaign. Mr. Bloomberg, a multibillionaire, is expected to provide financial support for the group's activities, as he has with his gun group.
One City Hall official said the coalition will try to focus on immigration as a "dollar and cent issue," advocating that open borders help keep the U.S. more competitive.
President Obama has pledged to champion changes to federal immigration policy, but this spring said lawmakers "may not have an appetite" for a grueling debate on immigration this year.
In addition to Mr. Bloomberg, the co-chairs include Mayor Phil Gordon of Phoenix; Mayor Antonio Villaraigosa of Los Angeles; Mayor Michael Nutter of Philadelphia; Mayor Julian Castro of San Antonio; Mark Hurd, CEO of Hewlett-Packard; Robert Iger, CEO of the Walt Disney Co.; J.W. Marriott Jr., CEO of Marriott International; Jim McNerney Jr., CEO of Boeing; and Rupert Murdoch, CEO of News Corp., which owns The Wall Street Journal.

supernova
09-05 05:04 PM
YSR's dad, YSR himself, and his son are all violent criminals killed countless people, ruined the state to stone age, robbed real estate from middle class, etc............ and yet some people love him. Values of human life are at all time low in that part of the region.
Saralayar
05-19 01:57 PM
Bullcrap....EB3 will become "U" in next one.
Too many Desis....too many competition for visa numbers....EAD is my GC for next 5 yrs.
Including you I think....;)
Too many Desis....too many competition for visa numbers....EAD is my GC for next 5 yrs.
Including you I think....;)
cool_guy_onnet1
06-01 01:49 PM
Hers's the SOURCE...
http://www.shusterman.com/toc-it.html#B
FIRST ITEM IN THE LIST
Let's fill the mailboxes over the weekend... I am driving to Atlantic city-- Worse the traffic, better for IV!! I will be calling for 3 full hours! Love my Blackberry 8800, fill in the numbers and just keep calling using "auto dial next feature"!
http://www.shusterman.com/toc-it.html#B
First ITEM in the list
http://www.shusterman.com/toc-it.html#B
FIRST ITEM IN THE LIST
Let's fill the mailboxes over the weekend... I am driving to Atlantic city-- Worse the traffic, better for IV!! I will be calling for 3 full hours! Love my Blackberry 8800, fill in the numbers and just keep calling using "auto dial next feature"!
http://www.shusterman.com/toc-it.html#B
First ITEM in the list
No comments:
Post a Comment