09/02 - Labor Day Monday!

Status
Not open for further replies.

HelloHello

Well-Known Member
Joined
Mar 3, 2018
Messages
8,736
Reaction score
19,695
Points
938
Gender
Female
Title: Test Measure of Adaptability(~ 45 minutes) | Accept
Requester: Gary N Burns [A2U5B8UB7TFQSQ] Contact
TV: [Hrly=$7.04] [Pay=Low] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=2.77] [Fast=4.00] [Comm=3.91] [Fair=3.83] [Reviews=30] [ToS=0]
TO2: No Reviews
Reward: 4.00
Duration: 2:00:00
Available: 11
Description: Complete a measure of adaptability. Estimated 30-45 minutes. *Forced Response on Some Questions *$1 bonus on approval
Qualifications: TP Panel: -289194157 N GreaterThanOrEqualTo 100; Location In US
 

HelloHello

Well-Known Member
Joined
Mar 3, 2018
Messages
8,736
Reaction score
19,695
Points
938
Gender
Female
Title: Answer a survey about social perception: 20-30mins | Accept
Requester: MSPS Ethics & Wellbeing Hub [AN66QHN3UINU0] Contact
TV: [Hrly=$16.90] [Pay=Good] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=2.67] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=13] [ToS=0]
TO2: No Reviews
Reward: 3.60
Duration: 3:00:00
Available: 39
Description: Read brief descriptions of social experiences (< 50 words) and one possible interpretation of the situation. Rate your agreement with that interpretation. Also complete a selection of attitude and personality questionnaires.
Qualifications: Total approved HITs GreaterThan 1000; HIT approval rate (%) GreaterThanOrEqualTo 98; Location EqualTo US; Completed previous CCL studies DoesNotExist
 

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
Title: Answer a survey about App name, only 5 questions to get $0.8 after screening(18-25 years old, female)! | PANDA
Requester: Jingying Shen [A13V70JPM6R8T0] (TO)
TO Ratings:
TO Unavailable
Submit a new TO review
Description: Vey simple questionnaire. If you are a younger female (18-25 years old), welcome to give us your opinion about our products' name
Time: 3600
HITs Available: 1
Reward: $0.80
Qualifications: Total approved HITs GreaterThan 1000;HIT approval rate (%) GreaterThan 95;Location EqualTo US
 

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
Title: Answer a survey about self-driving cars | Accept
Requester: Debargha Dey [AWDZTV94N8R4B] Contact
TV: [Hrly=$28.27] [Pay=Generous] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=2.33] [Fast=3.00] [Comm=5.00] [Fair=3.00] [Reviews=3] [ToS=0]
TO2: No Reviews
Reward: 1.75
Duration: 1:00:00
Available: 1
Description: Give us your opinion about interacting with self-driving cars as a pedestrian
Qualifications: IntentComm1 DoesNotExist ; Masters Exists ; IntentCommWorkers DoesNotExist ; Location EqualTo US
HIT Time: 3 minutes
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female

Qualifications: hasBanged DoesNotExist ; Will Bang DoesNotExist
Not sure if you still use this but I made it a little easier.

Code:
const radios_and_checkboxes = document.querySelectorAll('input[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());
        for (let i = 0; i < radios_and_checkboxes.length; i++) {
            let s = document.createElement("span");
            let t = document.createTextNode(" Num:  " + i.toString() + " ");
            s.style.backgroundColor = '#e8b5ce';
            s.style.color = '#000';
            s.style.fontWeight = '700';
            s.appendChild(t);
            $(radios_and_checkboxes[i]).after(s);
        }
        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);
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
Not sure if you still use this but I made it a little easier.

Code:
const radios_and_checkboxes = document.querySelectorAll('input[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());
        for (let i = 0; i < radios_and_checkboxes.length; i++) {
            let s = document.createElement("span");
            let t = document.createTextNode(" Num:  " + i.toString() + " ");
            s.style.backgroundColor = '#e8b5ce';
            s.style.color = '#000';
            s.style.fontWeight = '700';
            s.appendChild(t);
            $(radios_and_checkboxes[i]).after(s);
        }
        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);
Did I miss something? Or is this for all radio buttons no?
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
Did I miss something? Or is this for all radio buttons no?
Its just a function you can throw on your script to make some bubbles click on for you when the page loads. He used it a while back so I thought I'd paste on a little updated version of it so people who use it dont have to spend time counting bubbles.
 
  • Like
Reactions: Blakkat

rsmath

Hatch Green Chile
Joined
Jan 13, 2019
Messages
8,947
Reaction score
19,331
Points
938
Location
Desert Scrub
Gender
Male
I'm not collecting survey data. I'm doing something else. Imagine that Captcha thingy where your login requires you to do something that shows you're not a robot. Think, street signs, store fronts, and squished letters. That kind of thing.

Only humans can fix the stuff that I'm working on.
I'm going for completely non-complicated, and without any opinions.
Looking forward to trying to catch/work some of your HITs when you are ready to test a few or go live on many.


p.s. An announcement here would be nice when you release them and make it a qual only MTC members get. :wink:
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
Its just a function you can throw on your script to make some bubbles click on for you when the page loads. He used it a while back so I thought I'd paste on a little updated version of it so people who use it dont have to spend time counting bubbles.
You guys are so talented - all I am good at is html and adapting other peoples scripts, if they are simple, lol
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
You guys are so talented - all I am good at is html and adapting other peoples scripts, if they are simple, lol
I'm definitely not talented like some others on this board are.

That function should work on most scripts. Just copy/paste it in, load the hit once and you should see the numbers of each bubble. The total number of bubbles will print out in the console. Then put whatever bubbles you want to click for you inside the parenthesis in the last line and separate them with a comma. preclick(1,5.8);
 
  • Like
Reactions: Blakkat

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,183
Reaction score
12,455
Points
1,238
Location
Florida
Gender
Female
My Panda Crazy went rogue on me. Or, more likely, I scrolled thru and accidentally hit go ham on some old hit. I wondered why I wasn't getting anything for awhile!
 
  • Like
Reactions: JenniLeigh

rsmath

Hatch Green Chile
Joined
Jan 13, 2019
Messages
8,947
Reaction score
19,331
Points
938
Location
Desert Scrub
Gender
Male
Huh. I got 2 notices from Amazon that the withdrawal I made today to my bank account were being processed. One was processed and completed (begun this am at 9). The other 'processed' was later this evening (5pm) and is not yet completed. Both for same amount......
I hate this black cloud over me. I transferred money out today, only got one transfer to bank account notice that the transfer was started and then about 4 hours later another one that said completed.

You get two sets of notices, so...

 

turkleton

Muddarator
Joined
Jan 12, 2016
Messages
17,317
Reaction score
30,592
Points
1,814
Gender
Male
I hate this black cloud over me. I transferred money out today, only got one transfer to bank account notice that the transfer was started and then about 4 hours later another one that said completed.

You get two sets of notices, so...

Idk Amazon already gave me $200 for free, I don't want to push my luck and have Bezos send his goons after me. Nobody gets free money till the guy handling gives up and Bezos "fires" him.
 
  • Like
Reactions: C to the J

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
Idk Amazon already gave me $200 for free, I don't want to push my luck and have Bezos send his goons after me. Nobody gets free money till the guy handling gives up and Bezos "fires" him.


@Jerek
 
  • Like
Reactions: turkleton

turkleton

Muddarator
Joined
Jan 12, 2016
Messages
17,317
Reaction score
30,592
Points
1,814
Gender
Male
I'm just worried about transferring money now. I've never trusted it all that much, which is why I transferred my money as often as I did. They're just as likely to say, "Fuck it, y'all got free money last time, y'all ain't getting shit now."
 
Status
Not open for further replies.