06/29 - Thirsty Thursday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Jun 29, 2017.

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

    ZileWrath Survey Slinger

    Messages:
    1,963
    Gender:
    Male
    Ratings:
    +1,716
    everyone got it wrong
    [​IMG]
     
  2. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    [​IMG]
     
    • Love Love x 1
  3. Alina

    Alina Survey Slinger

    Messages:
    5,277
    Ratings:
    +18,501
    Greetings from Amazon Mechanical Turk,

    You've received a bonus from Marc Ragin for work related to 3P4ZBJFX2V3HP6R5BUJNTHMOS7XWFO.
    The value of your bonus is: $6.50 USD

    [​IMG]
     
    • 5/5 Pay 5/5 Pay x 3
    • Nom Nom Nom! Nom Nom Nom! x 1
  4. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    • Nom Nom Nom! Nom Nom Nom! x 9
  5. BlueRagdoll

    BlueRagdoll Active Turker

    Messages:
    823
    Ratings:
    +1,536
    How long you been waiting to work that into the conversation?
    [​IMG]
     
    • Like Like x 1
    • LOL LOL x 1
  6. Laura

    Laura Survey Slinger

    Messages:
    1,113
    Gender:
    Female
    Ratings:
    +1,808
    That's cute. He gave me $9.00.:aetsch:
     
  7. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    I will volunteer that information whenever I have the chance!

    It's Matt, he's my man slave.

    [​IMG]
     
  8. GoldGuardian

    GoldGuardian Black Order

    Messages:
    8,005
    Gender:
    Male
    Ratings:
    +16,743
    Just got the hit...

    [​IMG]
     
    • Like Like x 1
    • Love Love x 1
  9. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    [​IMG]
     
    • LOL LOL x 1
  10. Mallan627

    Mallan627 Well-Known Turker

    Messages:
    1,453
    Gender:
    Male
    Ratings:
    +1,448

    Anyone got a script for these that'll default all the answers to "no"? Thanks!
     
  11. WimpLo

    WimpLo Survey Slingin' Batch Masta Former MTG MotM

    Messages:
    35,368
    Gender:
    Female
    Ratings:
    +76,696
    :gym:
     
  12. AMindAtTurk

    AMindAtTurk Survey Slinger TurkerView Masters

    Messages:
    26,051
    Gender:
    Female
    Ratings:
    +39,565
    Made it thanks to Cognitive Development. Night everybody hope it rains batches on you this evening!
    Today's Projected Earnings: $29.29 + Bonuses: $1.00 = $30.29 (Exported from Mturk Suite v1.21.10)

    [​IMG]
     
    • 5/5 Pay 5/5 Pay x 1
  13. BlueRagdoll

    BlueRagdoll Active Turker

    Messages:
    823
    Ratings:
    +1,536
    [​IMG]
     
    • LOL LOL x 1
  14. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Code:
    // ==UserScript==
    // @name cogdev faces
    // @namespace http://tampermonkey.net/
    // @version 0.1
    // @description Marks all as No - click image to change to yes - double click to 'unclick' both
    // @author JQKILL
    // @include *.mturkcontent.com/*
    // @require http://code.jquery.com/jquery-2.1.0.min.js
    // @grant GM_log
    // ==/UserScript==
    $("input[value='no']").click();
    $("tr").click( function(event) {
    if ($(this).find("input[value='yes']").prop("checked") === false) {
    $(this).find("input[value='yes']").prop("checked", true);
    } else {
    $(this).find("input[value='no']").prop("checked", true);
    }
    });
    $("tr").dblclick( function() {
    $(this).find("input[value='yes']").prop("checked", null);
    $(this).find("input[value='no']").prop("checked", null);
    });
    
    Marks all as now and you can click the face to turn it to yes.

    Should work? I honestly don't do these anymore so :dunno:
     
    • Like Like x 1
  15. BlueRagdoll

    BlueRagdoll Active Turker

    Messages:
    823
    Ratings:
    +1,536
    Did my first babyhead. Who are these people Stapping cameras to babies?
    [​IMG]

    edit: lol stapping...imma leave it. And why did I capitalize it? Lawd, I'm tired.
     
    • LOL LOL x 2
  16. MasterNyborg

    MasterNyborg Survey Slinger

    Messages:
    1,982
    Gender:
    Male
    Ratings:
    +3,236
    Doesn't seem to let you select the third option
     
  17. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    @Mallan627

    Lol did you actually write a message on my profile instead of replying to my post?

    Anyways copy and paste that into a new script on tampermonkey. (hit the + on installed option)

    This might have been made before they changed shit.

    This claims to set all of them to no as default and nothing else

    Code:
    // ==UserScript==
    // @name CogDev Nothing Much ($0.30)
    // @namespace http://tampermonkey.net/
    // @version 1.1
    // @description Marks all No. Because why not?
    // @author ceedj
    // @include *.mturkcontent.com/*
    // @require http://code.jquery.com/jquery-2.1.1.min.js
    // @grant GM_log
    // ==/UserScript==
    var NoMu = $('p:contains(We will call these scenes NM for nothing much)');
    if (NoMu.length)
    {
    window.focus();
    $("input[name^='Something_']").click();
    $("input[value='no']").click();
    }
    
    But you would have to see if it still works.
     
    • Today I Learned Today I Learned x 1
  18. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    YUP. THIS.
     
  19. ZileWrath

    ZileWrath Survey Slinger

    Messages:
    1,963
    Gender:
    Male
    Ratings:
    +1,716
    you kids and your scripts. back in the day we would just tab arrow key furiously
     
    • LOL LOL x 2
  20. MasterNyborg

    MasterNyborg Survey Slinger

    Messages:
    1,982
    Gender:
    Male
    Ratings:
    +3,236
    Yup, Thanks @ceedj
     
    • Like Like x 1
Thread Status:
Not open for further replies.