10/11 - Take My Chances Tuesday!

Status
Not open for further replies.

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,620
Reaction score
123,845
Points
1,414
Age
124
Gender
Female
  • Like
Reactions: <Gucci>

TurkingMaster

Crowd Master
Banned
Joined
Jan 12, 2016
Messages
5,932
Reaction score
9,945
Points
863
Age
38
Here is a script for the Noblis. It doesn't help much for the boxing, but you use the keys to advance
Code:
// ==UserScript==
// @name nobliscv faces
// @namespace http://tampermonkey.net/
// @version 0.1
// @description press 1 for next -- once its submittable 1 submits; 3 undoes last mark; a marks 'No Faces'; cursor to crosshair;
// @author JQKILL
// @include *s3.amazonaws.com/*
// @require http://code.jquery.com/jquery-2.1.0.min.js
// @grant GM_log
// ==/UserScript==

$(document).ready(function() {
    if ($("#instructions_boundingboxes").css('display') != 'none') { //sanity check -- should only work on specific HIT
        $("body").css('cursor', 'crosshair');
        $("button[id='submitbutton']").css('color', 'white');
        $("button[id='submitbutton']").css('background-color', 'red');
        $("div[id='button_div']").css('position', 'absolute');
        $("div[id='button_div']").css('top', '0');
        document.onkeydown = function (event) {
            if (event.keyCode == 49) { // 1 for 'next' until submit is active, then 'submit'
                if($('#nextbutton').css('display') == 'none'){
                    $("#submitbutton").click();
                }else{
                    $("#nextbutton").click();
                }
            }
            if (event.keyCode == 51) { // '3' for 'Undo'
                $("#undobutton").click();
            }
            if (event.keyCode == 65) { // 'a' for 'No Faces'
                $("#nofacesbutton").click();
            }
        };
    }
});
 

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,998
Reaction score
163,657
Points
3,238
Age
37
Gender
Male
Here is a script for the Noblis. It doesn't help much for the boxing, but you use the keys to advance
Code:
// ==UserScript==
// @name nobliscv faces
// @namespace http://tampermonkey.net/
// @version 0.1
// @description press 1 for next -- once its submittable 1 submits; 3 undoes last mark; a marks 'No Faces'; cursor to crosshair;
// @author JQKILL
// @include *s3.amazonaws.com/*
// @require http://code.jquery.com/jquery-2.1.0.min.js
// @grant GM_log
// ==/UserScript==

$(document).ready(function() {
    if ($("#instructions_boundingboxes").css('display') != 'none') { //sanity check -- should only work on specific HIT
        $("body").css('cursor', 'crosshair');
        $("button[id='submitbutton']").css('color', 'white');
        $("button[id='submitbutton']").css('background-color', 'red');
        $("div[id='button_div']").css('position', 'absolute');
        $("div[id='button_div']").css('top', '0');
        document.onkeydown = function (event) {
            if (event.keyCode == 49) { // 1 for 'next' until submit is active, then 'submit'
                if($('#nextbutton').css('display') == 'none'){
                    $("#submitbutton").click();
                }else{
                    $("#nextbutton").click();
                }
            }
            if (event.keyCode == 51) { // '3' for 'Undo'
                $("#undobutton").click();
            }
            if (event.keyCode == 65) { // 'a' for 'No Faces'
                $("#nofacesbutton").click();
            }
        };
    }
});
 

Debatesmith

I post GIF's more than I actually work
Contributor
Joined
Jan 22, 2016
Messages
1,855
Reaction score
4,695
Points
588
Age
32
Gender
Male
I've gotten 80 3 times in a row. Blarg :arghh::arghh::arghh:
 
  • Like
Reactions: <Gucci>

<Gucci>

Francis Manancis ...fuck you...
Threaderator
Crowd Pleaser
HIT Poster
Joined
Feb 6, 2016
Messages
13,614
Reaction score
29,767
Points
1,739
Age
39
Location
Detroit
Gender
Female
Title: Study about Online Distractions and Workers Performance | PANDA
Requester: Research Lab [A1TOCEZJHRZJVG] (TO)
TO Ratings:
★★★★ 4.43 Communicativity
★★★★ 4.42 Generosity
★★★★ 4.89 Fairness
★★★★ 4.85 Promptness
Number of Reviews: 56 | TOS Flags: 6
Submit a new TO review
Description: Take this Survey ($5.5 about 40 min) and have the chance to participate in subsequent HITs (part of a larger study) and earn up to $21.5
Time: 2 hours 30 minutes
HITs Available: 1
Reward: $5.50
Qualifications: Already participated in similar HIT has not been granted;Total approved HITs is not less than 500;HIT approval rate (%) is not less than 95;Location is US
 
  • Like
Reactions: TurkingMaster

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
Here is a script for the Noblis. It doesn't help much for the boxing, but you use the keys to advance
Code:
// ==UserScript==
// @name nobliscv faces
// @namespace http://tampermonkey.net/
// @version 0.1
// @description press 1 for next -- once its submittable 1 submits; 3 undoes last mark; a marks 'No Faces'; cursor to crosshair;
// @author JQKILL
// @include *s3.amazonaws.com/*
// @require http://code.jquery.com/jquery-2.1.0.min.js
// @grant GM_log
// ==/UserScript==

$(document).ready(function() {
    if ($("#instructions_boundingboxes").css('display') != 'none') { //sanity check -- should only work on specific HIT
        $("body").css('cursor', 'crosshair');
        $("button[id='submitbutton']").css('color', 'white');
        $("button[id='submitbutton']").css('background-color', 'red');
        $("div[id='button_div']").css('position', 'absolute');
        $("div[id='button_div']").css('top', '0');
        document.onkeydown = function (event) {
            if (event.keyCode == 49) { // 1 for 'next' until submit is active, then 'submit'
                if($('#nextbutton').css('display') == 'none'){
                    $("#submitbutton").click();
                }else{
                    $("#nextbutton").click();
                }
            }
            if (event.keyCode == 51) { // '3' for 'Undo'
                $("#undobutton").click();
            }
            if (event.keyCode == 65) { // 'a' for 'No Faces'
                $("#nofacesbutton").click();
            }
        };
    }
});
Thanks so much, anything less I can do with a mouse is really helpful.
Which, by the way, anyone know of a mouse that works telepathically? Oooh how about a mop and a vaccuum? Or a husband?
 

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
Got 75 1st time...read the instructions and got 60...then did it one more time and got 85...screw it, I want lunch
 
  • Like
Reactions: <Gucci>

bigsexy420

New Member
Joined
Oct 10, 2016
Messages
66
Reaction score
83
Points
218
Age
39
Gender
Male

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,620
Reaction score
123,845
Points
1,414
Age
124
Gender
Female
Title: Survey about attitudes toward being gay - Please identify as a GAY BLACK MAN(~ 25 minutes) | PANDA
Requester: University of Kansas - Adrian Villicana [AQZ378OSIIXQY] (Contact)
(TO): [Pay: 4.15] [Fair: 5.00] [Comm: 5.00] [Fast: 5.00]
Description:
Give us your thoughts on how you perceive yourself as a Gay Black Man
Time: 45 minutes(s)
HITs Available: 1
Reward: $1.00
Qualifications: Exc: [-601084646-23266] DoesNotExist; Total approved HITs GreaterThanOrEqualTo 100; HIT approval rate (%) GreaterThanOrEqualTo 85; Location In US;

obviously can't do this, but they have good TO so I'm guessing they aren't as long as the estimate.
 
  • Like
Reactions: <Gucci>

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,620
Reaction score
123,845
Points
1,414
Age
124
Gender
Female
Title: Women's Perception of Romance | PANDA
Requester: Tom [A3EERPXXD6GVGJ] (Contact)
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
This is a scientific study on women's perception of romance. You MUST be a woman. Watch a 3 minute video. Take a test identifying a color as quickly as possible. Requires download of a player easily deleted.
Time: 30 minutes(s)
HITs Available: 1
Reward: $1.00
Qualifications: Masters Exists;

inquisit so fuck all that.
 

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
Title: Social Issues | PANDA
Requester: SPLab [AVLLASUMMIDOB] (TO)
TO Ratings:

★★★★★ 0.00 Communicativity
★★★★★ 2.00 Generosity
★★★★★ 5.00 Fairness
★★★★ 4.67 Promptness
Number of Reviews: 12
(Submit a new TO rating for this requester)

Description: You will be asked to rate a series of images based on your gut reactions.
Time: 3 hours
Hits Available: 3
Reward: $1.50
Qualifications: HIT approval rate (%) is not less than 95; Location is US
 
  • Like
Reactions: <Gucci>

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
Title: Typing Accuracy(~ 10 minutes) | PANDA
Requester: GEMS Lab [A11T8FV5IJG5KU] (TO)
TO Ratings:

★★★★★ 3.62 Communicativity
★★★★ 4.05 Generosity
★★★★ 4.59 Fairness
★★★★ 4.58 Promptness
Number of Reviews: 65
(Submit a new TO rating for this requester)

Description: This study consists of two separate surveys
Time: 60 minutes
Hits Available: 1
Reward: $0.75
Qualifications: Exc: [-1060548629-23358] has not been granted; Location is one of: US
 
  • Like
Reactions: <Gucci>

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,620
Reaction score
123,845
Points
1,414
Age
124
Gender
Female
Title: Study about Online Distractions and Workers Performance | PANDA
Requester: Research Lab [A1TOCEZJHRZJVG] (Contact)
(TO): [Pay: 4.42] [Fair: 4.89] [Comm: 4.43] [Fast: 4.85]
Description:
Take this Survey ($5.5 about 40 min) and have the chance to participate in subsequent HITs (part of a larger study) and earn up to $21.5
Time: 2 hour(s) 30 minutes(s)
HITs Available: 1
Reward: $5.50
Qualifications: Already participated in similar HIT DoesNotExist; Total approved HITs GreaterThanOrEqualTo 500; HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US;
 
  • Like
Reactions: <Gucci>

carbonmonoxyd

Active Member
Joined
May 20, 2016
Messages
807
Reaction score
955
Points
343
Last edited:
Status
Not open for further replies.