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
Remember remember that June is spider month. :spider:
I have been diligently posting a spider song of the day. It's going to get pretty grim soon, though. The pickings are slim.
 
  • Like
Reactions: GenericPear

SunlitSunflower

FIGHT FOR LIFE! STRIVE FOR MORE. GROW TALL!
Joined
Jan 12, 2016
Messages
1,760
Reaction score
4,622
Points
513
Age
29
Gender
Female
Remember remember that June is spider month. :spider:
Fuck you. I woke up last night and looked at the wall above my head and there was a GIANT fucking spider on it. I mean size of my HAND spider. Just sitting there. I fucking SCREAMED and jumped out the bed, slammed on the light and the fucking bastard JUMPED onto the bed. I had to scramble the sheets off and smash the bastard. Worst fucking night ever.
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
65,099
Reaction score
145,619
Points
2,088
Gender
Male
Fuck you. I woke up last night and looked at the wall above my head and there was a GIANT fucking spider on it. I mean size of my HAND spider. Just sitting there. I fucking SCREAMED and jumped out the bed, slammed on the light and the fucking bastard JUMPED onto the bed. I had to scramble the sheets off and smash the bastard. Worst fucking night ever.
You need to move.
 

humbleturker

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jul 8, 2016
Messages
10,554
Reaction score
23,278
Points
1,738
Age
33
Gender
Male
Fuck you. I woke up last night and looked at the wall above my head and there was a GIANT fucking spider on it. I mean size of my HAND spider. Just sitting there. I fucking SCREAMED and jumped out the bed, slammed on the light and the fucking bastard JUMPED onto the bed. I had to scramble the sheets off and smash the bastard. Worst fucking night ever.
Was there REEE involved?
 

LlamaRhama

Party Llama
Contributor
Champion
Joined
Sep 30, 2016
Messages
4,311
Reaction score
9,818
Points
938
Age
37
Location
Portland, OR
Gender
Female


Code:
// ==UserScript==
// @name       DCF - Shoe feature labelling
// @version    1.4
// @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/*
// @description For the DCF Shoes HITs
// @namespace https://greasyfork.org/users/11205
// ==/UserScript==

if ($('td:contains("Shoe feature labelling")').length){
    var image_scaling = 2.0;
    var default_zoom = true;
    var presets = [];
    presets.push(['Athletic', 1,3,1,1,1,1]);
    presets.push(['Not A Shoe', 3,4,4,4,4,6]);
  
  

    $('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 id="shoeImage" src="' + $('td:contains("Link to shoe image")').next().find('a').attr('href') + '">');

    if (default_zoom){
        $('#shoeImage').load(function(){
            $('#shoeImage').width($('#shoeImage').width()*image_scaling);
            $('#shoeImage').toggleClass('zoomed');
        });
    }

    $('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:gt(0)').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:gt(0)').each(function(){
        $(this).find('span:last')[0].click();
    });
    $('table:eq(2) tr:eq(0) td:last').css('width','50px');
  
    if (presets.length){
        var preset_labels = [];
        for (i=0;i<presets.length;i++){
                preset_labels.push(presets[i][0]);
        }
        $('table:eq(2)').before('<h3><span class="presets_list">' + preset_labels.join('</span> | <span class="presets_list">') + '</span></h3>');

        $('[class^=presets_list]').click(function(){
            var index =  $('[class^=presets_list]').index($(this));
            for (i=0;i<6;i++){
                $('select')[i].selectedIndex = presets[index][i+1]-1;
                $('table:eq(2) tr:eq(' +(i+1)+ ') td:last span')[presets[index][i+1]-1].click();
            }
        });
    }
}
Added a couple preset options you can click to fill in the whole thing. You can add more or change them by adding or changing or deleting the lines like:

presets.push(['Athletic', 1,3,1,1,1,1]);

If you want to add a new one, copy and paste that under the existing ones, change the name and the numbers to fit the values you want it to pick. Maybe we can collect the best ones and I can add them to the script after people figure it out.
You're amazing. Time now down to about 10 sec a hit
 
  • Like
Reactions: Kerek and Kat8mouse

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,979
Points
1,313
Title: Answer a survey about your sesory experiences | PANDA
Worker: Preview | Accept | Requester
Requester: Nicole Ross-Zehnder [A1NOBSR7OTS2Z9] (Contact)
TO 1: [Pay: 3.40] [Fast: 3.75] [Comm: 4.50] [Fair: 3.40] [Reviews: 7] [ToS: 0]
TO 2:
[Rate: $14.84/hr] [Pen: -- days] [Res: -- of 0] [Rec: -- of 0] [Rej: 0] [ToS: 0] [Brk: 0]
Description:
Describe your opinons about different sensory experiences
Time: 60 minutes
HITs Available: 1
Reward: $2.56
Qualifications: HIT approval rate (%) is greater than 95; Total approved HITs is greater than 50; Location is US;

HIT exported from Mturk Suite v1.21.10
Your what experience?

Edit: 4 minutes.
 
Last edited:
  • Like
Reactions: Kerek and Cmoney

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,979
Points
1,313
Title: Answer a 5-10 minute survey about psychology teaching materials | PANDA
Worker: Preview | Accept | Requester
Requester: Linh Littleford [A2PT5SYEPW4LVD] (Contact)
TO 1: Not Available
TO 2: Not Available
Description: You'll be shown a teaching activity created by a professor and asked about your perceptions of that activity and of the professor.
Time: 60 minutes
HITs Available: 1
Reward: $1.00
Qualifications: Already Completed has not been granted;
HIT exported from Mturk Suite v1.21.10
 

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,979
Points
1,313
Title: Answer Questions about a Leadership Role You Have Held(~ 5 minutes) | PANDA
Worker: Preview | Accept | Requester
Requester: Ellen (and the Cornell Research Lab) [A1ASVBHHY3D9NB] (Contact)
TO 1: [Pay: 3.72] [Fast: 4.89] [Comm: 4.06] [Fair: 4.84] [Reviews: 98] [ToS: 0]
TO 2:
[Rate: $4.90/hr] [Pen: 0.58 days] [Res: -- of 0] [Rec: 100% of 2] [Rej: 0] [ToS: 0] [Brk: 0]
Description:
You will be asked questions about yourself and a leadership role you have held (at work, in a club or other organization, etc.). This study will take less than 5 minutes.
Time: 30 minutes
HITs Available: 1
Reward: $0.40
Qualifications: Total approved HITs is not less than 100; Exc: [766528-46274] has not been granted; HIT approval rate (%) is not less than 90; Location is one of: US;
HIT exported from Mturk Suite v1.21.10
 

Cmoney

.....
Contributor
HIT Poster
Joined
Jan 23, 2016
Messages
8,330
Reaction score
13,380
Points
1,313
Age
41
Gender
Male
Title: Remembering Line Lengths - Approx. 20-25 minutes(~ 20 minutes) | PANDA
Worker: Preview | Accept | Requester
Requester: Crawfordlab [ANTD9UG65S8F5] (Contact)
TO 1: Not Available
TO 2: Not Available
Description: In this study you will be asked to remember and judge line lengths. Please do not use Internet Explorer (Other browsers are fine).
Time: 1 hour 29 minutes
HITs Available: 1
Reward: $2.75
Qualifications: Exc: [46904-46315] has not been granted; Total approved HITs is not less than 500; HIT approval rate (%) is not less than 97; Location is one of: US;
HIT exported from Mturk Suite v1.21.10
 

LlamaRhama

Party Llama
Contributor
Champion
Joined
Sep 30, 2016
Messages
4,311
Reaction score
9,818
Points
938
Age
37
Location
Portland, OR
Gender
Female
Yassss...Thunder! I miss storms.


I told you it was going down Jaded @Jaded . My premonition is coming true.
 
  • Like
Reactions: Kerek

lobo925

CEO of Pizza
Contributor
Joined
Jan 13, 2016
Messages
8,054
Reaction score
18,324
Points
1,163
Location
Internet
Gender
Male
Title: Answer a survey about your sesory experiences | PANDA
Requester: Nicole Ross-Zehnder [A1NOBSR7OTS2Z9] (TO)
TO Ratings:
★★★★ 4.50 Communicativity
★★★★★ 3.40 Generosity
★★★★★ 3.40 Fairness
★★★★★ 3.75 Promptness
Number of Reviews: 7 | TOS Flags: 0
Submit a new TO review
Description: Describe your opinons about different sensory experiences
Time: 60 minutes
HITs Available: 1
Reward: $2.56
Qualifications: HIT approval rate (%) is greater than 95;Total approved HITs is greater than 50;Location is US

about 4 mins

Today's Projected Earnings: $94.43 + Bonuses: $7.14 = $101.57 (Exported from Mturk Suite v1.21.10)

Log in or register now. to view Spoiler content!

good week
 

WalkingEmphasis

Banned
Banned
Contributor
Joined
Apr 11, 2016
Messages
4,424
Reaction score
8,154
Points
888
Aw, spiders can be awesome, guys. Especially jumping spiders. I took this a few days ago and I thought he was so adorable. He jumped at my face right after this, then boinged immediately back. Poor little dude thought I was going to kill him.

 
Last edited:
D

Deleted member 526

Guest
Title: Academic Research on Consumer Choices and Product Labeling | PANDA
Requester: Matteo Godi [A13EZJOKYM04U4] (TO)
TO Ratings:

????? 0.00 Communicativity
????? 5.00 Generosity
????? 0.00 Fairness
????? 0.00 Promptness
Number of Reviews: 1
(Submit a new TO rating for this requester)

Description: A brief (~5 minutes) survey for academic research, containing five short questions about consumer preferences and labeling, and six demographic questions. Must be 18 or older.
Time: 7 minutes
Hits Available: 75
Reward: $0.40
Qualifications: HIT approval rate (%) is greater than 98; Total approved HITs is greater than 5000; Location is US
1:40
 
Status
Not open for further replies.