11/30 - Threshold Thursday!

Discussion in 'Daily mTurk HITs Threads' started by Melting Glacier, Nov 30, 2017.

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

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,220
    Also while I do joke about the jQuery thing a lot, I don't disagree with you on the more abstract level of "being a good coder means you should leanr to evolve past it / don't start with it to begin with" I just like the tainted nuance of "scripting for mTurk only". Also I just like giving you shit :emoji_joy:

    Ask @THFYM its about the nicest compliment I can pay a person to not get VanillaChrisTurk :emoji_wink: :dunno:

    Here:
    Code:
    // ==UserScript==
    // @name M - Survey Tool
    // @version 1.0
    // @namespace https://turkerhub.com
    // @description This will seek out and destroy surveys that have the stupid URL parameter mistake and fix it so you can click the link w/o fiddling with the address all the time. It'll also prevent "oopsie" submissions on the default survey template.
    // @author ChrisTurk
    // @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
    // @grant GM_log
    // @require https://code.jquery.com/jquery-3.2.1.min.js
    // ==/UserScript==
    if ($( 'body:contains(CLICK HERE TO TAKE THE SURVEY!)' ).length) { _fixURL(); }
    verifySurveys();
    function _fixURL() {
    console.log('this survey link may be broken, lets give it a gander and buy it a goose');
    $('a[href*="qualtrics"]').each(function(){ // not necessary to do this.. but why not
    var url = $(this).attr('href');
    if (!/\?/.test(url)) {
    console.log('url parameter is wrong, lets fix it');
    var newUrl = url.replace(/&/, '?'); //we can be lazy and do it this way because regex will only find and replace the first match. if you added a g after the /&/ it'd replace them all - don't do that here.
    $(this).attr('href', newUrl);
    console.log($(this).attr('href'));
    } else {
    console.log('url is fine');
    }
    });
    }
    function verifySurveys() {
    // lets poke around and see if this HIT is likely to be a survey, and if so prevent autosubmission & nasty mistakes that may cost us a rejection
    if ($('#surveycode').length !== 0) {
    console.log('boy howdy we got ourselves a regular ol fashioned mTurk survey right chere boyyy lets prevent ourselves from autosubmitting this varmint');
    $('#surveycode').attr('required', true); // gee that was easy.. wonder why mTurk never thought of this incredibly complex and genius solution :rolleyes:
    }
    }
    When I put a comment that says "not necessary" I think that says all that needs saying.
     
    • LOL LOL x 2
    • Love Love x 1
  2. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    Freaking love when my reasoning project is the true crime type


    [​IMG]
     
    • Like Like x 3
    • LOL LOL x 1
  3. thlinks

    thlinks Well-Known Turker

    Messages:
    1,206
    Ratings:
    +814
    Who said anything about others?
     
  4. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    • LOL LOL x 1
  5. Foxxie

    Foxxie Turker

    Messages:
    62
    Gender:
    Female
    Ratings:
    +361
    Title: short survey | PANDA
    Requester: AA [A2VG366WKT4CYB] (TO)
    TO Ratings:
    [​IMG]
    ☢☢☢☢☢ 5.00 Communicativity
    ☢☢☢☢☢ 3.26 Generosity
    ☢☢☢☢☢ 5.00 Fairness
    ☢☢☢☢☢ 5.00 Promptness
    Number of Reviews: 35
    (Submit a new TO rating for this requester)

    Description: Survey about your opinion
    Time: 5 minutes
    Hits Available: 1
    Reward: $0.25
    Qualifications: Location is US
    Quick
     
    • Nom Nom Nom! Nom Nom Nom! x 11
  6. NBadger

    NBadger Mod of Cat Gifs

    Messages:
    14,385
    Gender:
    Female
    Ratings:
    +40,289
    This seems like a lot of excess energy :emoji_thinking: Either toss the steak into PC to let it simmer or go back to the bar for something else :p
    They live and work on the website www.mturkcrowd.com
     
    • LOL LOL x 3
    • Love Love x 2
  7. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    This will not be tolerated. I spent way to many seconds trying to get there :)
     
    • LOL LOL x 1
  8. Adam

    Adam Well-Known Turker

    Messages:
    1,645
    Gender:
    Male
    Ratings:
    +4,155
    So many surveys today. My head is starting to hurt. On the bright side though, I've already hit my $40 daily goal and it's only 11am.
     
    • 5/5 Pay 5/5 Pay x 1
  9. Rsch45

    Rsch45 Active Turker

    Messages:
    141
    Gender:
    Male
    Ratings:
    +110
    [​IMG]
     
    • LOL LOL x 4
  10. WimpLo

    WimpLo Survey Slingin' Batch Masta Former MTG MotM

    Messages:
    35,115
    Gender:
    Female
    Ratings:
    +74,969
    Greetings from Amazon Mechanical Turk,

    You've received a bonus from Takehisa Kajiwara for work related to 359AP8GAGG61Y8C6H7RAMN0FFTVC7H.
    The value of your bonus is: $4.40 USD

    The Requester included this note:
    No comment provided by Requester.


    I had to look it up, because I didn't remember it. It was a 40 cent hit titled "Might earn additional reward ($0-$8)" from 11-20 :)
     
    • 5/5 Pay 5/5 Pay x 2
  11. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,220
    Are you logged in? Does it show any errors in the console if you press F12 (Chrome)

    Yes please. Otherwise if it updates from the original author it wont propagate to TurkerView and people will be running outdated versions of scripts, which will be a headache for the original author when they start tagging them asking whats broken. Plus, respekt and all that. Probably 800 other good reasons not to upload other folk's work but those are the two biggies that came to mind to me :p
     
    • Like Like x 1
  12. Foxxie

    Foxxie Turker

    Messages:
    62
    Gender:
    Female
    Ratings:
    +361
    • Nom Nom Nom! Nom Nom Nom! x 9
  13. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    There's more commentary than code. :emoji_joy:
     
    • LOL LOL x 2
  14. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    Reasoning_project [A23S5T4GMWJK5Z] Reasoning Study ($20 / 2 hrs) (Study L) - $20.00 | PANDA


    Generous

    Unrated

    Unrated
    $30.00 / hour
    00:40:00 / completion time
    Pros: i write so much because i genuinely enjoy doing these
    Cons: i write so much because i genuinely enjoy doing these
    To read Reasoning_project's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 3
    • Good Review! Good Review! x 2
  15. splishsplash

    splishsplash Well-Known Turker

    Messages:
    2,190
    Gender:
    Male
    Ratings:
    +2,136
    [​IMG]
     
  16. MNHammer

    MNHammer Survey Slinger

    Messages:
    3,965
    Gender:
    Male
    Ratings:
    +23,836
    Title: Make predictions about political events. $24 + two follow up HITs $16 each.(~ 180 minutes) | PANDA
    Worker: Preview | Accept | Requester
    Requester: SurveyComet [A3NC2P2SPK9QQ] (Contact)
    TO 1: [Pay: 4.26] [Fast: 4.74] [Comm: 4.33] [Fair: 4.85] [Reviews: 459] [ToS: 1]
    TO 2:
    [Rate: $22.18/hr] [Pen: 0.04 days] [Res: -- of 0] [Rec: 100% of 4] [Rej: 0] [ToS: 0] [Brk: 0]
    Description:
    In this 3-hour HIT you will be asked to engage in online research and analysis and make probability forecasts in response to questions about current world events. For example: “Will Country X experience a civil war this year?” “What will be the value of Stock Market Index Y?” “How many cases of Disease Z will be reported this month?” In addition to doing these analytic activities, you’ll be asked to complete some questionnaires relating to your background and then concerning your experiences on the site.
    Time: 12 hours
    HITs Available: 3
    Reward: $24.00
    Qualifications: Exc: [66093-65504] DoesNotExist ; 9e83b35e Exists ; Location In US;
     
    • Nom Nom Nom! Nom Nom Nom! x 30
  17. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    He didnt handle failure and shunning very well
     
  18. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,220
    I wanted to provide the opportunity for people to read it and understand wtf was going on / why so they'd stop saying "just delete MID!"

    ..plus writing funny comments amuses me. I don't get paid for this shirt lemme have some fun :flail:
     
    • LOL LOL x 2
  19. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,220
    Matthew McQuaid [A2N9IS2ZNKF6OW] Survey on Perception of News Excerpt - $0.20 | PANDA


    Generous

    Unrated

    Unrated
    $28.80 / hour
    00:00:25 / completion time
    Pros:
    Cons:
    To read Matthew McQuaid's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 4
  20. NBadger

    NBadger Mod of Cat Gifs

    Messages:
    14,385
    Gender:
    Female
    Ratings:
    +40,289
    Hyemin Han [A1TATRD3D55P85] 60-minute survey of reactions to very short stories(~ 60 minutes) - $7.25 | PANDA


    Generous

    Unrated

    Unrated
    $13.34 / hour
    00:32:36 / completion time
    Pros: - All reading, so time is *very* dependent on your reading speed/attention span. Could easily be 25-50min.
    - Accurate progress bar
    - Long timer so easy to pick at if preferred
    Cons:
    To read Hyemin Han's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 11
    • Good Review! Good Review! x 1
Thread Status:
Not open for further replies.