11/18 - Sending Sunday!

Discussion in 'Daily mTurk HITs Threads' started by Tripsa, Nov 18, 2018.

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

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    It is a bethesda game without the ability for the community to fix all the bugs.
     
    • LOL LOL x 1
    • 5/5 Pay 5/5 Pay x 1
  2. ThisPoorGuy

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    [​IMG]
     
    • LOL LOL x 2
  3. hvnnvr

    hvnnvr Survey Slinger

    Messages:
    4,589
    Gender:
    Male
    Ratings:
    +6,132
    Hmm, what about the size of the bank account and the requirement to have one foot in the grave and a slippery footing with the other?
     
    • LOL LOL x 1
  4. Random Jobber

    Random Jobber No One Cared Who I Was Until I Put On The Bucket TurkerView Masters

    Messages:
    7,239
    Gender:
    Male
    Ratings:
    +9,611
    Malihe Alikhani [ADKVOXN8EMEY4] color game w images - $0.60 | PANDA


    Generous

    Unrated

    Unrated
    $22.50 / hour
    00:01:36 / completion time
    Pros:
    They're aiming for a $15/hr pay rate.
    Cons:
    Says you will answer 5 questions, but it's actually 10, also this isn't a game at all.

    Qualifications: HIT approval rate (%) >= 95; Location EqualTo US;
    To read Malihe Alikhani's full profile check out TurkerView!
     
  5. dan

    dan daelian

    Messages:
    28,285
    Gender:
    Male
    Ratings:
    +61,817
  6. SirKiwiTheBrave

    SirKiwiTheBrave ʇᴉnɹℲ ǝʌɐɹq ǝɥ┴

    Messages:
    4,631
    Gender:
    Male
    Ratings:
    +7,387
    It is, but I think this is more about when you do get the requisite number of ads and your account doesn't get credited. I've noticed this too, and I think it has become much worse in recent weeks. To be clear, you should get credited a certain amount when you watch three ads. I've been noticing recently that the points keep accumulating but my account balance does not change.
     
  7. A6_Foul_Out

    A6_Foul_Out Organic Meme Panda TurkerView Masters

    Messages:
    17,777
    Gender:
    Male
    Ratings:
    +23,954
    MY STREAM IS DELAYED

    I WONDER WHAT'S ABOUT TO HAPPEN
     
    • LOL LOL x 1
  8. DigitalDenizen

    DigitalDenizen Well-Known Turker

    Messages:
    2,341
    Gender:
    Male
    Ratings:
    +2,044
    Yeah, I'm not too impressed with what I've heard. Although I never thought an Elder Scrolls MMO would work but I guess it's good enough that it's still running
     
  9. A6_Foul_Out

    A6_Foul_Out Organic Meme Panda TurkerView Masters

    Messages:
    17,777
    Gender:
    Male
    Ratings:
    +23,954
    it's so nice when the other team throws you the ball for free
     
    • LOL LOL x 1
  10. dan

    dan daelian

    Messages:
    28,285
    Gender:
    Male
    Ratings:
    +61,817
    my bad. I'll delay my flails lol. how much of a delay we talking?
     
  11. morweeg

    morweeg Triple Double Certified Organic Batch Master

    Messages:
    40,571
    Ratings:
    +54,131
    TESO works because it's a generic MMO set in the Elder Scrolls world. It's not really a TES game. It's also not very good, but that's just my opinion man. At least it's playable.
     
    • Today I Learned Today I Learned x 1
  12. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,219
    ...I just saw it, so a lot lol
     
    • LOL LOL x 1
  13. A6_Foul_Out

    A6_Foul_Out Organic Meme Panda TurkerView Masters

    Messages:
    17,777
    Gender:
    Male
    Ratings:
    +23,954


    like a play lol
     
  14. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    The elder scrolls mmo doesn't use the bethesda engine.

    http://www.heroengine.com/
     
    • Today I Learned Today I Learned x 1
  15. sikk66

    sikk66 New Turker

    Messages:
    6
    Gender:
    Male
    Ratings:
    +10
    Hi there, I was asking a little earlier about an iframe resizing script. The HIT I'm doing(and I do them a lot) has just starting putting their own iframe in the HIT with a height of only 600px. It's driving me nuts and slowing me down. The Workspace Expander isn't helping in this case since they have their own iframe in the HIT.
    Could anyone help me with a quick and dirty script to allow me to resize the iframe? I have the source code for the HIT. I would be forever grateful. I can't imagine it would be more than one two lines of code max.
    Thanks in advance.
     
  16. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Use MTS's iframe expander. It has a fix for that as mturk recently broke shit.
     
    • LOL LOL x 1
  17. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    i was looking for a different gif to reply with, but this one is better
     
    • LOL LOL x 4
  18. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    @sikk66 otherwise this will also fix it

    Code:
    // ==UserScript==
    // @name         Temp fix for mturk footer problem
    // @version      0.1
    // @description  hide the footer stuff...hope you don't like to report HITs...
    // @author       slothbear
    // @include      https://worker.mturk.com/projects/*
    // ==/UserScript==
    
    
    const workPipelineBottomBar = document.getElementsByClassName('work-pipeline-bottom-bar')[0];
    const stickyFooter = document.getElementsByClassName('sticky-footer')[0];
    
    
    function hideThings() {
        workPipelineBottomBar.style.display = "none";
        stickyFooter.style.display = "none"
    }
    
    
    (function main() {
    
        if (workPipelineBottomBar) return hideThings();
        return false;
    
    })();
     
  19. Buntastic

    Buntastic Survey Slinger

    Messages:
    12,819
    Gender:
    Female
    Ratings:
    +23,740
    Awesome UER [A2XIUY9EMRF1BP] 15-minute survey about online security. Must have a Google/Gmail account - $2.00 | PANDA


    Unrated

    Unrated

    Unrated
    $19.94 / hour
    00:06:01 / completion time
    Pros:
    Cons:
    explain your answer style writing

    Qualifications: Total approved HITs >= 1; HIT approval rate (%) >= 90; Location EqualTo US;
    To read Awesome UER's full profile check out TurkerView!
     
  20. hvnnvr

    hvnnvr Survey Slinger

    Messages:
    4,589
    Gender:
    Male
    Ratings:
    +6,132
    FTFY
     
    • LOL LOL x 1
Thread Status:
Not open for further replies.