03/23 - Soothing Saturday!

Status
Not open for further replies.

MeTurks

Professional Lurker
Contributor
Joined
Feb 26, 2019
Messages
421
Reaction score
978
Points
1,418
Gender
Male
It easy enough to make a modified version of Radio Keybinds to include more keys... The issue then becomes how best to map the keyboard keys to the various options.

I don't have the Aponte qual, so I don't know the flow of them, but does each HIT tend to be 70-80% the same options selected? And only a few differ? Or does each HIT tend to have totally different answers selected in all categories as compared to the previous one?
Is it OK for me to send you a screenshot of the HITs. They are all formatted the same, you just select different options based on what color each appliance is and stuff like that.
 

Concise

Buddhist Bacchante
Joined
Apr 28, 2016
Messages
4,094
Reaction score
6,400
Points
813
6 min 27 - $6.68/hr
Title: Survey about grocery stores | Accept
Requester: Sean Coary [A147CEIVNMRORO] Contact
TV: [Hrly=$15.44] [Pay=Generous] [Approval=3-7 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: No Reviews
TO2: No Reviews
Reward: 0.72
Duration: 1:00:00
Available: 1
Description: Short survey about your opinions on shopping at grocery stores
Qualifications: HIT approval rate (%) GreaterThan 98
2.5 min
 
  • Like
Reactions: Michele

humbleturker

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jul 8, 2016
Messages
10,554
Reaction score
23,278
Points
1,738
Age
33
Gender
Male
It was better.
More batches, batches lasted longer.

I was a non-master then cranking out $150 a day.
I can't imagine the money I would have made with masters.

Of course I worked harder then and I do more side gigs now.
But yea shit has been pretty downhill in the last 18 months.
That's why I keep saying we got like the junior masters version, because this was back in May of 2017 I think and while yes, it is a useful qual, it's not the world beater it used to be.
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,615
Reaction score
123,832
Points
1,414
Age
123
Gender
Female
you know how you get backup codes when you put 2fa on, don't name those as random things and lose them on your computer.
 

cb456

Let's do some hits!
Mentor
Contributor
Joined
Jul 25, 2017
Messages
5,983
Reaction score
15,962
Points
1,013
Gender
Male
Sorry, this survey has already expired.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
Code:
// ==UserScript==
// @name         Aponte
// @version      1.0
// @description  I made a pink button for MeTurks
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

const myButton1 = '<button type="button" id="myButton1">None</button>';
$(".questions-container").before(myButton1);
$('button[id="myButton1"]').css({"background-color":"pink","font-size":"2rem"});
const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');
const buttons_to_click = [2,7,13,19,27,32,38];

document.getElementById("myButton1").addEventListener("click", aponte);

function aponte () {
    for (let i = 0; i < buttons_to_click.length; i++ ){
        radios_and_checkboxes[buttons_to_click[i]].click();
    }
}
 

Tandem In Time

Tandem in Space
Crowd Pleaser
Joined
May 1, 2016
Messages
2,043
Reaction score
6,148
Points
1,964
Gender
Male
Code:
// ==UserScript==
// @name         Aponte
// @version      1.0
// @description  I made a pink button for MeTurks
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

const myButton1 = '<button type="button" id="myButton1">None</button>';
$(".questions-container").before(myButton1);
$('button[id="myButton1"]').css({"background-color":"pink","font-size":"2rem"});
const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');
const buttons_to_click = [2,7,13,19,27,32,38];

document.getElementById("myButton1").addEventListener("click", aponte);

function aponte () {
    for (let i = 0; i < buttons_to_click.length; i++ ){
        radios_and_checkboxes[buttons_to_click[i]].click();
    }
}
The Pink Button of Doom!
 
  • Like
Reactions: SarahAshlee90

freakania

Member
Contributor
Joined
Mar 22, 2018
Messages
182
Reaction score
533
Points
368
Gender
Female
cb456 @cb456

Hey, have you ever heard of a collaboration project between the producer Danger Mouse and the MC, MF DOOM? The collaboration project is called DANGERDOOM. They released an album that is almost entirely sampled from Adult Swim. And it has multiple ATHF tracks. The album is called The Mouse and the Mask. It's dope.

Master Shake is on a few tracks. Anyways, just thought I'd tell you because I love this album and adult swim and if you are a fan of similar things then you may appreciate it.

Log in or register now. to view Spoiler content!
Log in or register now. to view Spoiler content!
 
  • Like
Reactions: cb456

MeTurks

Professional Lurker
Contributor
Joined
Feb 26, 2019
Messages
421
Reaction score
978
Points
1,418
Gender
Male
Code:
// ==UserScript==
// @name         Aponte
// @version      1.0
// @description  I made a pink button for MeTurks
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

const myButton1 = '<button type="button" id="myButton1">None</button>';
$(".questions-container").before(myButton1);
$('button[id="myButton1"]').css({"background-color":"pink","font-size":"2rem"});
const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');
const buttons_to_click = [2,7,13,19,27,32,38];

document.getElementById("myButton1").addEventListener("click", aponte);

function aponte () {
    for (let i = 0; i < buttons_to_click.length; i++ ){
        radios_and_checkboxes[buttons_to_click[i]].click();
    }
}
Awesome! Thanks a million.
 

Tandem In Time

Tandem in Space
Crowd Pleaser
Joined
May 1, 2016
Messages
2,043
Reaction score
6,148
Points
1,964
Gender
Male
Title: View and Judge Faces(~ 60 minutes) | Accept
Requester: Victoria Tang [A2BHF9FJ575TYW] Contact
TV: [Hrly=$18.94] [Pay=Generous] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: No Reviews
TO2: [Hrly=12.86] [Pen=null] [Res=null] [Rec=null] [Rej=0] [ToS=0] [Brk=0]
Reward: 5.00
Duration: 3:00:00
Available: 5
Description: In this academic study, you will view images and make judgments about them.
Qualifications: Exc: [123775481-136507] DoesNotExist ; SurveyGroup [1872] DoesNotExist ; Total approved HITs GreaterThanOrEqualTo 500; HIT approval rate (%) GreaterThanOrEqualTo 97; Location In US
[tr][td]
HIT exported from Mturk Suite v2.6.8
[/td][/tr]
[tr][td]
A lot of clicks but I'm already 25% of the way through within a minute or so...[/td][/tr]
:frying2:
 
  • Like
Reactions: Michele

JDWFM

Active Member
Joined
Aug 15, 2018
Messages
637
Reaction score
1,679
Points
343
Age
39
Gender
Male
Title: View and Judge Faces(~ 60 minutes) | Accept
Requester: Victoria Tang [A2BHF9FJ575TYW] Contact
TV: [Hrly=$18.94] [Pay=Generous] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: No Reviews
TO2: [Hrly=12.86] [Pen=null] [Res=null] [Rec=null] [Rej=0] [ToS=0] [Brk=0]
Reward: 5.00
Duration: 3:00:00
Available: 5
Description: In this academic study, you will view images and make judgments about them.
Qualifications: Exc: [123775481-136507] DoesNotExist ; SurveyGroup [1872] DoesNotExist ; Total approved HITs GreaterThanOrEqualTo 500; HIT approval rate (%) GreaterThanOrEqualTo 97; Location In US
[tr][td]
HIT exported from Mturk Suite v2.6.8
[/td][/tr]
[tr][td]
A lot of clicks but I'm already 25% of the way through within a minute or so...[/td][/tr]
:frying2:
I'm really good at judging people so this is right up my alley!
 
  • Like
Reactions: Tandem In Time

cb456

Let's do some hits!
Mentor
Contributor
Joined
Jul 25, 2017
Messages
5,983
Reaction score
15,962
Points
1,013
Gender
Male
cb456 @cb456

Hey, have you ever heard of a collaboration project between the producer Danger Mouse and the MC, MF DOOM? The collaboration project is called DANGERDOOM. They released an album that is almost entirely sampled from Adult Swim. And it has multiple ATHF tracks. The album is called The Mouse and the Mask. It's dope.

Master Shake is on a few tracks. Anyways, just thought I'd tell you because I love this album and adult swim and if you are a fan of similar things then you may appreciate it.

Log in or register now. to view Spoiler content!
Log in or register now. to view Spoiler content!
I have definitely listened to dangerdoom as well as mf doom!
I also like kool keith and mf doom
Log in or register now. to view Spoiler content!
 
  • Like
Reactions: JDWFM and freakania

freakania

Member
Contributor
Joined
Mar 22, 2018
Messages
182
Reaction score
533
Points
368
Gender
Female
I have definitely listened to dangerdoom as well as mf doom!
I also like kool keith and mf doom
Log in or register now. to view Spoiler content!
Ahhh, I didn't know this existed. This is great! Thank you! Feel free to PM me spotify playlists when there is nothing to do on turk, lol.
 
  • Like
Reactions: cb456

thismegan

resting cat face
Joined
Jan 1, 2018
Messages
3,510
Reaction score
12,083
Points
763
Gender
Female
Title: Listen to podcast episode and answer survey | Accept
Requester: Joseph Boskovski [AQ59ENO1DMLGK] Contact
TV: No Reviews
TO: No Reviews
TO2: No Reviews
Reward: 8.00
Duration: 4:00:00
Available: 1
Description: Listen to a podcast episode and complete a 10 question survey
Qualifications: None
[tr][td]
HIT exported from Mturk Suite v2.6.8
[/td][/tr]
[tr][td]
This HIT is finally working. I got a 24 minute podcast to listen to. Not sure if they're all the same. Very few questions after the main task, less than 30 minutes total.[/td][/tr]
 

freakania

Member
Contributor
Joined
Mar 22, 2018
Messages
182
Reaction score
533
Points
368
Gender
Female
Code:
// ==UserScript==
// @name         Aponte
// @version      1.0
// @description  I made a pink button for MeTurks
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

const myButton1 = '<button type="button" id="myButton1">None</button>';
$(".questions-container").before(myButton1);
$('button[id="myButton1"]').css({"background-color":"pink","font-size":"2rem"});
const radios_and_checkboxes = document.querySelectorAll('[type="checkbox"],[type="radio"]');
const buttons_to_click = [2,7,13,19,27,32,38];

document.getElementById("myButton1").addEventListener("click", aponte);

function aponte () {
    for (let i = 0; i < buttons_to_click.length; i++ ){
        radios_and_checkboxes[buttons_to_click[i]].click();
    }
}

This was super nice of you. Thanks for being awesome.
 
  • Like
Reactions: SarahAshlee90

redbonk

New Member
Joined
Jul 14, 2018
Messages
59
Reaction score
178
Points
233
Age
33
Hi y'all. Hope things are well this Saturday.
Are a9 hits worth doing? What can you get hourly?
 

Tandem In Time

Tandem in Space
Crowd Pleaser
Joined
May 1, 2016
Messages
2,043
Reaction score
6,148
Points
1,964
Gender
Male
Hi y'all. Hope things are well this Saturday.
Are a9 hits worth doing? What can you get hourly?
A9 batches vary in terms of how much you can get hourly because some are really simple, and some are too involved to be worthwhile. There as some batches of A9s that aren't good and will average you about $2/hour, but I've been able to work through a select few of their batches accurately completing 100HITs/minute.

A general rule of thumb is that the fewer clicks the A9 takes, the more worthwhile it is. If there are 6 separate options that need to be selected, then that's not an A9 batch with a good hourly. If the A9 batch requires only a single yes/no selection then those will have a better hourly (not always great, but good enough).

Regardless, if you are new then A9s are fairly good to build-up numbers (which allow you to be less worried about rejected HITs) and you really don't need to be worried about A9s rejecting as long as you are doing them carefully.
 
Last edited:
Status
Not open for further replies.