08/03 - Thorny Thursday!

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

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

    GooseMcD Well-Known Turker

    Messages:
    1,694
    Gender:
    Female
    Ratings:
    +4,286
    Title: Take a 1-question survey (US-based, Female) | PANDA
    Requester: PickFu [AI2HRFAYYSAW7] (TO)
    TO Ratings:
    ★★★★ 4.18 Communicativity
    ★★★★ 4.22 Generosity
    ★★★★ 4.72 Fairness
    ★★★★ 4.79 Promptness
    Number of Reviews: 286 | TOS Flags: 1
    Submit a new TO review
    Description: Pick the choice that best answers the question. Limited to previous PickFu responders meeting the target demographics.
    Time: 5 minutes
    HITs Available: 1
    Reward: $0.06
    Qualifications: PickFu NDA is 1;Gender is one of: 2;Location is US
     
    • Nom Nom Nom! Nom Nom Nom! x 3
  2. leafs4_cup

    leafs4_cup Ugly Mug

    Messages:
    10,421
    Gender:
    Male
    Ratings:
    +31,313
    Casino or Goodfellas?

    You guys don't know shit.

    If you can't see why De Niro should have won an Oscar for Little Fockers, no one can help you.

    You know, I know I have said this on 4 different forums today, but I love you guys.

    Do you guys even lift?

    Never mind, I'm going to watch Analyze That.

    Peace, Grinches.
     
    • LOL LOL x 4
  3. WildFlower

    WildFlower Survey Slinger FF Champion II

    Messages:
    4,305
    Gender:
    Female
    Ratings:
    +5,004
    Title: Decide if a Video is about a Topic | PANDA
    Requester: Sergey Schmidt [A4IJUXTMQNS4J] (Contact)
    TO: [Comm: 3.00] [Pay: 3.11] [Fair: 4.96] [Fast: 4.96] [Reviews: 30] [ToS: 0]
    Description: Given a video and a topic, decide how well the topic is fitting for the video, using a fixed scale.
    Time: 5 minutes
    HITs Available: 108
    Reward: $0.10
    Qualifications: Location is US; wiktor-centrality has been granted;
    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
    If you have the qual
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  4. GreenMachine842

    GreenMachine842 Moderator (⌐■_■)

    Messages:
    6,715
    Gender:
    Male
    Ratings:
    +13,816
    • LOL LOL x 6
    • Like Like x 1
    • Love Love x 1
  5. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    Why are you asking for a ticket next to the cab driver?
     
  6. furiousloverv2

    furiousloverv2 Survey Slinger

    Messages:
    2,402
    Gender:
    Male
    Ratings:
    +3,851
    Me too thanks
     
  7. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    btw this script is prob better for the a9s than most of the stuff that I have seen.

    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
  8. leafs4_cup

    leafs4_cup Ugly Mug

    Messages:
    10,421
    Gender:
    Male
    Ratings:
    +31,313
    Are you talking to me?


    Are you talking to me??
     
    • LOL LOL x 2
  9. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Thanks again for the script @jdzane
     
    • Love Love x 1
  10. GoldGuardian

    GoldGuardian Black Order

    Messages:
    8,005
    Gender:
    Male
    Ratings:
    +16,743
    1.12s
     
    • Today I Learned Today I Learned x 1
  11. WildFlower

    WildFlower Survey Slinger FF Champion II

    Messages:
    4,305
    Gender:
    Female
    Ratings:
    +5,004
    Title: Rate the skill of a surgeon shown on a video clip | PANDA
    Requester: C-SATS, Inc [A15ZSKX8TUCGEU] (Contact)
    TO: [Comm: 4.00] [Pay: 3.13] [Fair: 4.19] [Fast: 4.62] [Reviews: 87] [ToS: 0]
    Description: This is a research study where you watch a video clip of a surgical procedure (no patient or surgeon identification is shown) and rate the skill level of the surgeon. (undefined)
    Time: 45 minutes
    HITs Available: 4
    Reward: $1.02
    Qualifications: Total approved HITs is not less than 100; C-SATS Block has not been granted; HIT approval rate (%) is not less than 95;
    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
     
    • Nom Nom Nom! Nom Nom Nom! x 4
  12. Eisenpower

    Eisenpower Survey Slinger

    Messages:
    4,873
    Gender:
    Male
    Ratings:
    +11,914
    I thought I quit turking for the day, but 1.12s are jumping down my throat.
     
  13. WildFlower

    WildFlower Survey Slinger FF Champion II

    Messages:
    4,305
    Gender:
    Female
    Ratings:
    +5,004
    Title: Rate the skill of a surgeon shown on a video clip | PANDA
    Requester: C-SATS, Inc [A15ZSKX8TUCGEU] (Contact)
    TO: [Comm: 4.00] [Pay: 3.13] [Fair: 4.19] [Fast: 4.62] [Reviews: 87] [ToS: 0]
    Description: This is a research study where you watch a video clip of a surgical procedure (no patient or surgeon identification is shown) and rate the skill level of the surgeon. (undefined)
    Time: 45 minutes
    HITs Available: 4
    Reward: $0.62
    Qualifications: Total approved HITs is not less than 100; C-SATS Block has not been granted; HIT approval rate (%) is not less than 95;
    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
     
    • Nom Nom Nom! Nom Nom Nom! x 3
  14. WildFlower

    WildFlower Survey Slinger FF Champion II

    Messages:
    4,305
    Gender:
    Female
    Ratings:
    +5,004
    Title: Rate the skill of a surgeon shown on a video clip | PANDA
    Requester: C-SATS, Inc [A15ZSKX8TUCGEU] (Contact)
    TO: [Comm: 4.00] [Pay: 3.13] [Fair: 4.19] [Fast: 4.62] [Reviews: 87] [ToS: 0]
    Description: This is a research study where you watch a video clip of a surgical procedure (no patient or surgeon identification is shown) and rate the skill level of the surgeon. (undefined)
    Time: 45 minutes
    HITs Available: 4
    Reward: $0.97
    Qualifications: Total approved HITs is not less than 100; C-SATS Block has not been granted; HIT approval rate (%) is not less than 95;
    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
     
    • Nom Nom Nom! Nom Nom Nom! x 4
  15. WildFlower

    WildFlower Survey Slinger FF Champion II

    Messages:
    4,305
    Gender:
    Female
    Ratings:
    +5,004
    Title: Rate the skill of a surgeon shown on a video clip | PANDA
    Requester: C-SATS, Inc [A15ZSKX8TUCGEU] (Contact)
    TO: [Comm: 4.00] [Pay: 3.13] [Fair: 4.19] [Fast: 4.62] [Reviews: 87] [ToS: 0]
    Description: This is a research study where you watch a video clip of a surgical procedure (no patient or surgeon identification is shown) and rate the skill level of the surgeon. (undefined)
    Time: 45 minutes
    HITs Available: 4
    Reward: $0.87
    Qualifications: Total approved HITs is not less than 100; C-SATS Block has not been granted; HIT approval rate (%) is not less than 95;
    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
     
    • Nom Nom Nom! Nom Nom Nom! x 4
  16. WildFlower

    WildFlower Survey Slinger FF Champion II

    Messages:
    4,305
    Gender:
    Female
    Ratings:
    +5,004
    Title: Rate the skill of a surgeon shown on a video clip | PANDA
    Requester: C-SATS, Inc [A15ZSKX8TUCGEU] (Contact)
    TO: [Comm: 4.00] [Pay: 3.13] [Fair: 4.19] [Fast: 4.62] [Reviews: 87] [ToS: 0]
    Description: This is a research study where you watch a video clip of a surgical procedure (no patient or surgeon identification is shown) and rate the skill level of the surgeon. (undefined)
    Time: 45 minutes
    HITs Available: 4
    Reward: $0.65
    Qualifications: Total approved HITs is not less than 100; C-SATS Block has not been granted; HIT approval rate (%) is not less than 95;
    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
     
    • Nom Nom Nom! Nom Nom Nom! x 3
  17. WildFlower

    WildFlower Survey Slinger FF Champion II

    Messages:
    4,305
    Gender:
    Female
    Ratings:
    +5,004
    Title: Rate the skill of a surgeon shown on a video clip | PANDA
    Requester: C-SATS, Inc [A15ZSKX8TUCGEU] (Contact)
    TO: [Comm: 4.00] [Pay: 3.13] [Fair: 4.19] [Fast: 4.62] [Reviews: 87] [ToS: 0]
    Description: This is a research study where you watch a video clip of a surgical procedure (no patient or surgeon identification is shown) and rate the skill level of the surgeon. (undefined)
    Time: 45 minutes
    HITs Available: 4
    Reward: $0.38
    Qualifications: Total approved HITs is not less than 100; C-SATS Block has not been granted; HIT approval rate (%) is not less than 95;
    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
     
    • Nom Nom Nom! Nom Nom Nom! x 3
  18. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
  19. furiousloverv2

    furiousloverv2 Survey Slinger

    Messages:
    2,402
    Gender:
    Male
    Ratings:
    +3,851
    Four 1.13's lets see how many give me that error message
     
  20. Cambyreel

    Cambyreel Active Turker

    Messages:
    340
    Gender:
    Male
    Ratings:
    +563
    Thanks for this, both sites side by side makes shoes a ton faster.
     
    • Love Love x 1
Thread Status:
Not open for further replies.