08/17 - This 'n' That Thursday!

Discussion in 'Daily mTurk HITs Threads' started by Melting Glacier, Aug 17, 2017.

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

    SeDuCeR Survey Slinger

    Messages:
    6,483
    Gender:
    Male
    Ratings:
    +11,180
    wouldn't mind some sayhay's about now, or some Peter
     
  2. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Or an endless batch of YTA... or jams..
     
    • 5/5 Pay 5/5 Pay x 1
  3. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,746
    Ratings:
    +163,330
    Code:
    // ==UserScript==
    // @name _UofI - Report what a foreign language sounds like.
    // @namespace https://turkerhub.com/
    // @version 1.0
    // @description blank
    // @author ChrisTurk
    // @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
    // @grant GM_log
    // @require https://code.jquery.com/jquery-3.1.0.min.js
    // ==/UserScript==
    if ($( 'body:contains(listen to eight audio clips in a foreign language)' ).length) { _cycleText(); }
    function _cycleText () {
    //for every text box in the hit, we'll cycle through and see whats already in it.
    $('textarea').each(function(){
    //lets set a variable.. why? because its slightly cleaner and shows how to do it.. its pretty simple but whatever.
    var currentText = $(this).text();
    if (currentText == 'Text goes here') {
    //ok, we're comparing the string that is in there to what we don't want, since its true we'll remove it.
    $(this).val('');
    }
    });
    $('.audio-clips').each(function(){
    $(this).children('p:first').css('float', 'left');
    });
    $('.instructions').hide();
    }
    ..If you want to clean up the amount of space used a bit. Took out the mostly useless instruction tab & left the more important looking one.

    K I'm done y'all have fun.
     
  4. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Okay now I want a script that makes the batches that I actually like post.
     
    • 5/5 Pay 5/5 Pay x 2
    • Like Like x 1
  5. Psc2626

    Psc2626 Turker

    Messages:
    108
    Gender:
    Male
    Ratings:
    +498
    Did anyone see some A9s shoot accross...? Lol Or have they been coming up all night?
     
  6. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    The 3 cent ones post all the time in small numbers
     
  7. Psc2626

    Psc2626 Turker

    Messages:
    108
    Gender:
    Male
    Ratings:
    +498
    I had no idea, must of been the first time i've seen them in a while.
     
  8. SeDuCeR

    SeDuCeR Survey Slinger

    Messages:
    6,483
    Gender:
    Male
    Ratings:
    +11,180
    I can see y'ALL now, sitting there, tired as hell, eyes crossing, fingers numb, eating some fast food or some crappy snack you found in the fridge, cause you're too tired to go get anything, and you're waiting for a big late nite surprise batch to drop. I'm there too, only difference is, I'm naked...
     
    • LOL LOL x 1
    • 5/5 Pay 5/5 Pay x 1
    • Today I Learned Today I Learned x 1
  9. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    But I haven't had fast food in almost a year. :emoji_thinking:
     
    • Love Love x 1
  10. Mothra

    Mothra Survey Slinger

    Messages:
    6,468
    Ratings:
    +11,952
    I'd just like to do 1000 CIs and a thousand YTAs every day and then I'd only need $60 worth of surveys a day.
     
    • 5/5 Pay 5/5 Pay x 2
  11. Melting Glacier

    Melting Glacier PE: $30.01 - That's over $1.25/hour! ┬┴┤( ͡° ͜ʖ├┬┴

    Messages:
    6,157
    Gender:
    Male
    Ratings:
    +11,423
    Alright, got my hackjob functioning finally. :D Don't use this, there's no sanity check and doesn't do as much as CT's revision. I think I had it working earlier than I thought, because it took me a minute to realize that the placeholder text was still there and the same as the text that was pre-filled. :lol:

    Code:
    // ==UserScript==
    // @name UofI Clear Textarea
    // @namespace http://tampermonkey.net/
    // @version 0.1
    // @description try to take over the world!
    // @author MG
    // @require https://code.jquery.com/jquery-3.1.0.min.js
    // @include https://www.mturkcontent.com/*
    // @grant GM_log
    // ==/UserScript==
    $('textarea').each(function(){
    $(this).val('');
    }
    );
     
    • LOL LOL x 2
  12. Momof1

    Momof1 Survey Slinger

    Messages:
    5,739
    Gender:
    Female
    Ratings:
    +5,912
    honestly I haven't tried them yet. Some one just asked for a batch and I give a batch.. :)
     
    • 5/5 Pay 5/5 Pay x 1
  13. SeDuCeR

    SeDuCeR Survey Slinger

    Messages:
    6,483
    Gender:
    Male
    Ratings:
    +11,180
    butt have you been naked in the last year?
     
  14. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Every day when I shower.
     
    • 5/5 Pay 5/5 Pay x 1
  15. dan

    dan daelian

    Messages:
    28,285
    Gender:
    Male
    Ratings:
    +61,817
    that's gross
     
    • LOL LOL x 1
  16. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    god damn never nudes
     
    • LOL LOL x 2
    • Love Love x 1
  17. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,746
    Ratings:
    +163,330
    Oh.. should set keybinds (numpad 1-8?) to play each audio clip + focus the textbox so hands never need to leave the keyboard.. :eek:

    Should be $('audio')[1].play() //replace 1 with respective selector for each audio file.. it starts at 1 because of the sample audio.

    :emoji_sleeping:
     
    • LOL LOL x 1
  18. dan

    dan daelian

    Messages:
    28,285
    Gender:
    Male
    Ratings:
    +61,817
    [​IMG]
     
    • LOL LOL x 1
    • Love Love x 1
  19. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    Much better than mine:

    Code:
    // ==UserScript==
    // @name UofI - Remove Placeholder
    // @description Make easier choices
    // @version 0.1
    // @author RicanGuy86
    // @grant none
    // @include *.mturkcontent.com/*
    // @include https://s3.amazonaws.com/*
    // @require http://code.jquery.com/jquery-2.1.0.min.js
    // ==/UserScript==
    $("textarea").val('');
     
    • LOL LOL x 2
  20. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    Back to work!
     
Thread Status:
Not open for further replies.