- Joined
- Jan 10, 2016
- Messages
- 46,621
- Reaction score
- 123,845
- Points
- 1,414
- Age
- 124
- Gender
- Female
Scrivener, I love it.what program do you use?
Scrivener, I love it.what program do you use?
How long does it take?i just finished this and got a PRE on submission, so it was still in my queue even though it said it submitted. so when i went back to the HIT, i got an error that said i had already completed the task (of course). i messaged the requester and less than 10 minutes later he responded and is going to work it out. he's a really great requester, i've communicated with him before too.
About 5 mins. Light writing.
Title: 10 minute Consumer Study | PANDA
Worker: Preview | Accept | Requester
Requester: mturkstudies [A325OVMO3HUSHB] (Contact)
TO 1: [Pay: 3.41] [Fast: 4.59] [Comm: 4.60] [Fair: 4.20] [Reviews: 30] [ToS: 0]
TO 2: Not Available
Description: In this study we will learn about your opinions and how you make everyday decisions.
Time: 20 minutes
HITs Available: 1
Reward: $0.90
Qualifications: Total approved HITs GreaterThanOrEqualTo 50; HIT approval rate (%) GreaterThanOrEqualTo 99; Location EqualTo US;
HIT exported from Mturk Suite v1.21.10
Title: STARTS IMMEDIATELY: Decision making task (average extra bonus of $3.00) | PANDA Worker: Preview | Accept | Requester Requester: Annika Dukek [A3HM3BEL8RD9IZ] (Contact) TO 1: [Pay: 2.92] [Fast: 4.33] [Comm: 2.88] [Fair: 4.20] [Reviews: 15] [ToS: 0] TO 2: [Rate: $5.53/hr] [Pen: -- days] [Res: -- of 0] [Rec: -- of 0] [Rej: 0] [ToS: 0] [Brk: 1] Description: Perform a decision making task with other Mechanical Turk workers. Bonuses are awarded based on performance. The task will take 45-60 minutes. If you accept this HIT you will have to fully participate in the task in order to get paid. Note that this game requires several workers at the same time and if we are unable to recruit the required number of players we will ask you to return the HIT and the game will be rescheduled for another time. Time: 1 hour 30 minutes HITs Available: 1 Reward: $3.00 Qualifications: None; |
HIT exported from Mturk Suite v1.21.10 |
Title: Evaluating Evidence(~ 25 minutes) | PANDA Worker: Preview | Accept | Requester Requester: Decision Making Studies [A39X5CLP2M542M] (Contact) TO 1: [Pay: 4.08] [Fast: 4.86] [Comm: 3.00] [Fair: 5.00] [Reviews: 16] [ToS: 0] TO 2: Not Available Description: Evaluate Evidence in Short Stories Time: 45 minutes HITs Available: 1 Reward: $0.90 Qualifications: Total approved HITs is not less than 100; Exc: [860062183-46139] has not been granted; HIT approval rate (%) is not less than 70; Location is one of: US; |
HIT exported from Mturk Suite v1.21.10 |
Title: Answer a survey about your preferences (1-2 minutes) | PANDA Requester: Oguzz [AU3ERWPXV902B] (Contact) (TO):[Pay: 3.67][Fair: 5.00][Comm: 1.00][Fast: 5.00] Description: Give us your opinion Time: 2 hours Hits Available: 1 Reward: $0.15 Qualifications: Location is one of: AU, GB, US, HIT approval rate (%) is greater than 97, Total approved HITs is greater than 50 |
This was a bit underpaid, about 15 minutes for me.
Title: Evaluating Evidence(~ 25 minutes) | PANDA
Worker: Preview | Accept | Requester
Requester: Decision Making Studies [A39X5CLP2M542M] (Contact)
TO 1: [Pay: 4.08] [Fast: 4.86] [Comm: 3.00] [Fair: 5.00] [Reviews: 16] [ToS: 0]
TO 2: Not Available
Description: Evaluate Evidence in Short Stories
Time: 45 minutes
HITs Available: 1
Reward: $0.90
Qualifications: Total approved HITs is not less than 100; Exc: [860062183-46139] has not been granted; HIT approval rate (%) is not less than 70; Location is one of: US;
HIT exported from Mturk Suite v1.21.10
30 secs.
Title: Answer a survey about your preferences (1-2 minutes) | PANDA
Requester: Oguzz [AU3ERWPXV902B] (Contact)
(TO):[Pay: 3.67][Fair: 5.00][Comm: 1.00][Fast: 5.00]
Description: Give us your opinion
Time: 2 hours
Hits Available: 1
Reward: $0.15
Qualifications: Location is one of: AU, GB, US, HIT approval rate (%) is greater than 97, Total approved HITs is greater than 50
Darn, TO must be for a different oneThis was a bit underpaid, about 15 minutes for me.
// ==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();
});
}
Now I almost want to do themMore 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.
Title: Complete a perception game with a partner | PANDA Worker: Preview | Accept | Requester Requester: Jon Overton [A2CPTXX7VQY947] (Contact) TO 1: Not Available TO 2: Not Available Description: You'll be matched with a teammate to work on a game that relies on perceptual abilities. Time: 2 hours HITs Available: 18 Reward: $1.00 Qualifications: None; |
HIT exported from Mturk Suite v1.21.10 |
Title: Survey about your day and personal opinions (approx 2 mins) | PANDA Requester: Q. Lab [AF8FKBE8S9BK4] (Contact) (TO): [Pay: 3.00] [Fair: 5.00] [Comm: 0.00] [Fast: 4.80] Description: We would like to ask your opinion about various decisions. Time: 6 minutes HITs Available: 30 Reward: $0.25 Qualifications: Total approved HITs is greater than 100; HIT approval rate (%) is greater than 98; Location is US; |
Title: Complete a perception game with a partner | PANDA Worker: Preview | Accept | Requester Requester: Jon Overton [A2CPTXX7VQY947] (Contact) TO 1: Not Available TO 2: Not Available Auto Approval: 3 days Time: 2 hours HITs Available: 18 Reward: $1.00 Qualifications: None; |
Did this yesterday. Took about 10 mins or less.
Title: Evaluating Evidence(~ 25 minutes) | PANDA
Worker: Preview | Accept | Requester
Requester: Decision Making Studies [A39X5CLP2M542M] (Contact)
TO 1: [Pay: 4.08] [Fast: 4.86] [Comm: 3.00] [Fair: 5.00] [Reviews: 16] [ToS: 0]
TO 2: Not Available
Description: Evaluate Evidence in Short Stories
Time: 45 minutes
HITs Available: 1
Reward: $0.90
Qualifications: Total approved HITs is not less than 100; Exc: [860062183-46139] has not been granted; HIT approval rate (%) is not less than 70; Location is one of: US;
HIT exported from Mturk Suite v1.21.10
1:30, I'm a lil slow today but that's alright
Title: Survey about your day and personal opinions (approx 2 mins) | PANDA
Requester: Q. Lab [AF8FKBE8S9BK4] (Contact)
(TO): [Pay: 3.00] [Fair: 5.00] [Comm: 0.00] [Fast: 4.80]
Description: We would like to ask your opinion about various decisions.
Time: 6 minutes
HITs Available: 30
Reward: $0.25
Qualifications: Total approved HITs is greater than 100; HIT approval rate (%) is greater than 98; Location is US;
30 seconds
9 minutes.
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: 10
Reward: $1.50
Qualifications: HIT approval rate (%) is not less than 95; Location is US;
HIT exported from Mturk Suite v1.21.10