01/13 - Sweet Saturday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Jan 13, 2018.

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

    GoldGuardian Black Order

    Messages:
    8,005
    Gender:
    Male
    Ratings:
    +16,743
    [​IMG]
     
    • LOL LOL x 2
  2. cheyenne

    cheyenne Survey Slinger

    Messages:
    6,583
    Gender:
    Female
    Ratings:
    +7,691
    Title: English sentence reading task | Accept
    Requester: Yining Nie [A3KUD6OG99YL9I] Contact
    TV: No Reviews
    TO: [Pay: 5.00] [Fast: 5.00] [Comm: 0.00] [Fair: 5.00] [Reviews: 1] [ToS: 0]
    TO2: [Hrly: ---] [Pen: ---] [Res: ---] [Rec: ---] [Rej: 0] [ToS: 0] [Brk: 0]
    Reward:
    $0.75
    Duration: 2 hours
    Available: 8
    Description: Read and judge some English sentences (for native speakers of English only)
    Requirements: HIT approval rate (%) GreaterThan 95; Location EqualTo US
    HIT exported from Mturk Suite v2.1.3
     
    • Nom Nom Nom! Nom Nom Nom! x 5
  3. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    :emoji_thermometer_face::emoji_dizzy_face:
     
    • LOL LOL x 1
  4. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    [​IMG]

    I feel ya. My IRL bestie lives in Phoenix so I've listened to her saying it's cold at times I'd be happy it was so "cold", lol. (I also sent her chocolates once, in mid-July. Bad idea.)
     
    • LOL LOL x 1
  5. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    LOL

    "thanks for the chocolate syrup"

    glad your furnace is intact tho :)
     
    • Love Love x 1
  6. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    You guys should probably just move Panda Crazy into its own window so it doesn't yap at you, but here's a copy of Panda Crazy that will make it shut up.

    Greasyfork link: https://greasyfork.org/en/scripts/37332-edited-panda-crazy-no-talking
    PHP:
    // ==UserScript==
    // @name        Edited Panda Crazy - No Talking
    // @version     0.5.21
    // @description Imports Panda Crazy and adds a "bad phrase list" that it's not allowed to speak.
    // @author      (JohnnyRS on mturkcrowd.com and mturkgrind.com) [email protected]
    // @include     http*://www.mturk.com/mturk/welcome?pandacrazy=on*
    // @include     http*://www.mturk.com/?pandacrazy=on*
    // @include     http*://worker.mturk.com/?filters[search_term]=pandacrazy=on*
    // @include     http*://worker.mturk.com/requesters/PandaCrazy/projects*
    // @include     http*://worker.mturk.com/?end_signin=1&filters%5Bsearch_term%5D=pandacrazy%3Don*
    // @require     http://code.jquery.com/jquery-2.1.4.min.js
    // @require     http://code.jquery.com/ui/1.11.4/jquery-ui.min.js
    // @require        https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.8.0/jquery.modal.min.js
    // @require     https://cdnjs.cloudflare.com/ajax/libs/jquery-layout/1.3.0-rc-30.79/jquery.layout.min.js
    // @resource    jQueryUICSS          http://code.jquery.com/ui/1.11.4/themes/pepper-grinder/jquery-ui.css
    // @resource    jQueryModalCSS       https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.8.0/jquery.modal.min.css
    // @resource    jQueryLayoutCSS      https://cdnjs.cloudflare.com/ajax/libs/jquery-layout/1.3.0-rc-30.79/layout-default.css
    // @connect     allbyjohn.com
    // @connect     mturk.com
    // @connect     tiny.cc
    // @connect     ibotta.com
    // @connect     ns4t.net
    // @grant       GM_getValue
    // @grant       GM_setValue
    // @grant       GM_deleteValue
    // @grant       GM_addStyle
    // @grant         GM_xmlhttpRequest
    // @grant       GM_getResourceText
    // @grant       GM_setClipboard
    // @require     https://greasyfork.org/scripts/19168-jr-mturk-panda-crazy/code/JR%20Mturk%20Panda%20Crazy.user.js
    // @namespace   https://greasyfork.org/users/6406
    // ==/UserScript==

    const CENSORED_PHRASES = [
        
    "window of"
    ];

    oldSpeakThisNow speakThisNow.bind(window);

    function 
    doesPhrasePassCensor(phrasecensoredPhrase) {
        return !
    phrase.toLowerCase().includes(censoredPhrase.toLowerCase());
    }

    speakThisNow = function(phraseToTryToSpeak) {
        var 
    isPhraseOK doesPhrasePassCensor.bind(windowphraseToTryToSpeak);
        if(
    CENSORED_PHRASES.every(isPhraseOK)) {
            
    oldSpeakThisNow(phraseToTryToSpeak);
        }
        else {
            
    console.log(`Blocked playback of phrase "${phraseToTryToSpeak}"`);
        }
    };
     
    • Like Like x 1
    Last edited: Jan 13, 2018
  7. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    Edit:
    * fixed the script to use every instead of forEach so that I could exit early from the loop.
     
    Last edited: Jan 13, 2018
  8. SAJ

    SAJ Survey Slinger

    Messages:
    27,502
    Gender:
    Male
    Ratings:
    +51,488
    Too easy
     
  9. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    @jim718181 - That pattern I used above of "creating a new script and then using @require on the script you want to change" can be an effective way to persist some modifications through updates, as long as what you're trying to change isn't accessed before you try to change it.
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  10. thedorchannel

    thedorchannel Well-Known Turker

    Messages:
    1,918
    Gender:
    Male
    Ratings:
    +3,766
    anyone doing the Brandon cui batch? Its either gonna be amazing or terrible...
     
  11. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    I had to edit it out because I'm only on a 13" laptop and space is limited. I have PC in its own window on a second virtual desktop, but moving over to my main desktop gives me the "hey" bullshit. I've tested it being 100% in view and this way and there was absolutely no difference in performance, but the script thinks it's hidden. So, it's pretty obnoxious to say the least.
     
  12. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    Low-performance laptop? And which browser? And is it today's update (yesterday's update used a different method that would say "hey" if it was minimized)?

    From a quick glance at the changes, it seems that Panda Crazy is determining whether it's in a tab by event timing discrepancies now.
    I can easily imagine that a low-performance computer, or one saddled with too much software, etc., could encounter these even without being in a tab.
     
  13. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    [​IMG]

    & Chrome

    I've tested it being 100% in view, staring at it and only it, collecting a batch. Then I put it in the second VD and did the same and it collected in the exact amount of time. Then I tested it against it being a background tab and clearly saw a major difference. There's no difference between it being in view and being in view on the other desktop, but it yells at me the second I tab over to my main work screen.
     
    • Today I Learned Today I Learned x 1
  14. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    Very interesting.

    I can't cross-platform test on Mac OS.

    Adds fuel to the fire for wanting to get a MacBook for web development in spite of otherwise hating the price/performance ratio of Macs and absolutely despising the terrible keyboards that MacBooks come with.
     
    • Like Like x 2
  15. GoldGuardian

    GoldGuardian Black Order

    Messages:
    8,005
    Gender:
    Male
    Ratings:
    +16,743
    Does the same on my Macbook Pro. Doesn't like it when I put it in another VD.
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  16. NBadger

    NBadger Mod of Cat Gifs

    Messages:
    14,385
    Gender:
    Female
    Ratings:
    +40,289
    [​IMG]
     
    • LOL LOL x 1
  17. Jimmo

    Jimmo Survey Slinger

    Messages:
    1,133
    Gender:
    Male
    Ratings:
    +2,667
    Greetings and salutations! And all that stuff. :whip:
     
  18. jessers

    jessers Survey Slinger

    Messages:
    14,710
    Gender:
    Female
    Ratings:
    +44,814
    I should also add that I do see a difference between FF and Chrome. PC in FF became paralyzed a few days ago being in its own window on the second desktop, but Chrome hasn't missed a step.

    :eek: The keyboard and trackpad are actually why I can't untrain myself from mac, lol. I was on windows my entire life until ~7 years ago and now I feel like a caveman when I try to use it just because it's so far away from where my workflow and muscle memory is. I can't say I'm a mac fangirl or anything, it's just what works for me personally. I can attest to the durability of this sucker though. I kinda treat it like trash and there's no reason it should still be running like a champ, but it is. *knock on wood*
     
    • Love Love x 2
  19. cheyenne

    cheyenne Survey Slinger

    Messages:
    6,583
    Gender:
    Female
    Ratings:
    +7,691
    Niro Sivanathan [ARE9M7F3Q8LHV] Competition based on problem solving(~ 18 minutes) - $1.31 | PANDA
    [394TEHR260PN9RI1OJILTNN7PRS65T]


    Low

    Unrated

    Unrated
    $6.52 / hour
    00:12:03 / completion time
    Pros:

    Cons:
    inquisit

    To read Niro Sivanathan's full profile check out TurkerView!
     
  20. cheyenne

    cheyenne Survey Slinger

    Messages:
    6,583
    Gender:
    Female
    Ratings:
    +7,691


    Immediate approval
     
    • 5/5 Pay 5/5 Pay x 1
Thread Status:
Not open for further replies.