11/17 - Succulent Saturday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Nov 17, 2018.

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

    TissueHime Survey Slinger

    Messages:
    2,198
    Gender:
    Male
    Ratings:
    +2,396
    [​IMG]

    [​IMG]

    [​IMG]

    [​IMG]
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  2. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,299
    Gender:
    Female
    Ratings:
    +115,701
  3. HardWorkingTurker

    HardWorkingTurker Survey Slinger

    Messages:
    5,754
    Ratings:
    +4,932
    @ChrisTurk I accidentally marked something approved. Anyway to reverse that?

    EDIT: I just realized what a dumb question that was. I was so focused on the "Approved" window in Green, that I failed to notice the "Pending" rectangle.

    [​IMG]
     
    Last edited: Nov 17, 2018
  4. HardWorkingTurker

    HardWorkingTurker Survey Slinger

    Messages:
    5,754
    Ratings:
    +4,932
     
    • Love Love x 1
  5. DigitalDenizen

    DigitalDenizen Well-Known Turker

    Messages:
    2,341
    Gender:
    Male
    Ratings:
    +2,044
    Hope Percy approves these
     
  6. DigitalDenizen

    DigitalDenizen Well-Known Turker

    Messages:
    2,341
    Gender:
    Male
    Ratings:
    +2,044
    Wow 3 people here, lowest I've ever seen
     
  7. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,299
    Gender:
    Female
    Ratings:
    +115,701
    [​IMG]
     
    • Like Like x 1
    • LOL LOL x 1
  8. Kayashi

    Kayashi Titler

    Messages:
    7,279
    Gender:
    Male
    Ratings:
    +14,908
    i've never had a problem with him
     
    • Today I Learned Today I Learned x 1
  9. Bloop

    Bloop Well-Known Turker

    Messages:
    2,365
    Gender:
    Female
    Ratings:
    +2,652
    :goodnight::emoji_zzz:
     
    • LOL LOL x 1
  10. HardWorkingTurker

    HardWorkingTurker Survey Slinger

    Messages:
    5,754
    Ratings:
    +4,932
    Which one? I'm running out of stuff I haven't seen.
    [​IMG]
     
    • LOL LOL x 1
  11. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,299
    Gender:
    Female
    Ratings:
    +115,701
    Just old episodes of Brothers & Sisters.
     
  12. SAJ

    SAJ Survey Slinger

    Messages:
    27,495
    Gender:
    Male
    Ratings:
    +51,479
    [​IMG]
     
    • LOL LOL x 2
  13. HardWorkingTurker

    HardWorkingTurker Survey Slinger

    Messages:
    5,754
    Ratings:
    +4,932
    [​IMG]
     
    • LOL LOL x 1
  14. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,299
    Gender:
    Female
    Ratings:
    +115,701
    [​IMG]
     
    • LOL LOL x 1
  15. gener

    gener Survey Slinger

    Messages:
    9,038
    Gender:
    Male
    Ratings:
    +11,568
    ctrl+z
     
  16. gener

    gener Survey Slinger

    Messages:
    9,038
    Gender:
    Male
    Ratings:
    +11,568
    Title: Are the items exact? (WARNING: This HIT may contain adult content. Worker discretion is advised.) | Accept
    Requester: Amazon Requester Inc. - A9 Data Validation [A3HLF55H6JSTI0] Contact
    TV: [Hrly=$7.19] [Pay=2.40] [Fast=null] [Comm=null] [Rej=0] [ToS=0] [Blk=0]
    TO: [Pay=2.51] [Fast=3.91] [Comm=2.98] [Fair=3.92] [Reviews=138] [ToS=0]
    TO2: [Hrly=0.64] [Pen=3.00 days] [Res=0%] [Rec=44%] [Rej=4] [ToS=0] [Brk=0]
    Reward: 0.01
    Duration: 5:00
    Available: 3304
    Description: --
    Qualifications: Blocked DoesNotExist ; Category Validation Qualification EqualTo 10; Location EqualTo US; Adult Content Qualification EqualTo 1

    HIT exported from Mturk Suite v2.4.1
    Easy batch for numbers. Below is a script I threw together to breeze through these.
    • Numpad 7 = Yes
    • Numpad 8 = No
    • Numpad 9 = Unsure
    • x key = Didn't load
    The script auto submits after selection, just check auto-accept (and hit F11 for full screen if desired) and roll on with your bad self.
    Code:
    // ==UserScript==
    // @name              A9 - Are these items the same
    // @author            Gener
    // @namespace         GenerScript
    // @version           1
    // @description       A short script I wrote to help me kill this A9 Are these items the same batch
    // @include           *s3.amazonaws.com*
    // @require           http://code.jquery.com/jquery-3.3.1.min.js
    // ==/UserScript==
    
    (function() {
        'use strict';
    
        var $ = window.jQuery;
    
        function didntLoad() {
            $('input[name="not_loaded"]').click();
            selectNoMatch();
        }
    
        function selectMatch() {
            $('input[name="exactMatch"][value="yesMatch"]').click();
            $('input[name="enoughofB"][value="yesEnough"]').click();
        }
    
        function selectNoMatch() {
            $('input[name="exactMatch"][value="noMatch"]').click();
            $('input[name="enoughofB"][value="yesEnough"]').click();
        }
    
        function selectUnsureMatch() {
            $('input[name="exactMatch"][value="unsureMatch"]').click();
            $('input[name="enoughofB"][value="notEnough"]').click();
        }
    
        function submitA9Hit() {
            $('input[id="submitButton"]').click();
        }
    
        $(document).ready(function() {
            selectMatch();
    
            //setfocus on specifc page element for optimal visual QC of form before submission
            $('input[name="exactMatch"][value="yesMatch"]').focus();
    
            //bind to keypress to select a specific form setup and submission
            $(this).keydown(function(e) {
                if (e.keyCode == 103) { //num pad 7
                    selectMatch();
                    submitA9Hit();
                }
                else if(e.keyCode == 104) { //num pad 8
                    selectNoMatch();
                    submitA9Hit();
                }
                else if(e.keyCode == 105) { //num pad 9
                    selectUnsureMatch();
                    submitA9Hit();
                }
                else if(e.keyCode == 88) { // letter 'x'
                    didntLoad();
                    submitA9Hit();
                }
            });
        });
    })();
     
    • Today I Learned Today I Learned x 2
    Last edited: Nov 17, 2018
  17. ConstanceBea

    ConstanceBea Turker

    Messages:
    50
    Gender:
    Female
    Ratings:
    +2
    Stephanie Lin [AXHMU4SZ5IO9X] Psychological Study(~ 6 minutes) - $0.60 | PANDA


    Unrated

    Unrated

    Unrated
    $9.19 / hour
    00:03:55 / completion time
    Pros:
    Fast approval
    Cons:

    Qualifications: Exc: [3627823-115957] DoesNotExist ; Total approved HITs >= 500; HIT approval rate (%) >= 97; Location In US;
    To read Stephanie Lin's full profile check out TurkerView!
     
  18. ConstanceBea

    ConstanceBea Turker

    Messages:
    50
    Gender:
    Female
    Ratings:
    +2
    Emily Cornish [AHDO4WI53YH7V] 5-7 minute survey: Short survey about baby products - $0.75 | PANDA


    Generous

    Unrated

    Unrated
    $20.00 / hour
    00:02:15 / completion time
    Pros:
    Cons:

    Qualifications: Total approved HITs > 1000; Gender - Female EqualTo 1; HIT approval rate (%) >= 95; Location EqualTo US;
    To read Emily Cornish's full profile check out TurkerView!
     
  19. ConstanceBea

    ConstanceBea Turker

    Messages:
    50
    Gender:
    Female
    Ratings:
    +2
    New Requester Profile!

    Nick [A80N2XAV1RFAY] Answer a survey about your opinions regarding in home child care - $0.50 | PANDA


    Low

    Unrated

    Unrated
    $5.96 / hour
    00:05:02 / completion time
    Pros:
    Cons:

    Qualifications: Gender - Female EqualTo 1; Location EqualTo US;
    To read Nick's full profile check out TurkerView!
     
  20. ConstanceBea

    ConstanceBea Turker

    Messages:
    50
    Gender:
    Female
    Ratings:
    +2
    Nea North [A6KGP9KYTI323] Impact of donations(~ 15 minutes) - $0.80 | PANDA


    Good

    Unrated

    Unrated
    $10.87 / hour
    00:04:25 / completion time
    Pros:
    Cons:

    Qualifications: Total approved HITs >= 5000; TP Panel: 172927475 N >= 100; Total approved HITs <= 50000; 8c3c5bf2 DoesNotExist ; Exc: [1356405094-115890] DoesNotExist ; SurveyGroup [1580] DoesNotExist ; HIT approval rate (%) >= 51; Location In US;
    To read Nea North's full profile check out TurkerView!
     
Thread Status:
Not open for further replies.