Ive been on for over an hour and I'm at 2 bucks so yea... might be.
Still haven't done a single HIT. But, I've accepted and returned a lot. So, I feel like I'm doing something at least.
Welcome new member!Thanks! It's Beebo, the god of war, from Legends of Tomorrow.
I haven't had a day this frustrating in a while. I'm gonna take a break and think happy thoughts.
I'll try again later if I have time between my doctor's appointment and an obligatory holiday party.
If you need me, I'll be practicing how to smile, nod, and look like I'm normal in the mirror.
I had a problem with my nuke hit as well. mTurk logged me out as I submitted so it cleared the page of my code and I had to copy my password so lost it. I wrote a note so hoping for the best. I think I remembered it correctly but who knows.I haven't had a day this frustrating in a while. I'm gonna take a break and think happy thoughts.
I'll try again later if I have time between my doctor's appointment and an obligatory holiday party.
If you need me, I'll be practicing how to smile, nod, and look like I'm normal in the mirror.
in the future if you log back in on the same page/tab as the submission and hit back on the browser twice it will usually submit itI had a problem with my nuke hit as well. mTurk logged me out as I submitted so it cleared the page of my code and I had to copy my password so lost it. I wrote a note so hoping for the best. I think I remembered it correctly but who knows.
Usually yes but it didn't this time. Gave me the Sorry we can't find the page error so I had to go back to my queue.in the future if you log back in on the same page/tab as the submission and hit back on the browser twice it will usually submit it
Title: General Social Survey(~ 10 minutes) | Accept Requester: Stanford GSB Behavioral Lab [A3OSXTUM1QEXNY] Contact TV: [Hrly=$13.89] [Pay=Good] [Approval=~24 hrs] [Comm=Acceptable] [Rej=0] [Blk=0] TO: [Pay=3.25] [Fast=4.15] [Comm=3.43] [Fair=4.36] [Reviews=647] [ToS=8] TO2: No Reviews Reward: 1.25 Duration: 30:00 Available: 0 Description: Earn $1.25 for a 10-minute survey. Qualifications: Not available from queue exports. |
Title: Consumer Survey (8 min) | Accept Requester: JGSB Marketing [AP8RFL045S5ST] Contact TV: [Hrly=$9.35] [Pay=Fair] [Approval=~24 hrs] [Comm=Unrated] [Rej=1] [Blk=0] TO: [Pay=2.71] [Fast=4.10] [Comm=2.50] [Fair=4.19] [Reviews=88] [ToS=2] TO2: No Reviews Reward: 0.70 Duration: 1:00:00 Available: 0 Description: Only 21 years or older adults can participate in this consumer survey Qualifications: Not available from queue exports. |
My new Christmas decoration
(It's from National Lampoon's Christmas Vacation)
Log in or register now. to view Spoiler content!
// ==UserScript==
// @name Cameron Cairns
// @version 1.0
// @description 1-3
// @author SarahAshlee90
// @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant none
// @require https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
window.focus();
setTimeout(function (){
var current = 0;
window.addEventListener("keydown", function (event) {
if (current === 10) {return}
if(event.code === "Numpad1"){
document.querySelectorAll('crowd-radio-button[value="yes"]')[current].click();
change_focus();
}
if(event.code === "Numpad2"){
document.querySelectorAll('crowd-radio-button[value="no"]')[current].click();
change_focus ();
}
if(event.code === "Numpad3"){
document.querySelectorAll('crowd-radio-button[value="unknown"]')[current].click();
change_focus ()
}
});
let bubbles = document.querySelectorAll('crowd-radio-button');
function bindings_next_to_bubbles () {
bubbles.forEach(bubble => {
if(bubble.value === "yes"){
make_label (1,bubble);
}
if(bubble.value === "no"){
make_label (2,bubble);
}
if(bubble.value === "unknown"){
make_label (3,bubble);
}
});
}
function make_label (x,bubble) {
let s = document.createElement("span");
s.className = "mine";
let t = document.createTextNode(" " + x.toString() + " ");
s.style.backgroundColor = 'red';
s.style.color = '#000';
s.style.fontWeight = '700';
s.appendChild(t);
bubble.after(s);
}
bindings_next_to_bubbles ();
var divs =[];
for (var i=0; i < 11; i+=2){
var the_div = document.querySelectorAll(`body > crowd-form > form > div > div:nth-child(${i+1})`)[0];
divs.push(the_div);
}
for (var j=2; j < 9; j+=2){
var the_div2 = document.querySelectorAll(`body > crowd-form > form > div > div:nth-child(12) > div:nth-child(${j})`)[0];
divs.push(the_div2);
}
function add_link () {
for (var m=0; m < divs.length; m++){
var senttext = divs[m].innerText;
var a = document.createElement("a");
a.href = 'https://www.google.com/search?q='+senttext;
var t = document.createTextNode(`${senttext}`);
a.appendChild(t);
a.target = "_blank"
divs[m].after(a);
var br = document.createElement("br");
a.after(br);
}
}
add_link ();
var mine = document.getElementsByClassName('mine');
var o = 1;
for (var n = 0; n < mine.length; n+=3){
mine[n].classList.add(`ques${o.toString()}`);
mine[n+1].classList.add(`ques${o.toString()}`);
mine[n+2].classList.add(`ques${o.toString()}`);
o++;
}
var first = document.getElementsByClassName('ques1');
for(var l = 0; l < first.length; l++){
first[l].style.backgroundColor ="green";
}
function change_focus () {
var current_focus = document.getElementsByClassName(`ques${current+1}`);
for(var qs = 0; qs < current_focus.length; qs++){
current_focus[qs].style.backgroundColor = "red";
}
current ++;
if (current === 10) {return}
var new_focus = document.getElementsByClassName(`ques${current+1}`);
for(var qt = 0; qt < new_focus.length; qt++){
new_focus[qt].style.backgroundColor ="green";
}
document.querySelectorAll('crowd-radio-button[value="unknown"]')[current].focus();
}
},2000);