03/30 - Thinker Thursday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Mar 30, 2017.

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

    MasterNyborg Survey Slinger

    Messages:
    1,982
    Gender:
    Male
    Ratings:
    +3,236
    I'm still drooling over ChrisTurkletons Pin script she posted earlier
     
    • Like Like x 1
  2. jdzane

    jdzane Survey Slinger

    Messages:
    9,239
    Gender:
    Female
    Ratings:
    +8,650
    she??? I thought we were at least sure he's a dude....
     
    • Today I Learned Today I Learned x 1
  3. Alina

    Alina Survey Slinger

    Messages:
    5,277
    Ratings:
    +18,501
    wtf survey question of the day:

    "I would love to be like “Mr. Spock,” who is totally logical and experiences little emotion."
     
    • Love Love x 2
    • Like Like x 1
    • 5/5 Pay 5/5 Pay x 1
  4. TurkingMaster

    TurkingMaster Survey Slinger

    Messages:
    3,337
    Gender:
    Male
    Ratings:
    +4,285
    [​IMG]
     
    • LOL LOL x 2
  5. SquigglyButt

    SquigglyButt Survey Slinger

    Messages:
    5,440
    Gender:
    Male
    Ratings:
    +5,961
    I need a scrunch face that is "SnarkMaster".
     
  6. SeDuCeR

    SeDuCeR Survey Slinger

    Messages:
    6,483
    Gender:
    Male
    Ratings:
    +11,180
    Title: A survey about health and technology for people with ASTHMA who take a DAILY INHALER MEDICATION | PANDA
    Worker: Preview | Accept | Requester
    Requester: Chris Hogg [A2O11DFF3DC0AK] (Contact)
    TO 1: [Pay: 4.40] [Fast: 5.00] [Comm: 0.00] [Fair: 5.00] [Reviews: 5] [ToS: 0]
    TO 2:
    Not Available
    Description: I am doing a project to learn how technology might help people manage their asthma. I'd love your answers to these short questions
    Time: 20 minutes
    HITs Available: 1
    Reward: $0.75
    Qualifications: Total approved HITs is not less than 1000; HIT approval rate (%) is not less than 95; Location is US;
    HIT exported from Mturk Suite v1.20.14
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  7. leafs4_cup

    leafs4_cup Ugly Mug

    Messages:
    10,421
    Gender:
    Male
    Ratings:
    +31,313
  8. MasterNyborg

    MasterNyborg Survey Slinger

    Messages:
    1,982
    Gender:
    Male
    Ratings:
    +3,236
    Self admitted basic white girl, you mean
     
    • LOL LOL x 1
  9. SquigglyButt

    SquigglyButt Survey Slinger

    Messages:
    5,440
    Gender:
    Male
    Ratings:
    +5,961
    I thought we decided yesterday or the day before that ChrisTurk was everywoman?
     
    • LOL LOL x 1
  10. ThisPoorGuy

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    @ChrisTurk has been stealing everybody's female gender qual. it all makes sense now!
     
    • LOL LOL x 5
  11. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Now we just need a $1.20 pin drop to be able to test it
     
    • Like Like x 1
  12. MasterNyborg

    MasterNyborg Survey Slinger

    Messages:
    1,982
    Gender:
    Male
    Ratings:
    +3,236
    Watch, she sneakily wrote up a script just to break the pins for everybody else. Not the worst idea actually...
     
  13. SquigglyButt

    SquigglyButt Survey Slinger

    Messages:
    5,440
    Gender:
    Male
    Ratings:
    +5,961
    [​IMG]
     
    • Love Love x 1
  14. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    That isn't something that I would expect a basic white girl to think of.
     
    • LOL LOL x 2
  15. jdzane

    jdzane Survey Slinger

    Messages:
    9,239
    Gender:
    Female
    Ratings:
    +8,650
    Not that it matters, but I changed the bar at the top to remind you can use up to 0 for 10 and thene q=11 and w=12;
    Code:
    // ==UserScript==
    // @name         Mturk Radio Keybinds
    // @namespace    https://gist.github.com/Kadauchi
    // @version      2.1.1
    // @description  Keybinds to select radios
    // @author       Kadauchi
    // @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
    • Love Love x 1
  16. ThisPoorGuy

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    You're going to be a regular coder now ;)
     
  17. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    You should prob change the @name field as well
     
  18. SquigglyButt

    SquigglyButt Survey Slinger

    Messages:
    5,440
    Gender:
    Male
    Ratings:
    +5,961
    That's the thing about basic white girls.
    They always end up being the killer in the end....
    Mrs. Voorhies,
    Debbie Salt,
    Lindsay Lohan....
     
    • LOL LOL x 1
  19. jdzane

    jdzane Survey Slinger

    Messages:
    9,239
    Gender:
    Female
    Ratings:
    +8,650
    like so?
    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
    • LOL LOL x 1
    • 5/5 Pay 5/5 Pay x 1
  20. keysman

    keysman Well-Known Turker

    Messages:
    2,973
    Gender:
    Male
    Ratings:
    +11,718
    Title: Answer a survey about your sleeping habits, emotions, and aggression | PANDA
    Requester: Scott Pickett [A2R45PS4PJYN0K] (TO)
    TO Ratings:
    ★★★★★ 5.00 Communicativity
    ★★★★★ 2.10 Generosity
    ★★★★★ 5.00 Fairness
    ★★★★★ 5.00 Promptness
    Number of Reviews: 32 | TOS Flags: 0
    Submit a new TO review
    Description: Answer general and personal questions about your emotions, life experiences, health behaviors, sexual activities, and illegal behaviors. It should take approximately 20 minutes to complete within two hours, but you may take a break at anytime.
    Time: 60 minutes
    HITs Available: 1
    Reward: $1.50
    Qualifications: Total approved HITs is not less than 500;HIT approval rate (%) is not less than 95;Location is US
     
    • Nom Nom Nom! Nom Nom Nom! x 4
Thread Status:
Not open for further replies.