1. The forum & main site will stay up indefinitely after MTurk shuts down in case anyone needs anything. I assume a handful of things will break after MTurk vaporizes & I'll fix it as fast as I can to keep the two main parts of the site online.
    Dismiss Notice

08/20 - TACO x 10^TACO TUESDAY

Discussion in 'Daily mTurk HITs Threads' started by ChrisTurk, Aug 20, 2019.

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

    Masterbah Survey Slinger

    Messages:
    8,071
    Gender:
    Male
    Ratings:
    +15,296
    @johnxyz My MINDlab hit was approved and they replied to my email saying the problem was on their side and not to worry about it, so you should also be fine.
     
    • Today I Learned Today I Learned x 1
  2. Razr

    Razr Jive Turkey

    Messages:
    2,273
    Gender:
    Male
    Ratings:
    +2,726
    Hopefully one day :p
     
    • Love Love x 1
  3. THFYM

    THFYM Survey Slinger Former MTG MotM

    Messages:
    8,887
    Gender:
    Male
    Ratings:
    +23,050
    I was young and dumb :(

    Code:
    // ==UserScript==
    // @name A9 Image Survey Clothes
    // @namespace http://tampermonkey.net/
    // @version 0.1
    // @description Might Do Stuff
    // @author THFYM
    // @include https://s3.amazonaws.com/mturk_bulk/*
    // @include https://www.mturk.com/mturk/previewandaccept?prevRequester=Amazon+Requester+Inc.+A9+Data+Validation*
    // @require http://code.jquery.com/jquery-2.1.0.min.js
    // @grant GM_log
    // ==/UserScript==
    jQuery(document).ready(function () {
    var title = jQuery(this).attr('title');
    if (title === "Amazon Mechanical Turk - HITs Available to You"){
    setTimeout(function(){
    location.reload();
    }, 2000);
    }
    });
    if ($("h4:contains(Picture of a picture is acceptable. Mannequin is acceptable.)").length){
    $(".btn:contains('No')").click();
    $(".form-group").css('width', '200');
    $(".buttonsWithMargins").css('height', '20');
    window.focus();
    $("h4").eq(0).hide();
    $("h4").eq(1).text("1 - Dress");
    $("h4").eq(2).text("2 - Woman's Top");
    $("h4").eq(3).text("3 - Woman's Bottoms");
    $("h4").eq(4).text("4 - Man's Top");
    $("h4").eq(5).text("5 - Man's Bottoms");
    $("h4").eq(6).text("6 - Watch");
    $("h4").eq(7).text("7 - Shoe");
    $("h4").eq(8).text("8 - Handbag");
    var dress = 0;
    var womTop = 0;
    var womBot = 0;
    var manTop = 0;
    var manBot = 0;
    var watch = 0;
    var shoe = 0;
    var bag = 0;
    $(document).keydown(function(e) {
    if (e.keyCode === 13) { // enter to submit
    $("input[value='Submit']").click();
    }
    if (e.keyCode === 97) { // Numpad 1
    if (dress === 0) {
    $("button[data-reactid='.0.0.1.2:$q1dress_m604.2.$0']").click();
    dress ++;
    }
    else {
    $("button[data-reactid='.0.0.1.2:$q1dress_m604.2.$1']").click();
    dress --;
    }
    }
    if (e.keyCode === 98) { // Numpad 2
    if (womTop === 0) {
    $("button[data-reactid='.0.0.1.2:$q2womens_top_m2662.2.$0']").click();
    womTop ++;
    }
    else {
    $("button[data-reactid='.0.0.1.2:$q2womens_top_m2662.2.$1']").click();
    womTop --;
    }
    }
    if (e.keyCode === 99) { // Numpad 3
    if (womBot === 0) {
    $("button[data-reactid='.0.0.1.2:$q3womens_bottoms_m2663.2.$0']").click();
    womBot ++;
    }
    else {
    $("button[data-reactid='.0.0.1.2:$q3womens_bottoms_m2663.2.$1']").click();
    womBot --;
    }
    }
    if (e.keyCode === 100) { // Numpad 4
    if (manTop === 0) {
    $("button[data-reactid='.0.0.1.2:$q4mens_top_m2664.2.$0']").click();
    manTop ++;
    }
    else {
    $("button[data-reactid='.0.0.1.2:$q4mens_top_m2664.2.$1']").click();
    manTop --;
    }
    }
    if (e.keyCode === 101) { // Numpad 5
    if (manBot === 0) {
    $("button[data-reactid='.0.0.1.2:$q5mens_bottoms_m2665.2.$0']").click();
    manBot ++;
    }
    else {
    $("button[data-reactid='.0.0.1.2:$q5mens_bottoms_m2665.2.$1']").click();
    manBot --;
    }
    }
    if (e.keyCode === 102) { // Numpad 6
    if (watch === 0) {
    $("button[data-reactid='.0.0.1.2:$q6watch_m1597.2.$0']").click();
    watch ++;
    }
    else {
    $("button[data-reactid='.0.0.1.2:$q6watch_m1597.2.$1']").click();
    watch --;
    }
    }
    if (e.keyCode === 103) { // Numpad 7
    if (shoe === 0) {
    $("button[data-reactid='.0.0.1.2:$q7shoe_m1530.2.$0']").click();
    shoe ++;
    }
    else {
    $("button[data-reactid='.0.0.1.2:$q7shoe_m1530.2.$1']").click();
    shoe --;
    }
    }
    if (e.keyCode === 104) { // Numpad 8
    if (bag === 0) {
    $("button[data-reactid='.0.0.1.2:$q8handbag_m786.2.$0']").click();
    bag ++;
    }
    else {
    $("button[data-reactid='.0.0.1.2:$q8handbag_m786.2.$1']").click();
    bag --;
    }
    }
    });
    }
     
    • LOL LOL x 1
  4. ChrisTurk

    ChrisTurk Survey Slinger

    Messages:
    56,862
    Ratings:
    +164,020
    The nesting on this directly replicates program 3 on my treadmill, well done, this is art.
     
    • LOL LOL x 2
  5. ChrisTurk

    ChrisTurk Survey Slinger

    Messages:
    56,862
    Ratings:
    +164,020
    Julien PLEE [AHXPVOOCMRPEZ] Detecting noise in social data (WARNING: This HIT may contain adult content. Worker discretion is advised.) - $0.02 | PANDA
    [div] style="border: 1px solid transparent; padding: 10px 0; display: flex; align-items: center; border-color: #ecf0f1; box-shadow: 0 1px 1px rgba(0,0,0,0.05); text-align: center;" |
    [div] style="float: left; width: 25%;" |
    Good[/div]
    [div] style="float: left; width: 41%;" |[div] style="float: left; width: 50%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 50%;" |
    Unrated
    [/div][/div]
    [div] style="float: left; width: 33%;" | $14.40 / hour
    00:00:05 / completion time[/div]
    [/div]
    [div] style="width: 100%; display: flex; flex-items: center; margin-top: 5px;" |[div] style="width: 50%; display: inline-block; margin: 0 5px 0 0;" | Pros:
    Simple, mostly fast & once you get in the groove w/ the options these probably wont take more than 2-3s each[/div]
    [div] style="width: 50%; display: inline-block; margin: 0 0 0 5px;" | Cons:
    Reading tweets is sometimes annoying[/div]
    [/div]

    Qualifications: Total approved HITs > 1000; Total approved HITs > 1000; Masters Exists ; HIT approval rate (%) >= 99; HIT approval rate (%) >= 99; Adult Content Qualification EqualTo 1;
    [div] style="margin-top: 5px;" |
    To read Julien PLEE's full profile check out TurkerView!
    [/div]
    [div] style="display: none;" data-type="tv-review" data-revId="447947" data-reviewerId="1" |[/div]
     
  6. THFYM

    THFYM Survey Slinger Former MTG MotM

    Messages:
    8,887
    Gender:
    Male
    Ratings:
    +23,050
    129 lines for something that toggled 8 radio buttons :emoji_sweat_smile:
     
    • LOL LOL x 4
  7. rippy

    rippy Well-Known Turker

    Messages:
    1,048
    Gender:
    Male
    Ratings:
    +1,627
    Title: Medieval Trading(~ 15 minutes) | PANDA
    Requester: Gershman Lab Eric DSI [A1WT5YLXTL8QNF]
    TurkerView: [ $11.43 / hour ]
    Description: Explore medieval castle for resources to trade.
    Duration: 240 Min
    Available: 1
    Reward: $1.50
    Qualifications:
    • SurveyGroup [2738] DoesNotExist
    • Exc: [164082145-166168] DoesNotExist
    • Total approved HITs GreaterThanOrEqualTo 100,
    • HIT approval rate (%) GreaterThanOrEqualTo 90,
    • Location In US,
    [3CL9ACF21NRC4HNYZW1ZJENFPAAW6I]
     
  8. mrnotoriousman

    mrnotoriousman Survey Slinger TurkerView Masters

    Messages:
    21,943
    Gender:
    Male
    Ratings:
    +20,112
    Gabriela Barcenas [A1OUFBYVMK6OOH] Playing Games - $0.75 | PANDA
    [div] style="border: 1px solid transparent; padding: 10px 0; display: flex; align-items: center; border-color: #ecf0f1; box-shadow: 0 1px 1px rgba(0,0,0,0.05); text-align: center;" |
    [div] style="float: left; width: 25%;" |
    Good[/div]
    [div] style="float: left; width: 41%;" |[div] style="float: left; width: 50%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 50%;" |
    Unrated
    [/div][/div]
    [div] style="float: left; width: 33%;" | $11.30 / hour
    00:03:59 / completion time[/div]
    [/div]
    [div] style="width: 100%; display: flex; flex-items: center; margin-top: 5px;" |[div] style="width: 50%; display: inline-block; margin: 0 5px 0 0;" | Pros:
    [/div]
    [div] style="width: 50%; display: inline-block; margin: 0 0 0 5px;" | Cons:
    write for 30 seconds[/div]
    [/div]

    Qualifications: HIT approval rate (%) > 95; Location EqualTo US;
    [div] style="margin-top: 5px;" |
    To read Gabriela Barcenas's full profile check out TurkerView!
    [/div]
    [div] style="display: none;" data-type="tv-review" data-revId="447949" data-reviewerId="3236" |[/div]
     
  9. THFYM

    THFYM Survey Slinger Former MTG MotM

    Messages:
    8,887
    Gender:
    Male
    Ratings:
    +23,050
  10. turkininin

    turkininin Well-Known Turker

    Messages:
    4,890
    Gender:
    Female
    Ratings:
    +2,528
    David Suendermann-Oeft [AEMST6B9D5TP4] Transcribe 20 short audio clips - $2.00 | PANDA
    [div] style="border: 1px solid transparent; padding: 10px 0; display: flex; align-items: center; border-color: #ecf0f1; box-shadow: 0 1px 1px rgba(0,0,0,0.05); text-align: center;" |
    [div] style="float: left; width: 25%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 41%;" |[div] style="float: left; width: 50%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 50%;" |
    Unrated
    [/div][/div]
    [div] style="float: left; width: 33%;" | $50.00 / hour
    00:02:24 / completion time[/div]
    [/div]
    [div] style="width: 100%; display: flex; flex-items: center; margin-top: 5px;" |[div] style="width: 50%; display: inline-block; margin: 0 5px 0 0;" | Pros:
    Progress tracked, very easy[/div]
    [div] style="width: 50%; display: inline-block; margin: 0 0 0 5px;" | Cons:
    [/div]
    [/div]

    Qualifications: Total approved HITs >= 500; Has already completed the alpha testing HIT DoesNotExist ; Location In CA, US; HIT approval rate (%) >= 98;
    [div] style="margin-top: 5px;" |
    To read David Suendermann-Oeft's full profile check out TurkerView!
    [/div]
    [div] style="display: none;" data-type="tv-review" data-revId="447953" data-reviewerId="1749" |[/div]
     
  11. Zoha Khan

    Zoha Khan New Turker

    Messages:
    8
    Gender:
    Female
    Ratings:
    +0
    Title: 2018-19 LG TV Survey(~ 15 minutes) | PANDA
    Requester: PCL [A16T97AET06UEL]
    TurkerView: [ $248.40 / hour ]
    Description: Take pictures of the settings of your 2018 or 2019 LG Television
    Duration: 45 Min
    Available: 5
    Reward: $4.00
    Qualifications:
    • Exc: [157356108-164811] DoesNotExist
    • Location In US,
    [3DBSZOC6MK6XQG5R23VMDU58ZRS3C7]
     
  12. A6_Foul_Out

    A6_Foul_Out Organic Meme Panda TurkerView Masters

    Messages:
    17,777
    Gender:
    Male
    Ratings:
    +23,954
    • LOL LOL x 1
  13. THFYM

    THFYM Survey Slinger Former MTG MotM

    Messages:
    8,887
    Gender:
    Male
    Ratings:
    +23,050
    [​IMG]
     
    • LOL LOL x 2
  14. mrnotoriousman

    mrnotoriousman Survey Slinger TurkerView Masters

    Messages:
    21,943
    Gender:
    Male
    Ratings:
    +20,112
    Steffanie Guillermo [AXI84NQXHRRB3] Answer a survey about person perception - $0.75 | PANDA
    [div] style="border: 1px solid transparent; padding: 10px 0; display: flex; align-items: center; border-color: #ecf0f1; box-shadow: 0 1px 1px rgba(0,0,0,0.05); text-align: center;" |
    [div] style="float: left; width: 25%;" |
    Generous[/div]
    [div] style="float: left; width: 41%;" |[div] style="float: left; width: 50%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 50%;" |
    Unrated
    [/div][/div]
    [div] style="float: left; width: 33%;" | $17.53 / hour
    00:02:34 / completion time[/div]
    [/div]
    [div] style="width: 100%; display: flex; flex-items: center; margin-top: 5px;" |[div] style="width: 50%; display: inline-block; margin: 0 5px 0 0;" | Pros:
    [/div]
    [div] style="width: 50%; display: inline-block; margin: 0 0 0 5px;" | Cons:
    [/div]
    [/div]

    Qualifications: Location EqualTo US;
    [div] style="margin-top: 5px;" |
    To read Steffanie Guillermo's full profile check out TurkerView!
    [/div]
    [div] style="display: none;" data-type="tv-review" data-revId="447973" data-reviewerId="3236" |[/div]
     
  15. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,274
    Gender:
    Female
    Ratings:
    +45,746
    Android Permissions Study [A1JRJZZEB09ARO] Understanding How People Use Android Permissions on their Smartphones - $8.00 | PANDA
    [div] style="border: 1px solid transparent; padding: 10px 0; display: flex; align-items: center; border-color: #ecf0f1; box-shadow: 0 1px 1px rgba(0,0,0,0.05); text-align: center;" |
    [div] style="float: left; width: 25%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 41%;" |[div] style="float: left; width: 50%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 50%;" |
    Unrated
    [/div][/div]
    [div] style="float: left; width: 33%;" | $59.88 / hour
    00:08:01 / completion time[/div]
    [/div]
    [div] style="width: 100%; display: flex; flex-items: center; margin-top: 5px;" |[div] style="width: 50%; display: inline-block; margin: 0 5px 0 0;" | Pros:
    DO IT[/div]
    [div] style="width: 50%; display: inline-block; margin: 0 0 0 5px;" | Cons:
    [/div]
    [/div]

    Qualifications: Previously Completed NotEqualTo 1; Location EqualTo US;
    [div] style="margin-top: 5px;" |
    To read Android Permissions Study's full profile check out TurkerView!
    [/div]
    [div] style="display: none;" data-type="tv-review" data-revId="447975" data-reviewerId="542" |[/div]
     
  16. mrnotoriousman

    mrnotoriousman Survey Slinger TurkerView Masters

    Messages:
    21,943
    Gender:
    Male
    Ratings:
    +20,112
    Ann Taves [AL7TDBRKQR91O] Feedback on Survey Items(~ 1 minutes) - $0.25 | PANDA
    [div] style="border: 1px solid transparent; padding: 10px 0; display: flex; align-items: center; border-color: #ecf0f1; box-shadow: 0 1px 1px rgba(0,0,0,0.05); text-align: center;" |
    [div] style="float: left; width: 25%;" |
    Generous[/div]
    [div] style="float: left; width: 41%;" |[div] style="float: left; width: 50%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 50%;" |
    Unrated
    [/div][/div]
    [div] style="float: left; width: 33%;" | $47.37 / hour
    00:00:19 / completion time[/div]
    [/div]
    [div] style="width: 100%; display: flex; flex-items: center; margin-top: 5px;" |[div] style="width: 50%; display: inline-block; margin: 0 5px 0 0;" | Pros:
    2 questions[/div]
    [div] style="width: 50%; display: inline-block; margin: 0 0 0 5px;" | Cons:
    [/div]
    [/div]

    Qualifications: Exc: [5263053-166095] DoesNotExist ; Total approved HITs >= 1000; HIT approval rate (%) >= 98; Location In US;
    [div] style="margin-top: 5px;" |
    To read Ann Taves's full profile check out TurkerView!
    [/div]
    [div] style="display: none;" data-type="tv-review" data-revId="447978" data-reviewerId="3236" |[/div]
     
  17. rippy

    rippy Well-Known Turker

    Messages:
    1,048
    Gender:
    Male
    Ratings:
    +1,627
  18. jessica93

    jessica93 Survey Slinger TurkerView Masters

    Messages:
    8,534
    Gender:
    Female
    Ratings:
    +22,348
    New Requester Profile!

    Charlotte Lloyd [A3AN1MWE1C62F3] opinion survey - one question only! - $0.05 | PANDA
    [div] style="border: 1px solid transparent; padding: 10px 0; display: flex; align-items: center; border-color: #ecf0f1; box-shadow: 0 1px 1px rgba(0,0,0,0.05); text-align: center;" |
    [div] style="float: left; width: 25%;" |
    Generous[/div]
    [div] style="float: left; width: 41%;" |[div] style="float: left; width: 50%;" |
    Unrated
    [/div]
    [div] style="float: left; width: 50%;" |
    Unrated
    [/div][/div]
    [div] style="float: left; width: 33%;" | $30.00 / hour
    00:00:06 / completion time[/div]
    [/div]
    [div] style="width: 100%; display: flex; flex-items: center; margin-top: 5px;" |[div] style="width: 50%; display: inline-block; margin: 0 5px 0 0;" | Pros:
    1 question in the frame[/div]
    [div] style="width: 50%; display: inline-block; margin: 0 0 0 5px;" | Cons:
    [/div]
    [/div]

    Qualifications: Location In CL, TR, US;
    [div] style="margin-top: 5px;" |
    To read Charlotte Lloyd's full profile check out TurkerView!
    [/div]
    [div] style="display: none;" data-type="tv-review" data-revId="447979" data-reviewerId="2349" |[/div]
     
  19. rippy

    rippy Well-Known Turker

    Messages:
    1,048
    Gender:
    Male
    Ratings:
    +1,627
    • LOL LOL x 2
  20. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,274
    Gender:
    Female
    Ratings:
    +45,746
    [​IMG]
     
    • WOW WOW x 1
Thread Status:
Not open for further replies.