04/29 - Serial Saturday!

Status
Not open for further replies.

TobyF

Dummy
Banned
Contributor
Joined
Jul 6, 2016
Messages
6,243
Reaction score
13,522
Points
1,163
Age
38
Gender
Male
If I can make somebody's day by being a punching bag. That makes me happy. But at least I don't live in notrophyville
 
  • Like
Reactions: Rerun and aveline

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 would make more sense to aim for $10,000 in 100 days than $100 every day. Spending 16 hours grinding out $100 on shitty Sundays is not fun and probably not productive in the long run.
I actually prefer this method. I'll be doing that. I could think of it as 700 a week.
 

basketcasey

Curiouser and curiouser
Mentor
Contributor
Crowd Pleaser
Super Smart
Joined
Apr 29, 2017
Messages
10,061
Reaction score
29,333
Points
1,688
Age
37
Location
South Carolina
Gender
Female
So, you people haven't been feeding me hits anymore.
Yes madam

Title: Categorize a short video | PANDA
Worker: Preview | Accept | Requester
Requester: Mobile Motion GmbH [A1HMOCC7K2FWAI] (Contact)
TO 1: [Pay: 3.00] [Fast: 5.00] [Comm: 0.00] [Fair: 5.00] [Reviews: 3] [ToS: 0]
TO 2:
[Rate: $14.40/hr] [Pen: 0.04 days] [Res: -- of 0] [Rec: 100% of 1] [Rej: 0] [ToS: 0] [Brk: 0]
Description:
Watch a short video (<10 seconds), then answer 3 multiple choice questions
Time: 5 minutes
HITs Available: 1
Reward: $0.03
Qualifications: Location is US; Adult Content Qualification is 1;
 

aturkerhiding

Active Member
Joined
Apr 13, 2017
Messages
677
Reaction score
1,084
Points
393
Age
42
Gender
Male
Some new fancy code.
Code:
function load () {
  if (localStorage.getItem(`options`)) {
    options = JSON.parse(localStorage.getItem(`options`));
  }
  else {
    options = {};
    save();
  }
  // Checkboxes
  $(`[type="checkbox"]`).each((i, elem) => {
    elem.checked = options[elem.id];
  });
  // Range, Number, Select
  $(`[type="range"], [type="number"], select`).each((i, elem) => {
    elem.value = options[elem.id];
  });
}

function save () {
  // Checkboxes
  $(`[type="checkbox"]`).each((i, elem) => {
    options[elem.id] = elem.checked;
  });
  // Range, Number, Select
  $(`[type="range"], [type="number"], select`).each((i, elem) => {
    options[elem.id] = elem.value;
  });
  localStorage.setItem(`options`, JSON.stringify(options));
}
What does it do?
 

Vanyanka

Thoroughbred of Sin
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 11, 2016
Messages
34,905
Reaction score
81,247
Points
2,338
Location
The Jungle
Gender
Female
Are you suggesting that the community here can't be trusted to choose the best candidate, each month?
I inspire blind love and hate. Sometimes the people who love me outweigh the people that hate me and then I get awards. :p
 
  • Like
Reactions: TobyF and aveline
Status
Not open for further replies.