05/20 - Sudden Saturday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, May 20, 2017.

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

    EssArrBee Survey Slinger

    Messages:
    14,946
    Gender:
    Male
    Ratings:
    +20,007
    I'm only at 700 and can't really do many more. DOn't know how @SAJ is doing 2k.
     
  2. Buzby

    Buzby #̶7̶8̶

    Messages:
    7,622
    Gender:
    Female
    Ratings:
    +14,349
    • Love Love x 2
    • Like Like x 1
  3. Sealpup666

    Sealpup666 Active Turker

    Messages:
    234
    Gender:
    Male
    Ratings:
    +293
    They're slowly ticking down now. Although I get the feeling I'm going to dream about being burned alive while my house is flooded and the power's out.
     
    • LOL LOL x 2
  4. Wilma

    Wilma Survey Slinger

    Messages:
    1,427
    Gender:
    Female
    Ratings:
    +3,019
    So... just finished a watching marathon of Sense8 season 2 and now I'm depressed.
     
    • Like Like x 1
    • Love Love x 1
  5. BlueRagdoll

    BlueRagdoll Active Turker

    Messages:
    823
    Ratings:
    +1,536
    60 degrees?
    [​IMG]
     
    • LOL LOL x 1
    • Love Love x 1
  6. turk_it

    turk_it Survey Slinger

    Messages:
    3,728
    Gender:
    Male
    Ratings:
    +10,147
    Snoop Dogg: When we get this reward, we gonna get ourselves a boat, some Grinches and a shark
     
  7. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    Today's Projected Earnings: $6.60 :flame:
     
    • 5/5 Pay 5/5 Pay x 2
    • Like Like x 1
  8. hofrungur

    hofrungur Active Turker

    Messages:
    506
    Ratings:
    +819
    I've got that waiting to watch. It's been so long since season 1 that I don't remember much. Did you enjoy the season if though it was depressing?
     
  9. glossolalia

    glossolalia Survey Slinger

    Messages:
    3,131
    Gender:
    Female
    Ratings:
    +7,233
    Okay but you made real job money today so :p to your fire PE.
     
    • LOL LOL x 2
  10. Wilma

    Wilma Survey Slinger

    Messages:
    1,427
    Gender:
    Female
    Ratings:
    +3,019
    OMG yes.. I'm obsessed. I'm depressed because I watched the last one and didn't realize there weren't anymore. arghhh. JUST as good as the first season, if not better.
     
    • Love Love x 1
  11. SAJ

    SAJ Survey Slinger

    Messages:
    27,503
    Gender:
    Male
    Ratings:
    +51,497
    Making up ground any way I can in case my Mindspark is rejected....if it does I want all the Bar money possible for my epic fall off the wagon
     
    • LOL LOL x 1
  12. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    Touche! And I'm still trying for 10k steps for my challenge. 500 to go!

    ...I might die.

    [​IMG]
     
    • LOL LOL x 2
  13. glossolalia

    glossolalia Survey Slinger

    Messages:
    3,131
    Gender:
    Female
    Ratings:
    +7,233
    [​IMG]
     
    • LOL LOL x 1
    • Love Love x 1
  14. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Today's Projected Earnings: $7.70 :emoji_stuck_out_tongue_winking_eye:
     
    • LOL LOL x 1
  15. BlueRagdoll

    BlueRagdoll Active Turker

    Messages:
    823
    Ratings:
    +1,536
    P.E. $4.38
    [​IMG]
     
    • 5/5 Pay 5/5 Pay x 2
  16. BlueRagdoll

    BlueRagdoll Active Turker

    Messages:
    823
    Ratings:
    +1,536
    P.E. $4.38
    [​IMG]
     
    • 5/5 Pay 5/5 Pay x 1
  17. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    *pulls a RA (cuz this is the only time I will ever be able to do this)*

    Okay. Goal set. Challenge accepted.
     
    • LOL LOL x 3
  18. BlueRagdoll

    BlueRagdoll Active Turker

    Messages:
    823
    Ratings:
    +1,536
    Posted twice because...just so proud.
    [​IMG]
     
    • LOL LOL x 2
  19. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    I guess I better go check to see if i have a master qual now.
     
    • LOL LOL x 1
  20. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    Code:
    // ==UserScript==
    // @name BIU NLP - What's Missing?
    // @description Helps you make choices
    // @version 0.1
    // @author RicanGuy86
    // @grant none
    // @include *.mturkcontent.com/*
    // @include https://www.mturk.com/mturk/*
    // @include https://s3.amazonaws.com/*
    // @require http://code.jquery.com/jquery-2.1.0.min.js
    // ==/UserScript==
    // 1-6 to make selection, and Enter to submit //
    if($("label:contains('What does the number ')").length){
    console.log("BIU NLP");
    $(document).keydown(function(e){
    if (e.which == 49){
    $("input[value='1']").click();
    }
    if (e.which == 50){
    $("input[value='2']").click();
    }
    if (e.which == 51){
    $("input[value='3']").click();
    }
    if (e.which == 52){
    $("input[value='4']").click();
    }
    if (e.which == 53){
    $("input[value='5']").click();
    }
    if (e.which == 54){
    $("input[value='6']").click();
    }
    if (e.which == 13){
    $("#submitButton")[0].click();
    event.preventDefault();
    }
    });
    }

    Added a line of code that prevents Enter from going to the next line in text fields.
     
Thread Status:
Not open for further replies.