02/18 - Mycelial Monday

What is your average daily goal on mturk?


  • Total voters
    101
  • Poll closed .
Status
Not open for further replies.

largeeyes

Well-Known Member
Joined
Jan 12, 2016
Messages
1,218
Reaction score
1,820
Points
413
Age
43
Title: Upload 5-minute screencast of a website | Accept
Requester: UserBob [A1G1PATDFBA7E5] Contact
TV: [Hrly=$15.99] [Pay=Good] [Approval=~24 hrs] [Comm=Excellent] [Rej=0] [Blk=0]
TO: [Pay=4.70] [Fast=4.99] [Comm=4.93] [Fair=5.00] [Reviews=87] [ToS=0]
TO2: [Hrly=22.09] [Pen=0.45] [Res=1.00] [Rec=100] [Rej=0] [ToS=0] [Brk=0]
Reward: 1.30
Duration: 55:00
Available: 1
Description: Record your computer's screen and your voice while you spend 5 minutes talking about your first visit to a website. Then upload the recording.
Qualifications: demographic9386 EqualTo 1; Reviewer GreaterThanOrEqualTo 2; HIT approval rate (%) GreaterThanOrEqualTo 99
[tr][td]
HIT exported from Mturk Suite v2.6.4
[/td][/tr]
[tr][td][/td][/tr]
 
  • Like
Reactions: aveline

largeeyes

Well-Known Member
Joined
Jan 12, 2016
Messages
1,218
Reaction score
1,820
Points
413
Age
43
Title: Take a 1-question survey (US-based, Amazon Prime Member, 35-44, 25-34, 45-54) | Accept
Requester: PickFu [AI2HRFAYYSAW7] Contact
TV: [Hrly=$9.90] [Pay=Fair] [Approval=~24 hrs] [Comm=Good] [Rej=0] [Blk=0]
TO: [Pay=4.19] [Fast=4.79] [Comm=4.21] [Fair=4.72] [Reviews=311] [ToS=1]
TO2: [Hrly=6.60] [Pen=0.26] [Res=1.00] [Rec=82] [Rej=0] [ToS=0] [Brk=0]
Reward: 0.06
Duration: 8:00
Available: 1
Description: Pick the choice that best answers the question. Limited to previous PickFu responders meeting the target demographics.
Qualifications: Age Range In 3, 4, 5; PickFu NDA EqualTo 1; Location EqualTo US; Amazon Prime Membership In 1
[tr][td]
HIT exported from Mturk Suite v2.6.4
[/td][/tr]
[tr][td][/td][/tr]
 
  • Like
Reactions: aveline

Dmillan

Member
Joined
Jan 12, 2016
Messages
442
Reaction score
768
Points
343
Age
37
If I tick the require masters box, will it only show master hits, or do all the hits i'm qualified to work on appear on hit finder?
 
  • Like
Reactions: Jerami

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
she's the biggest bitch of all the bergens. She's the Bergen Boss Bitch.
I'm telling her you said that. You're in BIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIg trouble!

JK. I won't tell her. (cause I'm afraid of her too)
 

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
If I tick the require masters box, will it only show master hits, or do all the hits i'm qualified to work on appear on hit finder?
Think of it as a "Would you also like to see Masters HITs" button.:)
 
  • Like
Reactions: aveline and Dmillan

themildone

the real Jaded
Contributor
HIT Poster
Joined
Jan 12, 2016
Messages
19,285
Reaction score
46,776
Points
1,438
Age
29
Location
Indiana
Gender
Female
I'm telling her you said that. You're in BIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIg trouble!

JK. I won't tell her. (cause I'm afraid of her too)
idk why but this reminded my of the time when I was like 7 and called my nana a biatch because I didn't know what it meant. it didn't go well
 

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,509
Reaction score
104,412
Points
2,088
Location
Las Vegas
Gender
Female
If I tick the require masters box, will it only show master hits, or do all the hits i'm qualified to work on appear on hit finder?
It's masters-only. I guess Amazon likes to provide the option for people that can't be bothered with lowly pleb HITs.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
just bind it to the keypad or whatever so I can stop using the mouse. my wrist is killing me
Code:
// ==UserScript==
// @name         Rowan
// @version      1.0
// @description  1,2,3,4,5,6, space, enter
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

const radios = Array.from(document.querySelectorAll('[type="radio"]'));
var i = 0;
window.addEventListener("keydown", function (event) {
    if(event.code === "Numpad1") {
        if (i < 18) {
            radios[i].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad2"){
        if (i < 18) {
            radios[i+1].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i+1].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad3"){
        if (i < 18) {
            radios[i+2].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i+2].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad4"){
        if (i < 18) {
            return;
        } else if (i >= 18 && i <= 29) {
            radios[i+3].click();
            i += 6;
        }
    }
    if(event.code === "Numpad5"){
        if (i < 18) {
            return;
        } else if ( i >= 18 && i <= 29) {
            radios[i+4].click();
            i += 6;
        }
    }
    if(event.code === "Numpad6"){
        if (i < 18) {
           return;
        } else if (i >= 18 && i <= 29) {
            radios[i+5].click();
            i += 6;
        }
    }
    if(event.code === "Space") {
        $('input[name="hard"]').click();
    }
    if(event.code === "Enter") {
        coin ();
        setTimeout(function(){ $('input[id="submitButton"]').click(); }, 50);
    }
});

function coin () {
    var audio = document.createElement("audio");
    audio.src = "http://www.superluigibros.com/downloads/sounds/GAMECUBE/SUPERMARIOSUNSHINE/WAV/coin.wav";
    audio.play();
}
Jerami @Jerami Go to Starbucks you cheap $#@!%:smug::smug::smug:
 

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,509
Reaction score
104,412
Points
2,088
Location
Las Vegas
Gender
Female
Code:
// ==UserScript==
// @name         Rowan
// @version      1.0
// @description  1,2,3,4,5,6, space, enter
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

const radios = Array.from(document.querySelectorAll('[type="radio"]'));
var i = 0;
window.addEventListener("keydown", function (event) {
    if(event.code === "Numpad1") {
        if (i < 18) {
            radios[i].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad2"){
        if (i < 18) {
            radios[i+1].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i+1].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad3"){
        if (i < 18) {
            radios[i+2].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i+2].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad4"){
        if (i < 18) {
            return;
        } else if (i >= 18 && i <= 29) {
            radios[i+3].click();
            i += 6;
        }
    }
    if(event.code === "Numpad5"){
        if (i < 18) {
            return;
        } else if ( i >= 18 && i <= 29) {
            radios[i+4].click();
            i += 6;
        }
    }
    if(event.code === "Numpad6"){
        if (i < 18) {
           return;
        } else if (i >= 18 && i <= 29) {
            radios[i+5].click();
            i += 6;
        }
    }
    if(event.code === "Space") {
        $('input[name="hard"]').click();
    }
    if(event.code === "Enter") {
        coin ();
        setTimeout(function(){ $('input[id="submitButton"]').click(); }, 50);
    }
});

function coin () {
    var audio = document.createElement("audio");
    audio.src = "http://www.superluigibros.com/downloads/sounds/GAMECUBE/SUPERMARIOSUNSHINE/WAV/coin.wav";
    audio.play();
}
Jerami @Jerami Go to Starbucks you cheap $#@!%:smug::smug::smug:
You really need a Crowd Pleaser banner.
 
  • Like
Reactions: SarahAshlee90

thedorchannel

Well-Known Member
Contributor
Joined
Jan 12, 2016
Messages
15,182
Reaction score
35,688
Points
1,288
Age
38
Gender
Male
I've tried to get some $$ from these sites, but any time I'm about to start working on one: my cats find a bottle of nitrous and blast through the house at 187 mph, my kid decides its time to scream bloody murder for absolutely no reason, and my wife yells at me to get her some Taco Bell. Some things just aren't meant to happen.
when I have a house full of people, I use a bedroom closet. it does wonders.
 

themildone

the real Jaded
Contributor
HIT Poster
Joined
Jan 12, 2016
Messages
19,285
Reaction score
46,776
Points
1,438
Age
29
Location
Indiana
Gender
Female
Code:
// ==UserScript==
// @name         Rowan
// @version      1.0
// @description  1,2,3,4,5,6, space, enter
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

const radios = Array.from(document.querySelectorAll('[type="radio"]'));
var i = 0;
window.addEventListener("keydown", function (event) {
    if(event.code === "Numpad1") {
        if (i < 18) {
            radios[i].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad2"){
        if (i < 18) {
            radios[i+1].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i+1].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad3"){
        if (i < 18) {
            radios[i+2].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i+2].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad4"){
        if (i < 18) {
            return;
        } else if (i >= 18 && i <= 29) {
            radios[i+3].click();
            i += 6;
        }
    }
    if(event.code === "Numpad5"){
        if (i < 18) {
            return;
        } else if ( i >= 18 && i <= 29) {
            radios[i+4].click();
            i += 6;
        }
    }
    if(event.code === "Numpad6"){
        if (i < 18) {
           return;
        } else if (i >= 18 && i <= 29) {
            radios[i+5].click();
            i += 6;
        }
    }
    if(event.code === "Space") {
        $('input[name="hard"]').click();
    }
    if(event.code === "Enter") {
        coin ();
        setTimeout(function(){ $('input[id="submitButton"]').click(); }, 50);
    }
});

function coin () {
    var audio = document.createElement("audio");
    audio.src = "http://www.superluigibros.com/downloads/sounds/GAMECUBE/SUPERMARIOSUNSHINE/WAV/coin.wav";
    audio.play();
}
Jerami @Jerami Go to Starbucks you cheap $#@!%:smug::smug::smug:
oh my gosh thank you! I definitely wasn't expecting this
 

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
Code:
// ==UserScript==
// @name         Rowan
// @version      1.0
// @description  1,2,3,4,5,6, space, enter
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

const radios = Array.from(document.querySelectorAll('[type="radio"]'));
var i = 0;
window.addEventListener("keydown", function (event) {
    if(event.code === "Numpad1") {
        if (i < 18) {
            radios[i].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad2"){
        if (i < 18) {
            radios[i+1].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i+1].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad3"){
        if (i < 18) {
            radios[i+2].click();
            i += 3;
            radios[i].focus();
        } else if (i >= 18) {
            radios[i+2].click();
            i += 6;
            radios[i].focus();
        }
    }
    if(event.code === "Numpad4"){
        if (i < 18) {
            return;
        } else if (i >= 18 && i <= 29) {
            radios[i+3].click();
            i += 6;
        }
    }
    if(event.code === "Numpad5"){
        if (i < 18) {
            return;
        } else if ( i >= 18 && i <= 29) {
            radios[i+4].click();
            i += 6;
        }
    }
    if(event.code === "Numpad6"){
        if (i < 18) {
           return;
        } else if (i >= 18 && i <= 29) {
            radios[i+5].click();
            i += 6;
        }
    }
    if(event.code === "Space") {
        $('input[name="hard"]').click();
    }
    if(event.code === "Enter") {
        coin ();
        setTimeout(function(){ $('input[id="submitButton"]').click(); }, 50);
    }
});

function coin () {
    var audio = document.createElement("audio");
    audio.src = "http://www.superluigibros.com/downloads/sounds/GAMECUBE/SUPERMARIOSUNSHINE/WAV/coin.wav";
    audio.play();
}
Jerami @Jerami Go to Starbucks you cheap $#@!%:smug::smug::smug:
Starbucks? No thanks. I take my coffee black. Hold the hipster. Plus, when I look at a $5 bill, I can't rationalize trading that for a cup of coffee, unless there was some sort of shortage, or it had gold flakes in it. I find that price equivalent to an $8 beer at a ballpark. But, the ballpark has you trapped so the price makes a bit of sense.:)
 

TabethaC

Active Member
Joined
Aug 7, 2018
Messages
535
Reaction score
1,041
Points
393
Age
43
Gender
Female
Hmm I think the Noahs have dried up. Haven't gotten a new one in a while.
 
  • Like
Reactions: Katia2019

Turtlefemm

Mostly a Turtle
Contributor
Mentor
Joined
Jan 12, 2016
Messages
3,030
Reaction score
18,984
Points
1,338
Location
Earth
Gender
Female
Also.. good afternoon, turkers.. I'm still feeling pretty out of it. My stomach isn't too horrible, but my head feels like it is filled with heavy wet cotton balls or something. I just did 700 nickel Content Research question edits to meet my low $35.00 pe goal for the day and now my wrists hurt. BLERGH WHINE WHINE WHINE... :bawling::ROFL:
 
Status
Not open for further replies.