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,270
    Gender:
    Male
    Ratings:
    +2,723
    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 Administrator

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

    ChrisTurk Administrator

    Messages:
    56,679
    Ratings:
    +162,927
    Julien PLEE [AHXPVOOCMRPEZ] Detecting noise in social data (WARNING: This HIT may contain adult content. Worker discretion is advised.) - $0.02 | PANDA


    Good

    Unrated

    Unrated
    $14.40 / hour
    00:00:05 / completion time
    Pros:
    Simple, mostly fast & once you get in the groove w/ the options these probably wont take more than 2-3s each
    Cons:
    Reading tweets is sometimes annoying

    Qualifications: Total approved HITs > 1000; Total approved HITs > 1000; Masters Exists ; HIT approval rate (%) >= 99; HIT approval rate (%) >= 99; Adult Content Qualification EqualTo 1;
    To read Julien PLEE's full profile check out TurkerView!
     
  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


    Good

    Unrated

    Unrated
    $11.30 / hour
    00:03:59 / completion time
    Pros:
    Cons:
    write for 30 seconds

    Qualifications: HIT approval rate (%) > 95; Location EqualTo US;
    To read Gabriela Barcenas's full profile check out TurkerView!
     
  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


    Unrated

    Unrated

    Unrated
    $50.00 / hour
    00:02:24 / completion time
    Pros:
    Progress tracked, very easy
    Cons:

    Qualifications: Total approved HITs >= 500; Has already completed the alpha testing HIT DoesNotExist ; Location In CA, US; HIT approval rate (%) >= 98;
    To read David Suendermann-Oeft's full profile check out TurkerView!
     
  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


    Generous

    Unrated

    Unrated
    $17.53 / hour
    00:02:34 / completion time
    Pros:
    Cons:

    Qualifications: Location EqualTo US;
    To read Steffanie Guillermo's full profile check out TurkerView!
     
  15. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    Android Permissions Study [A1JRJZZEB09ARO] Understanding How People Use Android Permissions on their Smartphones - $8.00 | PANDA


    Unrated

    Unrated

    Unrated
    $59.88 / hour
    00:08:01 / completion time
    Pros:
    DO IT
    Cons:

    Qualifications: Previously Completed NotEqualTo 1; Location EqualTo US;
    To read Android Permissions Study's full profile check out TurkerView!
     
  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


    Generous

    Unrated

    Unrated
    $47.37 / hour
    00:00:19 / completion time
    Pros:
    2 questions
    Cons:

    Qualifications: Exc: [5263053-166095] DoesNotExist ; Total approved HITs >= 1000; HIT approval rate (%) >= 98; Location In US;
    To read Ann Taves's full profile check out TurkerView!
     
  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


    Generous

    Unrated

    Unrated
    $30.00 / hour
    00:00:06 / completion time
    Pros:
    1 question in the frame
    Cons:

    Qualifications: Location In CL, TR, US;
    To read Charlotte Lloyd's full profile check out TurkerView!
     
  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,273
    Gender:
    Female
    Ratings:
    +45,742
    [​IMG]
     
    • WOW WOW x 1
Thread Status:
Not open for further replies.