09/27 - Whatever Will Work Wednesday!

Discussion in 'Daily mTurk HITs Threads' started by Melting Glacier, Sep 27, 2017.

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

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    My pandas are sleeping right now and I don't wanna wake them

    [​IMG]
     
    • LOL LOL x 1
  2. Melting Glacier

    Melting Glacier PE: $30.01 - That's over $1.25/hour! ┬┴┤( ͡° ͜ʖ├┬┴

    Joined:
    Nov 15, 2016
    Messages:
    6,157
    Gender:
    Male
    Ratings:
    +11,423
    If you want to use the panda+accept next method (my preference, whenever possible), you'll need this script to deal with the throttling:
    https://greasyfork.org/en/scripts/18547-no-hit-reloader
    If you check the "reload this HIT" box after getting the no HIT message, it will refresh the page until a HIT is found. Do a side-by-side window setup and it should work pretty well.

    The other option is to run the panda on one or both sites and work from queue.
     
    • Today I Learned Today I Learned x 1
  3. Cosmo

    Cosmo Survey Slinger

    Joined:
    Jul 11, 2017
    Messages:
    2,940
    Gender:
    Male
    Ratings:
    +4,140
    Yanno what? I already had that script, too. I just had to check the box.

    I've been doing too many surveys lately... LOL

    Thanks for your help!
     
    • Like Like x 2
  4. Melting Glacier

    Melting Glacier PE: $30.01 - That's over $1.25/hour! ┬┴┤( ͡° ͜ʖ├┬┴

    Joined:
    Nov 15, 2016
    Messages:
    6,157
    Gender:
    Male
    Ratings:
    +11,423
    Oh snap :emoji_joy_cat:

    Not a problem, happy to help! :emoji_smile_cat:
     
  5. Cosmo

    Cosmo Survey Slinger

    Joined:
    Jul 11, 2017
    Messages:
    2,940
    Gender:
    Male
    Ratings:
    +4,140
    Charlotte Freeman [A1MP30CFQDV5HE] Answer a short survey about your boss and your job - $1.00


    Good

    Unrated

    Good
    $21.43 / hour
    00:02:48 / completion time
    Pros: It's a relatively quick survey that rates your supervisor/boss and your own work beliefs.
    No tricky questions or major curve balls to watch out for.
    Cons: It's a survey.
    To read Charlotte Freeman's full profile check out TurkerView!
     
    • Good Review! Good Review! x 1
  6. Ness

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    Title: Study: Judgments and Interactions(~ 25 minutes) | PANDA
    Worker: Preview | Accept | Requester
    Requester: SAMlab [A38D5928ZYYN9J] (Contact)
    TO 1: [Pay: 3.06] [Fast: 4.70] [Comm: 4.00] [Fair: 4.90] [Reviews: 56] [ToS: 0]
    TO 2:
    [Rate: $14.79/hr] [Pen: -- days] [Res: -- of 0] [Rec: -- of 0] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $1.50
    Duration: 60 minutes
    Available: 1
    Description: Not Available
    Requirements: Total approved HITs is not less than 100; HIT approval rate (%) is not less than 85; Exc: [1189321-57976] has not been granted ; Location is one of: US
    HIT exported from Mturk Suite v1.25.7
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  7. Mothra

    Mothra Survey Slinger

    Joined:
    May 30, 2017
    Messages:
    6,468
    Ratings:
    +11,952
    I forgot all about these, but these are the best, like 3 minutes each.
     
  8. Ness

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    Title: Narratives Versus Experienced Sampling (NaVES) Trials(~ 20 minutes) | PANDA
    Worker: Preview | Accept | Requester
    Requester: Attitude and Decision Making Lab [A31LIQ6MKRX6E1] (Contact)
    TO 1: [Pay: 2.80] [Fast: 4.39] [Comm: 2.80] [Fair: 4.65] [Reviews: 47] [ToS: 0]
    TO 2:
    [Rate: $5.13/hr] [Pen: 1.00 days] [Res: -- of 0] [Rec: 0% of 2] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $1.15
    Duration: 1 hour 30 minutes
    Available: 1
    Description: Not Available
    Requirements: HIT approval rate (%) is not less than 90; Exc: [55537575-58673] has not been granted ; Location is one of: US
    HIT exported from Mturk Suite v1.25.7
    ages 40-70; has screener
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  9. slothbear

    slothbear Survey Slinger

    Joined:
    Nov 15, 2016
    Messages:
    10,822
    Gender:
    Male
    Ratings:
    +22,072
    @ChrisTurk

    Here's my quick fix...there's probably a better way:

    Code:
    function isStatus() {
        //waitForKeyElements ( 'td.statusdetailRequesterFeedbackColumnValue:last:contains(Hourly)', addButton);
        setTimeout(function(){addButton();}, 1000);
    
        function addButton(){
            console.log('Starting addButton()...');
            $('tr.odd, tr.even').each(function(){
                //hijacked from mturk dashboard ty based kadauchi
                var hourlyTd = $(this).find('td.statusdetailRequesterFeedbackColumnValue').text().trim();
                if (hourlyTd.length > 0) {
                    var req = $(this).find("td.statusdetailRequesterColumnValue").text().trim();
                    var title = $(this).find("td.statusdetailTitleColumnValue").text().trim();
                    var reward = $(this).find("td.statusdetailAmountColumnValue").text().replace(/\$/, '').trim();
                    var status = $(this).find("td.statusdetailStatusColumnValue").text().trim();
                    var rid = $(this).find("a").prop("href").split("requesterId=")[1].split("&")[0];
                    var hitid = $(this).find("a").prop("href").split("HIT+")[1];
                    var min = $(this).find('td.statusdetailRequesterFeedbackColumnValue').text().match(/Time:.*H/)[0].split(':')[1].trim();
                    var sec = $(this).find('td.statusdetailRequesterFeedbackColumnValue').text().match(/Time:.*H/)[0].split(':')[2].replace(/H/, '');
                    console.log(req, title, reward, status, rid, hitid);
    
                    $(this).find('.statusdetailRequesterFeedbackColumnValue').append(`<button class="btn-tv" style="background-color: #2c3e50; border-color: #2c3e50; color: #fff; cursor: pointer; border: 1px solid transparent; border-radius: 4px; float: right;"
    data-req="`+req+`" data-rid="`+rid+`" data-title="`+title+`" data-reward="`+reward+`"
    data-min="`+min+`" data-sec="`+sec+`">Add&nbsp;Review</button>`);
                }
            });
    waitForKeyElements(...) wasn't firing if the last entry had no hourly stats...so setTimeout instead to give the stats time to load. Probably a way to make it more instantaneous with waitForKeyElements, but I like raw doggin it.

    define var=hourlyTd and wrap the whole shebang in an if checking whether or not there's any text where the time should be.


    edit:(forgot about the button explosion) looks like there was an error with split() or replace() when the hourly data was null


    2nd edit: Instead of using waitForKeyElements or setTimeout, could wrap if statements at the beginning of script in $(function(){.......}. That was better for me than setTimeout.



    Side note: Are other people getting info filled in from the worker site by the hourly script? I tried enabling the worker portion of the hourly script, but it just hangs my computer.
     
    Last edited: Sep 28, 2017
  10. Ness

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    Title: Short Psychology Experiment | PANDA
    Requester: Social Cognitive Science Research Center [AGNA99S29MTHA] (TO)
    TO Ratings:
    ★★★★ 4.17 Communicativity
    ★★★★ 4.15 Generosity
    ★★★★★ 5.00 Fairness
    ★★★★ 4.94 Promptness
    Number of Reviews: 94 | TOS Flags: 0
    Submit a new TO review
    Description: 10 minutes psychology experiment from Brown University
    Time: 4 hours
    HITs Available: 1
    Reward: $1.00
    Qualifications: HIT approval rate (%) is not less than 85;Location is US
     
    • Nom Nom Nom! Nom Nom Nom! x 2
  11. Ness

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    • Nom Nom Nom! Nom Nom Nom! x 3
  12. Cosmo

    Cosmo Survey Slinger

    Joined:
    Jul 11, 2017
    Messages:
    2,940
    Gender:
    Male
    Ratings:
    +4,140
    Works for me.

    upload_2017-9-28_2-1-12.png
     
    • Like Like x 1
  13. Cosmo

    Cosmo Survey Slinger

    Joined:
    Jul 11, 2017
    Messages:
    2,940
    Gender:
    Male
    Ratings:
    +4,140
    Past my daily goal. Imma go bed now.

    [​IMG]

    [​IMG]
     
    • 5/5 Pay 5/5 Pay x 1
  14. Ten

    Ten Survey Slinger

    Joined:
    Nov 28, 2016
    Messages:
    5,518
    Gender:
    Male
    Ratings:
    +8,149
    Man, oh man! I had no internet for like ten days. I was going a little crazy.
     
  15. Ness

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    Title: Psychology survey about life experiences | PANDA
    Requester: Alannah Shelby Rivers [A1EU2I94S2PMZJ] (TO)
    TO Ratings:
    ★★★★ 1.00 Communicativity
    ★★★★★ 3.33 Generosity
    ★★★★★ 5.00 Fairness
    ★★★★★ 5.00 Promptness
    Number of Reviews: 3 | TOS Flags: 0
    Submit a new TO review
    Description: Requires pre-screen to qualify. The pre-screen should take less than a minute. If you qualify, the estimated survey time is 25 minutes.
    Time: 3 hours
    HITs Available: 1
    Reward: $2.00
    Qualifications: HIT approval rate (%) is greater than 95;Location is US
     
    • Nom Nom Nom! Nom Nom Nom! x 1
  16. Ness

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    Hey! I was wondering where you went
     
  17. Ten

    Ten Survey Slinger

    Joined:
    Nov 28, 2016
    Messages:
    5,518
    Gender:
    Male
    Ratings:
    +8,149
    I had like three games, and a hundred or so gigs of stuff to watch.
     
    • Love Love x 1
  18. Ten

    Ten Survey Slinger

    Joined:
    Nov 28, 2016
    Messages:
    5,518
    Gender:
    Male
    Ratings:
    +8,149
    Title: Investigating Semantic Representations(~ 17 minutes) | PANDA
    Worker: Preview | Accept | Requester
    Requester: Dermot Lynott [A325L0H6Q5L71I] (Contact)
    TO 1: [Pay: 4.67] [Fast: 4.68] [Comm: 3.86] [Fair: 4.75] [Reviews: 26] [ToS: 0]
    TO 2:
    [Rate: $16.12/hr] [Pen: -- days] [Res: -- of 0] [Rec: 100% of 1] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $2.25
    Duration: 1 hour 20 minutes
    Available: 1
    Description: A multiple choice survey about common words
    Requirements: Total approved HITs GreaterThanOrEqualTo 100; Exc: [59219-58630] DoesNotExist ; HIT approval rate (%) GreaterThanOrEqualTo 97; Adult Content Qualification EqualTo 1; Location In US;
    HIT exported from Mturk Suite v1.25.7
     
  19. Ness

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    Title: How entrepreneurs think(~ 13 minutes) | PANDA
    Requester: SurveyComet [A3NC2P2SPK9QQ] (TO)
    TO Ratings:
    ★★★★ 4.33 Communicativity
    ★★★★ 4.25 Generosity
    ★★★★ 4.85 Fairness
    ★★★★ 4.73 Promptness
    Number of Reviews: 452 | TOS Flags: 1
    Submit a new TO review
    Description: This study aims to understand the role of cognitive (thought) processes in how entrepreneurs perceive risk. As cognitive processes are more malleable than stable traits, this will have important implications for the design of entrepreneurial education and training programs, development of decision making support tools that overcome potential biases in thinking that may impact risk perception. This research will further support effective risk management in start-ups and corporate organisations alike. You must be over 18 and identify as an entrepreneur to participate (i.e. have started a business). To participate you will complete a thirteen minute online survey consisting of a series of tasks and scenarios designed to evaluate how you think and perceive risk in business situations. These tasks include estimating probabilities, evaluating a business scenario and rating your confidence in performing in particular contexts.
    Time: 45 minutes
    HITs Available: 1
    Reward: $1.30
    Qualifications: Total approved HITs is not less than 100;Total approved HITs is not greater than 100000;Exc: [53042-52453] has not been granted;HIT approval rate (%) is not less than 80;Location is one of: US
     
  20. Ness

    Ness Survey Slinger

    Joined:
    Dec 14, 2016
    Messages:
    4,189
    Gender:
    Male
    Ratings:
    +9,222
    • Nom Nom Nom! Nom Nom Nom! x 1
Thread Status:
Not open for further replies.