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.

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,815
Reaction score
163,410
Points
3,238
Age
37
Gender
Male
Haven't heard anything yet, I kind of feel like my mom might have been exaggerating a little on how soon it was gonna be, especially since it's apparently still a month till Sister's due date .-.
Things like this are why I have your mom on ignore.
 

bxpretzel

Ari Gold
Contributor
HIT Poster
Joined
Jan 14, 2016
Messages
11,163
Reaction score
24,621
Points
1,438
Location
Appalachia
Title: Consumer Behavior Survey | PANDA
Worker: Preview | Accept | Requester
Requester: Douglas Miller [A1GRI3EDZJ18NL] (Contact)
TO 1: [Pay: 0.00] [Fast: 0.00] [Comm: 0.00] [Fair: 0.00] [Reviews: 1] [ToS: 0]
TO 2:
Not Available
Description: This is an easy 10-12 minute study about homeownership. You will be paid $1.20 for your time. There are no right or wrong answers.
Time: 60 minutes
HITs Available: 1
Reward: $1.20
Qualifications: Current Residence - Owned is 1; Location is US;
HIT exported from Mturk Suite v1.21.10
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
64,943
Reaction score
145,465
Points
2,088
Gender
Male
This would probably be better if it had come 10-15 years earlier...


:spider:
 

coffeeowl

hoo?
Contributor
Mentor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
28,032
Reaction score
63,933
Points
1,738
Location
Location EqualTo US
Gender
Female

bxpretzel

Ari Gold
Contributor
HIT Poster
Joined
Jan 14, 2016
Messages
11,163
Reaction score
24,621
Points
1,438
Location
Appalachia
these came in last night :ahhh:

You've received a bonus from Sandro Ambuehl for work related to 37YYO3NWHDZFO788FZ7DUP0S99RCCR.
The value of your bonus is: $20.00 USD

The Requester included this note:
Thank you for participating in our study yesterday Here is the bonus we promised you, depending on the decisions you took. Best, Sandro Ambuehl, University of Toronto

You've received a bonus from melissa a wheeler for work related to 388FBO7JZRTY6MTNJNEDRJRN95YNYH.
The value of your bonus is: $1.00 USD

The Requester included this note:
Bonus from interactive decision-making task for Personality and Socio-Moral Problem Solving study.
 

bxpretzel

Ari Gold
Contributor
HIT Poster
Joined
Jan 14, 2016
Messages
11,163
Reaction score
24,621
Points
1,438
Location
Appalachia
Title: Psychology: Search Task V9 | PANDA
Worker: Preview | Accept | Requester
Requester: Jeff Moher [A3M7LP1SU5VP37] (Contact)
TO 1: [Pay: 3.71] [Fast: 5.00] [Comm: 4.67] [Fair: 5.00] [Reviews: 16] [ToS: 0]
TO 2:
[Rate: $6.00/hr] [Pen: 0.17 days] [Res: -- of 0] [Rec: -- of 0] [Rej: 0] [ToS: 0] [Brk: 0]
Description:
Find the target on each trial
Time: 60 minutes
HITs Available: 1
Reward: $1.50
Qualifications: HIT approval rate (%) is not less than 95; Location is US;
HIT exported from Mturk Suite v1.21.10
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
64,943
Reaction score
145,465
Points
2,088
Gender
Male
Since some people are apparently working on the DCF shoe HITs, and they're posting a lot, here's some cosmetics for them:
Code:
// ==UserScript==
// @name       DCF - Shoe feature labelling
// @version    1.0
// @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');
        }
    });
}
Hides the instructions, embeds the image, and you can click the image to zoom. You can set what zoom you want by changing the image_scaling.
 

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
35
Gender
Female
Since some people are apparently working on the DCF shoe HITs, and they're posting a lot, here's some cosmetics for them:
Code:
// ==UserScript==
// @name       DCF - Shoe feature labelling
// @version    1.0
// @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');
        }
    });
}
Hides the instructions, embeds the image, and you can click the image to zoom. You can set what zoom you want by changing the image_scaling.
You are amazing!
 
  • Like
Reactions: Kerek

Veltora Otew

Got Milk!
Joined
May 25, 2017
Messages
1,280
Reaction score
4,863
Points
513
Age
60
Location
Portland, OR.
Gender
Male
these came in last night :ahhh:

You've received a bonus from Sandro Ambuehl for work related to 37YYO3NWHDZFO788FZ7DUP0S99RCCR.
The value of your bonus is: $20.00 USD

The Requester included this note:
Thank you for participating in our study yesterday Here is the bonus we promised you, depending on the decisions you took. Best, Sandro Ambuehl, University of Toronto

You've received a bonus from melissa a wheeler for work related to 388FBO7JZRTY6MTNJNEDRJRN95YNYH.
The value of your bonus is: $1.00 USD

The Requester included this note:
Bonus from interactive decision-making task for Personality and Socio-Moral Problem Solving study.

Speaking of bonus - I found this in my email this morning - biggest bonus I've got yet - not quite $20 but working on it.

You've received a bonus from Emanuel Vespa for work related to 3XD2A6FGFNVEBJMA4LN63QG6GQR9SK.
The value of your bonus is: $6.30 USD
 
Status
Not open for further replies.