09/08 - Tabby Tuesday!

Status
Not open for further replies.

Michele

Working on degree in Moon
Contributor
HIT Poster
Joined
Feb 28, 2017
Messages
17,492
Reaction score
32,877
Points
1,388
Location
California
Gender
Female
Title: Answer a survey about wearing masks during COVID-19 | Accept
Requester: denni20 [A3K1VRU5SUOY3R] Contact
TV: [Hrly=$22.82] [Pay=Generous] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=3.30] [Fast=4.33] [Comm=5.00] [Fair=5.00] [Reviews=11] [ToS=0]
TO2: No Reviews
Reward: 1.00
Duration: 30:00
Available: 1
Description: Give us your opinion about wearing masks. This survey/questionnaire will ask about perception and attitude toward wearing masks and it will take you approximately 5-10 minutes to complete.
Qualifications: None
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
Title: Read 133 short English commands out loud | Accept
Requester: Login Fluent [AM17MP4TZD7FP] Contact
TV: [Hrly=$11.12] [Pay=Fair] [Approval=~24 hrs] [Comm=Acceptable] [Rej=1] [Blk=0]
TO: [Pay=2.87] [Fast=4.00] [Comm=2.64] [Fair=4.58] [Reviews=39] [ToS=0]
TO2: No Reviews
Reward: 2.00
Duration: 2:00:00
Available: 0
Description: Read short & simple phrases out loud carefully and record them with our web interface
Qualifications: Not available from queue exports.
 

PandaThief

Well-Known Member
Joined
Jul 9, 2018
Messages
5,035
Reaction score
15,583
Points
938
Age
45
Gender
Male
3 min, watch for code in yellow

Title: Attitudes About Sexual Assault | Accept
Requester: Rebekah urban [ADGOTNIDCZ4] Contact
TV: No Reviews
TO: No Reviews
TO2: No Reviews
Reward: 1.50
Duration: 1:00:00
Available: 0
Description: You are invited to participate in a study measuring attitudes about rape and sexual assault.
Qualifications: Not available from queue exports.
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
Title: Behavioral Survey (~ 6 minutes) | Accept
Requester: UPenn Researcher [A2M70XENI0CWIR] Contact
TV: [Hrly=$13.39] [Pay=Good] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=4.00] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=4] [ToS=0]
TO2: No Reviews
Reward: 0.60
Duration: 1:00:00
Available: 0
Description: 6 minutes, $0.60
Qualifications: Not available from queue exports.
 
  • Like
Reactions: Michele

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
Title: Behavioral Survey (~ 6 minutes) | Accept
Requester: UPenn Researcher [A2M70XENI0CWIR] Contact
TV: [Hrly=$13.39] [Pay=Good] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=4.00] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=4] [ToS=0]
TO2: No Reviews
Reward: 0.60
Duration: 1:00:00
Available: 0
Description: 6 minutes, $0.60
Qualifications: Not available from queue exports.
 
  • Like
Reactions: Michele

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
Title: A short academic survey with a categorization task | Accept
Requester: Andrew Perkins [A159IVU78PMN6Y] Contact
TV: [Hrly=$10.98] [Pay=Fair] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=2.82] [Fast=5.00] [Comm=2.33] [Fair=4.60] [Reviews=33] [ToS=0]
TO2: No Reviews
Reward: 0.50
Duration: 2:00:00
Available: 0
Description: Complete a short categorization task
Qualifications: Not available from queue exports.
 
  • Like
Reactions: Michele

Michele

Working on degree in Moon
Contributor
HIT Poster
Joined
Feb 28, 2017
Messages
17,492
Reaction score
32,877
Points
1,388
Location
California
Gender
Female
not bad - 5 min 41 - $15.83/hr
Title: Attitudes About Sexual Assault | Accept
Requester: Rebekah urban [ADGOTNIDCZ4] Contact
TV: No Reviews
TO: No Reviews
TO2: No Reviews
Reward: 1.50
Duration: 1:00:00
Available: 1
Description: You are invited to participate in a study measuring attitudes about rape and sexual assault.
Qualifications: None
 
  • Like
Reactions: Blakkat and jan

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
Anyone got a script for the A9's up?
Code:
// ==UserScript==
// @name         A9 Product .02
// @version      1.03
// @description  preclicks, buttons, enter to submit
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

var sanity = document.querySelectorAll('h4')[0];
if (sanity.innerHTML === "Image 1") {
    window.focus();

    const radios_and_checkboxes = document.querySelectorAll('[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}`);
    }
    setTimeout(function () {
        preclick(0, 2, 4, 6, 8);
    }, 1500);


    window.addEventListener("keydown", function (event) {
        if (event.code === "NumpadEnter") {
            $('[id="submit"]').click();
        }
    });

    function button1_click() {
        for (var i = 0; i < radios_and_checkboxes.length; i++) {
            radios_and_checkboxes[i].checked = false;
        }
        setTimeout(function () {
            radios_and_checkboxes[1].click();
            setTimeout(function () {
                $('[id="submit"]').click();
            }, 250)
        }, 250);
    }

    function button2_click() {
        radios_and_checkboxes[3].click();
    }

    function button3_click() {
        radios_and_checkboxes[8].checked = false;
        setTimeout(function () {
            radios_and_checkboxes[5].click();
        }, 250);
    }

    function button4_click() {
        radios_and_checkboxes[8].checked = false;
        setTimeout(function () {
            radios_and_checkboxes[7].click();
        }, 250);
    }

    function button5_click() {
        radios_and_checkboxes[9].click();
        setTimeout(function () {
            $('[id="submit"]').click();
        }, 250);
    }

    function createButton(context, func, color, text) {
        var button = document.createElement("input");
        button.style.backgroundColor = color
        button.type = "button";
        button.value = text;
        button.onclick = func;
        context.appendChild(button);
    }

    const q_1 = document.getElementById("notsure").parentNode;
    const q_2 = radios_and_checkboxes[3].parentNode;
    const q_3 = radios_and_checkboxes[5].parentNode;
    const q_4 = radios_and_checkboxes[7].parentNode;
    const q_5 = radios_and_checkboxes[9].parentNode;
    const control = document.querySelectorAll('[id="main"]')[0];

    createButton(q_1, button1_click, "red", "Clear all answers then click No/Not Sure then click Submit");
    createButton(q_2, button2_click, "Chartreuse", "Different Angle");
    createButton(q_3, button3_click, "Chartreuse", "Clear Question 5 then click No");
    createButton(q_4, button4_click, "Chartreuse", "Clear Question 5 then click No");
    createButton(q_5, button5_click, "red", "Click No and Submit");

    setTimeout(function () {
        windowH();
    }, 50);

    var retrievedObject = localStorage.getItem('page_resizing');
    console.log(retrievedObject);
    var option = "on"
    if (retrievedObject === null) {
        localStorage.setItem("page_resizing", option);
    } if (retrievedObject === "off") {
        option = "off";
        var but = document.querySelectorAll('[value="Toggle page resizing(on)"]')[0];
        but.style.backgroundColor = "grey"
        but.value = "Toggle page resizing(off)";
    }

    function button6_click() {
        var but = document.querySelectorAll('[value="Toggle page resizing(on)"]')[0] || document.querySelectorAll('[value="Toggle page resizing(off)"]')[0];
        if (but.style.backgroundColor === "green") {
            but.style.backgroundColor = "grey"
            option = "off";
            but.value = "Toggle page resizing(off)";
            localStorage.setItem("page_resizing", option);
        } else if (but.style.backgroundColor === "grey") {
            option = "on";
            but.style.backgroundColor = "green";
            but.value = "Toggle page resizing(on)"
            localStorage.setItem("page_resizing", option);
        }
    }

}
 
  • Love
Reactions: LowCalCalzone

scrmcasey

Skynet Aide
Moderator
Gamemaster
Sole Survivor
Joined
Oct 14, 2016
Messages
6,281
Reaction score
17,960
Points
2,213
Location
PA
Gender
Female

alk69

Well-Known Member
Joined
Mar 22, 2016
Messages
4,289
Reaction score
9,874
Points
763
Age
77
Location
over the edge
Gender
Female
Up again. I got a weak 10.00 bonus. More is possible, assuming they haven't changed it.(of course nothing is also possible. It's risky you see.)..Whole thing is easy. DO IT, don't argue, DO IT.

Title: Preferences Between Risky Prospects | PANDA
Requester: Andrew Copland [ABK8PUB48423C] (Req TV): $57.58/hr/hr
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
This is a research study examining preferences over uncertain outcomes. You will be asked to choose between provided options, and will be compensated based on your participation (a $3 participation fee) and on decisions that you make during the procedure.
Time: 1 hour(s)
HITs Available: 1
Reward: $3.00
Qualifications: Location In CAUMUS; HIT approval rate (%) GreaterThan 95; Total approved HITs GreaterThan 50;
 

alk69

Well-Known Member
Joined
Mar 22, 2016
Messages
4,289
Reaction score
9,874
Points
763
Age
77
Location
over the edge
Gender
Female
Geez, I can still remember sneak-watching Star Trek while ostensibly translating The Gallic Wars. Not that my mother didn't notice, while she was watching the same thing......she, of course, had done her Latin homework years before. When there wasn't any Star Trek...or TV.
 
Last edited:

scrmcasey

Skynet Aide
Moderator
Gamemaster
Sole Survivor
Joined
Oct 14, 2016
Messages
6,281
Reaction score
17,960
Points
2,213
Location
PA
Gender
Female
Title: Answer a survey about the impact of the COVID-19 pandemic on sexual behaviors and substance use | PANDA
Requester: Edmond J. Coleman [A2SS5KOJPUWASW] [TurkerView]
Description: The purpose of this research study is to explore how the COVID-19 pandemic has impacted sexual behavior, relationships and substance use. We will be asking explicitly about specific sexual behaviors and alcohol and drug use in detail.
Duration: ~60min
Reward: $5.00
Qualifications:
HIT Time: 9 min, 55 sec
Catchability: Okay
Cons: didn't see a code at the end
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
Title: Employment Survey (Not all will qualify) | Accept
Requester: Angela Listy [A1M2H0HAEXONBY] Contact
TV: [Hrly=$9.38] [Pay=Fair] [Approval=1-3 days] [Comm=Good] [Rej=1] [Blk=0]
TO: [Pay=2.86] [Fast=4.19] [Comm=3.24] [Fair=3.92] [Reviews=367] [ToS=7]
TO2: No Reviews
Reward: 0.42
Duration: 1:00:00
Available: 1
Description: Please take this survey about employment
Qualifications: Not available from queue exports.
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
Title: Fantasy Sports Survey (Not all will qualify) | Accept
Requester: Angela Listy [A1M2H0HAEXONBY] Contact
TV: [Hrly=$9.38] [Pay=Fair] [Approval=1-3 days] [Comm=Good] [Rej=1] [Blk=0]
TO: [Pay=2.86] [Fast=4.19] [Comm=3.24] [Fair=3.92] [Reviews=367] [ToS=7]
TO2: No Reviews
Reward: 0.41
Duration: 1:00:00
Available: 1
Description: Please take this survey about fantasy sports
Qualifications: Not available from queue exports.
 
  • Like
Reactions: rsmath and Merovign

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,712
Reaction score
163,248
Points
3,238
Age
36
Gender
Male
Title: Answer a survey about the impact of the COVID-19 pandemic on sexual behaviors and substance use | PANDA
Requester: Edmond J. Coleman [A2SS5KOJPUWASW] [TurkerView]
Description: The purpose of this research study is to explore how the COVID-19 pandemic has impacted sexual behavior, relationships and substance use. We will be asking explicitly about specific sexual behaviors and alcohol and drug use in detail.
Duration: ~60min
Reward: $5.00
Qualifications:
HIT Time: 9 min, 55 sec
Catchability: Okay
Cons: didn't see a code at the end
 
Status
Not open for further replies.