06/09 - Fffriday

HIT Poster Voting

  • Mr. Krabs

    Votes: 77 51.7%
  • ElleWoods

    Votes: 26 17.4%
  • Squatty

    Votes: 29 19.5%
  • JenniLeigh

    Votes: 6 4.0%
  • Roscoe E Goldchain

    Votes: 11 7.4%

  • Total voters
    149
  • Poll closed .
Status
Not open for further replies.

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
65,099
Reaction score
145,619
Points
2,088
Gender
Male
too bad you have your greasyfork scripts set to private. your kryss @kryss scripts would be very beneficial to the majority of the forum
I deleted the two I had up before posting that, they were the mturkgrind forum script and the forum script for here before Kadauchi @Kadauchi added the functionality to the forum itself. So you're 100% correct.
 

TissueHime

Thread Maker Extraordinaire
Threaderator
Joined
Jan 12, 2016
Messages
5,588
Reaction score
7,615
Points
813
Age
35
Location
Seattle
Gender
Male
eh, then it still doesn't help me since i keep missing things left and right
just trying to aim for 10 instead of 20 at this rate before i stream :(
 
  • Like
Reactions: Rerun

ElleWoods

Walking in a Turker Wonderland
Contributor
Joined
Jan 23, 2016
Messages
4,696
Reaction score
10,873
Points
988
Gender
Female
Code:
// ==UserScript==
// @name       DCF - Shoe feature labelling
// @version    1.1
// @require      https://code.jquery.com/jquery-2.1.4.min.js
// @include     https://s3.amazonaws.com/mturk_bulk/hits*
// @include     https://www.mturkcontent.com/dynamic/*
// ==/UserScript==

if ($('td:contains("Shoe feature labelling")').length){
    var image_scaling = 2.0;

    $('td:contains("Common Ambiguities")').wrapInner('<div class="instructions"></div>');
    $(".instructions").before('<button id="toggle" type="button"><span>Show Instructions</span></button>').hide();
    $('#toggle').click(function() {
        $(".instructions").toggle();
        $('#toggle').text() == 'Show Instructions' ? str = 'Hide Instructions' : str = 'Show Instructions';
        $('#toggle span').html(str);
    });  

    $('table:eq(1)').after('<img src="' + $('td:contains("Link to shoe image")').next().find('a').attr('href') + '">');

    $('img').click(function(){
        if ($(this).hasClass('zoomed')){
            $(this).width($(this).width ()/image_scaling);
            $(this).toggleClass('zoomed');
        }
        else{
            $(this).width($(this).width ()*image_scaling);
            $(this).toggleClass('zoomed');
        }
    });
  
    $('table:eq(2) tr').append('<td class="filler"></td>');
    $('.filler').each(function(index){
        var fill_options = [];
        $(this).prev().find('option').each(function(){
            fill_options.push($(this).text().replace(/^\w\)/,'').split(':')[0]);
        });
        $(this).html('<span class="options_list' + index + '">' + fill_options.join('</span> | <span class="options_list' + index + '">') + '</span>');
    });
    $('[class^=options_list]').click(function(){
        $(this).parent().prev().find('select')[0].selectedIndex = $(this).parent().find('[class^=options_list]').index($(this));
        $('[class=' + $(this).attr('class') + ']').css('background-color','');
        $(this).css('background-color','lightgreen');
    });
     $('table:eq(2) tr').each(function(){
         $(this).find('span:last')[0].click();
     });
}
Thank you. Do you have basic instructions? I'm guessing it corresponds with the letters?
 

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
36
Gender
Female
Thank you. Do you have basic instructions? I'm guessing it corresponds with the letters?
No instructions needed. Just a toggle to hide the instructions. Click the picture to make it a little bigger, which doesn't really help because the quality is so bad, then click on the words to select the correct options.
 
  • Like
Reactions: ElleWoods and Rerun

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
36
Gender
Female
Title: Survey about your opinions | PANDA
Worker: Preview | Accept | Requester
Requester: Octavia [AYRTFVBS5ILZD] (Contact)
TO 1: [Pay: 5.00] [Fast: 5.00] [Comm: 0.00] [Fair: 5.00] [Reviews: 3] [ToS: 0]
TO 2:
Not Available
Description: Answer a brief survey about everyday behaviors and organizations -- pays $ 0.75 for approx. 6-7 minutes
Time: 1 hour
HITs Available: 3
Reward: $0.75
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US;
HIT exported from Mturk Suite v1.21.10
 
  • Like
Reactions: Rerun

basketcasey

Curiouser and curiouser
Mentor
Contributor
Crowd Pleaser
Super Smart
Joined
Apr 29, 2017
Messages
10,061
Reaction score
29,333
Points
1,688
Age
37
Location
South Carolina
Gender
Female
I've always heard about these babyhead hits and I had a really weird image in my head of what they were. I have to say, I'm a tad disappointed.

Log in or register now. to view Spoiler content!
Reminds me of a local artist that exhibited at the last art museum I worked at, Diana Farfan. This was one of my favorite pieces, super weird.

Log in or register now. to view Spoiler content!
 
Status
Not open for further replies.