09/09 - Swimming Saturday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Sep 9, 2017.

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

    claramyne Turker

    Messages:
    32
    Gender:
    Female
    Ratings:
    +34
  2. EssArrBee

    EssArrBee Survey Slinger

    Messages:
    14,946
    Gender:
    Male
    Ratings:
    +20,007
    It has a one question screener, but it says in the title they are looking for current/future investors, so it's pretty easy to tell if you qualify.
     
  3. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    :nono:
    They said to focus on the study, and not to do anything else while on it.
     
  4. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    Freshness: [​IMG]
     
    • 5/5 Pay 5/5 Pay x 1
  5. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    [​IMG]
     
    • LOL LOL x 2
  6. RicanGuy86

    RicanGuy86 Survey Slinger

    Messages:
    4,452
    Ratings:
    +9,138
    Is it Saturday, or a Tuesday?

    :tinfoil:
     
  7. EssArrBee

    EssArrBee Survey Slinger

    Messages:
    14,946
    Gender:
    Male
    Ratings:
    +20,007
    I stopped for the time I was talking to someone else, so I wasn't doing two things at once.
     
  8. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    If it is the survey link you might need to turn the & to an ? or something.. give us the link and we can look at it.

    That reminds me though that @ChrisTurk's old script attempts to fix this and attempts to prevent submitting blank surveys.

    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:
        }
    
    }
     
  9. turks24

    turks24 Survey Slinger

    Messages:
    6,720
    Gender:
    Male
    Ratings:
    +13,777
    @Randomacts my team just did 10 perfect rounds and missed 1 answer on the 11th.

    Send that :emoji_dollar: nilo
     
    • LOL LOL x 1
  10. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    The TO script? or something else?
    The TO script interferes with MTS, so you shouldn't run both.
     
    • Like Like x 1
  11. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    I am just saying what they said, that is it. No harm intended.
     
  12. paulaam

    paulaam Active Turker

    Messages:
    516
    Gender:
    Female
    Ratings:
    +271
    i believe that's it.
     
  13. claramyne

    claramyne Turker

    Messages:
    32
    Gender:
    Female
    Ratings:
    +34
  14. claramyne

    claramyne Turker

    Messages:
    32
    Gender:
    Female
    Ratings:
    +34
    It's a pretty long link
     
  15. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
  16. claramyne

    claramyne Turker

    Messages:
    32
    Gender:
    Female
    Ratings:
    +34
    Should I return the hit do you think?
     
  17. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    If the hit timer is long enough you can try emailing the requester and waiting.
     
    • Today I Learned Today I Learned x 1
  18. claramyne

    claramyne Turker

    Messages:
    32
    Gender:
    Female
    Ratings:
    +34
    Thanks :) the investing hit was cool btw
     
  19. SeDuCeR

    SeDuCeR Survey Slinger

    Messages:
    6,483
    Gender:
    Male
    Ratings:
    +11,180
    nipples, don't confuse them with nlp





    )p
     
    • 5/5 Pay 5/5 Pay x 1
  20. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    [​IMG]

    [​IMG]
     
    • LOL LOL x 1
Thread Status:
Not open for further replies.