04/26 - Wonderful Wednesday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Apr 26, 2017.

Thread Status:
Not open for further replies.
  1. TurkedOut

    TurkedOut Survey Slinger

    Joined:
    Dec 11, 2016
    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    [​IMG]
     
    • LOL LOL x 4
  2. Eisenpower

    Eisenpower Survey Slinger

    Joined:
    Mar 18, 2017
    Messages:
    4,873
    Gender:
    Male
    Ratings:
    +11,914
    That was the missing piece of info. I guess I missed that when I installed it. Thanks y'all :emoji_blush:
     
    • Like Like x 1
  3. Randomacts

    Randomacts Survey Slinger

    Joined:
    Nov 16, 2016
    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    No problem I'll just put your subnet in the DMZ.
     
  4. Jagdpanzer

    Jagdpanzer Survey Slinger

    Joined:
    Nov 15, 2016
    Messages:
    2,960
    Gender:
    Male
    Ratings:
    +3,443

    Tranyak..... :cj: :yesyes:
     
  5. TurkedOut

    TurkedOut Survey Slinger

    Joined:
    Dec 11, 2016
    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    [​IMG]
     
    • LOL LOL x 1
    • Love Love x 1
  6. ZileWrath

    ZileWrath Survey Slinger

    Joined:
    Apr 8, 2017
    Messages:
    1,963
    Gender:
    Male
    Ratings:
    +1,716
    well restarting fixed it i guess so thats something
     
    • Like Like x 1
  7. ChrisTurk

    ChrisTurk Administrator

    Joined:
    Nov 15, 2016
    Messages:
    56,746
    Ratings:
    +163,330
    [​IMG]

    :emoji_sleeping:
     
    • LOL LOL x 5
    • Like Like x 1
  8. GreenMachine842

    GreenMachine842 Moderator (⌐■_■)

    Joined:
    Feb 28, 2017
    Messages:
    6,715
    Gender:
    Male
    Ratings:
    +13,816
    I'ts like I'm in networking class all over again!
    [​IMG]
     
    • LOL LOL x 2
  9. TurkedOut

    TurkedOut Survey Slinger

    Joined:
    Dec 11, 2016
    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    [​IMG]
     
    • LOL LOL x 5
  10. Hazmat

    Hazmat Survey Slinger

    Joined:
    Nov 15, 2016
    Messages:
    2,151
    Ratings:
    +3,845
    Use this and it will open it up automatically for you most of the time. It uses Kada's Captcha Clear in the Captcha Counter script and will pop up a captcha box on the 35th HIT.

    Code:
    // ==UserScript==
    // @name       _Captcha Counter
    // @version    0.9
    // @match      https://www.mturk.com/mturk/*
    // @copyright  2014+, Tjololo
    // @require     http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
    // @namespace https://greasyfork.org/users/710
    // @description Counts the number of hits remaining before you get a captcha
    // ==/UserScript==
    
    var captcha_hit_group_id = "3GSJT927R6AJNHIHB3Q30IH7IG6MXU";
    
    var hitId = "";
    if (document.getElementsByName("hitId")[0])
        hitId = document.getElementsByName("hitId")[0].value;
    var captchanum = 35;
    if (localStorage["captcha_number"]){
        captchanum = parseInt(localStorage["captcha_number"]);
    }
    var count = 0;
    if (localStorage["captcha_counter"]){
        count = parseInt(localStorage["captcha_counter"]);
        console.log("Count: "+count);
    }
    
    if(window.location.href.indexOf("accept") > -1) {
        if ($('input[name="userCaptchaResponse"]').length > 0) {
            count = 0;
            localStorage["captcha_counter"] = count;
            console.log("Captcha found: "+count);
        }
        else{
            if (hitId !== "" && $('div[class="message error"]').length === 0){
                console.log("Accepted Hit");
                count+=1;
                localStorage["captcha_counter"]=count;
                console.log((captchanum-count)+" hits left until captcha!");
                if (count == captchanum)
                    window.open("https://www.mturk.com/mturk/preview?groupId="+captcha_hit_group_id+"", "mywindow", "width=800, height=600, top=200, left=200, scrollbars=yes, statusbar=no");
                    //alert("Next hit is a captcha!");
                //alert((captchanum-count)+" hits left until captcha!");
            }
            else{
                console.log("No hit accepted");
            }
        }
    }
    else{
        if ($('input[name="userCaptchaResponse"]').length > 0) {
            count = 0;
            localStorage["captcha_counter"] = count;
            console.log("Captcha found: "+count);
        }
    }
    
    if (captchanum-count == 1)
        //window.open("https://www.mturk.com/mturk/preview?groupId="+captcha_hit_group_id+"", "mywindow", "width=800, height=600, top=200, left=200, scrollbars=yes, statusbar=no");
        captchaCountStr = (captchanum-count)+" hit left until captcha!";
    else if (captchanum-count === 0)
        captchaCountStr = "Last hit before captcha!";
    else
        captchaCountStr = (captchanum-count)+" hits left until captcha!";
    
    var row = document.createElement("tr");
    var cell = document.createElement("td");
    if ($('#theTime').length)
      var table = $('#theTime').parents('table')[0];
    else
      var table = $('.title_orange_text_bold:first').parents('tbody')[0];
    cell.className = "title_orange_text";
    cell.setAttribute("align","left");
    cell.setAttribute("valign","top");
    cell.setAttribute("style","white-space: nowrap; padding-top: 1ex;");
    cell.style.paddingTop = "3px";
    cell.addEventListener("click", function clickCell(e) {
        var num_str=prompt("How many hits do you accept before you get a captcha? Note: This includes returns","35");
        var num = parseint(num_str);
        if (num){
            localStorage["captcha_number"] = num;
            alert("Captcha number saved as "+num);
        }
    });
    cell.innerHTML="<b>Captcha:</b> <span>"+captchaCountStr+"</span>";
    row.appendChild(cell);
    table.appendChild(row);
     
    • Today I Learned Today I Learned x 1
  11. Randomacts

    Randomacts Survey Slinger

    Joined:
    Nov 16, 2016
    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    ::1

    God damn old timers stuck on ipv4
     
    • LOL LOL x 1
  12. gurlondrums

    gurlondrums Cracker of the Step Whip

    Joined:
    Feb 26, 2017
    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    [​IMG]

    jiggle, jiggle
     
    • LOL LOL x 4
  13. LurkinNturkin

    LurkinNturkin Active Turker

    Joined:
    Jan 18, 2017
    Messages:
    323
    Gender:
    Male
    Ratings:
    +1,149
    Title: Short survey on consumer topics (4/26/17 - B) (YOU MAY ONLY COMPLETE 1 HIT IN THIS GROUP) | PANDA
    Worker: Preview | Accept | Requester
    Requester: GeorgetownMSBResearch [A1VSOQ6MXD1E1J] (Contact)
    TO 1: [Pay: 3.03] [Fast: 4.60] [Comm: 4.03] [Fair: 4.66] [Reviews: 301] [ToS: 2]
    TO 2:
    [Rate: --/hr] [Pen: -- days] [Res: -- of 0] [Rec: -- of 0] [Rej: 0] [ToS: 0] [Brk: 0]
    Auto Approval:
    8 hours
    Time: 30 minutes
    HITs Available: 20
    Reward: $0.25
    Qualifications: HIT approval rate (%) is not less than 90; Location is US;

    HIT exported from Mturk Suite v1.21.10
    1-2 min
     
    • Nom Nom Nom! Nom Nom Nom! x 7
  14. TurkedOut

    TurkedOut Survey Slinger

    Joined:
    Dec 11, 2016
    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    Most major enterprise networks aren't using IPv6 and won't be for a good long while. There's just no rush to go to v6 when things like nat are easy enough to do.
     
    • Like Like x 1
  15. Randomacts

    Randomacts Survey Slinger

    Joined:
    Nov 16, 2016
    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    [​IMG]

    https://xkcd.com/865/
     
    • LOL LOL x 1
  16. fiatrix

    fiatrix Survey Slinger

    Joined:
    Mar 22, 2017
    Messages:
    2,389
    Gender:
    Female
    Ratings:
    +4,803
    Well, pins dropped while i was out of the room. Damn panda cap...
     
  17. Randomacts

    Randomacts Survey Slinger

    Joined:
    Nov 16, 2016
    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    I was thirsty after all that shit posting so I got up to get some water and missed pins :(
     
  18. GreenMachine842

    GreenMachine842 Moderator (⌐■_■)

    Joined:
    Feb 28, 2017
    Messages:
    6,715
    Gender:
    Male
    Ratings:
    +13,816
    Don't feel bad I was here the whole time with PANDA on and still missed em.
     
    • Like Like x 1
  19. fiatrix

    fiatrix Survey Slinger

    Joined:
    Mar 22, 2017
    Messages:
    2,389
    Gender:
    Female
    Ratings:
    +4,803
    Yep, i was making a sandwich.
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  20. dan

    dan daelian

    Joined:
    Nov 15, 2016
    Messages:
    28,285
    Gender:
    Male
    Ratings:
    +61,817
    Friendly Reminder: Hockey Magnet Battle Royale in 15 minutes. Don't forget to do the survey.
     
    • Love Love x 2
    • Like Like x 1
    • Today I Learned Today I Learned x 1
Thread Status:
Not open for further replies.