04/12 - Workable Wednesday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Apr 12, 2017.

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

    DigitalDenizen Well-Known Turker

    Messages:
    2,341
    Gender:
    Male
    Ratings:
    +2,044
    If this works @Randomacts I'll donate to the forum in your honor
     
  2. WimpLo

    WimpLo Survey Slingin' Batch Masta Former MTG MotM

    Messages:
    35,373
    Gender:
    Female
    Ratings:
    +76,743
    I've been having issues with it crashing the page in chrome. :-\
     
  3. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    You should check out Mturk Suite. It has an option to keep accept next checked.
     
    • Like Like x 1
  4. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Did you at least remember to put on the motherboard shield BEFORE you put the motherboard in (Well you have another chance now)

    Every fucking time... >.>



    Code:
    // ==UserScript==
    // @name         Mturk Radio Keybinds
    // @namespace    https://gist.github.com/Kadauchi
    // @version      2.0.1
    // @description  Keybinds to select radios
    // @author       Kadauchi
    // @icon         http://i.imgur.com/oGRQwPN.png
    // @include      /^https://(www\.mturkcontent|s3\.amazonaws)\.com/\
    // @include      *
    // @grant        GM_getValue
    // @grant        GM_setValue
    // ==/UserScript==
    
    document.body.insertAdjacentHTML(`afterbegin`,
      `<div style="background-color: lightgreen;">` +
        `<label style="color: black; margin-left: 10px;">Script: Mturk Radio Keybinds</label>` +
        `<span style="margin-left: 3px;cursor:help" title="Press 1-9 to select the radio you want. \n\nPress Enter to submit the HIT. \n\nCheck auto submit to have the HIT submit after you press 1-9.">&#10068;</span>` +
        `<label style="color: black; float: right; margin-right: 10px;">Auto Submit: ` +
          `<input id="autosubmit" type="checkbox" ${GM_getValue(`autosubmit`) ? `checked` : ``}></input>` +
        `</label>` +
      `</div>`
    );
    
    const autosubmit = document.getElementById(`autosubmit`);
    
    autosubmit.addEventListener(`change`, function (event) {
      GM_setValue(`autosubmit`, autosubmit.checked);
    });
    
    window.addEventListener(`keydown`, function (event) {
      const key = event.key;
    
      if (key.match(/[1-9]/)) {
        const radio = document.querySelectorAll(`[type="radio"]`)[key - 1];
        if (radio) radio.click();
    
        if (autosubmit.checked) document.querySelector(`[type="submit"]`).click();
      }
    
      if (key.match(/Enter/)) {
        document.querySelector(`[type="submit"]`).click();
      }
    });
    
    window.focus();
    
     
    • LOL LOL x 1
  5. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    @turks24

    Oh I just realized what you actually wanted

    Blame @Kadauchi because he changed how auto submit's button works with MTS and he still hasn't fixed it.
     
  6. Kadauchi

    Kadauchi Administrator Former MTG MotM

    Messages:
    4,368
    Ratings:
    +8,598
    ?
     
  7. Kadauchi

    Kadauchi Administrator Former MTG MotM

    Messages:
    4,368
    Ratings:
    +8,598
    Changes in chrome, the way TM does ajax now causes memory leak.
     
  8. Ten

    Ten Survey Slinger

    Messages:
    5,518
    Gender:
    Male
    Ratings:
    +8,149
    So I seemingly cleared two hundred of those hits before they either dried up, or faked their deaths.
     
    • Like Like x 1
  9. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Unless you DID fix it.

    The accept next check on MTS works is it will either just force it to be checked or force it to be unchecked.
     
  10. DigitalDenizen

    DigitalDenizen Well-Known Turker

    Messages:
    2,341
    Gender:
    Male
    Ratings:
    +2,044
    Is turkmaster even updated anymore?
     
  11. CorvusSapiens

    CorvusSapiens Survey Slinger

    Messages:
    6,777
    Gender:
    Male
    Ratings:
    +9,896
    He fixed the forced uncheck.
     
  12. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    I managed a whopping 78 before C-SATS came to visit. :D
     
  13. Kadauchi

    Kadauchi Administrator Former MTG MotM

    Messages:
    4,368
    Ratings:
    +8,598
    http://mturksuite.com/change-log.html scroll down to v1.20.14
    Nope
     
  14. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    oh then sorry about that.

    Last update is : 2016-04-15
     
    • Today I Learned Today I Learned x 2
  15. Ten

    Ten Survey Slinger

    Messages:
    5,518
    Gender:
    Male
    Ratings:
    +8,149
    I didn't get any of those. And Panda Crazy is refusing to allow me to add shit into my groups.
     
  16. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    Title: Upcoming experiment with up to $10 pay | PANDA
    Requester: Abdullah (Human Dynamics Lab) [AGEIRIHRRYV6P] (Contact)
    TO: [Comm: N/A] [Pay: 4.00] [Fair: 5.00] [Fast: 5.00] [Reviews: 4] [ToS: 0]
    Description: Indicate whether you would like to be notified about our upcoming experiment
    Time: 12 hours
    HITs Available: 1
    Reward: $0.00
    Qualifications: Total approved HITs is greater than 100; Guess the correlation game is not 100; Masters has been granted; HIT approval rate (%) is greater than 95;
    This HIT was posted through TurkerHub xPort Script v2.1 • Learn MoreInstall Here
     
    • Nom Nom Nom! Nom Nom Nom! x 5
  17. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    >.> I thought that we got past the masters qual bullshit?
     
  18. Jagdpanzer

    Jagdpanzer Survey Slinger

    Messages:
    2,960
    Gender:
    Male
    Ratings:
    +3,443

    And where is my cocktail young lady? :flute:
     
  19. Wilma

    Wilma Survey Slinger

    Messages:
    1,427
    Gender:
    Female
    Ratings:
    +3,019
    I was going to ask you the same thing!!!
     
    • LOL LOL x 1
  20. turks24

    turks24 Survey Slinger

    Messages:
    6,720
    Gender:
    Male
    Ratings:
    +13,777
    It's overkill for what I need. However I also really don't like change soooo
     
    • LOL LOL x 1
Thread Status:
Not open for further replies.