08/07 - Shooting Sunday!

Status
Not open for further replies.

MindNumbing

Well-Known Member
Contributor
Joined
Jan 12, 2016
Messages
5,971
Reaction score
10,565
Points
1,013
Gender
Female
Title: Survey about decision-making | PANDA
Requester: DM Lab [AWG0YCJ4MDBU1] (Contact)
(TO): [Pay: 5.00] [Fair: 0.00] [Comm: 0.00] [Fast: 0.00]
Description:
Which gamble would you choose?
Time: 60 minutes
HITs Available: 1
Reward: $2.00
Qualifications: Masters has been granted; HIT approval rate (%) is greater than 95; Location is US;
 

Tuesday

Banned
Banned
Contributor
Joined
Jan 12, 2016
Messages
3,688
Reaction score
4,021
Points
388
Age
44
Gender
Female
Tuesday @Tuesday you doing more description HITs? Taking a break and then plan on going ham on them. Goal is around C @carbonmonoxyd 's number
I'm working on them slowly, but I'll probably stop and go relax for the rest of the night soon. The videos are loading rather slowly tonight, plus I've got about 1500 hits that have been pending for the last 3 days, and I still don't really trust this requester yet.

I'm curious how big the batch is though. The number of hits has been sitting at 1000 ever since it went up.
 

weakman

Well-Known Member
Joined
Feb 5, 2016
Messages
1,593
Reaction score
2,055
Points
513
Age
31
Gender
Male
This is one of the worse weekends in recent memories.
 
  • Like
Reactions: jan

AlphaFemale

Active Member
Contributor
Joined
Jun 28, 2016
Messages
638
Reaction score
1,099
Points
468
Age
37
Location
West Virginia
Gender
Female
I am imagining a script for all these Andrew Shen hits that automatically puts 'yes' in both spots. I can't figure out how to make it work myself. I've tried for like an hour and it's just wasting all the time I could be spending trying to get my numbers up.

Or, better yet. '1' to select yes, yes, submit. '2' to select yes, no, submit. '3' to select no, no, submit.
 

MindNumbing

Well-Known Member
Contributor
Joined
Jan 12, 2016
Messages
5,971
Reaction score
10,565
Points
1,013
Gender
Female

ellie

not to disappear
Joined
Jul 22, 2016
Messages
257
Reaction score
736
Points
293
Age
32
Location
Oregon
Gender
Female
Man this has some effed up scenarios...

Title: Psychology Survey [~22 min] | PANDA
Requester: PsychLabAtBC [A10M90Y8PUKQ1E] (Contact)
(TO): [Pay: 3.39] [Fair: 4.70] [Comm: 3.54] [Fast: 4.72]
Description:
Judge different moral violations
Time: 40 minutes
HITs Available: 1
Reward: $1.35
Qualifications: HIT approval rate (%) is not less than 94; Location is US;
has writing but easy, maybe like 10 mins or so
 

VGB

dr. peepee poopoo
Joined
Jan 21, 2016
Messages
5,753
Reaction score
15,213
Points
1,038
Age
38
Location
Milwaukee via Boston
Gender
Male
Or, better yet. '1' to select yes, yes, submit. '2' to select yes, no, submit. '3' to select no, no, submit.
if I could see these HITs I feel like this would be pretty easy to do

are the y/n selections bubbles? "send {tab}" (to select the correct bubble) and "send {space}" (to fill said bubble/activate the submit) would seem to be a pretty easy combo with AHK
 

Yuk

Member
Joined
Jul 10, 2016
Messages
685
Reaction score
1,572
Points
393
Age
124
  • Like
Reactions: VGB

ShanaMarie

Not all who wander are lost.
Contributor
Joined
Apr 19, 2016
Messages
1,927
Reaction score
2,378
Points
438
Age
55
Location
Camas, WA
Gender
Female
Title: Pre-Screening for a Study on Social Networks and Interactions | PANDA
Requester: Jennifer T Kubota [AOZ6M26K9AUEX] (TO)
TO Ratings:
★★★★★ 3.38 Communicativity
★★★★★ 3.10 Generosity
★★★★ 4.47 Fairness
★★★★ 4.49 Promptness
Number of Reviews: 77 | TOS Flags: 1
Submit a new TO review
Description: Qualtrics: 2 question eligibility survey. Will take a maximum of 1 minute to complete.
Time: 60 minutes
HITs Available: 1
Reward: $0.10
Qualifications: Pre-Screen Race-Contact Replication has not been granted;IntergroupContactExclusion has not been granted;HIT approval rate (%) is greater than 65;Race_W has not been granted;Location is US
 

ShanaMarie

Not all who wander are lost.
Contributor
Joined
Apr 19, 2016
Messages
1,927
Reaction score
2,378
Points
438
Age
55
Location
Camas, WA
Gender
Female
Title: Pre-Screening for a Study on Social Networks and Interactions | PANDA
Requester: Jennifer T Kubota [AOZ6M26K9AUEX] (TO)
TO Ratings:
★★★★★ 3.38 Communicativity
★★★★★ 3.10 Generosity
★★★★ 4.47 Fairness
★★★★ 4.49 Promptness
Number of Reviews: 77 | TOS Flags: 1
Submit a new TO review
Description: Qualtrics: 2 question eligibility survey. Will take a maximum of 1 minute to complete.
Time: 60 minutes
HITs Available: 1
Reward: $0.10
Qualifications: Pre-Screen Race-Contact Replication has not been granted;IntergroupContactExclusion has not been granted;HIT approval rate (%) is greater than 65;Race_W has not been granted;Location is US
15 seconds.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
AlphaFemale @Jenningka
Code:
// ==UserScript==
// @name  Andrew Shin
// @namespace  Sarahashlee90
// @description up arrow for YY submit, right arrow for YN submit, down arrow for NN submit
// @include  https://s3.amazonaws.com/*
// @version  1
// @grant  GM_log
// @require  https://code.jquery.com/jquery-2.1.4.min.js
// ==/UserScript==



window.onkeydown = function (event) {
     if(event.which == 38){  //up arrow hotkey
     
       $(".row > fieldset:nth-child(6) > div:nth-child(2) > label:nth-child(1) > input:nth-child(1)").click();
       $(".row > fieldset:nth-child(7) > div:nth-child(2) > label:nth-child(1) > input:nth-child(1)").click();
       $("#submitButton").click();
     }
     if(event.which == 39){                                 //right arrow hotkey
       $(".row > fieldset:nth-child(6) > div:nth-child(2) > label:nth-child(1) > input:nth-child(1)").click();
       $(".row > fieldset:nth-child(7) > div:nth-child(3) > label:nth-child(1) > input:nth-child(1)").click();
       $("#submitButton").click();
     }
     if(event.which == 40){                                   //down arrow hotkey
       $(".row > fieldset:nth-child(6) > div:nth-child(3) > label:nth-child(1) > input:nth-child(1)").click();
       $(".row > fieldset:nth-child(7) > div:nth-child(3) > label:nth-child(1) > input:nth-child(1)").click();
       $("#submitButton").click();
     }
   
}
Use the up arrow for YY, the right arrow for YN, and the down arrow for NN.

I put an auto-submit on there but I have no idea if it works and I cant test it.
 
Last edited:
Status
Not open for further replies.