03/31 - Trick's Eve Thursday!

Have you voted for Crowd Pleaser this month?

  • No, http://www.mturkcrowd.com/threads/crowd-pleaser-voting-march-2016.396/

    Votes: 20 23.5%
  • Yes I did, please leave me alone.

    Votes: 65 76.5%

  • Total voters
    85
  • Poll closed .
Status
Not open for further replies.

Lepi

Some Kind of Sneaky Witch Thief
Contributor
Joined
Jan 12, 2016
Messages
12,892
Reaction score
8,050
Points
1,213
Gender
Female

Lepi

Some Kind of Sneaky Witch Thief
Contributor
Joined
Jan 12, 2016
Messages
12,892
Reaction score
8,050
Points
1,213
Gender
Female
Title: Survey on Computer Usage and Personal Characteristics | PANDA
Requester: NYU Research [A3D1PYJMVZAYN2] (Contact)
(TO):[Pay: 5.00][Fair: 5.00][Comm: 0.00][Fast: 5.00]
Description:
Answer questions regarding your computer usage and personal characteristics.
Time: 60 minutes
Hits Available: 1
Reward: $1.00
Qualifications: Masters has been granted, HIT approval rate (%) is not less than 95, Total approved HITs is greater than 50, Location is US
 
  • Like
Reactions: raggamuffin

Just Matthew

And the bottom drops out.
Contributor
Joined
Jan 23, 2016
Messages
1,563
Reaction score
2,854
Points
588
Age
41
Gender
Male
/sigh only at 3035 submitted after all the good batches today...need to finish it off and there is nothing I want to work on.
 

RaiderJ

Member
Contributor
Joined
Jan 23, 2016
Messages
490
Reaction score
1,190
Points
268
Age
46
Location
Los Angleles
Gender
Male
Title: Survey on Computer Usage and Personal Characteristics | PANDA
Requester: NYU Research [A3D1PYJMVZAYN2] (Contact)
(TO):[Pay: 5.00][Fair: 5.00][Comm: 0.00][Fast: 5.00]
Description:
Answer questions regarding your computer usage and personal characteristics.
Time: 60 minutes
Hits Available: 1
Reward: $1.00
Qualifications: Masters has been granted, HIT approval rate (%) is not less than 95, Total approved HITs is greater than 50, Location is US
4 minutes going slow
 

klyde

No, I don't want to see your pog collection
Contributor
Joined
Mar 24, 2016
Messages
3,302
Reaction score
5,497
Points
838
Gender
Male
Can someone please please just reverse the keys. Im looking through the script but i dont understand it. I want it like the venue script. A = YES. B = NO. Please Please Please. SInce i asked so nicely.
// ==UserScript==
// @name Zing on Mturk
// @version 1.0
// @description Hot keys and hidden Instructions for are these receipts the same
// @author Cristo
// @include https://backend.ibotta.com/duplicate_receipt_moderation*
// @copyright 2012+, You
// @namespace https://greasyfork.org/users/1973
// ==/UserScript==

//Key A and 1 on the number pad for No, Key S and 2 on the number pad for Yes, auto submits after answer
var contain = document.getElementsByClassName("container")[0];
contain.tabIndex = "0";
contain.focus();
var inDiv = document.createElement("div");
var h1 = document.getElementsByTagName("h1")[0];
var p1 = document.getElementsByTagName("p")[0];
var p2 = document.getElementsByTagName("p")[1];
var ul = document.getElementsByTagName("ul")[0];
var hr = document.getElementsByTagName("hr")[0];
var no = document.getElementById("duplicatefalse");
var yes = document.getElementById("duplicatetrue");
var sub = document.getElementsByClassName("btn")[0];
contain.insertBefore(inDiv, contain.firstChild);
inDiv.appendChild(h1);
inDiv.appendChild(p1);
inDiv.appendChild(p2);
inDiv.appendChild(ul);
inDiv.appendChild(hr);
var but = document.createElement("button");
but.innerHTML = "Instructions"
contain.parentNode.insertBefore(but,contain);
inDiv.style.display = "none";
but.addEventListener("mousedown",function() {
if (inDiv.style.display == "none") {
inDiv.style.display = "block";
} else if (inDiv.style.display == "block") {
inDiv.style.display = "none";
}}, false);
document.addEventListener("keydown",function(i) {
if (i.keyCode == 65 || i.keyCode == 97) {
no.click();
sub.click();
}
if (i.keyCode == 83 || i.keyCode == 98) {
yes.click();
sub.click();
}}, false);
 

Kathryn

¯\_(ツ)_/¯
Contributor
Joined
Jan 23, 2016
Messages
2,341
Reaction score
4,156
Points
588
Gender
Female
Can someone please please just reverse the keys. Im looking through the script but i dont understand it. I want it like the venue script. A = YES. B = NO. Please Please Please. SInce i asked so nicely.
Just change the keyCode to the number of the letter you want.
 

Aydiarose

Kinkguin 0f d00m
Contributor
Joined
Jan 12, 2016
Messages
2,399
Reaction score
5,261
Points
888
Can someone please please just reverse the keys. Im looking through the script but i dont understand it. I want it like the venue script. A = YES. B = NO. Please Please Please. SInce i asked so nicely.
// ==UserScript==
// @name Zing on Mturk
// @version 1.0
// @description Hot keys and hidden Instructions for are these receipts the same
// @author Cristo
// @include https://backend.ibotta.com/duplicate_receipt_moderation*
// @copyright 2012+, You
// @namespace https://greasyfork.org/users/1973
// ==/UserScript==

//Key A and 1 on the number pad for No, Key S and 2 on the number pad for Yes, auto submits after answer
var contain = document.getElementsByClassName("container")[0];
contain.tabIndex = "0";
contain.focus();
var inDiv = document.createElement("div");
var h1 = document.getElementsByTagName("h1")[0];
var p1 = document.getElementsByTagName("p")[0];
var p2 = document.getElementsByTagName("p")[1];
var ul = document.getElementsByTagName("ul")[0];
var hr = document.getElementsByTagName("hr")[0];
var no = document.getElementById("duplicatefalse");
var yes = document.getElementById("duplicatetrue");
var sub = document.getElementsByClassName("btn")[0];
contain.insertBefore(inDiv, contain.firstChild);
inDiv.appendChild(h1);
inDiv.appendChild(p1);
inDiv.appendChild(p2);
inDiv.appendChild(ul);
inDiv.appendChild(hr);
var but = document.createElement("button");
but.innerHTML = "Instructions"
contain.parentNode.insertBefore(but,contain);
inDiv.style.display = "none";
but.addEventListener("mousedown",function() {
if (inDiv.style.display == "none") {
inDiv.style.display = "block";
} else if (inDiv.style.display == "block") {
inDiv.style.display = "none";
}}, false);
document.addEventListener("keydown",function(i) {
if (i.keyCode == 65 || i.keyCode == 97) {
no.click();
sub.click();
}
if (i.keyCode == 83 || i.keyCode == 98) {
yes.click();
sub.click();
}}, false);
http://keycode.info/
use this find the keycode you need
 

P L A Y E R 9 1

Don't Mind The Salt!
Contributor
Joined
Jan 12, 2016
Messages
3,588
Reaction score
12,747
Points
838
Location
Los Angeles
Been out most of the day so my Projected earnings for today looks like s***. What did i miss today?
 
  • Like
Reactions: Kerek
Status
Not open for further replies.