02/09 - Tales of Thursday!

Status
Not open for further replies.

WalkingEmphasis

Banned
Banned
Contributor
Joined
Apr 11, 2016
Messages
4,424
Reaction score
8,154
Points
888
Title: Study on task performance | PANDA
Requester: ETH DeSciL [A13FVLMLUTH7ND] (Contact)
(TO): [Pay: 4.68] [Fair: 4.95] [Comm: 4.73] [Fast: 4.92]
Description:
Position a set of sliders in a limited time and receive a bonus up to USD 0.5.
Time: 30 minutes(s)
HITs Available: 1
Reward: $0.50
Qualifications: Descil-E-443BBCEF DoesNotExist; Location In US;

Bonus in task
 

DCI

Well-Known Member
Joined
Jan 14, 2016
Messages
1,997
Reaction score
6,223
Points
763
Age
46
Location
212
Gender
Male
National Pizza Day indeed.

I'm still calling it World Pizza Day, because that's what it said on a Yellow Cab ad here and they ran a 299PHP unlimited pizza/drink special, which isn't normally a thing here. I killed them btw.
 

Matilda Jones

Grey Ghost
Contributor
Joined
Jan 24, 2016
Messages
4,608
Reaction score
6,757
Points
788
Gender
Female
D

Deleted member 481

Guest
My c-sats are screwed up! "The media could not be loaded,..."
 

TotalBabe

Well-Known Member
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
6,574
Reaction score
20,571
Points
1,213
Gender
Female
~3 mins.

Title: Answer a short 3-minute survey about your opinions | PANDA
Requester: Monika Hortnagl [A1VSM8D0XCU4N] (Contact)
TO: [Pay: 4.54] [Fair: 5.00] [Comm: 1.00] [Fast: 5.00] [Reviews: 15] [ToS: 0]
Description:
Help shape a future product
Time: 15 minutes
HITs Available: 1
Reward: $0.50
Qualifications: Masters has been granted; Total approved HITs is not less than 1000; HIT approval rate (%) is not less than 95;
 
  • Like
Reactions: sofaslug

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
Well I've completed my New Year's Resolutions.
I found the picture of Kadauchi @Kadauchi.
(hint: it's not in the faces thread).
1. You're a real person!
2. You're a good looking guy.
3. You do not look like the human version of Bender from
Anthology of Interest 2.

Also you may already have been aware of these things.

Well, I feel very accomplished. I guess I can take the rest of the year off.
 

WalkingEmphasis

Banned
Banned
Contributor
Joined
Apr 11, 2016
Messages
4,424
Reaction score
8,154
Points
888
Would anyone be interested in a floating Submit button for the Sergey's?
I would be. I like holding my left arm a certain way when I do batches (because of a rib injury) and if there was an actual submit button, it'd make it a lot easier on my rib. I don't know if it's worth it if I'm the only one wanting it, but I think it would be completely awesome!
 

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
35
Gender
Female
I would be. I like holding my left arm a certain way when I do batches (because of a rib injury) and if there was an actual submit button, it'd make it a lot easier on my rib. I don't know if it's worth it if I'm the only one wanting it, but I think it would be completely awesome!
Code:
// ==UserScript==
// @name         Sergey Submit 2.0
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  Add submit button
// @author       Squatty
// @match        https://www.mturkcontent.com/dynamic/*
// @grant        none
// @require      http://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

window.focus();

document.getElementById(`instructions`).style.display = `none`;
document.getElementById(`sample-task`).style.display = `none`;

document.body.insertAdjacentHTML(
  `beforeend`,
  `<div id="myDiv" class="submitpanel">` +
  `<p><button id="button1">Submit</button></p>` +
  `</div>`
);

document.head.insertAdjacentHTML(
  `beforeend`,
  `<style>` +
  `.submitpanel {margin:5px; background:lightblue; padding:2px 5px;}` +
  `.submitpanel {z-index:10; position:fixed; top:30%;right:50%; background:aliceblue; opacity:0.9; transform:translateX(50%);}` +
  `.submitpanel button {font-size: 12px; margin-right:2px; padding:1px;}` +
  `</style>`
);

document.getElementById(`button1`).addEventListener(`click`, function () {
  document.querySelector(`[type="submit"]`).click();
});
Dag I forgot to add something so it only works on these hits. I will work on that and let you know when I add it. For now, just turn it off, or you will have a submit button in the middle of all of your hits :)
 

WalkingEmphasis

Banned
Banned
Contributor
Joined
Apr 11, 2016
Messages
4,424
Reaction score
8,154
Points
888
Code:
// ==UserScript==
// @name         Sergey Submit 2.0
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  Add submit button
// @author       Squatty
// @match        https://www.mturkcontent.com/dynamic/*
// @grant        none
// @require      http://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

window.focus();

document.getElementById(`instructions`).style.display = `none`;
document.getElementById(`sample-task`).style.display = `none`;

document.body.insertAdjacentHTML(
  `beforeend`,
  `<div id="myDiv" class="submitpanel">` +
  `<p><button id="button1">Submit</button></p>` +
  `</div>`
);

document.head.insertAdjacentHTML(
  `beforeend`,
  `<style>` +
  `.submitpanel {margin:5px; background:lightblue; padding:2px 5px;}` +
  `.submitpanel {z-index:10; position:fixed; top:30%;right:50%; background:aliceblue; opacity:0.9; transform:translateX(50%);}` +
  `.submitpanel button {font-size: 12px; margin-right:2px; padding:1px;}` +
  `</style>`
);

document.getElementById(`button1`).addEventListener(`click`, function () {
  document.querySelector(`[type="submit"]`).click();
});
Dag I forgot to add something so it only works on these hits. I will work on that and let you know when I add it. For now, just turn it off, or you will have a submit button in the middle of all of your hits :)
Awesome! Thank you! :)
 

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
35
Gender
Female
i'd be more interested in something that collapses the instructions right away.
Code:
// ==UserScript==
// @name        Sergey Hide Instructions
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Hide instructions
// @author       Squatty
// @match        https://www.mturkcontent.com/dynamic/*
// @grant        none
// @require      http://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

window.focus();

$("#instructions").hide(); //hide instructions
$("#sample-task").hide(); //hide examples
 

Yatagarasu

all up in the videos, all on the records, dancin'
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 13, 2016
Messages
10,012
Reaction score
13,638
Points
2,238
Age
36
Gender
Female
Title: Rate the skill of a surgeon shown on a video clip | PANDA
Requester: C-SATS, Inc [A15ZSKX8TUCGEU] (Contact)
TO: [Pay: 3.23] [Fair: 4.16] [Comm: 4.00] [Fast: 4.61] [Reviews: 81] [ToS: 0]
Description:
This is a research study where you watch a video clip of a surgical procedure (no patient or surgeon identification is shown) and rate the skill level of the surgeon. (undefined)
Time: 45 minutes
HITs Available: 4
Reward: $1.02
Qualifications: Total approved HITs GreaterThanOrEqualTo 100; C-SATS Block DoesNotExist ; HIT approval rate (%) GreaterThanOrEqualTo 95;
HIT posted from Mturk Suite v1.5.0
 

Blue

Unlikeable Ass
Contributor
Joined
Jan 11, 2016
Messages
4,183
Reaction score
13,272
Points
838
Gender
Male
I would be. I like holding my left arm a certain way when I do batches (because of a rib injury) and if there was an actual submit button, it'd make it a lot easier on my rib. I don't know if it's worth it if I'm the only one wanting it, but I think it would be completely awesome!
easiest way to accomplish this might be to use a JS script to add a hotkey to the submit button... and then use an ahk script to make your right mouse button input that hotkey. This allows your mouse to be wherever is comfortable for you and still submit without having to move your pointer to wherever the submit button is floating.
 
Status
Not open for further replies.