Can't Find Rejuvenating HITs? 6/15 Supremely Silly Sunday

Discussion in 'Great HITs' started by shootz, Jun 15, 2014.

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

    Joined:
    Apr 10, 2014
    Messages:
    14,855
    Likes Received:
    0
    The girl getting the ballsack stretched over her face is kind of hot too.

    I now think he's training to be an assassin. His ballsack is stretchy enough to cover someones mouth and suffocate them to death.
     
  2. turkalufagus

    Joined:
    Jun 17, 2013
    Messages:
    5,754
    Likes Received:
    0
    Manuuuuuuu!!!
     
    #582 turkalufagus, Jun 15, 2014
    Last edited by a moderator: Jun 15, 2014
  3. lanone

    lanone User

    Joined:
    Apr 10, 2013
    Messages:
    6,100
    Likes Received:
    0
  4. MidgardDragon

    Joined:
    Feb 20, 2014
    Messages:
    12,001
    Likes Received:
    0
    Did the first one, not too bad, would have lost it if there was more after that humongous page of true/false, though. On to the next.
     
  5. Karamazov

    Karamazov User

    Joined:
    Oct 20, 2013
    Messages:
    10,640
    Likes Received:
    0
    [​IMG]
     
  6. lanone

    lanone User

    Joined:
    Apr 10, 2013
    Messages:
    6,100
    Likes Received:
    0
    2 min

    Title: Regret and Drinks Study
    Requester: Kenneth Manning [A35PKWPV8XMFXI] (TO)
    TO Ratings:
    [​IMG]
    0.00 Communicativity
    4.44 Generosity
    5.00 Fairness
    5.00 Promptness
    Number of Reviews: 9
    (Submit a new TO rating for this requester)

    Description: Tell us about a regretful experience and a preference for drinks
    Time: 10 minutes
    Reward: $0.44
    Qualifications: Total approved HITs is not less than 1000, HIT approval rate (%) is not less than 95, Location is US
     
  7. Kanna

    Kanna User

    Joined:
    Feb 22, 2014
    Messages:
    14,245
    Likes Received:
    2
    Only one page of true false? Lucky you.
     
  8. MidgardDragon

    Joined:
    Feb 20, 2014
    Messages:
    12,001
    Likes Received:
    0
    Doing a second one now, probably way more than that in this one.
     
  9. adaaaam

    adaaaam Banned

    Joined:
    Jan 10, 2013
    Messages:
    6,861
    Likes Received:
    0
    Here's a new script by cristo I've been using, it adds a hoard button to search results
    Code:
    // ==UserScript==
    // @name                Preview, Accept and Hoard
    // @author              Chet Manley - The good parts
    // @author              Cristo - The bad parts
    // @include             https://www.mturk.com/mturk/findhits*
    // @include             https://www.mturk.com/mturk/preview*
    // @include             https://www.mturk.com/mturk/searchbar*
    // @include             https://www.mturk.com/mturk/sorthits*
    // @include             https://www.mturk.com/mturk/sortsearchbar*
    // @include             https://www.mturk.com/mturk/viewhits*
    // @include             https://www.mturk.com/mturk/viewsearchbar*
    // ==/UserScript==
    
    
    var refreshTime = 2; //In seconds
    
    
    
    
    var previewLinkEls = document.querySelectorAll('span.capsulelink a');
    for (var i = 0; i < previewLinkEls.length; i++) {
        var previewLink = previewLinkEls[i].getAttribute('href');
        previewLinkEls[i].innerHTML = "View";
        if (previewLink && previewLink.split('?')) {
            var previewLinkArray = previewLink.split('?');
            if (previewLinkArray[0] == '/mturk/preview') {
                var previewAndAcceptLink = previewLinkArray[0] + 'andaccept?' + previewLinkArray[1]; //Warning ??
                var previewAndAcceptEl = document.createElement('a');
                previewAndAcceptEl.setAttribute('href', previewAndAcceptLink);
                previewAndAcceptEl.setAttribute('target', 'mturkhits');
                previewAndAcceptEl.setAttribute('style', 'padding-right: 20px;');
                previewAndAcceptEl.innerHTML = 'Accept';
                var parentSpan = previewLinkEls[i].parentNode;
                parentSpan.insertBefore(previewAndAcceptEl, parentSpan.firstChild);
                var hoardLink = document.createElement("a");            
                hoardLink.setAttribute('href', previewAndAcceptLink);
                hoardLink.setAttribute('class', 'newhb');
                hoardLink.setAttribute('style', 'padding-right: 20px;'); 
                hoardLink.setAttribute('id', 'hLink');
                hoardLink.innerHTML = "Hoard";
                var parentSpan = previewLinkEls[i].parentNode;
                parentSpan.insertBefore(hoardLink, parentSpan.firstChild);
            }
        }
    }
    function goGoGadget(e){
        e.preventDefault();
        var hPage = this.getAttribute("href");
        pageToDo(hPage);
    }
    function pageToDo(hPage) {
        var fulPage = "https://www.mturk.com" + hPage;
        GM_setValue("thePage", fulPage);
        GM_setValue("outthewindow", "true");
        var nwwi = window.open(fulPage,"nwwi");
    }
    var newHB = document.getElementsByClassName("newhb");
    for (var t = 0; t < newHB.length; t++){
        newHB[t].addEventListener( "click", goGoGadget, false);
    }
    if ((GM_getValue("outthewindow") == "true") && (window.location.toString() == GM_getValue("thePage"))) {
        GM_setValue("outthewindow", "false");
        var t = refreshTime * 1000;
        var load = setTimeout(function () { GM_setValue("outthewindow", "true"); location.reload(true); }, t);
    }
    [​IMG]
     
  10. Mind Dagger

    Joined:
    Oct 7, 2013
    Messages:
    8,290
    Likes Received:
    2,761
    The first one took me 50 minutes ugh but the other one only 20 so I'm glad I did them both...they were left over from Friday and I had put them off until today (which I'm glad cause it's a slow Sunday for me)
     
  11. MidgardDragon

    Joined:
    Feb 20, 2014
    Messages:
    12,001
    Likes Received:
    0
    Seems to conflict with the preview and accept script, for folks who are using that.
     
  12. Kanna

    Kanna User

    Joined:
    Feb 22, 2014
    Messages:
    14,245
    Likes Received:
    2
    Well damn. Sad I returned it, I could have handled 20 but not another 50.
     
  13. MidgardDragon

    Joined:
    Feb 20, 2014
    Messages:
    12,001
    Likes Received:
    0
    Seems I am working on the 50 minute one now. Not really worth 3 bucks but not like I'm gonna do anything else tonight..might as well finish up to minimum goal.
     
  14. Kanna

    Kanna User

    Joined:
    Feb 22, 2014
    Messages:
    14,245
    Likes Received:
    2
    I've been alternating between scripts. I like the hoard button, I can click it real quick and it hoards for me while I still do hits in another window without the extra clicks needed for setting up an aa
     
  15. lanone

    lanone User

    Joined:
    Apr 10, 2013
    Messages:
    6,100
    Likes Received:
    0
    Now we gotta get TJ to add that to hit scraper
     
  16. MidgardDragon

    Joined:
    Feb 20, 2014
    Messages:
    12,001
    Likes Received:
    0
    It sounds handy. It would be the best of both worlds if both could be displayed, though.
     
  17. cintinue

    cintinue User

    Joined:
    May 16, 2014
    Messages:
    883
    Likes Received:
    4
    evening peeps. are we ready to make some money?

    [​IMG]
     
  18. Mind Dagger

    Joined:
    Oct 7, 2013
    Messages:
    8,290
    Likes Received:
    2,761
    Yeah the 20 minute one was the one about work and it was more varied and so it wasn't just shorter it was more interesting. It had a page of Remote Association Tests which are always fun (at least for me)
     
  19. Calebro

    Calebro Guest

    Yeah she was hot ,when you could see her face,,,without scrotum sack covering it... :)
     
Thread Status:
Not open for further replies.

Share This Page