03/27 - Totally Tuesday!

Discussion in 'Daily mTurk HITs Threads' started by Melting Glacier, Mar 27, 2018.

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

    jdzane Survey Slinger

    Joined:
    Nov 15, 2016
    Messages:
    9,239
    Gender:
    Female
    Ratings:
    +8,650
    yep....3 hours ago
     
    • Like Like x 1
  2. SAJ

    SAJ Survey Slinger

    Joined:
    Nov 18, 2016
    Messages:
    27,503
    Gender:
    Male
    Ratings:
    +51,497
    Can probably find $38 in the free money pools at the mall faster and easier than doing CI
     
    • Like Like x 2
    • Nom Nom Nom! Nom Nom Nom! x 1
    • LOL LOL x 1
  3. Ana*

    Ana* H&R Blockhead

    Joined:
    Dec 14, 2016
    Messages:
    21,637
    Gender:
    Female
    Ratings:
    +27,162
    at 6:31 am EST, it is now 9:18 am EST
     
    • Like Like x 1
  4. Ironbrand

    Ironbrand Active Turker

    Joined:
    Mar 18, 2018
    Messages:
    492
    Gender:
    Male
    Ratings:
    +764
    Don't tempt me, Almost no one is in the mall anymore.
     
    • LOL LOL x 1
  5. turks24

    turks24 Survey Slinger

    Joined:
    Nov 15, 2016
    Messages:
    6,720
    Gender:
    Male
    Ratings:
    +13,777
    @Rocknrolla and whoever else needs a CI script

    Code:
    // ==UserScript==
    // @icon         http://www.woodus.com/den/gallery/graphics/dq9ds/shield/silver_platter.png
    // @name         Customer Interests - Product Interest / Keyword Relevance Audit [mturk]
    // @namespace    Scripts->Foundation->Humans
    // @version      1.1.8.2017.09.27
    // @description  Automatically selects a default value on Customer Interest hits, focuses in frame, and allows custom key to radio element bindings.
    // @author       D.M.K. & R.E.G. @ MegaCorp, Inc
    // @include      https://s3.amazonaws.com/mturk_bulk/hits/*
    // @include      https://www.mturkcontent.com/dynamic/*
    // @require      https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
    // @PANDA        https://www.mturk.com/mturk/previewandaccept?groupId=3KAZLCS3F9ALRMAYYRWSFLQTNUFAPT (Keyword Relevance to Interest Audit)
    // @PANDA        https://www.mturk.com/mturk/previewandaccept?groupId=36ARV8EEI75YW67UK35RLDFB7MHAVL (Product to Interest Audit)
    // @PANDA        https://www.mturk.com/mturk/previewandaccept?groupId=34KQN2TBLUDI4EQQQ80MAQV63FLAS7 (Produkt zum Interesse Relevanz Audit)
    // @TEST_LINK    https://s3.amazonaws.com/mturk_bulk/hits/275394612/SrFWZUmNqGj7BmxnX0fUGg.html?assignmentId=ASSIGNMENT_ID_NOT_AVAILABLE&hitId=3PIOQ99R7YK4YAD76BQH1FC89QLUNZ           
    // @compatible   Known to work on: Chrome 46+, Tampermonkey v4.3.6+, Windows 7 x64
    // ==/UserScript==
    /* jshint expr: true */ // Make JSHint shut up about short circuiting
    
    /* USER configurable settings */
    const DEFAULT_UR_CLICK = $(':radio')[1]; // No
    //const DEFAULT_UR_CLICK = $(':radio')[0]; // Yes
    
    const DEFAULT_IR_CLICK = $(':radio')[0]; // Yes
    //const DEFAULT_IR_CLICK = $(':radio')[1]; // No
    
    /* Action keys */
    // NOTE: Format of jump table is keycode and number (index) of the desired radio button. These were labeled KEY_YES, KEY_NO, KEY_DEBATE and KEY_SKIP, but this is variable based on number of radio buttons.
    //       For example, the Product Interest doesn't have 'Debatable'.  The submit key is a special case: it's 13 by default, but can be anything; the 'radio' binding is always ignored.
    const KEY_SUBMIT = 13; // default submit key; must be set here and below.
    const JUMP_TABLE = { 97: 0, // NP1 - radio button 1 (Usually Yes)
                        49: 0, // 1
                        98: 1, // NP2 - radio button 2 (Usually No)
                        50: 1, // 2
                        99: 2, // NP3 - radio button 3 (Debatable or Skip (rarely used))
                        100: 3, // NP4 - radio button 4 (Usually Skip)
                        13: 666 // Submit. keycode:ignored (can't just use KEY_SUBMIT, javascript doesn't recognize const x = 1 as x equaling 1!)
                       };
    /* Utility Constants */
    const DEFAULT_FOCUS = $(':radio')[0];
    const MAGIC_KEY_GOAL = "The goal is to answer the question:Is the keyword uniquely relevant to the interest?";
    const MAGIC_ITEM_GOAL = "The goal is to answer the question: Is the item relevant to the interest?";
    const MAGIC_ITEM_SEX = "The goal is to answer the question: Is the item relevant to the interest and not sexually explicit?";
    const MAGIC_DOUCHE = "Das Ziel ist, die Frage zu beantworten: Ist der Artikel für das Interesse relevant?";
    
    /* Sanity check function */
    const magic = $('.panel-body>p').text();
    
    /* Key handler */
    const addKeyJumpHandler = j=>{document.addEventListener('keydown',e=>{if (j.hasOwnProperty(k=e.which)){e.preventDefault();if (k === KEY_SUBMIT) $('#submitButton').click(); else (r= $(':radio')[j[k]]) && r.click();}});};
    
    $(function() {
        if (magic === MAGIC_KEY_GOAL || magic === MAGIC_ITEM_SEX || magic === MAGIC_ITEM_GOAL || magic === MAGIC_DOUCHE) {
            console.info(`${GM_info.script.name} ${GM_info.script.version}`);
            Ç(['.panel-primary']);
            addKeyJumpHandler(JUMP_TABLE);
            DEFAULT_FOCUS.focus();
            if (magic === MAGIC_KEY_GOAL) DEFAULT_UR_CLICK.click();
            else if (magic === MAGIC_ITEM_GOAL || magic === MAGIC_DOUCHE) DEFAULT_IR_CLICK.click();
        }
    });
    
    function Ç(å) {if (å.length){const ï = "Instructions";$('body').prepend('<button id="☢" type="button" style="width: 8em;float: none;border-radius: 42%;outline:none;">-'+ï+'</button>');
                                 $("#☢").click(()=>{$('#☢').text((ì,Œ)=>{return (Œ.slice(0,1) === '+'?'-':'+')+ï;});å.forEach((µ)=>{$(µ).toggle();});}).click()[0].scrollIntoView();}}
    
    // Auxiliary notes:
    // AHK for Three Monitors using number pad 5 to submit and go to next window:
    //     NumPad5::
    //     Send {Enter}
    //     Send !{Tab 2}
    //     return
    // AHK to cycle to the next tab:
    //     NumPad5::
    //     Send {Enter}
    //     Send {LCtrl down}{Tab}{LCtrl up}
    //     return
    
     
    • Like Like x 1
  6. Rachel

    Rachel Well-Known Turker

    Joined:
    Jul 23, 2017
    Messages:
    373
    Gender:
    Female
    Ratings:
    +941
    Good morning all! :coffee:

    [​IMG]
    [​IMG]
    [​IMG]
    [​IMG]
     
    • Like Like x 2
    • Love Love x 1
  7. InfiniteChanges

    InfiniteChanges Survey Slinger TurkerView Masters

    Joined:
    Apr 29, 2017
    Messages:
    9,035
    Gender:
    Male
    Ratings:
    +10,399
    Kylie Au [A1DM2LFUMRZ7DP] Short Survey on Juror Decision Making - $1.00 | PANDA
    [3YSALWD20I6L15HBE49RR9ROEF8HPK]


    Underpaid

    Unrated

    Unrated
    $3.31 / hour
    00:18:09 / completion time
    Pros:

    Cons:
    Mostly reading, with some bubble questions, but basically just way to long to be worth your time. This should have been a $2.50 or $3 HIT.
    To read Kylie Au's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 1
    • Good Review! Good Review! x 1
  8. SAJ

    SAJ Survey Slinger

    Joined:
    Nov 18, 2016
    Messages:
    27,503
    Gender:
    Male
    Ratings:
    +51,497
    @ChrisTurk was at the mall using the free money pool and found one of yours
     
    • LOL LOL x 3
  9. Momof1

    Momof1 Survey Slinger

    Joined:
    Dec 19, 2016
    Messages:
    5,739
    Gender:
    Female
    Ratings:
    +5,912
    if you go down so will I, I put yes because I seen they were washing their hands but it was "handwashing clothes".
     
    • Like Like x 1
  10. jdzane

    jdzane Survey Slinger

    Joined:
    Nov 15, 2016
    Messages:
    9,239
    Gender:
    Female
    Ratings:
    +8,650
    [​IMG]
     
    • Love Love x 1
  11. Ironbrand

    Ironbrand Active Turker

    Joined:
    Mar 18, 2018
    Messages:
    492
    Gender:
    Male
    Ratings:
    +764
    I thought it was washing Hand-clothes, which is what I now call gloves.
     
  12. jessers

    jessers Survey Slinger

    Joined:
    Nov 15, 2016
    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    i wasted an hour at 2am trying to make those VRAPI not suck. didn't work. i regret everything.
     
    • LOL LOL x 2
    • Like Like x 1
  13. WimpLo

    WimpLo Survey Slingin' Batch Masta Former MTG MotM

    Joined:
    Nov 15, 2016
    Messages:
    35,376
    Gender:
    Female
    Ratings:
    +76,762
    Biscuits and Gravy for breakfast. :emoji_yum:
     
    • Nom Nom Nom! Nom Nom Nom! x 1
    • Love Love x 1
  14. ChrisTurk

    ChrisTurk Administrator

    Joined:
    Nov 15, 2016
    Messages:
    56,746
    Ratings:
    +163,330
    :eek:
    Happy birthday Joe Lo.. gimme my old stock hits back pls.
     
    • LOL LOL x 2
    • Like Like x 1
  15. jim718181

    jim718181 Survey Slinger

    Joined:
    Apr 16, 2017
    Messages:
    2,881
    Gender:
    Male
    Ratings:
    +4,199
    I think there is a way to include the google maps api in your script, which may speed them up.
     
    • Today I Learned Today I Learned x 1
  16. WildFlower

    WildFlower Survey Slinger FF Champion II

    Joined:
    Nov 17, 2016
    Messages:
    4,308
    Gender:
    Female
    Ratings:
    +5,009
    We all did them before we had Masters too. You just have to figure out the best way to clear the captcha so you're not losing much time.
     
  17. NotASingleClare

    NotASingleClare Well-Known Turker

    Joined:
    Mar 1, 2018
    Messages:
    2,637
    Gender:
    Female
    Ratings:
    +3,246
    oh English CIs are back? Hmmmmmm I still have like 900 that aren't approved so kinda scary
     
  18. knottypiper

    knottypiper Survey Slinger

    Joined:
    Sep 1, 2017
    Messages:
    5,776
    Gender:
    Female
    Ratings:
    +12,728
    Well then. Slept in two hours somehow, then woke up very suddenly. Brain is foggy and confused. Mad scramble soon to ensue.

    [​IMG]

    Morning, all.
     
    • Love Love x 2
    • Like Like x 1
  19. Salamander

    Salamander Survey Slinger

    Joined:
    Nov 15, 2016
    Messages:
    6,816
    Gender:
    Female
    Ratings:
    +31,720
    • Nom Nom Nom! Nom Nom Nom! x 6
  20. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Joined:
    Dec 16, 2016
    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    Morning people, I slept a lot.

    See you after breakfast.
     
    • Like Like x 1
    • LOL LOL x 1
Thread Status:
Not open for further replies.