- Joined
- Jun 18, 2018
- Messages
- 5,702
- Reaction score
- 19,163
- Points
- 1,013
- Age
- 47
- Gender
- Female
You andGuess I'm fighting you both
![Peachy](https://cdn.mturkcrowd.com/data/avatars/s/0/569.jpg?1564074770)
You andGuess I'm fighting you both
Title: Housing decision making task & short survey (~4 minutes, estimated $18.00/hour)(~ 4 minutes) | Accept Requester: krsol [AFGWWGK72TCK6] Contact TV: Hrly=$29.73 | Pay=Generous | Approval=~24 hrs | Comm=Unrated | Rej=0 | Blk=0 TO: Pay=5.00 | Fast=5.00 | Comm=0.00 | Fair=5.00 | Reviews=6 | ToS=0 TO2: No Reviews Reward: 1.20 Duration: 2:00:00 Available: 69 Description: Housing decision making task & short survey (~4 minutes, estimated $18.00/hour) participate in decision-making tasks, share your perceptions, and complete demographics Qualifications: Exc: [-2093222931-175295] DoesNotExist ; Location In US |
HIT exported from Mturk Suite v2.6.11 |
Pork chops suck but a well cooked Thanksgiving Ham is like mmmmmpork chops suck
ham suck
if you disagree come fight me
Title: Product Preferences (Expected Time: 10-12 minutes) | Accept Requester: Charan Bagga [AGPS2IYGY7IJK] Contact TV: Hrly=$35.66 | Pay=Generous | Approval=~24 hrs | Comm=Unrated | Rej=0 | Blk=0 TO: No Reviews TO2: No Reviews Reward: 2.00 Duration: 30:00 Available: 1 Description: The study will ask you to rate your preferences for different purchases when spending different currencies (e.g.,money, loyalty points) or other product preferences. Qualifications: Masters Exists |
HIT exported from Mturk Suite v2.6.11 |
first our teams are fighting it outGuess I'm fighting you both
Title: Survey on Food Preferences | Accept Requester: Daniel Rosenfeld [A1C8KOU9F497XR] Contact TV: [Hrly=$9.42] [Pay=Fair] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0] TO: [Pay=3.00] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=8] [ToS=0] TO2: No Reviews Reward: 0.50 Duration: 1:00:00 Available: 1 Description: We will ask you to complete a survey in which you will answer questions about your food preferences. The survey should take you approximately 10 minutes to complete, for pay of $0.50. Qualifications: Total approved HITs GreaterThan 100; HIT approval rate (%) GreaterThanOrEqualTo 99; Location EqualTo US |
Just some wrasslin'Such violence here today. Must be slow.
If you owned them, the least you could do is take all the cool cats of MTC (meaning me specifically) out for a margarita.gator's rays plays my astros tomorrow in a winner take all game
i say "my astros" like i own them
i wanted a astros-dodgers ws rematch but both teams may be eliminated in the next 24 hrs :,Ok so here's the thing if the Nationals can pull this off tonight then@Peachy will shave a giant N in to his hair.
A9 HairThe hair ones, right? If so, is there a magical script floating around?
I've got my headphones on and I'm in the mood to batch myself into oblivion.
// ==UserScript==
// @name A9 Hair
// @version 1.0
// @description Hair
// @author Srndpty
// @include *www.mturkcontent.com*
// @grant none
// @require https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
window.focus();
$('input[value="yes"]').click();
document.addEventListener("keydown", function(e){
if (e.keyCode == 13) { // Enter
document.querySelector(`#submitButton`).click();
}
});
The hair ones, right? If so, is there a magical script floating around?
I've got my headphones on and I'm in the mood to batch myself into oblivion.
// ==UserScript==
// @name A9 Hair
// @version 1.0
// @description Press 5 4 3 2 1, enter to submit
// @author SarahAshlee90
// @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant none
// ==/UserScript==
window.focus();
const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');
function preclick (elements_to_click, ...numbers) {
const radios_and_checkboxes_to_preclick = [];
Array.prototype.slice.call(arguments).forEach(el => radios_and_checkboxes_to_preclick.push(el));
radios_and_checkboxes_to_preclick.forEach(element => radios_and_checkboxes[element].click());
console.log(`There are a total of ${radios_and_checkboxes.length} checkboxes/radio's on this page. The requested preclicks are numbers ${radios_and_checkboxes_to_preclick}`);
}
preclick(0,2,5,6,9);
window.addEventListener("keydown", function (event) {
if(event.code === "Numpad1"){
if (radios_and_checkboxes[0].checked){
radios_and_checkboxes[1].click();
} else if (radios_and_checkboxes[1].checked){
radios_and_checkboxes[0].click();
}
}
if(event.code === "Numpad2"){
if (radios_and_checkboxes[2].checked){
radios_and_checkboxes[3].click();
} else if (radios_and_checkboxes[3].checked){
radios_and_checkboxes[2].click();
}
}
if(event.code === "Numpad3"){
if (radios_and_checkboxes[4].checked){
radios_and_checkboxes[5].click();
} else if (radios_and_checkboxes[5].checked){
radios_and_checkboxes[4].click();
}
}
if(event.code === "Numpad4"){
if (radios_and_checkboxes[6].checked){
radios_and_checkboxes[7].click();
} else if (radios_and_checkboxes[7].checked){
radios_and_checkboxes[6].click();
}
}
if(event.code === "Numpad5"){
if (radios_and_checkboxes[8].checked){
radios_and_checkboxes[9].click();
} else if (radios_and_checkboxes[9].checked){
radios_and_checkboxes[8].click();
}
}
if(event.code === "NumpadEnter"){
document.getElementById('landmark-final-submit-button').click();
}
});