09/29 - Zoom Zoom Friday

Status
Not open for further replies.

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
Title: Auditory Perception Experiment with PERFORMANCE-BASED PAY! Total pay likely between $2.50-3.50 depending on performance (~20min) | PANDA
Worker: Preview | Accept | Requester
Requester: McDermott Experiments [A19YWY6E1CP566] (Contact)
TO 1: [Pay: 3.20] [Fast: 4.28] [Comm: 2.95] [Fair: 4.35] [Reviews: 143] [ToS: 0]
TO 2:
[Rate: $10.69/hr] [Pen: 1.33 days] [Res: -- of 0] [Rec: 80% of 5] [Rej: 0] [ToS: 0] [Brk: 0]
Reward:
$0.25
Duration: 55 minutes
Available: 1
Description: PERFORMANCE-BASED PAY! (see preview for pay scheme)! Make judgments about sounds (e.g., are two sounds the same or different?) ~20mins, timeout in 50.
Requirements: Total approved HITs is not less than 50; Location is one of: CA, US; HIT approval rate (%) is not less than 95;
HIT exported from Mturk Suite v1.25.7
 

catnapped

Relatively Unknown Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 13, 2016
Messages
20,908
Reaction score
43,057
Points
2,738
Age
51
Location
Pennsylvania
Gender
Male
244 is pretty impressive, nice job!!!

What happened to your electricity?
No idea. Just "went out" around 7:30. Someone even called after I reported it to ask the usual (did you hear anything, notice anything, etc). Still "under investigation" according to their map but seems like it's local whatever it is.

Wonder if these smart meters they installed are defective...
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,614
Reaction score
123,828
Points
1,414
Age
123
Gender
Female
No idea. Just "went out" around 7:30. Someone even called after I reported it to ask the usual (did you hear anything, notice anything, etc). Still "under investigation" according to their map but seems like it's local whatever it is.

Wonder if these smart meters they installed are defective...
:( That sucks.
 

bxpretzel

Ari Gold
Contributor
HIT Poster
Joined
Jan 14, 2016
Messages
11,163
Reaction score
24,621
Points
1,438
Location
Appalachia
I didnt write this, its just a repost. Use this not what has been posted on this page.
Cara @Eri MindNumbing @MindNumbing
Code:
// ==UserScript==
// @name reks
// @description Helps you make choices
// @version 0.1.2a
// @author RicanGuy86
// @contributor Melting Glacier's 3rd rate tinkering for HIT change
// @grant none
// @include *.mturkcontent.com/*
// @include https://aitiaotu.com/*
// @include https://s3.amazonaws.com/*
// @require http://code.jquery.com/jquery-2.1.0.min.js
// ==/UserScript==

if ($('h4:contains(Playback Rate)').length){


$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();

$(document).ready(function(){


$(document).keydown(function(e){
if (e.which == 50){
$("a[class='btn-no']")[0].click(); // 2 no
}
if (e.which == 49){
$("a[class='btn-yes']")[0].click(); // 1 yes
}
if (e.which == 51){
$("a[class='btn-unsure']")[0].click(); // 3 unsure
}
if (e.which == 13){
$("button[id='btnSubmit']")[0].click(); // Enter submit
}
if (e.which == 66){
$("a[class='btn-back']")[0].click(); // B back
}
if (e.which == 82){
$("a[class='overlay']")[0].click(); // R replay (doesn't work consistently??)
}
});
});}
this is the one I've been using. does anyone know how to make it so that the numbers 1-3 will also work on the number pad? only works on the 1-0 row for me.
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,614
Reaction score
123,828
Points
1,414
Age
123
Gender
Female
this is the one I've been using. does anyone know how to make it so that the numbers 1-3 will also work on the number pad? only works on the 1-0 row for me.
I /think/ if you add || and the other keycode after each e.which == XX (for each number) it should work.

Keypad 1 - 97
Keypad 2 - 98
Keypad 3 - 99

SO the first one in the code up there would be e.which == 50 || 98



I'm like 90% sure on that.

edit: Which means I"m probably wrong.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
this is the one I've been using. does anyone know how to make it so that the numbers 1-3 will also work on the number pad? only works on the 1-0 row for me.
98 97 99 bxpretzel @bxpretzel try this

Code:
// ==UserScript==
// @name reks
// @description Helps you make choices
// @version 0.1.2a
// @author RicanGuy86
// @contributor Melting Glacier's 3rd rate tinkering for HIT change
// @grant none
// @include *.mturkcontent.com/*
// @include https://aitiaotu.com/*
// @include https://s3.amazonaws.com/*
// @require http://code.jquery.com/jquery-2.1.0.min.js
// ==/UserScript==

if ($('h4:contains(Playback Rate)').length){


$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();

$(document).ready(function(){


$(document).keydown(function(e){
if (e.which == 98){
$("a[class='btn-no']")[0].click(); // 2 no
}
if (e.which == 97){
$("a[class='btn-yes']")[0].click(); // 1 yes
}
if (e.which == 99){
$("a[class='btn-unsure']")[0].click(); // 3 unsure
}
if (e.which == 13){
$("button[id='btnSubmit']")[0].click(); // Enter submit
}
if (e.which == 66){
$("a[class='btn-back']")[0].click(); // B back
}
if (e.which == 82){
$("a[class='overlay']")[0].click(); // R replay (doesn't work consistently??)
}
});
});}
[/QUOTE]
 

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
  • Like
Reactions: Sondi and Kat8mouse

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
No idea. Just "went out" around 7:30. Someone even called after I reported it to ask the usual (did you hear anything, notice anything, etc). Still "under investigation" according to their map but seems like it's local whatever it is.

Wonder if these smart meters they installed are defective...
Aw, that ashame. You still earned way more than most people, including me.
 
  • Like
Reactions: catnapped

bxpretzel

Ari Gold
Contributor
HIT Poster
Joined
Jan 14, 2016
Messages
11,163
Reaction score
24,621
Points
1,438
Location
Appalachia
I /think/ if you add || and the other keycode after each e.which == XX (for each number) it should work.

Keypad 1 - 97
Keypad 2 - 98
Keypad 3 - 99

SO the first one in the code up there would be e.which == 50 || 98



I'm like 90% sure on that.

edit: Which means I"m probably wrong.
98 97 99 bxpretzel @bxpretzel try this

Code:
// ==UserScript==
// @name reks
// @description Helps you make choices
// @version 0.1.2a
// @author RicanGuy86
// @contributor Melting Glacier's 3rd rate tinkering for HIT change
// @grant none
// @include *.mturkcontent.com/*
// @include https://aitiaotu.com/*
// @include https://s3.amazonaws.com/*
// @require http://code.jquery.com/jquery-2.1.0.min.js
// ==/UserScript==

if ($('h4:contains(Playback Rate)').length){


$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();
$("a[class='btn-rate-higher']")[0].click();

$(document).ready(function(){


$(document).keydown(function(e){
if (e.which == 98){
$("a[class='btn-no']")[0].click(); // 2 no
}
if (e.which == 97){
$("a[class='btn-yes']")[0].click(); // 1 yes
}
if (e.which == 99){
$("a[class='btn-unsure']")[0].click(); // 3 unsure
}
if (e.which == 13){
$("button[id='btnSubmit']")[0].click(); // Enter submit
}
if (e.which == 66){
$("a[class='btn-back']")[0].click(); // B back
}
if (e.which == 82){
$("a[class='overlay']")[0].click(); // R replay (doesn't work consistently??)
}
});
});}
thank you guys!
 

Binxybaby

Well-Known Member
Joined
May 19, 2017
Messages
3,508
Reaction score
9,250
Points
813
Age
35
Gender
Female
YAY! I like bonuses!

Greetings from Amazon Mechanical Turk,

You've received a bonus from Research Lab for work related to 3KLL7H3EGD1HRRI8Q2WRUBXX8QUVHB.
The value of your bonus is: $0.25 USD

The Requester included this note:
bonus for reading task study 9-28-17
 
Status
Not open for further replies.