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.

SAHMTurkin

Member
Joined
May 31, 2017
Messages
123
Reaction score
303
Points
263
Gender
Female
:( Hopefully they just haven't read your message yet.
They emailed to say they rejected before reading my email. But I should be sure to look for their surveys in the future... I sent back an impassioned plea, maybe I'll get lucky on a compassionate researcher.
 
  • Like
Reactions: Kallee

minkyboodle

"And there you have it"
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
2,577
Reaction score
8,192
Points
1,038
Location
The Land of Tigernados
That's pretty awesome. You don't need that money-draining unhealthy crap in your life.

Brb, I'm feeling twitchy all of a sudden.

Thank you! But also don't tempt me, because DP is my other weakness. I gave up soda months ago, but when I do indulge, I go for a can of that sweet nectar of the Gods.
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,620
Reaction score
123,845
Points
1,414
Age
124
Gender
Female
Thank you! But also don't tempt me, because DP is my other weakness. I gave up soda months ago, but when I do indulge, I go for a can of that sweet nectar of the Gods.
I sued to love dr pepper but for some reason it smells really weird to me now and I can't drink it. Which is probably a good thing.
 

Shawnbks9090

Active Member
Contributor
Joined
Dec 25, 2016
Messages
967
Reaction score
1,019
Points
468
Gender
Male
And 0 PRE on the Hit Finder through worker.mturk
Im using Hit Finder, the url starts on the worker site but hits clicked go to the old site. is this right?
 

sudilly

Bubble Hell Avenger
Contributor
Joined
Jan 18, 2016
Messages
1,694
Reaction score
3,115
Points
588
Location
Central CA
Title: Play a game and answer some general survey questions (~25-40 min., $1.50+possible bonus) | PANDA
Worker: Preview | Accept | Requester
Requester: Duke Center for Behavioral Economics [A14RDIKJG0V5TD] (Contact)
TO 1: [Pay: 3.13] [Fast: 4.23] [Comm: 3.12] [Fair: 4.35] [Reviews: 352] [ToS: 11]
TO 2:
[Rate: $5.15/hr] [Pen: 1.51 days] [Res: -- of 0] [Rec: 57% of 7] [Rej: 0] [ToS: 0] [Brk: 0]
Description:
Play a game and have a chance to earn additional money as a bonus in the game, and answer a few general survey questions
Time: 2 hours
HITs Available: 1
Reward: $1.50
Qualifications: Location is not IN; HIT approval rate (%) is not less than 95; Location is US;

HIT exported from Mturk Suite v1.21.10
I got a $50 bonus from them last week. I won their lottery.
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
65,099
Reaction score
145,623
Points
2,088
Gender
Male
Thank you Kerek @Kerek these DCF shoe hits are actually decent with your script. I have them down to 20 seconds each
If you have any ideas (except for keyboard shortcuts which I'm not adding), let me know. I've never submitted one and only looked at a couple, so not sure if there's other stuff that could be done.
 
  • Like
Reactions: Squatty

minkyboodle

"And there you have it"
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
2,577
Reaction score
8,192
Points
1,038
Location
The Land of Tigernados
Que? Do you not like soda...?
I sued to love dr pepper but for some reason it smells really weird to me now and I can't drink it. Which is probably a good thing.
Who did you have to sue..?

I <3 you. Not sure why it would smell weird though, unless maybe they changed the recipe.
 
  • Like
Reactions: Jaded and Squatty

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
36
Gender
Female
If you have any ideas (except for keyboard shortcuts which I'm not adding), let me know. I've never submitted one and only looked at a couple, so not sure if there's other stuff that could be done.
The only thing would be to make the pictures a little bigger, but I am not sure how they would fit in the frame
 
  • Like
Reactions: bxpretzel

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
34
Gender
Female
More DCF

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();
     });
}


Clickable labels because dropdowns are the worst.
Kerek @Kerek Kadauchi @Kadauchi
Wont this call jquery multiple times on the requesters page causing conflicts?
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
65,099
Reaction score
145,623
Points
2,088
Gender
Male

Mr. Krabs

Another Day Another Nickel
Contributor
HIT Poster
Joined
Dec 15, 2016
Messages
2,823
Reaction score
6,076
Points
938
Age
28
Gender
Male
Title: Answer questions about gifting and receiving gifts | PANDA
Worker: Preview | Accept | Requester
Requester: Duke Center for Behavioral Economics [A14RDIKJG0V5TD] (Contact)
TO 1: [Pay: 3.12] [Fast: 4.23] [Comm: 3.12] [Fair: 4.35] [Reviews: 353] [ToS: 11]
TO 2:
[Rate: $5.15/hr] [Pen: 1.51 days] [Res: -- of 0] [Rec: 57% of 7] [Rej: 0] [ToS: 0] [Brk: 0]
Description:
Read about a gifting experience and tell us your thoughts
Time: 1 hour
HITs Available: 1
Reward: $1.00
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US;
HIT exported from Mturk Suite v1.21.10
 

themildone

the real Jaded
Contributor
HIT Poster
Joined
Jan 12, 2016
Messages
19,285
Reaction score
46,776
Points
1,438
Age
29
Location
Indiana
Gender
Female

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,620
Reaction score
123,845
Points
1,414
Age
124
Gender
Female
Que? Do you not like soda...?

Who did you have to sue..?

I <3 you. Not sure why it would smell weird though, unless maybe they changed the recipe.

It took me way too long to figure out I'd typo'd there. I would bet more on me just being weird than anything changing with DP.
 

themildone

the real Jaded
Contributor
HIT Poster
Joined
Jan 12, 2016
Messages
19,285
Reaction score
46,776
Points
1,438
Age
29
Location
Indiana
Gender
Female
Title: Answer questions about gifting and receiving gifts | PANDA
Worker: Preview | Accept | Requester
Requester: Duke Center for Behavioral Economics [A14RDIKJG0V5TD] (Contact)
TO 1: [Pay: 3.12] [Fast: 4.23] [Comm: 3.12] [Fair: 4.35] [Reviews: 353] [ToS: 11]
TO 2:
[Rate: $5.15/hr] [Pen: 1.51 days] [Res: -- of 0] [Rec: 57% of 7] [Rej: 0] [ToS: 0] [Brk: 0]
Description:
Read about a gifting experience and tell us your thoughts
Time: 1 hour
HITs Available: 1
Reward: $1.00
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US;

HIT exported from Mturk Suite v1.21.10
 

bxpretzel

Ari Gold
Contributor
HIT Poster
Joined
Jan 14, 2016
Messages
11,163
Reaction score
24,621
Points
1,438
Location
Appalachia
i have done 50 DCFs now. they are really easy with Kerek @Kerek's great script. has anyone gotten rejected from these?
 
  • Like
Reactions: Squatty

charlie

Well-Known Member
Joined
Nov 3, 2016
Messages
6,676
Reaction score
10,742
Points
938
Age
49
Gender
Male
Que? Do you not like soda...?
.
I gave up sodas several years ago just because I was tired of the constant sugar crashes mid-day. My office has a free to all fountain machine and I was drinking DP like water all day every day. I'd crash around 3. Finally one day just said to heck with it and replaced sodas with water. I still drink coffee and regular unsweetened tea for my caffeine and just because but sodas are a total no go. I don't even drink mixed drinks that use coke or sprite or 7 up or the like. That means no jack and coke for me and that used to be one of my favorite mixed drinks.
 
Status
Not open for further replies.