10/24 - Tubular Tuesday!

Discussion in 'Daily mTurk HITs Threads' started by Melting Glacier, Oct 24, 2017.

Thread Status:
Not open for further replies.
  1. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    Well duh. You're always supposed to inflate reality by 33%. You're obviously new to this, but you'll catch on.
     
    • Today I Learned Today I Learned x 1
  2. knottypiper

    knottypiper Survey Slinger

    Messages:
    5,776
    Gender:
    Female
    Ratings:
    +12,728
    • Nom Nom Nom! Nom Nom Nom! x 5
  3. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    I got like tree fiddy reddit karma as well
     
  4. GooseMcD

    GooseMcD Well-Known Turker

    Messages:
    1,694
    Gender:
    Female
    Ratings:
    +4,286
    Title: Target Detection(~ 75 minutes) | PANDA
    Requester: Qlab [AR5IGTNDKNSC2] (TO)
    TO Ratings:
    ★★★★ 1.00 Communicativity
    ★★★★★ 3.00 Generosity
    ★★★★★ 5.00 Fairness
    ★★★★★ 0.00 Promptness
    Number of Reviews: 3 | TOS Flags: 0
    Submit a new TO review
    Description: Play a simple game of listening/viewing and judging the stimuli
    Time: 1 hour 30 minutes
    HITs Available: 10
    Reward: $4.00
    Qualifications: TP Panel: 664426543 N is not less than 100;Exc: [62405-61816] has not been granted;Location is one of: US
    idk
     
    • Nom Nom Nom! Nom Nom Nom! x 13
  5. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    I know how much Karma you have. The spider reminds me every day.
     
    • LOL LOL x 1
  6. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Lol did you actually put that into the script?
     
  7. turks24

    turks24 Survey Slinger

    Messages:
    6,720
    Gender:
    Male
    Ratings:
    +13,777
    I guess if it's part of Nationwide it should at least be reputable. I still don't think it's worth it but I had some notion of most pet insurance as being a little sketchy. Similar to the extended car warranty companies. I guess maybe I thought someone would make the decision easier by confirming that notion.

    I appreciate you chiming in. :ba:
     
  8. knottypiper

    knottypiper Survey Slinger

    Messages:
    5,776
    Gender:
    Female
    Ratings:
    +12,728
    Lana Nan [A71B34EOMW7A2] Please join a less than 1 min study about your general opinions (10 cents) - $0.10 | PANDA


    Generous

    Unrated

    Unrated
    $14.40 / hour
    00:00:25 / completion time
    Pros: One question. Quick and painless.
    Cons: None.
    To read Lana Nan's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 7
    • Good Review! Good Review! x 1
  9. Cosmo

    Cosmo Survey Slinger

    Messages:
    2,940
    Gender:
    Male
    Ratings:
    +4,140
    I saw American Pie, it's supposed to be the rule of 3, bruh. 33% is way too low.
     
  10. knottypiper

    knottypiper Survey Slinger

    Messages:
    5,776
    Gender:
    Female
    Ratings:
    +12,728
    Jeremy Cone [AD8AISPME4GCK] You will look at some faces, make judgements, and answer some questions - approximately 3 minutes, earn $0.30 - $0.30 | PANDA


    Fair

    Unrated

    Unrated
    $8.71 / hour
    00:02:04 / completion time
    Pros: Easy, with decent pay.
    Cons: There were four pages of faces, not three as stated.
    To read Jeremy Cone's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  11. MNHammer

    MNHammer Survey Slinger

    Messages:
    3,965
    Gender:
    Male
    Ratings:
    +23,836
    Does anyone have a script to autoset the Rekogs to 4x playback speed?
     
  12. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    Yup.

    It only has like 10 different things that it says. It could really use some more phrases.
     
  13. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Code:
    // ==UserScript==
    // @name        Amazon Videos 2
    // @description Helps you make choices
    // @version     0.1.1a
    // @author      RicanGuy86
    // @contributor Melting Glacier's 3rd rate tinkering for HIT change
    // @grant       none
    // @include     *.mturkcontent.com/*
    // @include     https://aitiaotu.com/*
    // @include     https://s3.amazonaws.com/*
    // @require     http://code.jquery.com/jquery-2.1.0.min.js
    // ==/UserScript==
    
     $("a[class='btn-rate-higher']")[0].click();
     $("a[class='btn-rate-higher']")[0].click();
     $("a[class='btn-rate-higher']")[0].click();
     $("a[class='btn-rate-higher']")[0].click();
     $("a[class='btn-rate-higher']")[0].click();
     $("a[class='btn-rate-higher']")[0].click();
     $("a[class='btn-rate-higher']")[0].click();
    
    
    for (i = 0; i < 1; i++) {
    
    }
    
    $(document).ready(function(){
    
        var counter = 0;
    
        $(document).keydown(function(e){
        if (e.which == 50){
            $("a[class='btn-no']")[0].click();          // 1 no
        }
        if (e.which == 49){
            $("a[class='btn-yes']")[0].click();         // 2 yes
        }
        if (e.which == 51){
            $("a[class='btn-unsure']")[0].click();      // 3 unsure
        }
     //   if (counter >= 6) {
     //       $("button[id='btnSubmit']")[0].click();
     //      e.preventDefault();                         // Enter
    //    }
            counter++;
        });
    });
     
    • Today I Learned Today I Learned x 4
  14. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    I have one, but I think there's another one shared here that does the same.
     
  15. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    Fastest draw Internet in the West, gunslinger.
     
  16. RobertDevious

    RobertDevious Survey Slinger

    Messages:
    4,000
    Gender:
    Male
    Ratings:
    +5,859
    Altsuss [A1ATES40ZPE477] Consumer Decisions Survey - $0.30 | PANDA


    Good

    Unrated

    Unrated
    $13.01 / hour
    00:01:23 / completion time
    Pros:
    Cons:
    To read Altsuss's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  17. jsxca

    jsxca Survey Slinger

    Messages:
    2,367
    Gender:
    Female
    Ratings:
    +3,221
    Just knowing this makes me feel better :)
     
    • Like Like x 2
  18. RobertDevious

    RobertDevious Survey Slinger

    Messages:
    4,000
    Gender:
    Male
    Ratings:
    +5,859
    Lana Nan [A71B34EOMW7A2] Please join a less than 1 min study about your general opinions (10 cents) - $0.10 | PANDA


    Good

    Unrated

    Unrated
    $10.29 / hour
    00:00:35 / completion time
    Pros:
    Cons:
    To read Lana Nan's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  19. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    I should prob change the version number because I fixed a bug with the actual one with that version but meh it doesn't matter
     
  20. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    It's good that you shared that one anyway, since I can't even seem to find my version.

    I apparently never uploaded it to GF and it's stuck on an island somewhere in one of the 10 profiles of my 3 computers. I didn't put much effort into the script, since I've only been able to get decent load times / wage out of them once.
     
Thread Status:
Not open for further replies.