10/09 - Monday

Discussion in 'Daily mTurk HITs Threads' started by ChrisTurk, Oct 9, 2017.

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

    Hummingbirdee Big Bird

    Joined:
    Nov 15, 2016
    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    Sorry, had to track it down:

    // ==UserScript==
    // @name Noblis HotKeys
    // @namespace https://greasyfork.org/users/6406
    // @description press keys
    // @version 0.18
    // @require http://code.jquery.com/jquery-1.10.2.min.js
    // @include http*://s3.amazonaws.com/TurkAnnotator*
    // @grant none
    // ==/UserScript==

    window.onkeydown = function (event) {
    if ((event.keyCode === 49)) {
    $("#nomistakesbutton").click();
    }
    if ((event.keyCode === 50)) {
    $("#babybutton").click();
    }
    if ((event.keyCode === 51)) {
    $("#junkbutton").click();
    }
    if ((event.keyCode === 52)) {
    $("#nextbutton").click();
    }
    if ((event.keyCode === 48)) {
    $("#submitbutton").click();
    }
    };


    Think that is correct.
     
    • Today I Learned Today I Learned x 2
    • 5/5 Pay 5/5 Pay x 1
  2. ChrisTurk

    ChrisTurk Administrator

    Joined:
    Nov 15, 2016
    Messages:
    56,746
    Ratings:
    +163,330
    For the sadists & desperate:
    https://worker.mturk.com/requesters/A24DF7PQBT4O0B/projects?ref=w_pl_prvw

    Script will:
    • Replace the default YT player w/ a new one that is set to low quality + faster playback
    • Autoplay the video
    • Rearrange inputs so you don't have to scroll
    • Hold you when you begin to cry after the 3rd false cap in a row
    Code:
    // ==UserScript==
    // @name         Johnbronie Doewie
    // @namespace    https://turkerhub.com/
    // @version      3.14
    // @description  blank
    // @author       ChrisTurk
    // @include      https://www.google.com/evaluation/endor/*
    // @require      http://code.jquery.com/jquery-3.2.1.min.js
    // ==/UserScript==
    
    $(document).ready(function(){
        // Lets attach a div to hold our YT video.
        $('body').prepend('<div id="playa"></div>');
    
        // The YT API is pretty easy to play with. We take the configuration from John's setup and plug it into a new player with the settings we prefer (low quality for improved loading speed, faster playback).
        var playa;
        var pheight = playerConfig.height;
        var pwidth = playerConfig.width;
        var pvidId = playerConfig.videoId;
        var pstart = playerConfig.playerVars.start;
        var pend = playerConfig.playerVars.end;
        playa = new YT.Player('playa', {    // the 'playa' here is the name of the div we want the YT script to replace with its embedded iframe. Probably the most important thing to know is that so you can manipulate this script for other HITs.
            height: pheight,
            width: pwidth,
            videoId: pvidId,
            playerVars: {
                autoplay: 1,
                start: pstart,
                end: pend,
                cc_load_policy: 0,
                iv_load_policy: 3,
                rel: 0,
                showinfo: 1 // set this to 0 if you don't care to see the title of the video, I prefer it.
            },
            events: {
                'onReady': onPlayaReady
            }
        });
    
        function onPlayaReady(event) {
            playa.setPlaybackRate(1.5); // 2x speed, fastest setting
            playa.setPlaybackQuality('tiny'); // 144p, lowest setting I know of on YT.
            //event.target.playVideo();
        }
    
        // lets delete his video
        $('#video-embed').remove();
        // have you read the directions? If not comment this out.
        $('#directions').remove();
        $('h2:contains(Your task)').remove();
        $('h3:contains(Questions)').remove();
        $('ul').hide();
        $('p:contains(Please watch the following video segment)').remove();
        $('p').css('margin', '0');
        $('#yes-playable').click();
    
        var p = $('#unsuitable-div').children('p:eq(0)').detach();
    var ul = $('#unsuitable-div').children('ul:eq(0)').detach();
    var d = $('#medium-div').detach();
    var c = $('#fact-div').detach();
    var b = $('#unsuitable-audio-div').detach();
    var a = $('#unsuitable-div').detach();
    
    $('#playable-div').after(`<div style="width: 100%;"><div id="div-a" style="float: left; margin-right: 25px;"></div><div id="div-b" style="float: left;"></div></div><div style="clear: both;"></div>
    <div style="width: 100%;"><div id="div-c" style="float: left; margin-right: 25px;"></div><div id="div-d" style="float: left;"></div></div><div style="clear: both;"></div>`);
    
    $('#playable-div').append(p, ul);
    $('#div-a').prepend(a);
    $('#div-b').prepend(b);
    $('#div-c').prepend(c);
    $('#div-d').prepend(d);
    
        $('textarea').prev('p').hide();
        $('textarea').attr('rows', '3');
    
    
    });
    
    
    
    upload_2017-10-9_18-9-3.png
     
    • LOL LOL x 3
    • Today I Learned Today I Learned x 3
    • 5/5 Pay 5/5 Pay x 1
  3. Confirmed Robot

    Confirmed Robot Survey Slinger

    Joined:
    Jul 10, 2017
    Messages:
    7,291
    Ratings:
    +27,052
    I don't use a script on those either. Decreases accuracy in my opinion and it's already fast with the mouse. >13/hr
     
    • Love Love x 1
  4. Sunlite

    Sunlite Survey Slinger

    Joined:
    Nov 17, 2016
    Messages:
    5,028
    Gender:
    Female
    Ratings:
    +7,755
    Got this email @ 5:40pm (this is part of it)
    Hello,

    You are invited to participate in a new study on reasoning. This study will be posted to mTurk at 6:00 pm Eastern Time on October 9th, 2017. We anticipate that this study may take up to 2 hours to complete, and workers will receive $20 for their participation. To participate, please log-on to your mTurk account and search for a HIT entitled "Reasoning Study ($20 / 2 hrs) (Study E)" (posted by reasoning.studies@gmail.com).

    Please note, this study is also open to the public, so availability is not guaranteed.


    Did not see it posted- did anybody see this hit posted or snag it? [​IMG]
     
    • Nom Nom Nom! Nom Nom Nom! x 1
    • Today I Learned Today I Learned x 1
  5. Ten

    Ten Survey Slinger

    Joined:
    Nov 28, 2016
    Messages:
    5,518
    Gender:
    Male
    Ratings:
    +8,149
    I just wish I grabbed the qual for it, and knew about it a hour sooner. Only got like 40.
     
    • Like Like x 1
  6. BarnCat

    BarnCat Active Turker

    Joined:
    Aug 16, 2017
    Messages:
    613
    Gender:
    Male
    Ratings:
    +916
    Not yet...
     
  7. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Joined:
    Dec 16, 2016
    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    3EWXWOT88N46Y8LUX5SUU2HD93OP5Y
     
    • Today I Learned Today I Learned x 1
  8. ChrisTurk

    ChrisTurk Administrator

    Joined:
    Nov 15, 2016
    Messages:
    56,746
    Ratings:
    +163,330
    It posted hours ago. Not sure if it ever reposted but I did it this morning/early afternoon
     
    • Today I Learned Today I Learned x 1
  9. NBadger

    NBadger Mod of Cat Gifs

    Joined:
    Feb 24, 2017
    Messages:
    14,386
    Gender:
    Female
    Ratings:
    +40,289
    Pretty sure that makes us the masochists and you the sadist bossman :emoji_thinking:
     
    • LOL LOL x 2
  10. Jude

    Jude Well-Known Turker

    Joined:
    Nov 15, 2016
    Messages:
    855
    Ratings:
    +1,798
    4:01pm Reasoning_project $20.00
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  11. ChrisTurk

    ChrisTurk Administrator

    Joined:
    Nov 15, 2016
    Messages:
    56,746
    Ratings:
    +163,330
    [​IMG]
     
    • LOL LOL x 1
  12. SeDuCeR

    SeDuCeR Survey Slinger

    Joined:
    Nov 21, 2016
    Messages:
    6,483
    Gender:
    Male
    Ratings:
    +11,180
    :emoji_hugging:
     
    • Love Love x 1
  13. Ten

    Ten Survey Slinger

    Joined:
    Nov 28, 2016
    Messages:
    5,518
    Gender:
    Male
    Ratings:
    +8,149
    Kasisto popped up for a hot second.
     
  14. Sunlite

    Sunlite Survey Slinger

    Joined:
    Nov 17, 2016
    Messages:
    5,028
    Gender:
    Female
    Ratings:
    +7,755

    Why the hell are they telling me it will post @ 6pm? Does anyone have a PANDA?
    I saw the .50 one earlier for the qual- but I missed it...
     
  15. WimpLo

    WimpLo Survey Slingin' Batch Masta Former MTG MotM

    Joined:
    Nov 15, 2016
    Messages:
    35,372
    Gender:
    Female
    Ratings:
    +76,734
    That is the one you want.
     
  16. knottypiper

    knottypiper Survey Slinger

    Joined:
    Sep 1, 2017
    Messages:
    5,776
    Gender:
    Female
    Ratings:
    +12,728
    I caught a single kasisto!
     
  17. Randomacts

    Randomacts Survey Slinger

    Joined:
    Nov 16, 2016
    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    I got it a few hours ago.
     
  18. Sunlite

    Sunlite Survey Slinger

    Joined:
    Nov 17, 2016
    Messages:
    5,028
    Gender:
    Female
    Ratings:
    +7,755
    Anyone have a PANDA?
     
  19. Jude

    Jude Well-Known Turker

    Joined:
    Nov 15, 2016
    Messages:
    855
    Ratings:
    +1,798
    • Nom Nom Nom! Nom Nom Nom! x 4
    • Love Love x 1
  20. Confirmed Robot

    Confirmed Robot Survey Slinger

    Joined:
    Jul 10, 2017
    Messages:
    7,291
    Ratings:
    +27,052
    I got this email at 3:02 PM

    Greetings from Amazon Mechanical Turk,

    You've received a bonus from Cocosci Lab at UC Berkeley for work related to 3HA5ODM5KASN18G9X2KYFW35LQ8SV2.
    The value of your bonus is: $0.81 USD

    My bonus was supposed to be $0.83 though..

    [​IMG]
     
    • LOL LOL x 1
Thread Status:
Not open for further replies.