04/09 - Turquoise Tuesday!

Pick one


  • Total voters
    45
  • Poll closed .
Status
Not open for further replies.

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,789
Reaction score
163,373
Points
3,238
Age
37
Gender
Male
It seems some hits are not exporting correctly to the forum. I click on them and I get a white page with the message
{"message":"There are no more of these HITs available."} Is this an error on my part or the exporter?
It's the specific exporter.

I think that it's the one on HIT Scraper.
Not sure but I know it's specifically one of them that does it.
 
  • Like
Reactions: Dmillan

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,789
Reaction score
163,373
Points
3,238
Age
37
Gender
Male
It's the specific exporter.

I think that it's the one on HIT Scraper.
Not sure but I know it's specifically one of them that does it.
It is accurate though.
It'll take you to the HIT if there is one, if not it'll give that white page.
 
  • Like
Reactions: Dmillan

Kristina M Greer

Well-Known Member
Joined
Mar 29, 2019
Messages
1,709
Reaction score
2,376
Points
1,013
Age
48
Location
Orlando, FL
Gender
Female
It seems some hits are not exporting correctly to the forum. I click on them and I get a white page with the message
{"message":"There are no more of these HITs available."} Is this an error on my part or the exporter?
been getting that for a week.. the only way to view is to hit panda instead of link
 
  • Like
Reactions: Dmillan

PandaThief

Well-Known Member
Joined
Jul 9, 2018
Messages
5,035
Reaction score
15,583
Points
938
Age
45
Gender
Male
Title: Have a conversation with a chatbot | Accept
Requester: Emily Wilson [A19Y8N1023GB2R] Contact
TV: [Hrly=$16.92] [Pay=Good] [Approval=~24 hrs] [Comm=Excellent] [Rej=0] [Blk=0]
TO: No Reviews
TO2: [Hrly=5.21] [Pen=0.21] [Res=1.00] [Rec=100] [Rej=0] [ToS=0] [Brk=3]
Reward: 0.25
Duration: 20:00
Available: 10
Description: Your job is to have a conversation between a person and a chatbot.
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 95; Location In US
[tr][td]
HIT exported from Mturk Suite v2.6.9
[/td][/tr]
[tr][td][/td][/tr]
how the hell do you even copy the chat id on this thing ?
 

LucyO

Well-Known Member
Contributor
Sole Survivor
Joined
Jun 18, 2018
Messages
2,552
Reaction score
9,092
Points
938
Gender
Female
tfw you age out of Liz @Liz's babysitting service...

When my oldest son was a teenager we had given him the master bedroom because he was the oldest and I didn't want any of the kids staying in the downstairs alone so my husband and I took the downstairs and all of the kids had rooms upstairs, but he wouldn't keep the room clean and I was constantly having to force him to. I told him that if I had to tell him once more he would have to move into the smaller room we were using as an office at the time. So, when I checked and his room wasn't clean we put an eviction notice on the door and he was forced to relocate. It took me four years to get my office back when he moved out. This picture reminded me of his notice lol.
 

turkleton

Muddarator
Joined
Jan 12, 2016
Messages
17,317
Reaction score
30,592
Points
1,814
Gender
Male
Wait, are mini eggs the mini Cadbury eggs, or something else? Cause the mini ones are much better than the big ones. The big ones are good but can be a bit overwhelming with the sugar and whatever, but the small ones, you can always eat the right amount and they're the not overwhelming at all.
 

sofaslug

my cat's he-bitch
Joined
Jan 12, 2016
Messages
4,012
Reaction score
12,885
Points
763
Age
47
Location
Michigan
Gender
Male
Title: Answer a survey about artificial intelligence and purchase behavior | Accept
Requester: Yi Liu [A3BO2QTPCGOEQW] Contact
TV: [Hrly=$24.96] [Pay=Generous] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: No Reviews
TO2: No Reviews
Reward: 0.50
Duration: 1:00:00
Available: 1
Description: Answer a survey about artificial intelligence and purchase behavior
Qualifications: Masters Exists ; HIT approval rate (%) GreaterThan 95
[tr][td]
HIT exported from Mturk Suite v2.6.9
[/td][/tr]
[tr][td]
1 minute[/td][/tr]
 

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,509
Reaction score
104,413
Points
2,088
Location
Las Vegas
Gender
Female
It's the specific exporter.

I think that it's the one on HIT Scraper.
Not sure but I know it's specifically one of them that does it.
It is HIT Scraper. You can fix it by adding the forum to the includes in the HIT Scraper Fix script.

Code:
// ==UserScript==
// @name         Hit Scraper Fix (for JSON issue)
// @namespace    salembeats
// @version      1
// @description  .
// @author       Cuyler Stuwe (salembeats)
// @include      https://worker.mturk.com/hitScraper
// @include      https://worker.mturk.com/hit_scraper
// @include      https://www.mturk.com/hit-scraper
// @include      https://www.mturk.com/mturk/findhits?match=true&hit_scraper/
// @include      https://www.mturkcrowd.com/*
// @grant        none
// ==/UserScript==

document.body.addEventListener("click", e => {
    if(e.target.tagName && e.target.tagName.toLowerCase() === "a") {
        if(e.target.href.includes(".json")) {
            e.preventDefault();
            window.open(e.target.href.replace(".json", ""), "_blank");
        }
    }
}, true);
 

HelloHello

Well-Known Member
Joined
Mar 3, 2018
Messages
8,889
Reaction score
19,969
Points
938
Gender
Female
Anybody get their $16 Survey Comet today. I haven't.
 

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,789
Reaction score
163,373
Points
3,238
Age
37
Gender
Male
It is HIT Scraper. You can fix it by adding the forum to the includes in the HIT Scraper Fix script.

Code:
// ==UserScript==
// @name         Hit Scraper Fix (for JSON issue)
// @namespace    salembeats
// @version      1
// @description  .
// @author       Cuyler Stuwe (salembeats)
// @include      https://worker.mturk.com/hitScraper
// @include      https://worker.mturk.com/hit_scraper
// @include      https://www.mturk.com/hit-scraper
// @include      https://www.mturk.com/mturk/findhits?match=true&hit_scraper/
// @include      https://www.mturkcrowd.com/*
// @grant        none
// ==/UserScript==

document.body.addEventListener("click", e => {
    if(e.target.tagName && e.target.tagName.toLowerCase() === "a") {
        if(e.target.href.includes(".json")) {
            e.preventDefault();
            window.open(e.target.href.replace(".json", ""), "_blank");
        }
    }
}, true);
I'm taking this as an official endorsement from the staff for @salembeats
 

sofaslug

my cat's he-bitch
Joined
Jan 12, 2016
Messages
4,012
Reaction score
12,885
Points
763
Age
47
Location
Michigan
Gender
Male
Title: Answer a short survey about your opinions(~ 10 minutes) | Accept
Requester: Linyun Yang [A17RLMQBWL73O3] Contact
TV: [Hrly=$11.94] [Pay=Good] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=3.80] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=7] [ToS=0]
TO2: [Hrly=6.35] [Pen=0.36] [Res=null] [Rec=null] [Rej=0] [ToS=0] [Brk=0]
Reward: 0.75
Duration: 1:00:00
Available: 1
Description: Give us your opinion about different companies and behaviors
Qualifications: Total approved HITs GreaterThanOrEqualTo 1000; Exc: [-1103901986-139462] DoesNotExist ; HIT approval rate (%) GreaterThanOrEqualTo 80; Location In US
[tr][td]
HIT exported from Mturk Suite v2.6.9
[/td][/tr]
[tr][td]
3:30[/td][/tr]
 
  • Like
Reactions: Michele

sofaslug

my cat's he-bitch
Joined
Jan 12, 2016
Messages
4,012
Reaction score
12,885
Points
763
Age
47
Location
Michigan
Gender
Male
Title: Answer questions about survey rating scales | Accept
Requester: William Mockovak [A3OVAJU1C9JQHA] Contact
TV: [Hrly=$17.38] [Pay=Generous] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=3.46] [Fast=4.89] [Comm=5.00] [Fair=5.00] [Reviews=75] [ToS=1]
TO2: [Hrly=12.80] [Pen=1.00] [Res=null] [Rec=100] [Rej=0] [ToS=0] [Brk=0]
Reward: 2.00
Duration: 4:00:00
Available: 1
Description: You will answer some questions about survey ratings scales and then complete some questions about yourself (20 minutes)
Qualifications: Qualifiers already participated DoesNotExist ; Total approved HITs GreaterThanOrEqualTo 1000; HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US
[tr][td]
HIT exported from Mturk Suite v2.6.9
[/td][/tr]
[tr][td][/td][/tr]
 

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,509
Reaction score
104,413
Points
2,088
Location
Las Vegas
Gender
Female
Wait, are mini eggs the mini Cadbury eggs, or something else? Cause the mini ones are much better than the big ones. The big ones are good but can be a bit overwhelming with the sugar and whatever, but the small ones, you can always eat the right amount and they're the not overwhelming at all.
Yeah, I was referring specifically to the Cadbury ones.
 
  • Like
Reactions: scrmcasey
Status
Not open for further replies.