12/18 - Maximum Monday!

Discussion in 'Daily mTurk HITs Threads' started by Melting Glacier, Dec 18, 2017.

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

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    Look up ;)
     
    • LOL LOL x 1
  2. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    It's there it just doesn't look like a button. Click where it says "find hits" at the top.
     
    • Today I Learned Today I Learned x 1
  3. Wilma

    Wilma Survey Slinger

    Messages:
    1,427
    Gender:
    Female
    Ratings:
    +3,019
    Ah... this doesn't show up when searching for hit forker!
     
  4. ThisPoorGuy

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    Yeah, I have it hidden. I don't want it exploding all over the Mturk community and it's not enough "my code" for me to feel ok posting it publicly.
     
  5. Celtic Lady

    Celtic Lady Survey Slinger

    Messages:
    2,888
    Gender:
    Female
    Ratings:
    +5,319
    I didn't get a code for this one. Anyone else? It says "
    You will only be compensated if the Completion Code entered below matches one from a completed survey." so I'm nervous to submit with my worker id.
     
  6. Wilma

    Wilma Survey Slinger

    Messages:
    1,427
    Gender:
    Female
    Ratings:
    +3,019
    Ahhh gotcha.
     
  7. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    I don't think it's public, since it's still mostly Kadauchi's code with small edits and he doesn't know how much more work he'll put into it.
     
  8. Totally Not Salem

    Totally Not Salem Survey Slinger

    Messages:
    5,664
    Gender:
    Male
    Ratings:
    +5,034
    OK, I did this the laziest way possible, but thanks to @Kadauchi 's prodding, I made my CodeMirror port for TurkerHub compatible with live update.

    But it's the laziest implementation possible and I'm not sure how it will handle on long threads on slower computers.

    Greasyfork: https://greasyfork.org/en/scripts/36473-codemirror-for-turkerhub

    PHP:
    // ==UserScript==
    // @name         CodeMirror for TurkerHub
    // @namespace    ,
    // @version      4
    // @description  @ChrisTurk the code blocks suck. Let's get some real syntax highlighting up in here. Latest update: Removed CodeMirror @requires that are no longer needed.
    // @author       Cuyler Stuwe (,)
    // @include      https://turkerhub.com/threads/*/*
    // @grant        none
    // ==/UserScript==

    function convertAllTheCode() {
       Array.
    fromdocument.querySelectorAll("div.code") )
           .forEach( 
    codeBlock => {

           var 
    newIframe document.createElement("IFRAME");
           
    newIframe.style "width: 1920px; height: 800px;";
           var 
    newFrameHTML = `

    <html>
    <head>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.32.0/codemirror.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.32.0/mode/javascript/javascript.js"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.32.0/codemirror.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.32.0/theme/monokai.css">
    <style>
    .CodeMirror {
    border: 1px solid #eee;
    height: auto;
    }
    </style>
    </head>
    <body>
    <script>
    window.addEventListener("message", function(event) {
    if(event.data) {
    if(event.data.code) {
    CodeMirror(document.body, {value: event.data.code, mode: "javascript", theme: "monokai", viewportMargin: Infinity});
    }
    }
    });
    </script>
    </body>
    </html>

    `;

           
    newIframe.src URL.createObjectURL(new Blob([newFrameHTML], {type"text/html"}));
           
    codeBlock.parentElement.insertAdjacentElement("afterend"newIframe);
           
    setTimeout(() => newIframe.contentWindow.postMessage({codecodeBlock.innerText}, "*"), 1000);
           
    codeBlock.remove();
       });
    }

    convertAllTheCode();

    var 
    imInUrSiteWatchinUrUpdates = new MutationObserver(function lolISeeU(mutations) {
       for(
    let mutation of mutations) {
           if(
    mutation.target.id === "messageList" && mutation.addedNodes.length 0) {
               
    convertAllTheCode();
           }
       }
    });

    imInUrSiteWatchinUrUpdates.observe(document.body, {childListtruesubtreetrue});
     
    • Like Like x 1
  9. EssArrBee

    EssArrBee Survey Slinger

    Messages:
    14,946
    Gender:
    Male
    Ratings:
    +20,007
    I didn't get one either and already submitted my worker ID and sent a message.
     
    • Like Like x 1
  10. Tripsa

    Tripsa Gobbling Ghost Mod

    Messages:
    11,989
    Gender:
    Male
    Ratings:
    +30,918
    Julia Wamsler [A3PG5MN57ZWQTN] Answer a survey about adventurous sports - $0.80 | PANDA
    [3P15LLOASAD0BFD39S0I7FMODBL9ZU]


    Generous

    Unrated

    Unrated
    $14.05 / hour
    00:03:25 / completion time
    Pros:

    Cons:
    Some writing.
    To read Julia Wamsler's full profile check out TurkerView!
     
    • Nom Nom Nom! Nom Nom Nom! x 3
  11. Missesdash

    Missesdash Survey Slinger Former MTG MotM

    Messages:
    2,973
    Gender:
    Female
    Ratings:
    +12,314
    Hmmm, what's this with pfa's requiring a qual that isnt autogranted?


    ah, nevermind. Was a short delay
     
  12. Confirmed Robot

    Confirmed Robot Survey Slinger

    Messages:
    7,291
    Ratings:
    +27,052
    I was autogranted the qual a few days ago.
     
    • Today I Learned Today I Learned x 1
  13. ThisPoorGuy

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    Man, I am catching the worlds worst surveys today. Broken shit, writing prompts...
     
  14. Momof1

    Momof1 Survey Slinger

    Messages:
    5,739
    Gender:
    Female
    Ratings:
    +5,912
    I got it. I wasn't clicking on the found hits button. Thanks :)
     
    • Like Like x 1
  15. Missesdash

    Missesdash Survey Slinger Former MTG MotM

    Messages:
    2,973
    Gender:
    Female
    Ratings:
    +12,314
    okay next dumb question, do we no longer see how long the HITs take to pay? My brain isnt working and I cant remember what the word for that stat is lol
     
  16. total

    total Well-Known Turker

    Messages:
    1,082
    Ratings:
    +1,041
    Anyone asked by Amazon Payments to verify their e-mail address after withdrawing today?
     
  17. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,219
    Auto-approval data is removed from worker AFAIK.
     
    • Like Like x 1
    • Today I Learned Today I Learned x 1
  18. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    you can still check it on www though
     
    • Today I Learned Today I Learned x 1
  19. AMindAtTurk

    AMindAtTurk Survey Slinger TurkerView Masters

    Messages:
    26,051
    Gender:
    Female
    Ratings:
    +39,565
    I was and I think some others were as well.
     
  20. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,219
    You're not gonna see me recommend doing anything on www at this point :dunno:
     
    • Like Like x 2
    • Today I Learned Today I Learned x 1
    • Love Love x 1
Thread Status:
Not open for further replies.