09/21 - TurkerView.com Thursday!

Discussion in 'Daily mTurk HITs Threads' started by ChrisTurk, Sep 21, 2017.

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

    Turkinstien Survey Slinger

    Messages:
    1,941
    Gender:
    Male
    Ratings:
    +3,179
    Greetings from Amazon Mechanical Turk,
    You've received a bonus from McDermott Experiments for work related to 3B286OTISEP5VFY0JICV2YKAUFBAJA.
    The value of your bonus is: $3.25 USD
     
    • 5/5 Pay 5/5 Pay x 1
  2. AMindAtTurk

    AMindAtTurk Survey Slinger TurkerView Masters

    Messages:
    26,051
    Gender:
    Female
    Ratings:
    +39,565
    Done! lol
     
    • Love Love x 1
  3. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    lefty bby what is you doing noooooo
     
    • Today I Learned Today I Learned x 1
  4. Rocknrolla

    Rocknrolla Survey Slinger

    Messages:
    10,014
    Gender:
    Male
    Ratings:
    +7,585
    It has. I got a max gif size of anywhere from 383kb to 490kb
     
  5. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    Title: Visual Perception Task | PANDA
    Requester: Peter E Mende-Siedlecki [A2KYE7EDH884YK] (Contact)
    (TO): [Pay: 2.62] [Fair: 4.77] [Comm: 3.80] [Fast: 4.62]
    Description:
    View a series of faces, make some social judgments about them, and answer some questions about yourself.
    Time: 50 minutes(s)
    HITs Available: 1
    Reward: $1.75
    Qualifications: Qualification D DoesNotExist; HIT approval rate (%) GreaterThanOrEqualTo 85; Location In US;
     
    • Nom Nom Nom! Nom Nom Nom! x 11
  6. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    Title: A survey about inter-departmental business communication | PANDA
    Requester: John [ASM3O15S6TI1C] (Contact)
    (TO): [Pay: 2.62] [Fair: 3.02] [Comm: 2.30] [Fast: 2.77]
    Description:
    This will be a 10-15 minute survey about business communication practices.
    Time: 1 hour(s)
    HITs Available: 1
    Reward: $1.00
    Qualifications: Total approved HITs GreaterThanOrEqualTo 1000; HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US;
     
    • Nom Nom Nom! Nom Nom Nom! x 7
  7. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    @lefty Your badges now bother my faux OCD. I need you to get 3 more or lose 1.
     
    • LOL LOL x 4
  8. Ana*

    Ana* H&R Blockhead

    Messages:
    21,637
    Gender:
    Female
    Ratings:
    +27,162
    yours bother me too :D
     
    • LOL LOL x 1
  9. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,746
    Ratings:
    +163,330
    ^^^^^^
     
    • LOL LOL x 1
  10. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    I'm pretty sure I'll lose a bunch next month since my posting dropped because of school :flail:

    gonna have to wait a week+ though
     
    • LOL LOL x 1
  11. glossolalia

    glossolalia Survey Slinger

    Messages:
    3,131
    Gender:
    Female
    Ratings:
    +7,233
    This looks really helpful! Thank you so much.
     
  12. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    Bad advice? BAD ADVICE :flail:
     
    • LOL LOL x 2
  13. slothbear

    slothbear Survey Slinger

    Messages:
    10,822
    Gender:
    Male
    Ratings:
    +22,072
    Here's a gross looking script I wrote awhile ago to deal with TO1/TO2. It makes those sites a little less annoying...

    Code:
    // ==UserScript==
    // @name         Turkopticon 1/2 Helper
    // @namespace    http://tampermonkey.net/
    // @version      0.1
    // @author       slothbear
    // @include      http*://turkopticon.info*
    // @include      http*://turkopticon.ucsd.edu*
    
    // ==/UserScript==
    
    // PUT YOUR EMAIL AND PASSWORD HERE IF YOU FEEL COMFORTABLE STORING THAT IN A SCRIPT...
    // IT SHOULD BE A DIFFERENT PASSWORD THAN YOU USE ANYWHERE ELSE. :)
    // IF YOU DON'T WANT TO STORE YOUR CREDENTIALS, SET var logIn = false AND DON'T ENTER YOUR INFO
    var logIn = true;
    var to1_email = 'to1 email goes here';
    var to1_password = 'to1 password goes here';
    var to2_email = 'to2 email goes here';
    var to2_password = 'to2 password goes here';
    
    var content = (document.body.textContent || document.body.innerText);
    var is_to1 = window.location.href.indexOf('turkopticon.ucsd.edu') > -1;
    var is_to2 = window.location.href.indexOf('turkopticon.info') > -1;
    
    if (is_to1 && content.indexOf('To report a requester, we need you to be logged in') > -1) {
        logMeIn(to1_email, to1_password);
    }
    if (is_to1 && content.indexOf('Installing Turkopticon for Chrome') > -1) {
        to1_RemovePopup();
    } else if (is_to2 && content.indexOf('Please sign in to Turkopticon') > -1) {
        logMeIn(to2_email, to2_password);
    } else if (content.indexOf('This website is under heavy load') > -1) {
        reloader();
    } else {
        console.log('Ending...');
        return false;
    }
    
    function to1_RemovePopup() {
        console.log("Let's wait for the popup to appear, then kill it dead!");
        var killItDead = setInterval(function(){ lookForPopup();}, 100);
    
        function lookForPopup() {
            console.log('Looking for popup.');
            if (document.getElementById('tinybox')) {
                console.log('Popup found!');
                document.getElementById('tinymask').remove();
                document.getElementById('tinybox').remove();
                stopLookingForPopup();
            }
        }
    
        function stopLookingForPopup() {
            console.log('We can stop looking now.');
            clearInterval(killItDead);
        }
    }
    
    function logMeIn(username, pass) {
        if (!logIn) return false;
    
        console.log('Gotta log in and check out some stats!');
        document.getElementById('email').value = username;
        document.getElementById('password').value = pass;
        document.getElementsByName('commit')[0].click();
    }
    
    function reloader() {
        console.log('Woah, shitty servers...what a surprise. Time to reload!');
        window.location.reload();
    }
    


    Eye bleeding white is the best way to turk!
     
  14. glossolalia

    glossolalia Survey Slinger

    Messages:
    3,131
    Gender:
    Female
    Ratings:
    +7,233
    @lefty sorry quoted the wrong thing???
     
  15. MikeTheChef

    MikeTheChef Survey Slinger

    Messages:
    2,409
    Gender:
    Male
    Ratings:
    +2,925
    took about 8 min
     
    • Today I Learned Today I Learned x 1
  16. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    Err, I think that might have been against the TOS for TH

    [​IMG]
     
    • LOL LOL x 1
  17. glossolalia

    glossolalia Survey Slinger

    Messages:
    3,131
    Gender:
    Female
    Ratings:
    +7,233
    Oh, I have no idea what you're talking about in that case! :p
     
    • LOL LOL x 1
  18. Outer1

    Outer1 Survey Slinger

    Messages:
    5,075
    Gender:
    Male
    Ratings:
    +7,992
    Noooo... I'm sure it's my bad eyesight but solid white with any color of text on it is super difficult for me to read. It actually makes my eyes hurt to look at it lol.
     
  19. NBadger

    NBadger Mod of Cat Gifs

    Messages:
    14,386
    Gender:
    Female
    Ratings:
    +40,289
    [​IMG]
     
    • LOL LOL x 2
    • Love Love x 1
  20. SoonerChris

    SoonerChris Survey Slinger

    Messages:
    5,033
    Gender:
    Male
    Ratings:
    +6,959
    Morning. Nice to wake up to already meeting you daily goal.

    You've received a bonus from Amos Schurr for work related to 3IVEC1GSLP6HLQF90TO53KQ1CU0J1O.
    The value of your bonus is: $50.00 USD

    The Requester included this note:
    Congratulations. You won the $50 bonus for completing the questionnaire about the coral reef
    Amos

    You've received a bonus from Andras Molnar for work related to 3XU9MCX6VOKCDZQD2R2G2GDFCXH2R0.
    The value of your bonus is: $0.39 USD

    The Requester included this note:
    Bonus
     
    • 5/5 Pay 5/5 Pay x 5
    • Like Like x 4
Thread Status:
Not open for further replies.