03/31 - Fabulous Friday!

Discussion in 'Daily mTurk HITs Threads' started by TissueHime, Mar 31, 2017.

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

    eyeofodin Well-Known Turker

    Messages:
    2,772
    Gender:
    Male
    Ratings:
    +5,608
    [​IMG]
    I have wrote in literally every open comment spot for the last like 500+ C-Sats I've completed. :|
     
    • Like Like x 2
    • LOL LOL x 2
  2. Randomacts

    Randomacts Survey Slinger

    Messages:
    94,624
    Gender:
    Male
    Ratings:
    +124,077
    :hug:
     
  3. Hummingbirdee

    Hummingbirdee Big Bird

    Messages:
    54,302
    Gender:
    Female
    Ratings:
    +115,710
    Ouch man, Ouch.

    [​IMG]
     
    • LOL LOL x 1
  4. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    More 1.16s
     
  5. Fio

    Fio Survey Slinger

    Messages:
    2,984
    Ratings:
    +5,413
    did you already get brianz?
     
  6. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    *grabs the Pringles and gets comfy* It's gonna be a good night.
     
    • Like Like x 2
    • Nom Nom Nom! Nom Nom Nom! x 1
    • Love Love x 1
  7. glossolalia

    glossolalia Survey Slinger

    Messages:
    3,131
    Gender:
    Female
    Ratings:
    +7,233
    [​IMG]

    How I'm feeling right about now. :emoji_weary:
     
    • LOL LOL x 3
  8. macotg

    macotg Survey Slinger

    Messages:
    1,936
    Gender:
    Male
    Ratings:
    +1,741
    Yep, was working on them when Anderson dropped or I'd have had at least another 50 or so of those done
     
  9. FedNandlers

    FedNandlers Survey Slinger

    Messages:
    1,433
    Ratings:
    +2,640
    I'm downloading 110 GB of Piano Samples. I think my ISP hates me.
     
    • LOL LOL x 2
  10. Hazmat

    Hazmat Survey Slinger

    Messages:
    2,151
    Ratings:
    +3,845
    2 hours 5 minutes of lovely blood and gore. Sounds like my kind of Friday ha. You need pizza instead of Pringles and then you're all set ha. Maybe put Pringles on the pizza.
     
    • Nom Nom Nom! Nom Nom Nom! x 1
    • LOL LOL x 1
  11. NBadger

    NBadger Mod of Cat Gifs

    Messages:
    14,385
    Gender:
    Female
    Ratings:
    +40,289
    I'd probably cry if I got blocked. They're pretty much my favourite kind of HIT.

    I think I was probably a doctor in another life tbh.
     
    • Like Like x 1
  12. macotg

    macotg Survey Slinger

    Messages:
    1,936
    Gender:
    Male
    Ratings:
    +1,741
    Not for me :(
     
    • Like Like x 1
  13. Alina

    Alina Survey Slinger

    Messages:
    5,277
    Ratings:
    +18,501
    [​IMG]
     
    • LOL LOL x 5
  14. ChrisTurk

    ChrisTurk Administrator

    Messages:
    56,724
    Ratings:
    +163,220
    @Jesicu @slothbear @RicanGuy86 and anyone else w/ the VRAPI qual, this is quick/dirty/ugly but it'll keep an eye on your bonuses. It'll auto-track your bonuses if you submit any VRAPI w/ an identified unit #, or you can manually add/remove/reset with the associated buttons.

    Code:
    // ==UserScript==
    // @name         _VacationRentalAPI
    // @version      1.0
    // @description  Track bonuses for VRAPI HITs
    // @author       ChrisTurk
    // @include      /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
    // @grant        GM_log
    // @grant        GM_getValue
    // @grant        GM_setValue
    // @require      https://code.jquery.com/jquery-3.1.0.min.js
    // ==/UserScript==
    
    if ($( '#description_matches_text' ).length || $( '#unit_number' ).length) { _VRAPI(); }
    
    function updateBonus(bonus) {
        localStorage.setItem('vrapiBonus', bonus);
        $('#bonusTotal').attr('value', bonus + ' / $' + (bonus*2));
    }
    function _VRAPI() {
        var expectedBonus = localStorage.getItem('vrapiBonus');
        var subBonus = '<input type="button" class="btn btn-danger btn-sm" id="subBonus" value="-" style="margin-right: 5px; margin-left: 5px;">';
        var buttonBonus = '<input type="button" class="btn btn-info btn-lg" id="bonusTotal" value="' + expectedBonus + ' / $' + (expectedBonus*2) + '" disabled>';
        var addBonus = '<input type="button" class="btn btn-success btn-sm" id="addBonus" value="+" style="margin-left: 5px; margin-right: 10px;">';
        var resetBonus = '<input type="button" class="btn btn-warning btn-sm" id="clearBonus" value="Reset">';
        $('#submitButton').after('<div style="margin-top: 25px; display: block; text-align: center;">' + subBonus + buttonBonus + addBonus + resetBonus + '</div>');
        $('#clearBonus').click(function() {
            expectedBonus = 0;
            updateBonus(expectedBonus);
            localStorage.setItem('vrapiAID', '');
        });
        $('#subBonus').click(function() {
            expectedBonus--;
            updateBonus(expectedBonus);
        });
        $('#addBonus').click(function() {
            expectedBonus++;
            updateBonus(expectedBonus);
        });
        $('#mturk_form').submit(function(e){
            e.preventDefault();
            if ($('input[name=address_found_unit_not]:eq(2):checked').length) {
                console.log('earned a bonus');
                expectedBonus++;
                updateBonus(expectedBonus);
            }
            else {
                console.log('no bonus');
            }
            this.submit();
        });
    }
    
    
    upload_2017-3-31_17-15-49.png
    Took me longer to find a HIT w/ a unit I could submit to make sure it worked than to write this :emoji_upside_down: so no guarantees/warranties implied or otherwise blah blah blah.
     
    • Today I Learned Today I Learned x 3
    • Love Love x 3
    • LOL LOL x 1
    • 5/5 Pay 5/5 Pay x 1
  15. gurlondrums

    gurlondrums Cracker of the Step Whip

    Messages:
    27,160
    Gender:
    Female
    Ratings:
    +76,023
    Keep the panda running for soft cap throwbacks or expires.
     
  16. macotg

    macotg Survey Slinger

    Messages:
    1,936
    Gender:
    Male
    Ratings:
    +1,741
    Lot of dead 1.20 pins out there
     
  17. eyeofodin

    eyeofodin Well-Known Turker

    Messages:
    2,772
    Gender:
    Male
    Ratings:
    +5,608
    [​IMG]
    These C-Sats make you want to live a healthy life so you don't go under these people's knives :|
    I've watched them stab this needle around for the past 4 and half minutes
     
    • LOL LOL x 2
    • Like Like x 1
  18. macotg

    macotg Survey Slinger

    Messages:
    1,936
    Gender:
    Male
    Ratings:
    +1,741
    Always have it running anyway since I learned I can stomach them again but caught not a one
     
  19. Hazmat

    Hazmat Survey Slinger

    Messages:
    2,151
    Ratings:
    +3,845
    [​IMG][​IMG]
     
    • Like Like x 2
    • LOL LOL x 1
  20. Ballistic406

    Ballistic406 Survey Slinger

    Messages:
    3,888
    Gender:
    Male
    Ratings:
    +6,667
    • 5/5 Pay 5/5 Pay x 2
    • Love Love x 2
    • Like Like x 1
Thread Status:
Not open for further replies.