02/17 - Fun Friday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Feb 17, 2017.

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

    alomba87 Survey Slinger

    Messages:
    1,800
    Gender:
    Male
    Ratings:
    +3,429
    I have the script that makes the radio buttons bigger and easier to click. I'm doing these while watching TV, so anything is better than nothing!
     
    • Like Like x 3
  2. catnapped

    catnapped New Turker

    Messages:
    10
    Gender:
    Male
    Ratings:
    +5
    I believe he's conjuring up excuses and it had nothing to do with "said script". Anything from that first batch he didn't reject with the "only one answer showing" reason, he did with the "inaccurate" excuse. Now he's rejecting the last .25 batch (which was working and had the fill-ins) with the "only 1 answer showing" excuse. His hit is messed up and we're paying the price for his ineptness.
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  3. SAJ

    SAJ Survey Slinger

    Messages:
    27,502
    Gender:
    Male
    Ratings:
    +51,488
    I'm crying from this lmao
     
    • LOL LOL x 1
    • Love Love x 1
  4. SquigglyButt

    SquigglyButt Survey Slinger

    Messages:
    5,440
    Gender:
    Male
    Ratings:
    +5,961
  5. Melting Glacier

    Melting Glacier PE: $30.01 - That's over $1.25/hour! ┬┴┤( ͡° ͜ʖ├┬┴

    Messages:
    6,157
    Gender:
    Male
    Ratings:
    +11,423
    Huh, that's surprising. The handful I looked at back then were all good with VESA. I don't see why manufacturers want to cheap out there of all places... it's 4 holes. :emoji_disappointed_relieved:
     
  6. TurkedOut

    TurkedOut Survey Slinger

    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    Apparently there was already a script made for these and I have it installed.
     
    • Today I Learned Today I Learned x 1
  7. alomba87

    alomba87 Survey Slinger

    Messages:
    1,800
    Gender:
    Male
    Ratings:
    +3,429
    :O - share please?
     
  8. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    fuck if I know man.. and a few even force you to buy a $30 adapter for VESA >.>
     
  9. nick2412

    nick2412 Well-Known Turker

    Messages:
    1,017
    Ratings:
    +1,352
    Anybody remember the script that goes to hit with least time immediately after one hit? Not sure why mine isn't working :(
     
  10. TurkedOut

    TurkedOut Survey Slinger

    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    Code:
    // ==UserScript==
    // @name Cliff DesPeaux Image Rating
    // @namespace HarryHood
    // @description 1-9 Hotkeys enter to submit
    // @author HarryHood
    // @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
    // @version 1
    // @grant GM_log
    // @require https://code.jquery.com/jquery-3.1.1.min.js
    // ==/UserScript==
    
    var sanity = "Rating the quility of the following 5 pairs of hotel images.";
    if($("b").eq(1).text() === sanity){
    console.log("Running");
    $("input[value=QueryImage_Related]").click();
    }
    
    i=0
    
    window.onkeydown = function (event) {
    if(event.which == 97){ //numpad 1 hotkey
    
    $('input[value="1"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 98){ //numpad 2 hotkey
    $('input[value="2"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 99){ //numpad 3 hotkey
    $('input[value="3"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 100){ //numpad 4 hotkey
    $('input[value="4"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 101){ //numpad 5 hotkey
    $('input[value="5"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 102){ //numpad 6 hotkey
    $('input[value="6"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 103){ //numpad 7 hotkey
    $('input[value="7"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 104){ //numpad 8 hotkey
    $('input[value="8"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 105){ //numpad 9 hotkey
    $('input[value="9"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 96){ //numpad 10 hotkey
    $('input[value="10"]').eq(i).click();
    i++
    $('input[value="1"]').eq(i+1).focus();
    }
    if(event.which == 13){ //enter hotkey
    
    $('#submitbutton').click
    }
    
    }
    //$(".panel").hide(); //hides instructions
     
    • Today I Learned Today I Learned x 2
  11. TurkedOut

    TurkedOut Survey Slinger

    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    • Like Like x 1
  12. SquigglyButt

    SquigglyButt Survey Slinger

    Messages:
    5,440
    Gender:
    Male
    Ratings:
    +5,961
    First Hotel Room thing I do... the first 4 pictures aren't even in a hotel! Not even near it.
    And for me, script isn't working past first photo
     
  13. nick2412

    nick2412 Well-Known Turker

    Messages:
    1,017
    Ratings:
    +1,352
    • Like Like x 1
  14. alomba87

    alomba87 Survey Slinger

    Messages:
    1,800
    Gender:
    Male
    Ratings:
    +3,429
    You are a gentleman and a scholar.
     
    • Like Like x 1
  15. nick2412

    nick2412 Well-Known Turker

    Messages:
    1,017
    Ratings:
    +1,352
    Those hotels.. 1.25 per captcha isn't bad :cheer:
     
  16. SAJ

    SAJ Survey Slinger

    Messages:
    27,502
    Gender:
    Male
    Ratings:
    +51,488
    Wow and 3k+ of those Adham got done o_O RIP turkers

    edit: the joke is probably on me though and they got it worked out but didn't share that info lol
     
  17. TurkedOut

    TurkedOut Survey Slinger

    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    Ouch
     
    • Like Like x 1
  18. nick2412

    nick2412 Well-Known Turker

    Messages:
    1,017
    Ratings:
    +1,352
    How salty would you be if hotel mass rejected?
     
  19. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    I think that @alomba87 would find a paper bag, a bottle, and a nice and cozy cardboard box.
     
    • LOL LOL x 1
  20. TurkedOut

    TurkedOut Survey Slinger

    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    I would still be at 99. I haven't done a lot of them today.
     
Thread Status:
Not open for further replies.