Can't Find a Plethora of Good HITs? 6/16 Munificent Monday

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

Thread Status:
Not open for further replies.
  1. Ursa Major

    Ursa Major User

    Joined:
    Jun 9, 2013
    Messages:
    2,249
    Likes Received:
    0
  2. Wiggles

    Wiggles Popular Stranger

    Joined:
    Jan 8, 2014
    Messages:
    9,245
    Likes Received:
    0
    [​IMG]

    [​IMG]

    [​IMG]

    [​IMG]

    Off to bed..

    xoxo
     
  3. nanaki254

    nanaki254 User

    Joined:
    Jul 13, 2013
    Messages:
    7,619
    Likes Received:
    0
  4. TurkingBear

    Joined:
    May 8, 2013
    Messages:
    16,225
    Likes Received:
    5
  5. Bald

    Bald User

    Joined:
    Oct 31, 2012
    Messages:
    9,744
    Likes Received:
    17
    fast, less then 5 mins

    Title: Answer a psychological questionnaire using Qualtrics (10 - 15 minute survey)
    Requester: Brett Wheeler [A4RWM87G04ESF] (TO)
    TO Ratings:
    [​IMG]
    0.00 Communicativity
    4.67 Generosity
    5.00 Fairness
    5.00 Promptness
    Number of Reviews: 4
    (Submit a new TO rating for this requester)

    Description: We are measuring the effectiveness of a psychological questionnaire about thoughts, feelings, and behaviors. You must be 18 or older to participate.
    Time: 60 minutes
    Reward: $0.75
    Qualifications: Total approved HITs is not less than 500, HIT approval rate (%) is not less than 97, Location is US
     
    #5 Bald, Jun 16, 2014
    Last edited by a moderator: Jun 16, 2014
  6. Apaullo

    Apaullo Multi Pennyaire

    Joined:
    Aug 5, 2013
    Messages:
    9,130
    Likes Received:
    0
  7. Tendrin

    Tendrin User

    Joined:
    May 18, 2014
    Messages:
    3,212
    Likes Received:
    0
    Morning, folks :)
     
  8. monamoore

    monamoore User

    Joined:
    May 8, 2014
    Messages:
    293
    Likes Received:
    0
    Listening to Uptown by Prince and this gif goes so well with it.
     
  9. Bald

    Bald User

    Joined:
    Oct 31, 2012
    Messages:
    9,744
    Likes Received:
    17
    I feel so worthless doing these for $4.5-$5 an hour, but they always approve for me (if your bored and cant find anything else)

    Title: Describe images with simple sentence
    Requester: vocds [AR3B90GZOP6DS] (TO)
    TO Ratings:
    [​IMG]
    3.75 Communicativity
    2.91 Generosity
    4.58 Fairness
    4.57 Promptness
    Number of Reviews: 44
    (Submit a new TO rating for this requester)

    Description: Help us decribe images with simple sentence!
    Time: 30 minutes
    Reward: $0.05
    Qualifications: Total approved HITs is not less than 500, HIT approval rate (%) is not less than 98, Location is US
     
  10. Kanna

    Kanna User

    Joined:
    Feb 22, 2014
    Messages:
    14,245
    Likes Received:
    2
    My favorite script for people like me who just post links:

    Code:
    // ==UserScript==
    // @name        mmmturkeybacon Ghost HIT Buster for Forums
    // @author      mmmturkeybacon
    // @description Searches forum posts for HIT links, follows them,
    //              determines if the HIT is still available, and 
    //              strikes the post if the HIT is ghost or changes 
    //              the link text to show the automatic approval time 
    //              if the HIT is available. Using this script will 
    //              increase the number of page requests you make to 
    //              mturk and may cause Page Monitor to give false alarms.
    // @namespace   http://userscripts.org/users/523367
    // @match       http://www.***************/threads/*
    // @match       http://www.***************/showthread.php?*
    // @match       http://mturkforum.com/showthread.php?*
    // @require     http://code.jquery.com/jquery-latest.min.js
    // @downloadURL http://userscripts.org/scripts/source/350434.user.js
    // @updateURL   http://userscripts.org/scripts/source/350434.meta.js
    // @version     1.22
    // @grant       GM_xmlhttpRequest
    // ==/UserScript==
    
    var REQUEST_DELAY = 500; // milliseconds
    var posts_dict = {};
    
    $(document).ready(function ()
    {
        var $preview_links = $('a[href*="/mturk/preview?"]');
        
        var $hit_posts = $('div[id^="post_message_"]').has('a[href*="/mturk/preview?"]');
        $hit_posts.each(function()
        {
            var num_links = $(this).find('a[href*="/mturk/preview?"]').length;
            posts_dict[$(this).attr('id')] = {num_links: num_links, link_cnt: 0, strike_all: false, strike_all_override: false};
        });
    
        function bustin_makes_me_feel_good($link)
        {
            GM_xmlhttpRequest(
            {
            method: "GET",
            url: $link.attr('href'),
            onerror: function(){alert('failed');},
            onload: function (response)
            {
                var $src = $(response.responseText);
                var id = $link.closest('div[id^="post_message_"]').attr('id');
                var maxpagerate = $src.find('td[class="error_title"]:contains("You have exceeded the maximum allowed page request rate for this website.")');
                if (maxpagerate.length == 0)
                {
                    var is_a_HIT = $src.find('input[type="hidden"][name="isAccepted"]').length > 0;
                    if (is_a_HIT)
                    {
                        var hitAutoAppDelayInSeconds = $src.find('input[type="hidden"][name="hitAutoAppDelayInSeconds"]').val();
                        
                        // time formatting code modified from http://userscripts.org/scripts/show/169154
                        var days  = Math.floor((hitAutoAppDelayInSeconds/(60*60*24)));
                        var hours = Math.floor((hitAutoAppDelayInSeconds/(60*60)) % 24);
                        var mins  = Math.floor((hitAutoAppDelayInSeconds/60) % 60);
                        var secs  = hitAutoAppDelayInSeconds % 60;
                        
                        var time_str = (days  == 0 ? '' : days  + (days  > 1 ? ' days '    : ' day '))    +
                                       (hours == 0 ? '' : hours + (hours > 1 ? ' hours '   : ' hour '))   + 
                                       (mins  == 0 ? '' : mins  + (mins  > 1 ? ' minutes ' : ' minute ')) + 
                                       (secs  == 0 ? '' : secs  + (secs  > 1 ? ' seconds ' : ' second '));
        
                        time_str = time_str.replace(/\s+$/, ''); 
        
                        if (hitAutoAppDelayInSeconds == 0)
                        {
                            time_str = "0 seconds";
                        }
                        $link.text('[AA: '+time_str+'] -- ' + $link.text());
                        posts_dict[id].link_cnt++;
                        posts_dict[id].strike_all_override = true;
                    }
                    else
                    {
                        var $hit_container = $link.closest('div[class="cms_table"]');
                        if ($hit_container.length > 0)
                        {
                            $hit_container.css('text-decoration', 'line-through');
                            posts_dict[id].link_cnt++;
                        }
                        else
                        {
                            $link.css('text-decoration', 'line-through');
                            posts_dict[id].link_cnt++;
                            posts_dict[id].strike_all = true;
                        }
                    }
                }
                else
                {
                    $link.text('[Page Request Rate Error] -- ' + $link.text());
                    posts_dict[id].link_cnt++;
                    posts_dict[id].strike_all_override = true;
                }
    
                if ((posts_dict[id].strike_all_override == false) &&
                    (posts_dict[id].strike_all == true) &&
                    (posts_dict[id].link_cnt == posts_dict[id].num_links))
                {
                    $link.closest('div[id^="'+id+'"]').css('text-decoration', 'line-through');
                }
            }
            });
        }
        
        function preview_links_loop(i)
        {
            var $next_link = $preview_links.eq(i);
            i++;
            if ($next_link.length > 0)
            {
                bustin_makes_me_feel_good($next_link);        
                // Slow don't page request rate.
                // This won't make the script immune to page request
                // errors. Retrying after an error would take to long.
                setTimeout(function(){preview_links_loop(i)}, REQUEST_DELAY);
            }
        }
        
        if ($preview_links.length > 0)
        {
            preview_links_loop(0);
        }
    });
     
  11. Bald

    Bald User

    Joined:
    Oct 31, 2012
    Messages:
    9,744
    Likes Received:
    17
    2 mins, short timer

    Title: What kind of gifts do you like?
    Requester: maya [A1PDIVK92CK4VR] (TO)
    TO Ratings:
    [​IMG]
    2.00 Communicativity
    3.50 Generosity
    5.00 Fairness
    5.00 Promptness
    Number of Reviews: 4
    (Submit a new TO rating for this requester)

    Description: We'd like to here what you think about gifting!
    Time: 10 minutes
    Reward: $0.25
    Qualifications: HIT approval rate (%) is not less than 90, Location is US
     
  12. TurkingBear

    Joined:
    May 8, 2013
    Messages:
    16,225
    Likes Received:
    5
    Sometimes its good money when you are doing nothing. I mean if yesterday I applied myself I could have made over 50 bucks. didnt want to though. I felt I needed a wee break.
     
  13. Bald

    Bald User

    Joined:
    Oct 31, 2012
    Messages:
    9,744
    Likes Received:
    17
  14. MidgardDragon

    Joined:
    Feb 20, 2014
    Messages:
    12,001
    Likes Received:
    0
    John Oliver taught me that the head of the FCC is a Dingo and bears only have sex face to face. So there's that.
     
  15. Apaullo

    Apaullo Multi Pennyaire

    Joined:
    Aug 5, 2013
    Messages:
    9,130
    Likes Received:
    0
    [​IMG]

    [​IMG]
     
Thread Status:
Not open for further replies.

Share This Page