01/02 - First Monday of the Year is Suite!

Status
Not open for further replies.

Tubbie

Member
Joined
Dec 3, 2016
Messages
130
Reaction score
184
Points
43
Age
42
Location
Pennsylvania
Gender
Male
So what are some suggestions for finding qualification hits besides browsing the forum?
 

Yatagarasu

all up in the videos, all on the records, dancin'
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 13, 2016
Messages
10,012
Reaction score
13,638
Points
2,238
Age
36
Gender
Female
  • Like
Reactions: Jerami

TobyF

Dummy
Banned
Contributor
Joined
Jul 6, 2016
Messages
6,243
Reaction score
13,522
Points
1,163
Age
38
Gender
Male
Title: Psychology Study on Attitudes and Beliefs about Intimate Relationships | PANDA
Requester: Mia Kosmicki [A1W6Y12LHRH9Z5] (Contact)
TO: [Pay: 4.50] [Fair: N/A] [Comm: N/A] [Fast: N/A] [Reviews: 2] [ToS: 0]
Description:
Answer a series of surveys about how you behave and feel in intimate relationships.
Time: 2 hours
HITs Available: 1
Reward: $2.00
Qualifications: None;

HIT posted from Mturk Suite v1.0.1
be warned this has no code at the end. have to do the dreaded hope they approve your id route.
 
  • Like
Reactions: Itsmee and Dmillan

bravoaa

Macho Pichu
Joined
Dec 16, 2016
Messages
48
Reaction score
44
Points
18
Age
36
Location
Boston
Title: Take four workplace ability tests | PANDA
Requester: dgrelle [AO8VOKDJT1ZNW] (TO)
TO Ratings:

☢☢☢☢☢ 2.50 Communicativity
☢☢☢☢☢ 2.61 Generosity
☢☢☢☢☢ 3.50 Fairness
☢☢☢☢☢ 3.41 Promptness
Number of Reviews: 43
(Submit a new TO rating for this requester)

Description: Take four different workplace assessments of cognitive ability
Time: 2 days
Hits Available: 1
Reward: $6.00
Qualifications: Total approved HITs is greater than 100; HIT approval rate (%) is greater than 95; Location is US
 

Azazael

Well-Known Member
Joined
Jan 12, 2016
Messages
3,753
Reaction score
4,991
Points
513
Age
45
Gender
Male
Title: Take four workplace ability tests | PANDA
Requester: dgrelle [AO8VOKDJT1ZNW] (TO)
TO Ratings:

☢☢☢☢☢ 2.50 Communicativity
☢☢☢☢☢ 2.61 Generosity
☢☢☢☢☢ 3.50 Fairness
☢☢☢☢☢ 3.41 Promptness
Number of Reviews: 43
(Submit a new TO rating for this requester)
Description: Take four different workplace assessments of cognitive ability
Time: 2 days
Hits Available: 1
Reward: $6.00
Qualifications: Total approved HITs is greater than 100; HIT approval rate (%) is greater than 95; Location is US

Two words here
hell
broken
 

lil queen trashmouth

Pile of ham
Contributor
Joined
Jul 6, 2016
Messages
5,115
Reaction score
17,359
Points
1,013
Age
35
Location
Iowa
Gender
Female
Title: Take four workplace ability tests | PANDA
Requester: dgrelle [AO8VOKDJT1ZNW] (TO)
TO Ratings:

☢☢☢☢☢ 2.50 Communicativity
☢☢☢☢☢ 2.61 Generosity
☢☢☢☢☢ 3.50 Fairness
☢☢☢☢☢ 3.41 Promptness
Number of Reviews: 43
(Submit a new TO rating for this requester)
Description: Take four different workplace assessments of cognitive ability
Time: 2 days
Hits Available: 1
Reward: $6.00
Qualifications: Total approved HITs is greater than 100; HIT approval rate (%) is greater than 95; Location is US
I see u, sgutierrez
 

Yatagarasu

all up in the videos, all on the records, dancin'
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 13, 2016
Messages
10,012
Reaction score
13,638
Points
2,238
Age
36
Gender
Female
Title: Evaluations of forensic testimony(~ 9 minutes) | PANDA
Requester: UC Irvine Jury Project [A3JP5WNBMWZJ8O] (Contact)
TO: [Pay: 3.00] [Fair: 4.33] [Comm: 3.86] [Fast: 4.17] [Reviews: 30] [ToS: 0]
Description:
Read various conclusions from a forensic expert and decide which are most convincing to you
Time: 1 hour
HITs Available: 1
Reward: $0.50
Qualifications: Total approved HITs GreaterThanOrEqualTo 100; Exc: [-891917606-29646] DoesNotExist ; HIT approval rate (%) GreaterThanOrEqualTo 90; Location In US;
HIT posted from Mturk Suite v1.0.1
 

Jharkan

Internets EXPERT
Contributor
Joined
Jul 9, 2016
Messages
11,873
Reaction score
20,418
Points
1,288
Location
Earth
Gender
Male

Kadauchi

Well-Known Member
Master Pleaser
Crowd Pleaser
Joined
Jan 12, 2016
Messages
7,098
Reaction score
21,951
Points
1,263
jquery
Code:
function QUEUE_VALUE () {
  let total = 0;
  for (let element of $(`.reward`)) {
    total += Number($(element).text().replace(/[^0-9.]/g, ``));
  }
  $(`.title_orange_text_bold`).text(`Queue Value: $${total.toFixed(2)}`);
}

javascript
Code:
function QUEUE_VALUE () {
  let total = 0;
  for (let element of document.getElementsByClassName(`reward`)) {
    total += Number(element.textContent.replace(/[^0-9.]/g, ``));
  }
  document.getElementsByClassName(`title_orange_text_bold`)[0].textContent = `Queue Value: $${total.toFixed(2)}`;
}

javascript with fanciness
Code:
function QUEUE_VALUE () {
  const total = [...document.getElementsByClassName(`reward`)].map(element => Number(element.textContent.replace(/[^0-9.]/g, ``))).reduce( (a, b) => a + b, 0);
  document.getElementsByClassName(`title_orange_text_bold`)[0].textContent = `Queue Value: $${total.toFixed(2)}`;
}
all accomplish the same thing. last 2 are ~ the same speed while both faster than the first
 

Caturk

Alias PizzaCat
Joined
Oct 29, 2016
Messages
1,281
Reaction score
742
Points
363
Location
NYS
Gender
Female
Is there a problem with this site? i'm not able to do anything on the Conversations page
 

Kadauchi

Well-Known Member
Master Pleaser
Crowd Pleaser
Joined
Jan 12, 2016
Messages
7,098
Reaction score
21,951
Points
1,263
Is there a problem with this site? i'm not able to do anything on the Conversations page
There seems to have been issues since the site was migrated to the new servers.
 
  • Like
Reactions: kryss

Jharkan

Internets EXPERT
Contributor
Joined
Jul 9, 2016
Messages
11,873
Reaction score
20,418
Points
1,288
Location
Earth
Gender
Male
Do you know why it only works on some?
is there anything specific you are trying to make it do?
it's possible the hits you're talking about weren't active yet when that script was made.
 

Nogdogunicorn54

New Member
Joined
Dec 28, 2016
Messages
20
Reaction score
23
Points
3
Age
28
Gender
Female
Well i like how they do it on the relevant/ irrelavent. and i was doing the caption ones... just figured it did the same on all of them, it makes it so much quicker,
 

Jharkan

Internets EXPERT
Contributor
Joined
Jul 9, 2016
Messages
11,873
Reaction score
20,418
Points
1,288
Location
Earth
Gender
Male
Well i like how they do it on the relevant/ irrelavent. and i was doing the caption ones... just figured it did the same on all of them, it makes it so much quicker,
I don't know how Kadauchi @Kadauchi has the script do it for the relevant/irrelevant ones.
I haven't done one of those in a long time
 
Status
Not open for further replies.