06/05 - Happy Dead Duck Sunday!

Status
Not open for further replies.

BlurryFace

Antisocial Optimist
Contributor
Joined
Jan 13, 2016
Messages
631
Reaction score
1,224
Points
418
Age
47
Location
Ohio
Gender
Male
Thanks for the info..... That changes things me thinks. Time to ham....
If it helps & you use AHK:
EDIT: I should add I use scroll to workspace. You may need to adjust the number of 'tabs' depending on your set up.

Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


^z:: ;  Ctrl+z For YES
Send {Tab 5}
Sleep 50
Send {Space}
Sleep 50
Send {Enter}
return

^x:: ; Ctrl+x For No
Send {Tab 6}
Sleep 50
Send {Space}
Sleep 50
Send {Enter}
return

^c:: ; Ctrl+c For Skip
Send {Tab 7}
Sleep 50
Send {Space}
Sleep 50
Send {Enter}
return

I think I would just rather do a survey at this point :D
I agree, did my share and moving on.
 

BrewMeister

1) d4
Contributor
Joined
May 1, 2016
Messages
1,987
Reaction score
5,130
Points
838
Gender
Male

Req.body

Crow
Contributor
Joined
Feb 2, 2016
Messages
1,404
Reaction score
2,574
Points
788
Age
31
If it helps & you use AHK:
EDIT: I should add I use scroll to workspace. You may need to adjust the number of 'tabs' depending on your set up.

Code:
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


^z:: ;  Ctrl+z For YES
Send {Tab 5}
Sleep 50
Send {Space}
Sleep 50
Send {Enter}
return

^x:: ; Ctrl+x For No
Send {Tab 6}
Sleep 50
Send {Space}
Sleep 50
Send {Enter}
return

^c:: ; Ctrl+c For Skip
Send {Tab 7}
Sleep 50
Send {Space}
Sleep 50
Send {Enter}
return



I agree, did my share and moving on.
i'm hitting ctr+z it's not working
 

BlurryFace

Antisocial Optimist
Contributor
Joined
Jan 13, 2016
Messages
631
Reaction score
1,224
Points
418
Age
47
Location
Ohio
Gender
Male
i'm hitting ctr+z it's not working
Easiest way to figure out. Accept a HIT, press 'tab' and see how many times it takes to get to 'yes', adjust the AHK to that. Also edit the 'no' and 'skip' to your system.

It all varies to what other scripts you have.

HTH's
 

BlurryFace

Antisocial Optimist
Contributor
Joined
Jan 13, 2016
Messages
631
Reaction score
1,224
Points
418
Age
47
Location
Ohio
Gender
Male
Still out here:

Title: Part 1 of week-long daily survey on sleep (BONUS for full completion) | PANDA
Requester: Eli Awtrey [A2B7W6XX6VVHPQ] (TO)
TO Ratings:

☢☢☢☢☢ 0.00 Communicativity
☢☢☢☢☢ 5.00 Generosity
☢☢☢☢☢ 5.00 Fairness
☢☢☢☢☢ 5.00 Promptness
Number of Reviews: 4
(Submit a new TO rating for this requester)

Description: (NOTE: Only complete this HIT if you are willing to participate in 10 shortsurveys for a week.) We are recruiting full-time working adults for a study of daily sleep, conducted by researchers at the University of Washington (US). You will be asked to complete an entry questionnaire (this HIT), which will take approximately 15 minutes. Starting next week (June 6-10), you will be asked to complete 2 surveys per day at the beginning and end of work each day for 5 days. The daily surveys should take approximately 3 minutes to complete. We will contact you via an email sent through MTurk with a link to the corresponding HIT for each survey session. You will be paid $1.50 for completing the entry survey, and $0.30 for each daily survey. For a total of about 45 minutes of survey time, we will give you $4.50. IF YOU COMPLETE ALL SURVEYS ON TIME, WE WILL GIVE YOU A $2.00 BONUS.
Time: 60 minutes
Hits Available: 2
Reward: $1.50
Qualifications: Already completed HIT has not been granted; Total approved HITs is greater than 50; Location is US
 

TurkingMaster

Crowd Master
Banned
Joined
Jan 12, 2016
Messages
5,932
Reaction score
9,945
Points
863
Age
38
10 minutes

Title: NBC_Muesli_NFC | PANDA
Requester: Jessica Turi [A1OMTS5QV5MC4N] (TO)
TO Ratings:

☢☢☢☢☢ 2.43 Communicativity
☢☢☢☢☢ 2.49 Generosity
☢☢☢☢☢ 4.44 Fairness
☢☢☢☢☢ 4.60 Promptness
Number of Reviews: 50
(Submit a new TO rating for this requester)

Description: In this study, we present you a simple decision task.
Time: 60 minutes
Hits Available: 1
Reward: $0.80
Qualifications: HIT approval rate (%) is not less than 95; Location is US
 

Req.body

Crow
Contributor
Joined
Feb 2, 2016
Messages
1,404
Reaction score
2,574
Points
788
Age
31
I got it to work a little cept the part where I have to click in the hits box and click the shortcut key to submit. anyone know where i'm going wrong with this ?
 

BlurryFace

Antisocial Optimist
Contributor
Joined
Jan 13, 2016
Messages
631
Reaction score
1,224
Points
418
Age
47
Location
Ohio
Gender
Male
I got it to work a little cept the part where I have to click in the hits box and click the shortcut key to submit. anyone know where i'm going wrong with this ?
As stated, it's probably the scripts your using (or lack of). You should be able to just adjust the 'tabs' to what you need. Even if it's 20 tabs, it would still work. Remove the last part of each (the 'send {enter}' part to stop it from submitting. Test, and readjust, and welcome to scripting with AHK :)
 
  • Like
Reactions: Req.body

Req.body

Crow
Contributor
Joined
Feb 2, 2016
Messages
1,404
Reaction score
2,574
Points
788
Age
31
As stated, it's probably the scripts your using (or lack of). You should be able to just adjust the 'tabs' to what you need. Even if it's 20 tabs, it would still work. Remove the last part of each (the 'send {enter}' part to stop it from submitting. Test, and readjust, and welcome to scripting with AHK :)
god dammit lol thank you tho <3
 
  • Like
Reactions: BlurryFace

BlurryFace

Antisocial Optimist
Contributor
Joined
Jan 13, 2016
Messages
631
Reaction score
1,224
Points
418
Age
47
Location
Ohio
Gender
Male
  • Like
Reactions: TurkingMaster

Katiee

Member
Contributor
Joined
Jan 12, 2016
Messages
236
Reaction score
568
Points
418
Age
38
Gender
Female
Good morning, all! I am back with coffee, upgraded internet speed, and a new router. I couldn't sleep, so I figured right now would be better than ever to start regaining my losses from my night of debauchery in New Orleans. Bills.
 

BrewMeister

1) d4
Contributor
Joined
May 1, 2016
Messages
1,987
Reaction score
5,130
Points
838
Gender
Male
If you had told me three months ago I could get paid for customizing my own nut, twig, and berry crunch I would have thought you had gone starkers and needed sectioning......

MTruk: The Adventure Continues.....
 

Katiee

Member
Contributor
Joined
Jan 12, 2016
Messages
236
Reaction score
568
Points
418
Age
38
Gender
Female
People always ask me what I do. I never know how to answer. Look at porn? Google stuff? So I'm pretty sure people think I make .05 a day. My mom, bless her heart, probably thinks I'm full of shit or that I'm doing something sketchy. When I travel and say I need to go work, she probably thinks I'm just trying to escape.
*edit*
 
Last edited:
  • Like
Reactions: BrewMeister
Status
Not open for further replies.