02/07 - Transitional Tuesday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Feb 7, 2017.

?

TurkerHub Tools are back with new features!

  1. Get more information here!

    16 vote(s)
    53.3%
  2. https://turkerhub.com/posts/61186/

    14 vote(s)
    46.7%
Thread Status:
Not open for further replies.
  1. Nacho Ferret

    Nacho Ferret Active Turker

    Messages:
    305
    Ratings:
    +338
    Guys, these nickel sergeys are the February batch drop for this year. :p
     
    • LOL LOL x 1
  2. Ana*

    Ana* H&R Blockhead

    Messages:
    21,637
    Gender:
    Female
    Ratings:
    +27,162
    added him to OW. knew i was still missing requesters
     
    • Like Like x 1
  3. Vanyanka

    Vanyanka I am extra special

    Messages:
    2,201
    Gender:
    Female
    Ratings:
    +4,003
    I maxed yesterday and I'm still locked out. :(
     
    • Love Love x 1
  4. SAJ

    SAJ Survey Slinger

    Messages:
    27,503
    Gender:
    Male
    Ratings:
    +51,497
    • Nom Nom Nom! Nom Nom Nom! x 1
  5. SAJ

    SAJ Survey Slinger

    Messages:
    27,503
    Gender:
    Male
    Ratings:
    +51,497
    Title: Quick Survey Tuesday, February 7, 2017 #2 | PANDA
    Requester: Nate Hodges [A1AQHR31NR4J6N] (Contact)
    TO: [Comm: 5.00] [Pay: 3.98] [Fair: 5.00] [Fast: 4.66] [Reviews: 52] [ToS: 0]
    Description:
    Please take a look at a few questions and provide us with your thoughts.
    Time: Unable to pull duration
    HITs Available: 1
    Reward: $0.50
    Qualifications: HIT approval rate (%) is greater than 90; Location is US

    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
    I think it is broken
     
    • Nom Nom Nom! Nom Nom Nom! x 1
    Last edited: Feb 7, 2017
  6. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    I've come to the realization that $4 Hodges are just never coming back.
     
    • LOL LOL x 1
  7. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    @Alina capped the first day and she is still locked out.
     
    • Like Like x 2
  8. Vanyanka

    Vanyanka I am extra special

    Messages:
    2,201
    Gender:
    Female
    Ratings:
    +4,003
    Title: 2-5 minute survey of attitudes | PANDA
    Requester: Online Panel [AFH23TCHBL8WG] (Contact)
    TO: [Pay: 2.60] [Fair: 5.00] [Comm: N/A] [Fast: 5.00] [Reviews: 14] [ToS: 0]
    Description:
    Brief writing task followed by attitude ratings
    Time: 20 minutes
    HITs Available: 2
    Reward: $0.30
    Qualifications: EXCL_POLS has not been granted; HIT approval rate (%) is greater than 91; Total approved HITs is greater than 50; Location is US;
    HIT exported from Mturk Suite v1.5.0
     
    • Nom Nom Nom! Nom Nom Nom! x 4
  9. ceedj

    ceedj Survey Slinger

    Messages:
    2,867
    Gender:
    Male
    Ratings:
    +6,404
    Anyone want to beta test something on the unqualled Sergey's?

    THIS IS TESTING! IT SHOULD WORK (it does for me; did two, all worked as expected), BUT DON'T BE ALL "OH, I'M MAD BRO, YOU SUCK, DIEDIEDIE!" BECAUSE I WILL JUST POINT AND LAUGH.


    Ok then, choose with 1-5 (numpad or top row), Enter submits. I learned some nifty time saving stuff, though it took several days and batches of testing to get there. Anyway, let me know if it's good, and I'll post it up to the script forum.

    Code:
    // ==UserScript==
    // @name         Other Sergey Rate Tags ($0.05)
    // @namespace    none
    // @version      1.0
    // @description  Sploosh!
    // @author       ceedj
    // @include      https://s3.amazonaws.com/*
    // @include      https://www.mturkcontent.com/*
    // @grant        GM_log
    // @require      http://code.jquery.com/jquery-2.1.1.min.js
    // ==/UserScript==
    
    var Sanity = $('p:contains(Rate the accuracy)');
    if (Sanity.length){
    $(document).ready(function() {
    window.focus();
    });
    
    $("input[name='is_kids_tag']")[0].focus();
    $("#submitButton").css('display','block');
    var QNumber = 0;
    var Kids = "is_kids_tag";
    var Rela = "is_relevant";
    var Matu = "title_too_mature";
    var QChoice = Kids;
    document.onkeydown = function(e) {
    
    
    if (e.keyCode === 49 || e.keyCode === 97 ){
        $("input[name="+QChoice+"]")[0].click();
        QNumber++;
        }
    
    if (e.keyCode === 50 || e.keyCode === 98 ){
        $("input[name="+QChoice+"]")[1].click();
        QNumber++;
        }
    
    if (e.keyCode === 51 || e.keyCode === 99 ){
        $("input[name="+QChoice+"]")[2].click();
        QNumber++;
        }
    
    if (e.keyCode === 52 || e.keyCode === 100 ){
        $("input[name="+QChoice+"]")[3].click();
        if (QNumber === 3)
        {$("input[name='title_too_mature']")[0].focus();
        QNumber = 3;
        } else {QNumber++;}
        }
    
    if (e.keyCode === 53 || e.keyCode === 101 ){
        $("input[name="+QChoice+"]")[4].click();
        if (QNumber === 3)
        {$("input[name='title_too_mature']")[0].focus();
        QNumber = 3;
        } else {QNumber++;}
        }
    
    
    switch (QNumber){
            case 1:
            $("input[name='is_relevant']")[0].focus();
            QChoice = Rela;
            break;
            case 2:
            $("input[name='title_too_mature']")[0].focus();
            QChoice = Matu;
            break;
            case 3:
            $("input[name='is_kids_tag']")[0].focus();
            QChoice = Kids;
            QNumber = 0;
            break;
        }
    
            //Submit
    if (e.keyCode === 13) { // Enter or NumpadEnter
    $("input[id='submitButton']").click();
    }
    } ;
    }
    
     
    • Love Love x 2
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  10. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    Gonna check it out.
     
    • Like Like x 1
  11. SquigglyButt

    SquigglyButt Survey Slinger

    Messages:
    5,440
    Gender:
    Male
    Ratings:
    +5,961
    It works for me
    CIRCLE GETS THE SQUARE
     
    • Like Like x 1
  12. Nacho Ferret

    Nacho Ferret Active Turker

    Messages:
    305
    Ratings:
    +338
    :hug: I've done zero, they seem kinda underpaid. >.<

    I'm embarrassed to say I accepted one since I saw it was up to 50 cents. ._.
     
    • LOL LOL x 2
  13. Vanyanka

    Vanyanka I am extra special

    Messages:
    2,201
    Gender:
    Female
    Ratings:
    +4,003
    I got in the zone and cranked them out.
     
  14. kryss

    kryss Active Turker Former MTG MotM Birthday Girl!

    Messages:
    316
    Gender:
    Female
    Ratings:
    +647
    :emoji_scream:
     
  15. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    Cool @ceedj . Working like a charm!
     
    • Like Like x 1
  16. turk_it

    turk_it Survey Slinger

    Messages:
    3,728
    Gender:
    Male
    Ratings:
    +10,147
    Gonna work on those 10 wills i got 3 hours ago...
    Still got 6 hours and change though...
    Oh man new Netflix shows...
    Takes a nap...
    :emoji_sleeping:
     
    • LOL LOL x 2
    • 5/5 Pay 5/5 Pay x 1
  17. Vanyanka

    Vanyanka I am extra special

    Messages:
    2,201
    Gender:
    Female
    Ratings:
    +4,003
    Get the fuck out of here.

    Why do you have all those badges? I want them.
     
    • LOL LOL x 3
    • Nom Nom Nom! Nom Nom Nom! x 1
  18. Nacho Ferret

    Nacho Ferret Active Turker

    Messages:
    305
    Ratings:
    +338
    I should, but Dirk makes me lazy. :(
     
    • Like Like x 2
  19. kryss

    kryss Active Turker Former MTG MotM Birthday Girl!

    Messages:
    316
    Gender:
    Female
    Ratings:
    +647
    :aetsch:
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  20. Ness

    Ness Survey Slinger

    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    Soo last thing I remeber was some talk about some shepard's pie, how'd that turn out?
     
    • LOL LOL x 1
Thread Status:
Not open for further replies.