08/04 - Funktastic Friday!

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

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

    Cambyreel Active Turker

    Messages:
    340
    Gender:
    Male
    Ratings:
    +563
    If you have Kadauci's script he threw together, work them side by side from both sites. I was blowing through 70 at a time between the capatcha
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  2. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,622
    Gender:
    Male
    Ratings:
    +124,073
    Another option is this script.

    It will allow you to actually use all 10 bubbles.

    Code:
    // ==UserScript==
    // @name         Mturk Radio Keybinds - Expanded
    // @namespace    https://gist.github.com/Kadauchi
    // @version      2.1.1
    // @description  Keybinds to select radios
    // @author       Kadauchi, butchered for Keith S. Anderson hits by jdzane
    // @icon         http://i.imgur.com/oGRQwPN.png
    // @include      /^https://(www\.mturkcontent|s3\.amazonaws)\.com/
    // @include      /^https://www.soniabishoplab.com/*
    // @include      /^https://www.princetonsurvey.az1.qualtrics.com/*
    // @grant        GM_getValue
    // @grant        GM_setValue
    // ==/UserScript==
    
    document.body.insertAdjacentHTML(
      `afterbegin`,
    
      `<div style="background-color: lightgreen;">` +
      `<label style="color: black; margin-left: 10px;">Script: Mturk Radio Keybinds</label>` +
      `<span style="margin-left: 3px;cursor:help" title="Press 1 through 9 or z through . to select the radio you want. \n\nPress Enter to submit the HIT. \n\nCheck auto submit to have the HIT submit after you press your keybind.">&#10068;</span>` +
    
      `<label style="color: black; float: right; margin-right: 10px;">Auto Submit: ` +
      `<input id="autosubmit" type="checkbox" ${GM_getValue(`autosubmit`) ? `checked` : ``}></input>` +
      `</label>` +
    
      `<label style="color: black; float: right; margin-right: 10px;">Use [z-.]: ` +
      `<input id="letters" type="checkbox" ${GM_getValue(`letters`) ? `checked` : ``}></input>` +
      `</label>` +
    
      `<label style="color: black; float: right; margin-right: 10px;">Use [1-0;q=11,w=12]: ` +
      `<input id="numbers" type="checkbox" ${GM_getValue(`numbers`) ? `checked` : ``}></input>` +
      `</label>` +
    
      `</div>`
    );
    
    const numbers = document.getElementById(`numbers`);
    const letters = document.getElementById(`letters`);
    const autosubmit = document.getElementById(`autosubmit`);
    
    numbers.addEventListener(`change`, function (event) {
      GM_setValue(`numbers`, numbers.checked);
    });
    
    letters.addEventListener(`change`, function (event) {
      GM_setValue(`letters`, letters.checked);
    });
    
    autosubmit.addEventListener(`change`, function (event) {
      GM_setValue(`autosubmit`, autosubmit.checked);
    });
    
    window.addEventListener(`keydown`, function (event) {
      const key = event.key;
    
      if (numbers.checked && key.match(/[1|2|3|4|5|6|7|8|9|0|q|w]/)) {
        console.log(key);
        const convert = { '1': 0, '2': 1, '3': 2, '4': 3, '5': 4, '6': 5, '7': 6, '8': 7, '9': 8, '0': 9, 'q': 10, 'w': 11 };
        const radio = document.querySelectorAll(`[type="radio"]`)[convert[key]];
        if (radio) radio.click();
    
        if (autosubmit.checked) document.querySelector(`[type="submit"]`).click();
      }
    
      if (letters.checked && key.match(/z|x|c|v|b|n|m|,|\./)) {
        console.log(key);
        const convert = { 'z': 0, 'x': 1, 'c': 2, 'v': 3, 'b': 4, 'n': 5, 'm': 6, ',': 7, '.': 8 };
        const radio = document.querySelectorAll(`[type="radio"]`)[convert[key]];
        if (radio) radio.click();
    
        if (autosubmit.checked) document.querySelector(`[type="submit"]`).click();
      }
    
      if (key.match(/Enter/)) {
        document.querySelector(`[type="submit"]`).click();
      }
    });
    
    window.focus();
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
    • Love Love x 1
  3. jamer

    jamer Survey Slinger

    Messages:
    1,427
    Gender:
    Female
    Ratings:
    +1,805
    Easy enough.. about 20
     
    • Today I Learned Today I Learned x 1
  4. Anath614

    Anath614 Survey Slinger

    Messages:
    2,160
    Gender:
    Female
    Ratings:
    +1,658
    Ummm.....I just caught this but there are no directions and the only submission area is to submit a survey code?
     
  5. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    • Nom Nom Nom! Nom Nom Nom! x 13
  6. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    Title: Study on Economic Decision Making(~ 15 minutes) | PANDA
    Worker: Preview | Accept | Requester
    Requester: Andy [A2ZCTWO9JJXLQM] (Contact)
    TO 1: [Pay: 3.80] [Fast: 4.00] [Comm: 3.00] [Fair: 4.00] [Reviews: 11] [ToS: 0]
    TO 2:
    [Rate: $16.58/hr] [Pen: 2.00 days] [Res: -- of 0] [Rec: 100% of 1] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $2.50
    Duration: 60 minutes
    Available: 1
    Description: The following is a research study should last about 15 minutes. You will earn between $2.50 and $3.50 for participating.
    Requirements: Exc: [1362652912-52748] has not been granted; Location is one of: US
    HIT exported from Mturk Suite v1.25.5
     
    • Nom Nom Nom! Nom Nom Nom! x 10
  7. AMindAtTurk

    AMindAtTurk Survey Slinger TurkerView Masters

    Messages:
    26,051
    Gender:
    Female
    Ratings:
    +39,565
    crocs with socs
    [​IMG]
     
    • LOL LOL x 4
  8. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    • Nom Nom Nom! Nom Nom Nom! x 6
  9. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    Title: App Followup: only for those who took our previous study | PANDA
    Worker: Preview | Accept | Requester
    Requester: GT [A1J24AKRYQEYZ0] (Contact)
    TO 1: [Pay: 3.14] [Fast: 4.66] [Comm: 4.19] [Fair: 4.48] [Reviews: 166] [ToS: 3]
    TO 2:
    [Rate: $2.43/hr] [Pen: 1.00 days] [Res: -- of 0] [Rec: 0% of 3] [Rej: 0] [ToS: 0] [Brk: 1]
    Reward:
    $7.00
    Duration: 1 hour 53 minutes
    Available: 2
    Description: This HIT is only for people who took our previous anxiety study and have the password we sent you. You will need to enter the password to access this task and receive payment.
    Requirements: df88b84d816d3358b3793a61b73d80e93913e627 has not been granted; Total approved HITs is not less than 500; HIT approval rate (%) is not less than 96; Location is US
    HIT exported from Mturk Suite v1.25.5
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  10. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    Title: Picture Viewing Study (This HIT may contain adult content. Worker discretion is advised.) | PANDA
    Worker: Preview | Accept | Requester
    Requester: Craig Moodie [AUFA8UDO1R8SZ] (Contact)
    TO 1: [Pay: 2.33] [Fast: 0.00] [Comm: 5.00] [Fair: 0.00] [Reviews: 3] [ToS: 0]
    TO 2:
    [Rate: $2.35/hr] [Pen: -- days] [Res: 100% of 1] [Rec: 0% of 1] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $4.00
    Duration: 3 hours
    Available: 1
    Description: If you have already done this task recently, please decline the HIT. This task will ask you to rate how different emotionally evocative pictures make you feel. This task should take about 1 hour, but you will have 3 hours to complete the assignment.
    Requirements: Gender - Female is 1; Location is US; Adult Content Qualification is 1
    HIT exported from Mturk Suite v1.25.5
     
    • Nom Nom Nom! Nom Nom Nom! x 13
  11. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    Title: Smoking Study (~ 40 minutes) | PANDA
    Worker: Preview | Accept | Requester
    Requester: Gabriella [A34G2YKVFSGFZV] (Contact)
    TO 1: [Pay: 5.00] [Fast: 5.00] [Comm: 5.00] [Fair: 5.00] [Reviews: 5] [ToS: 0]
    TO 2:
    Not Available
    Reward: $2.00
    Duration: 1 hour 30 minutes
    Available: 1
    Description: (requires quick download in middle of study in order for the last task to be able to work/display) This study is seeking to learn more about a particular group of people who smoke. There are a couple questions that help us determine if you have the characteristics that we are hoping to study. If you do, answering those questions will take you to the study.
    Requirements: Exc: [1704764-52781] has not been granted; Total approved HITs is not less than 100; HIT approval rate (%) is not less than 40; Location is one of: US
    HIT exported from Mturk Suite v1.25.5
     
    • Nom Nom Nom! Nom Nom Nom! x 7
  12. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    • Nom Nom Nom! Nom Nom Nom! x 14
  13. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,622
    Gender:
    Male
    Ratings:
    +124,073
    • LOL LOL x 3
  14. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    • Nom Nom Nom! Nom Nom Nom! x 11
    • LOL LOL x 3
  15. jamer

    jamer Survey Slinger

    Messages:
    1,427
    Gender:
    Female
    Ratings:
    +1,805
    video game survey, fast and interesting
     
  16. GRR

    GRR Active Turker

    Messages:
    421
    Gender:
    Male
    Ratings:
    +287


    Very Cool! I have 7 a9 scripts (now 8) I was trying to figure out how to use the num pad for the ones on the right! Of course I have to go lay a floor now. Maybe some will be left after lunch Thanks!
     
    • Like Like x 1
  17. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,622
    Gender:
    Male
    Ratings:
    +124,073
    The thing about this script is that it is just a good catch all. You can use it with up to 12 radios compared to the normal 9 from kad's script
     
    • Like Like x 1
    • Love Love x 1
  18. Dave

    Dave Active Turker

    Messages:
    97
    Gender:
    Male
    Ratings:
    +316
    Good morning all! I'm feeling a little "anxious". LOL [​IMG]
     
    • LOL LOL x 2
    • Today I Learned Today I Learned x 1
  19. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    • Nom Nom Nom! Nom Nom Nom! x 4
  20. angel

    angel Survey Slinger

    Messages:
    15,286
    Gender:
    Female
    Ratings:
    +28,535
    Title: 30 minutes: women under 35 who wear plus sizes: show us how you shop online (screen share + phone) | PANDA
    Worker: Preview | Accept | Requester
    Requester: Anton Yakushin [A2YUHENN6UUIX5] (Contact)
    TO 1: [Pay: 3.67] [Fast: 5.00] [Comm: 0.00] [Fair: 4.00] [Reviews: 4] [ToS: 0]
    TO 2:
    Not Available
    Reward: $5.01
    Duration: 2 hours
    Available: 1
    Description: For our project, we need to understand how women under 35 shop online for plus size clothes--via phone + screen share for 30 minutes
    Requirements: Location is US
    HIT exported from Mturk Suite v1.25.5
     
    • Nom Nom Nom! Nom Nom Nom! x 2
Thread Status:
Not open for further replies.