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. TurkedOut

    TurkedOut Survey Slinger

    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    [​IMG]
     
    • Love Love x 1
  2. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    $1K
     
    • Today I Learned Today I Learned x 1
  3. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    Can't tell if joking or srs.
     
  4. MNHammer

    MNHammer Survey Slinger

    Messages:
    3,965
    Gender:
    Male
    Ratings:
    +23,836
    • Nom Nom Nom! Nom Nom Nom! x 19
  5. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,220
    No, fully serious. Hold up lemme see if I can find it you'll see.
     
  6. thlinks

    thlinks Well-Known Turker

    Messages:
    1,206
    Ratings:
    +814
    Whats your guys thoughts and opinions on MTURK crowd?
     
  7. purplepoppi

    purplepoppi Survey Slinger

    Messages:
    2,406
    Gender:
    Female
    Ratings:
    +3,591
    All these internal rekogs are making me hopeful.
     
  8. Tripsa

    Tripsa Gobbling Ghost Mod

    Messages:
    11,991
    Gender:
    Male
    Ratings:
    +30,925
    [​IMG]
     
    • LOL LOL x 6
    • Love Love x 1
  9. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    We do not talk about others, we mind our own business.
     
    • Love Love x 3
    • Like Like x 1
  10. purplepoppi

    purplepoppi Survey Slinger

    Messages:
    2,406
    Gender:
    Female
    Ratings:
    +3,591
    Exactly. We only talk smack about ourselves.
     
    • LOL LOL x 2
    • Like Like x 1
  11. jaxom

    jaxom Active Turker

    Messages:
    678
    Gender:
    Male
    Ratings:
    +671
  12. RobertDevious

    RobertDevious Survey Slinger

    Messages:
    4,000
    Gender:
    Male
    Ratings:
    +5,859
    When I click "Submit Script" on TurkerView nothing happens using Chrome. Also, can we only submit scripts that we wrote ourselves?
     
  13. TurkedOut

    TurkedOut Survey Slinger

    Messages:
    8,241
    Gender:
    Male
    Ratings:
    +14,450
    [​IMG]
     
    • LOL LOL x 1
  14. Tripsa

    Tripsa Gobbling Ghost Mod

    Messages:
    11,991
    Gender:
    Male
    Ratings:
    +30,925
  15. thlinks

    thlinks Well-Known Turker

    Messages:
    1,206
    Ratings:
    +814
    Wow a true secret society... SHHHHH They may be in right now.......
     
  16. knottypiper

    knottypiper Survey Slinger

    Messages:
    5,776
    Gender:
    Female
    Ratings:
    +12,728
    [​IMG]
     
    • LOL LOL x 2
    • Love Love x 1
  17. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
  18. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    I did not say we CANNOT nor it is forbidden, I meant, just, we do not want to talk about others.
     
  19. slothbear

    slothbear Survey Slinger

    Messages:
    10,822
    Gender:
    Male
    Ratings:
    +22,072
    I take "living among" as being in the same environment and having to fight over the same group of resources.
     
  20. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    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:
        }
    
    }
     
Thread Status:
Not open for further replies.