- Joined
- Jan 11, 2016
- Messages
- 12,350
- Reaction score
- 20,568
- Points
- 1,388
- Age
- 32
- Location
- Long Beach, CA
- Gender
- Male
My wine is empty as well Whooster.
My wine is empty as well Whooster.
good limit, I also try to avoid working more than 10 days a week.25 hours
My record is 22 hours.How long is too long to be on mturk in one day?
Good. More for me.If I do any more globals, my fingers are going to fall off.
What do you mean? Great pay, clear instructions, good communication, responsive servers....they're great.My record is 22 hours.
Think I worked 60 out of 72 hours during a 3 day span.
I would not recommend it or VDX in general.
// ==UserScript==
// @name A9 - Category Validation
// @namespace http://kadauchi.com/
// @version 1.0.0
// @description Does stuff.
// @author Kadauchi
// @icon http://kadauchi.com/avatar4.jpg
// @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant GM_log
// @require https://code.jquery.com/jquery-3.1.0.min.js
// @hitname Category Validation (WARNING: This HIT may contain adult content. Worker discretion is advised.)
// @hitsave https://s3.amazonaws.com/mturk_bulk/hits/213127554/gNnUF_IpktVYa17QxCSO9A.html?assignmentId=3X4JMASXCNVZ9TN9O0BG0AVJHJXB0L&hitId=3XBYQ44Z6PQPQLKHRRQLIFEOLZWTW7
// ==/UserScript==
_category_validation();
function _category_validation () {
if ($('u:contains(What we are looking for will change after every HIT!)').length) {
// Keybinds
$(document).keydown(function (e) {
switch (e.which) {
case 96: // Numpad 0
$('#noItem').click();
break;
case 98: // Numpad 2
$('#oneItem, #noPersonal, #noCatalog, #noOverlay').click();
break;
case 99: // Numpad 3
$('#multipleItem, #noPersonal, #noCatalog, #noOverlay').click();
break;
case 102: // Numpad 6
$('#yesOverlay').click();
break;
case 103: // Numpad 7
$('#yesPersonal').click();
break;
case 105: // Numpad 9
$('#yesCatalog').click();
break;
case 13: // Enter
$('#submitButton').click();
break;
}
});
console.log('activated');
}
}
/*
Jharkan @MTC
http://www.mturkcrowd.com/posts/349481/
Numpad0::
send {tab}{space}
return
Numpad1::
send {tab}{down}
sleep, 100
send {tab 2}{right}{tab}{right}{tab}{right}
return
Numpad2::
send {tab}{down 2}
sleep, 100
send {tab 2}
send {right}{tab}{right}{tab}{right}
return
Numpad6::
send {left}
return
Numpad7::
send, {shift down}{tab}{tab}{shift up}
send {left}
return
Numpad9::
send, {shift down}{tab}{shift up}
send {left}
return
^9::
suspend
return
^3::
ExitApp
*/
Now how do we use a userscript? I just got AHK like two weeks ago.@Jharkan 's A9 AHK converted to a userscript.
Code:// ==UserScript== // @name A9 - Category Validation // @namespace http://kadauchi.com/ // @version 1.0.0 // @description Does stuff. // @author Kadauchi // @icon http://kadauchi.com/avatar4.jpg // @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/ // @grant GM_log // @require https://code.jquery.com/jquery-3.1.0.min.js // @hitname Category Validation (WARNING: This HIT may contain adult content. Worker discretion is advised.) // @hitsave https://s3.amazonaws.com/mturk_bulk/hits/213127554/gNnUF_IpktVYa17QxCSO9A.html?assignmentId=3X4JMASXCNVZ9TN9O0BG0AVJHJXB0L&hitId=3XBYQ44Z6PQPQLKHRRQLIFEOLZWTW7 // ==/UserScript== _category_validation(); function _category_validation () { if ($('u:contains(What we are looking for will change after every HIT!)').length) { // Keybinds $(document).keydown(function (e) { switch (e.which) { case 96: // Numpad 0 $('#noItem').click(); break; case 97: // Numpad 2 $('#oneItem, #noPersonal, #noCatalog, #noOverlay').click(); break; case 98: // Numpad 3 $('#multipleItem, #noPersonal, #noCatalog, #noOverlay').click(); break; case 102: // Numpad 6 $('#yesOverlay').click(); break; case 103: // Numpad 7 $('#yesPersonal').click(); break; case 105: // Numpad 9 $('#yesCatalog').click(); break; case 13: // Enter $('#submitButton').click(); break; } }); console.log('activated'); } } /* Jharkan @MTC http://www.mturkcrowd.com/posts/349481/ Numpad0:: send {tab}{space} return Numpad1:: send {tab}{down} sleep, 100 send {tab 2}{right}{tab}{right}{tab}{right} return Numpad2:: send {tab}{down 2} sleep, 100 send {tab 2} send {right}{tab}{right}{tab}{right} return Numpad6:: send {left} return Numpad7:: send, {shift down}{tab}{tab}{shift up} send {left} return Numpad9:: send, {shift down}{tab}{shift up} send {left} return ^9:: suspend return ^3:: ExitApp */
Tips for Finding Contact Information
Look at first google search result and look for the contact information. If you don't easily find it, then go to the 2nd or 3rd link within the search results.
Install the extension tampermonkey for chrome or greasemonkey for firefox. The open it up, hit new userscript, then paste all the code in there and hit save.Now how do we use a userscript? I just got AHK like two weeks ago.
you messed up I think ( i might be wrong.)@Jharkan 's A9 AHK converted to a userscript.
Code:// ==UserScript== // @name A9 - Category Validation // @namespace http://kadauchi.com/ // @version 1.0.0 // @description Does stuff. // @author Kadauchi // @icon http://kadauchi.com/avatar4.jpg // @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/ // @grant GM_log // @require https://code.jquery.com/jquery-3.1.0.min.js // @hitname Category Validation (WARNING: This HIT may contain adult content. Worker discretion is advised.) // @hitsave https://s3.amazonaws.com/mturk_bulk/hits/213127554/gNnUF_IpktVYa17QxCSO9A.html?assignmentId=3X4JMASXCNVZ9TN9O0BG0AVJHJXB0L&hitId=3XBYQ44Z6PQPQLKHRRQLIFEOLZWTW7 // ==/UserScript== _category_validation(); function _category_validation () { if ($('u:contains(What we are looking for will change after every HIT!)').length) { // Keybinds $(document).keydown(function (e) { switch (e.which) { case 96: // Numpad 0 $('#noItem').click(); break; case 97: // Numpad 2 $('#oneItem, #noPersonal, #noCatalog, #noOverlay').click(); break; case 98: // Numpad 3 $('#multipleItem, #noPersonal, #noCatalog, #noOverlay').click(); break; case 102: // Numpad 6 $('#yesOverlay').click(); break; case 103: // Numpad 7 $('#yesPersonal').click(); break; case 105: // Numpad 9 $('#yesCatalog').click(); break; case 13: // Enter $('#submitButton').click(); break; } }); console.log('activated'); } } /* Jharkan @MTC http://www.mturkcrowd.com/posts/349481/ Numpad0:: send {tab}{space} return Numpad1:: send {tab}{down} sleep, 100 send {tab 2}{right}{tab}{right}{tab}{right} return Numpad2:: send {tab}{down 2} sleep, 100 send {tab 2} send {right}{tab}{right}{tab}{right} return Numpad6:: send {left} return Numpad7:: send, {shift down}{tab}{tab}{shift up} send {left} return Numpad9:: send, {shift down}{tab}{shift up} send {left} return ^9:: suspend return ^3:: ExitApp */
Groovy. I do have tampermonkey. I need to learn more about scripting in general. Is there anything you can recommend to me and thank you! You do amazing things!Install the extension tampermonkey for chrome or greasemonkey for firefox. The open it up, hit new userscript, then paste all the code in there and hit save.