06/03 - Silly Saturday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Jun 3, 2017.

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

    ChrisTurk Administrator

    Messages:
    56,746
    Ratings:
    +163,330
    As the frogs multiply, my intent on extermination grows.
     
    • LOL LOL x 3
  2. angel

    angel Survey Slinger

    Messages:
    15,335
    Gender:
    Female
    Ratings:
    +28,737
    I need a batch for this man so he leaves me alone for awhile
    [​IMG]
     
    • LOL LOL x 3
  3. TurkingMaster

    TurkingMaster Survey Slinger

    Messages:
    3,337
    Gender:
    Male
    Ratings:
    +4,285
    :eek:
     
    • LOL LOL x 1
  4. SAJ

    SAJ Survey Slinger

    Messages:
    27,503
    Gender:
    Male
    Ratings:
    +51,497
    :laser::emoji_frog:
     
    • LOL LOL x 2
    • Like Like x 1
  5. turk_it

    turk_it Survey Slinger

    Messages:
    3,728
    Gender:
    Male
    Ratings:
    +10,147
    [​IMG]
     
    • LOL LOL x 1
  6. leafs4_cup

    leafs4_cup Ugly Mug

    Messages:
    10,421
    Gender:
    Male
    Ratings:
    +31,313
    Apparently I'm out of touch...what the hell are these frogs anyways?
     
  7. DikDik

    DikDik Survey Slinger

    Messages:
    5,743
    Gender:
    Male
    Ratings:
    +8,637
    Pepe's
     
  8. turk_it

    turk_it Survey Slinger

    Messages:
    3,728
    Gender:
    Male
    Ratings:
    +10,147
  9. LurkerLUL

    LurkerLUL Well-Known Turker

    Messages:
    1,081
    Gender:
    Male
    Ratings:
    +1,300
    meme magic
     
  10. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    Title: Decide if a track title is valid, if track belongs to an artist, and if the video represents the track | PANDA
    Worker: Preview | Accept | Requester
    Requester: YouTube Artist [A2FR7QLXNDBZ70] (Contact)
    TO 1: [Pay: 4.19] [Fast: 5.00] [Comm: 5.00] [Fair: 5.00] [Reviews: 39] [ToS: 0]
    TO 2:
    Not Available
    Description: Give an artist name, a track title and a video, decide whether the track title is valid, if the track belongs to the artist, and whether the video is representative of the track.
    Time: 7 minutes
    HITs Available: 20
    Reward: $0.08
    Qualifications: Total approved HITs is not less than 100; HIT approval rate (%) is not less than 99; Location is US;
    HIT exported from Mturk Suite v1.21.10
     
    • Nom Nom Nom! Nom Nom Nom! x 4
    • 5/5 Pay 5/5 Pay x 1
  11. TurkingMaster

    TurkingMaster Survey Slinger

    Messages:
    3,337
    Gender:
    Male
    Ratings:
    +4,285
     
  12. leafs4_cup

    leafs4_cup Ugly Mug

    Messages:
    10,421
    Gender:
    Male
    Ratings:
    +31,313
    So long story short, it was a regular dumb meme, and now it's a regular dumb meme with right wing connotations?
     
  13. NBadger

    NBadger Mod of Cat Gifs

    Messages:
    14,386
    Gender:
    Female
    Ratings:
    +40,289
    Yes.

    Also anyone capped on YTAs yet?
     
  14. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    regarding the babyheads, this script is probably usable for the ones earlier. jqkill wrote it for "is there a face". "no" is selected automatically, and click the picture for "yes", double click to clear response. it looks like the values in the new one were the same, but there's obviously no value for 'too dark' in this script.

    Code:
    // ==UserScript==
    
    // @name cogdev faces
    
    // @namespace http://tampermonkey.net/
    
    // @version 0.1
    
    // @description Marks all as No - click image to change to yes - double click to 'unclick' both
    
    // @author JQKILL
    
    // @include *.mturkcontent.com/*
    
    // @require http://code.jquery.com/jquery-2.1.0.min.js
    
    // @grant GM_log
    
    // ==/UserScript==
    
    
    
    $("input[value='no']").click();
    
    
    
    $("tr").click( function(event) {
    
       if ($(this).find("input[value='yes']").prop("checked") === false) {
    
       $(this).find("input[value='yes']").prop("checked", true);
    
       } else {
    
       $(this).find("input[value='no']").prop("checked", true);
    
          }
    
    });
    
    
    
    $("tr").dblclick( function() {
    
       $(this).find("input[value='yes']").prop("checked", null);
    
       $(this).find("input[value='no']").prop("checked", null);
    
    });
     
  15. TurkingMaster

    TurkingMaster Survey Slinger

    Messages:
    3,337
    Gender:
    Male
    Ratings:
    +4,285
    No
     
  16. ceedj

    ceedj Survey Slinger

    Messages:
    2,862
    Gender:
    Male
    Ratings:
    +6,383
    For the CogDev Nothing Much, marks all as No. The click scheme is weird on their HITs, so you have to click the one you want and click No off if that's what it is. They go fast enough that the extra click doesn't bother me, but feel free to come up with a solution if you like.

    Code:
    // ==UserScript==
    // @name CogDev Nothing Much ($0.30)
    // @namespace http://tampermonkey.net/
    // @version 1.0
    // @description Marks all No. Because why not?
    // @author ceedj
    // @include *.mturkcontent.com/*
    // @require http://code.jquery.com/jquery-2.1.1.min.js
    // @grant GM_log
    // ==/UserScript==
    
    var NM = $('p:contains(We will call these scenes NM for nothing much)');
    if (NM.length)
    {
    window.focus();
    
    $("input[name^='Something_']").click();
    }
    
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  17. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,746
    Ratings:
    +163,330
    Nah, its mostly just ugly/creepy looking lol. I think all the political stuff is just people being whiny.
     
    • Like Like x 1
    • LOL LOL x 1
  18. turk_it

    turk_it Survey Slinger

    Messages:
    3,728
    Gender:
    Male
    Ratings:
    +10,147
    Well yeah that exactly, although just because the alt right used it doesn't make it that to the meme people. I def don't share there sentiments. I can't speak for @TurkingMaster though.
     
  19. leafs4_cup

    leafs4_cup Ugly Mug

    Messages:
    10,421
    Gender:
    Male
    Ratings:
    +31,313
    The internet...the place where you can read more about something, but somehow know less.

    Carry on, frog people.
     
    • LOL LOL x 3
  20. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    I wouldn't say the political connection is entirely unfounded, but it has been somewhat exaggerated I think.
     
Thread Status:
Not open for further replies.