02/26 - Worldly Wednesday

Status
Not open for further replies.

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,238
Reaction score
12,487
Points
1,238
Location
Florida
Gender
Female
Title: Ride sharing opinions(~ 4 minutes) | Accept
Requester: MJ H [A1ZTMLZ5IGZT1A] Contact
TV: [Hrly=$15.12] [Pay=Good] [Approval=~24 hrs] [Comm=Excellent] [Rej=0] [Blk=0]
TO: [Pay=3.75] [Fast=4.80] [Comm=2.50] [Fair=4.90] [Reviews=76] [ToS=0]
TO2: No Reviews
Reward: 0.45
Duration: 30:00
Available: 0
Description: computer access only. US participants only. Include screener questions.
Qualifications: Not available from queue exports.
 

nana

Active Member
Contributor
Joined
Jun 13, 2016
Messages
652
Reaction score
2,054
Points
568
Gender
Female
I'm going to be slightly lazy & copy/paste a comment I posted on reddit yesterday about this problem haha, please forgive me & let me know if it doesn't help :flail:

Cleared cookies/cache recently? Usually when this happens it's because the internal DB gets cleaned up in the process of clearing other cookies, unfortunately.

Should be able to fix it by opening the dev console (F12) => Application tab => IndexedDB and delete the turkerview entry. Then F5. It'll reset your settings (sorry!) but should fix the issue.

Image ex of the steps:


If that doesn't work just lemme know and, actually, in that same window the console tab will probably have red errors that can help me debug it with ya if you want to DM those over.
ChrisTurk @ChrisTurk I think for some people this script causes it not to work:
// ==UserScript==
// Name @Name mturk footer hide
// @description shaddap
// @version 1.0
// @author Barbwire
// @namespace shaddap
// @icon https://cdn.mturkcrowd.com/data/avatars/l/0/236.jpg
// @include *
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==


if (~location.toString().indexOf("https://worker.mturk.com/projects/")){
let footer = document.getElementsByTagName("footer")[0];
let reportbuttons = $(`div.work-pipeline-bottom-bar`);
reportbuttons.hide()

if (typeof footer !== 'undefined'){
footer.parentNode.removeChild(footer);
}


}

I found that if I toggle this off then I don't have any issues. But I appreciate Barbwire for writing it and getting rid of that stupid bar on the bottom mturk pages!
 
Last edited:

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female
Title: Social Media Usage(~ 15 minutes) | Accept
Requester: University of Bern, Consumer Behavior [A3AK1IEJGPLB3B] Contact
TV: [Hrly=$17.67] [Pay=Generous] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=4.20] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=10] [ToS=0]
TO2: No Reviews
Reward: 1.20
Duration: 1:00:00
Available: 81
Description: This is a study on social media and user activities in online social networks such as Instagram, Facebook or Twitter.
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 90; Location In US
 
  • Like
Reactions: petik00 and Blakkat

ChrisTurk

Member
Joined
May 25, 2016
Messages
379
Reaction score
1,499
Points
393
ChrisTurk @ChrisTurk I think for some people this script causes it not to work:
// ==UserScript==
// Name @Name mturk footer hide
// @description shaddap
// @version 1.0
// @author Barbwire
// @namespace shaddap
// @icon https://cdn.mturkcrowd.com/data/avatars/l/0/236.jpg
// @include *
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==


if (~location.toString().indexOf("https://worker.mturk.com/projects/")){
let footer = document.getElementsByTagName("footer")[0];
let reportbuttons = $(`div.work-pipeline-bottom-bar`);
reportbuttons.hide()

if (typeof footer !== 'undefined'){
footer.parentNode.removeChild(footer);
}


}

I found that if I toggle this off then I don't have any issues. But I appreciate Barbwire for writing it and getting rid of that stupid bar on the bottom mturk pages!
Thanks for this. That is interfering for sure, if you want the same functionality without breaking TVJS you can just use this slight alteration:

Code:
// ==UserScript==
// @name mturk footer hide
// @description shaddap
// @version 1.0
// @author Barbwire
// @namespace shaddap
// @icon https://cdn.mturkcrowd.com/data/avatars/l/0/236.jpg
// @include *
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==


if (~location.toString().indexOf("https://worker.mturk.com/projects/")){
    let footer = document.getElementsByTagName("footer")[0];
    let reportbuttons = $(`div.work-pipeline-bottom-bar`);
    reportbuttons.hide()

    if (typeof footer !== 'undefined'){
        //footer.parentNode.removeChild(footer);
        footer.style.display = `none`;
    }
}
The only change is hiding the footer bar visually instead of removing it outright (TVJS needs it to anchor some elements for return reviews).
 

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female
Title: Answer a survey: very interesting questions | Accept
Requester: Project Manager [A2FSQR94LOA4H9] Contact
TV: [Hrly=$19.30] [Pay=Generous] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=5.00] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=5] [ToS=0]
TO2: No Reviews
Reward: 0.50
Duration: 20:00
Available: 1
Description: Answer questions regarding personality.
Qualifications: Not available from queue exports.
 

nana

Active Member
Contributor
Joined
Jun 13, 2016
Messages
652
Reaction score
2,054
Points
568
Gender
Female
Thanks for this. That is interfering for sure, if you want the same functionality without breaking TVJS you can just use this slight alteration:

Code:
// ==UserScript==
// @name mturk footer hide
// @description shaddap
// @version 1.0
// @author Barbwire
// @namespace shaddap
// @icon https://cdn.mturkcrowd.com/data/avatars/l/0/236.jpg
// @include *
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==


if (~location.toString().indexOf("https://worker.mturk.com/projects/")){
    let footer = document.getElementsByTagName("footer")[0];
    let reportbuttons = $(`div.work-pipeline-bottom-bar`);
    reportbuttons.hide()

    if (typeof footer !== 'undefined'){
        //footer.parentNode.removeChild(footer);
        footer.style.display = `none`;
    }
}
The only change is hiding the footer bar visually instead of removing it outright (TVJS needs it to anchor some elements for return reviews).
Thank you! I am not script writer so appreciate all the help from those that are!
 

petik00

Member
Joined
Sep 17, 2018
Messages
152
Reaction score
413
Points
313
Title: Social Media Usage(~ 15 minutes) | Accept
Requester: University of Bern, Consumer Behavior [A3AK1IEJGPLB3B] Contact
TV: [Hrly=$17.67] [Pay=Generous] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=4.20] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=10] [ToS=0]
TO2: No Reviews
Reward: 1.20
Duration: 1:00:00
Available: 81
Description: This is a study on social media and user activities in online social networks such as Instagram, Facebook or Twitter.
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 90; Location In US
A cloudsearch URL with some HTML appears in place of the survey code at the end of this one. If anyone runs into this, you can copy paste the cloudsearch URL into another tab, and it'll provide an input box for the survey URL to generate the completion code.
 
  • Like
Reactions: baconfly

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,238
Reaction score
12,487
Points
1,238
Location
Florida
Gender
Female
Title: Answer a survey: very interesting questions | Accept
Requester: Project Manager [A2FSQR94LOA4H9] Contact
TV: [Hrly=$16.44] [Pay=Good] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=3.75] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=10] [ToS=0]
TO2: No Reviews
Reward: 0.50
Duration: 20:00
Available: 1
Description: Answer questions regarding personality.
Qualifications: Not available from queue exports.
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,238
Reaction score
12,487
Points
1,238
Location
Florida
Gender
Female
Title: Sun Demographics: The Adoption of Residential Solar (~ 4 minutes) | Accept
Requester: MJ H [A1ZTMLZ5IGZT1A] Contact
TV: [Hrly=$15.12] [Pay=Good] [Approval=~24 hrs] [Comm=Excellent] [Rej=0] [Blk=0]
TO: [Pay=3.75] [Fast=4.80] [Comm=2.50] [Fair=4.90] [Reviews=76] [ToS=0]
TO2: No Reviews
Reward: 0.40
Duration: 30:00
Available: 12
Description: computer access only. US participants only. Include screener questions.
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
40 cap

Title: widget caption labeling C | PANDA
Requester: Endor [ANER3VNU9AD0O] (Req TV): $17.64/hr/hr
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
-
Time: 5 minutes(s)
HITs Available: 934
Reward: $0.07
Qualifications: Total approved HITs GreaterThanOrEqualTo 1; HIT approval rate (%) GreaterThanOrEqualTo 90;
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,238
Reaction score
12,487
Points
1,238
Location
Florida
Gender
Female
Title: Answer a survey about decision making. | Accept
Requester: Samuel Kors [A14WZ7GUTZSTUB] Contact
TV: [Hrly=$10.73] [Pay=Good] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=3.67] [Fast=2.67] [Comm=2.33] [Fair=3.67] [Reviews=9] [ToS=1]
TO2: No Reviews
Reward: 0.50
Duration: 15:00
Available: 0
Description: Please participate in a survey about decision making.
Qualifications: Not available from queue exports.
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,238
Reaction score
12,487
Points
1,238
Location
Florida
Gender
Female

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,238
Reaction score
12,487
Points
1,238
Location
Florida
Gender
Female
Title: NEGATIVE EVENT AT WORK(~ 20 minutes) | Accept
Requester: LRCS [A2D7K07N85ABGK] Contact
TV: [Hrly=$7.26] [Pay=Low] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=1.70] [Fast=4.67] [Comm=3.00] [Fair=4.67] [Reviews=10] [ToS=0]
TO2: No Reviews
Reward: 1.00
Duration: 1:00:00
Available: 1
Description: *You need to complete the whole survey for full compensation*
Qualifications: Not available from queue exports.
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,238
Reaction score
12,487
Points
1,238
Location
Florida
Gender
Female
Title: Individual Responses to Scenes and Stories(~ 20 minutes) | Accept
Requester: Isakoglou Multhaup [APRHUB8URC4UQ] Contact
TV: [Hrly=$10.22] [Pay=Low] [Approval=Unrated] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=2.67] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=4] [ToS=0]
TO2: No Reviews
Reward: 2.00
Duration: 1:00:00
Available: 0
Description: Workers will answer questions about themselves, view a number of scenes, read a short story, and report their personal reactions. $2.00 for completion of 20-minute survey.
Qualifications: Not available from queue exports.
 

katarina

Needs more coffee
Contributor
Joined
Apr 6, 2017
Messages
1,154
Reaction score
4,007
Points
588
Age
33
Location
Indiana
Gender
Female
I cant for the life of me catch anything today, Sitting at $4.80 and half that was those endors, They cut you off at 40
HIT's. Shame.
yeah today is really bad. boooooooooo
 

masterx1234

Well-Known Member
Contributor
Joined
Oct 10, 2017
Messages
1,470
Reaction score
2,968
Points
588
Age
34
Gender
Male
do what you do best, go play videogames
Wish I could tbh, But I have to grind out at least $40 this week for a past due electric bill. Mturk helps with the bills like you wouldnt believe, without it IDK if id even be able to live where I do. I know that sounds silly but Im pretty sure a lot of other turkers depend on Mturk to help pay for bills.
 

Trucker

Well-Known Member
Contributor
Crowd Pleaser
Joined
Sep 13, 2016
Messages
6,367
Reaction score
26,498
Points
1,213
Gender
Male
Title: Answer a survey: very interesting questions | PANDA
Requester: Project Manager [A2FSQR94LOA4H9] [TurkerView]
Description: Answer questions regarding personality.
Duration: ~20min
Reward: $0.50
Qualifications:
  • Location EqualTo US
HIT Time: 5 min, 56 sec
Catchability: Great
Pros: None.
Cons: Platform formatting is awkward as question and answer keys run all the way across the window. Multiple choice answer key is extensive with options. Lots of standardized multiple choice and very long in general. Progress bar is off. Underpaid for length, time required and general navigation problems due to formatting.
 
Status
Not open for further replies.