Page 240 of 313 FirstFirst ... 140190230238239240241242250290 ... LastLast
Results 5,976 to 6,000 of 7812

Thread: EB2 Predictions (Rather Calculations) - 2011

  1. #5976
    Sophomore
    Join Date
    Oct 2010
    Location
    San jose, ca
    Posts
    17
    Time to get back to work... Ill let this take care.. (python on linux)


    import os, time, urllib
    while True:
    for x in xrange(5519,5650):
    conn = urllib.urlopen("http://www.travel.state.gov/visa/bulletin/bulletin_%d.html" % x)
    if conn.code == 200:
    os.system("notify-send -u critical -t 1000000000 \"Check bulletin..\"")
    time.sleep(10*60)

  2. #5977
    Has visa bulletin ever been released so late in the day in past few years? Just asking as I am little curious. Most of the time what I have observed that they are released around late morning to early afternoon. It is already 2:45 PM per EST.
    Category: EB2 India
    EB2 Priority Date: 05/20/2011
    Processing Center: NSC
    EB2-EB3 Downgrade: 10/28/2020
    Receipt Notice: 01/18/2021
    Biometrics: 04/08/2021
    EB3 I-140 Approval (PP): 5/14/2021
    EAD/AP Expedite Request: 7/24/2021
    EAD/AP Approval: 8/25/2021
    EAD/AP in hands: 9/2/2021
    I-693 RFE Issued: 8/3/2021
    I-693 RFE Response: 8/18/2021
    New card production: 9/1/2021
    I-485 Approval: 9/3/2021
    Green card mailed: 9/3/2021
    Green card in hands: 9/10/2021

  3. #5978
    Quote Originally Posted by operas View Post
    Time to get back to work... Ill let this take care.. (python on linux)


    import os, time, urllib
    while True:
    for x in xrange(5519,5650):
    conn = urllib.urlopen("http://www.travel.state.gov/visa/bulletin/bulletin_%d.html" % x)
    if conn.code == 200:
    os.system("notify-send -u critical -t 1000000000 \"Check bulletin..\"")
    time.sleep(10*60)
    Already have this in place

  4. #5979
    Quote Originally Posted by operas View Post
    Time to get back to work... Ill let this take care.. (python on linux)


    import os, time, urllib
    while True:
    for x in xrange(5519,5650):
    conn = urllib.urlopen("http://www.travel.state.gov/visa/bulletin/bulletin_%d.html" % x)
    if conn.code == 200:
    os.system("notify-send -u critical -t 1000000000 \"Check bulletin..\"")
    time.sleep(10*60)
    You can just poll this url instead of checking those random html pages:

    http://travel.state.gov/pdf/visabull...tember2011.pdf

  5. #5980
    Maybe CO was attending the fed meeting...it just ended ... so maybe now he'll go back to his office while grabbing a sandwich from subway...look up his e-mails on the way..and then reply to the IT guy letting him know to publish the VB on the website.

  6. #5981
    Quote Originally Posted by Jonty Rhodes View Post
    Has visa bulletin ever been released so late in the day in past few years? Just asking as I am little curious. Most of the time what I have observed that they are released around late morning to early afternoon. It is already 2:45 PM per EST.
    I mentioned in earlier post that the bulletin this year which moved dates to march 8th 2007, was released around 12:45 PST afternoon, as that's when I got call from my friend, who always calls me immediately as soon as VB is released, to inform. so it is possible. After 2PST , the probability goes almost 0. then it's curtains for one more day. When that happens, we can further discuss conspiracy theories as to why they did not release today

  7. #5982
    It will be updated around 3:50 ET (or) 10:30 AM ET.
    Quote Originally Posted by Jonty Rhodes View Post
    Has visa bulletin ever been released so late in the day in past few years? Just asking as I am little curious. Most of the time what I have observed that they are released around late morning to early afternoon. It is already 2:45 PM per EST.

  8. #5983
    I think if you replace the URL with http://travel.state.gov/pdf/visabull...tember2011.pdf, you don't need the for loop.

    Quote Originally Posted by operas View Post
    Time to get back to work... Ill let this take care.. (python on linux)


    import os, time, urllib
    while True:
    for x in xrange(5519,5650):
    conn = urllib.urlopen("http://www.travel.state.gov/visa/bulletin/bulletin_%d.html" % x)
    if conn.code == 200:
    os.system("notify-send -u critical -t 1000000000 \"Check bulletin..\"")
    time.sleep(10*60)

  9. #5984
    Thanks nishant2200 and indiasunil for shedding some light on it. My PD is in 2011 but I still feel very excited and sometimes tense awaiting those VBs. I can imagine the tension and excitement among people with PDs in 2007 and 2008. Hope, you guys get current this VB.

  10. #5985
    I think they are wising up now...maybe CO is talking with W.H. about the implication of recent announcement on the Visa Bulletin...they announced they'll let Entrepreneurs apply in EB2...but if EB2 is so messed up with almost 4-5 year wait for I/C, then they rule out I/C investing money or opening companies...

  11. #5986
    This wait is killing me. I will stop refreshing the bulletin and get a coffee

  12. #5987
    Sophomore
    Join Date
    Oct 2010
    Location
    San jose, ca
    Posts
    17
    Quote Originally Posted by harick View Post
    I think if you replace the URL with http://travel.state.gov/pdf/visabull...tember2011.pdf, you don't need the for loop.
    Thanks updated..

    import os, time, urllib

    while True:
    conn = urllib.urlopen("http://travel.state.gov/pdf/visabulletin/VisaBulletin_September2011.pdf")
    if conn.code == 200: os.system("notify-send -u critical -t 1000000000 \"Check bulletin..\"")
    time.sleep(2*60)

  13. #5988
    Guru Spectator's Avatar
    Join Date
    Oct 2010
    Location
    A Galaxy Far far Away
    Posts
    3,337
    Whilst it might seem perverse, I am more interested to see whether CO includes some notes on future movement in the VB.

    They have been spectacularly lacking for some time.

    The dates will be what they will be.
    Without an irritant, there can be no pearl.

  14. #5989
    Quote Originally Posted by operas View Post
    Thanks updated..

    import os, time, urllib

    while True:
    conn = urllib.urlopen("http://travel.state.gov/pdf/visabulletin/VisaBulletin_September2011.pdf")
    if conn.code == 200: os.system("notify-send -u critical -t 1000000000 \"Check bulletin..\"")
    time.sleep(2*60)
    import webbrowser

    webbrowser.open("http://travel.state.gov/pdf/visabulletin/VisaBulletin_September2011.pdf")

    will automatically open the link in your default browser.. !!

    Here's my version:
    if __name__ == "__main__":

    import os, time, urllib,datetime,webbrowser
    urlstr = "http://travel.state.gov/pdf/visabulletin/VisaBulletin_September2011.pdf"
    while True:
    print str(datetime.datetime.now())
    conn = urllib.urlopen(urlstr)
    print conn.code
    if conn.code == 200:
    webbrowser.open(urlstr)
    break
    time.sleep(2*60)
    Last edited by pdfeb09; 08-09-2011 at 02:31 PM.

  15. #5990
    Quote Originally Posted by operas View Post
    Thanks updated..

    import os, time, urllib

    while True:
    conn = urllib.urlopen("http://travel.state.gov/pdf/visabulletin/VisaBulletin_September2011.pdf")
    if conn.code == 200: os.system("notify-send -u critical -t 1000000000 \"Check bulletin..\"")
    time.sleep(2*60)
    Make it work every month

    from google.appengine.api import urlfetch
    import logging
    import datetime
    from dateutil.relativedelta import relativedelta

    now = datetime.datetime.now() + relativedelta( months = +1 )
    month_name = now.strftime("%B")
    year = now.strftime("%Y")
    url = 'http://travel.state.gov/pdf/visabulletin/VisaBulletin_%s%s.pdf' % (month_name, year)
    try:
    response = urlfetch.Fetch(url)
    except Exception, e:
    logging.exception(e)
    return
    if response.status_code == 404:
    logging.info('HTTP Error while fetching Visa Bulletin. Error Code: %s' % response.status_code)
    return
    util.send_log_mail('Visa Bulletin Updated', 'Visa Bulletin Updated')
    util.send_log_sms('Visa Bulletin Updated')

  16. #5991
    Quote Originally Posted by ssvp22 View Post
    Make it work every month

    from google.appengine.api import urlfetch
    import logging
    import datetime
    from dateutil.relativedelta import relativedelta

    now = datetime.datetime.now() + relativedelta( months = +1 )
    month_name = now.strftime("%B")
    year = now.strftime("%Y")
    url = 'http://travel.state.gov/pdf/visabulletin/VisaBulletin_%s%s.pdf' % (month_name, year)
    try:
    response = urlfetch.Fetch(url)
    except Exception, e:
    logging.exception(e)
    return
    if response.status_code == 404:
    logging.info('HTTP Error while fetching Visa Bulletin. Error Code: %s' % response.status_code)
    return
    util.send_log_mail('Visa Bulletin Updated', 'Visa Bulletin Updated')
    util.send_log_sms('Visa Bulletin Updated')
    I am not IT guy but if you guys get headache come see me... I have solution for post VB depression.

  17. #5992
    Alcohol can be used to celebrate and to commiserate. Let's hope that more people will be celebrating once the VB is released and we see some good movement.

  18. #5993
    are we sure about seeing sept vb today. Its already 3:30pm est. May be too late for today?

  19. #5994
    20 more mins to go ....if it is assumed to be released at 3:50 EDT

  20. #5995
    Sophomore
    Join Date
    Oct 2010
    Location
    San jose, ca
    Posts
    17
    Quote Originally Posted by pdfeb09 View Post
    import webbrowser

    webbrowser.open("http://travel.state.gov/pdf/visabulletin/VisaBulletin_September2011.pdf")

    will automatically open the link in your default browser.. !!
    Did'nt know about webbrowser..Thanks !
    Anyway its of no use to me when I work on the terminal most of the time.. and dont use a regular window manager..

    Tri-monitor setup with Awesome window manager (http://awesome.naquadah.org) and plenty of mrxvt terminals is how I work

  21. #5996
    Quote Originally Posted by neospeed View Post
    are we sure about seeing sept vb today. Its already 3:30pm est. May be too late for today?
    I rescheduled my doctor appointment for next friday

  22. #5997

    where is visa bulletin???

    My priority date is 05/02/2007...I cannot take it anymore
    Last edited by rahil1; 08-09-2011 at 02:33 PM. Reason: incorrect PD

  23. #5998
    lets have a QBlog drinking party....BYOB

  24. #5999

    Agree!

    Quote Originally Posted by neospeed View Post
    are we sure about seeing sept vb today. Its already 3:30pm est. May be too late for today?
    Will know in about 30 minutes. Don't think they will release after 4 EST.

  25. #6000
    bulletin is out date is same

Thread Information

Users Browsing this Thread

There are currently 10 users browsing this thread. (0 members and 10 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •