- Joined
- Apr 5, 2016
- Messages
- 2,974
- Reaction score
- 7,289
- Points
- 838
- Age
- 59
- Location
- Southwest Missouri
- Gender
- Male
Well, Mturk has not been that great for me this morning, But I have made 14 bucks on Prolific since 2 AM.
PROLIFIC STUDY Title: Food picture database internet survey Hosted by : Daisuke Kaneko Reward : £ 1.70 Avg. Reward Per Hour : £5.1/hr Available Places : 326/500 Maximum Allowed Time : 30mins Avg. Completion Time : 20mins |
Title: Rating of eight short political statements(~ 2 minutes) | PANDA Worker: Preview | Accept | Requester Requester: Rasmus Skytte [A3SPFFG0VZHMLG] (Contact) TO 1: [Pay: 4.63] [Fast: 5.00] [Comm: 5.00] [Fair: 5.00] [Reviews: 18] [ToS: 0] TO 2: Not Available Description: In this survey, you will be asked to rate how rude or polite eight short political statements are. The survey should take less than two minutes to complete. Time: 15 minutes HITs Available: 11 Reward: $0.20 Qualifications: Total approved HITs is not less than 100; Exc: [365602432-48709] has not been granted; HIT approval rate (%) is not less than 92; Location is one of: US; |
HIT exported from Mturk Suite v1.21.10 |
Title: 7-Minute Survey on Estimation and Evaluating Others | PANDA Worker: Preview | Accept | Requester Requester: Julia Minson [A35QRRKSLEDRZA] (Contact) TO 1: [Pay: 4.16] [Fast: 4.96] [Comm: 5.00] [Fair: 5.00] [Reviews: 34] [ToS: 0] TO 2: [Rate: $10.26/hr] [Pen: 30.00 days] [Res: -- of 0] [Rec: 50% of 2] [Rej: 0] [ToS: 0] [Brk: 0] Description: 7-minute survey involving estimation Time: 4 hours HITs Available: 1 Reward: $0.75 Qualifications: Total approved HITs GreaterThan 1000; HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US; |
HIT exported from Mturk Suite v1.21.10 |
About 40 minuteshi, did someone finish the 12.5 hit from "Talent Management Labs" ? time please, "Answer a research study about work and take a personality assessment (75 minutes)"
PROLIFIC STUDY - click here to join prolific! Title: The Psychology of Home Energy Usage - click here to go directly to survey Hosted by : Milena Nikolic Reward : £ 0.50 | $0.64 Avg. Reward Per Hour : £6/hr | $7.68/hr Available Places : 106/108 Maximum Allowed Time : 12mins Avg. Completion Time : 5mins |
You should toss your referral ID in there, like I did with mine
PROLIFIC STUDY
Title: Food picture database internet survey
Hosted by : Daisuke Kaneko
Reward : £ 1.70
Avg. Reward Per Hour : £5.1/hr
Available Places : 326/500
Maximum Allowed Time : 30mins
Avg. Completion Time : 20mins
// ==UserScript==
// @name Prolific Export
// @namespace https://github.com/Kadauchi/
// @version 1.1.0
// @description Forum export for surveys on Prolific
// @author Kadauchi
// @icon http://i.imgur.com/oGRQwPN.png
// @include https://www.prolific.ac/studies*
// @grant GM_setClipboard
// ==/UserScript==
function exportStudy (id) {
const study = document.getElementById(id);
const attrs = study.getElementsByTagName(`li`);
const link = study.querySelector(`a[href^="/studies/"]`).href;
const title = study.getElementsByTagName(`h3`)[0].textContent;
const researcher = attrs[0].textContent.split(':')[1];
const reward = attrs[1].textContent.split(':')[1].split(`$`)[0];
const perhour = attrs[2].textContent.split(':')[1];
const available = attrs[3].textContent.split(':')[1];
const time = attrs[4].textContent.split(':')[1];
const completion = attrs[5].textContent.split(':')[1];
const exchangeRate = localStorage.getItem(`exchangeRate`);
const exportcode =
`[table][tr][td]` +
`[b][size=5][color=red][url=https://www.prolific.ac/rp?ref=PROLIFIC_ID_HERE]PROLIFIC STUDY - click here to join prolific![/url][/color][/size][/b]\n` +
`[b]Title:[/b] [color=red][url=${link}]${title} - click here to go directly to survey[/url][/color]\n` +
`[b]Hosted by : [/b] ${researcher}\n` +
`[b]Reward : [/b][color=green][b] ${reward}[/color] ${exchangeRate ? `| [color=green]$${(+exchangeRate * +reward.replace(/[^0-9.]/g, ``)).toFixed(2)}[/color]` : ``}[/b]\n` +
`[b]Avg. Reward Per Hour : [/b] ${perhour} ${exchangeRate ? `| $${(+exchangeRate * +perhour.replace(/[^0-9.]/g, ``)).toFixed(2)}/hr` : ``}\n` +
`[b]Available Places : [/b] ${available}\n` +
`[b]Maximum Allowed Time : [/b] ${time}\n` +
`[b]Avg. Completion Time : [/b] ${completion}\n` +
`[/td][/tr][/table]`
;
GM_setClipboard(exportcode);
alert(`Forum export has been copied to your clipboard.`);
}
for (let elem of document.getElementsByClassName(`study`)) {
elem.insertAdjacentHTML(
`beforebegin`,
`<button class="exporter" type="button" data-id="${elem.id}">Forum Export</button>`
);
}
document.addEventListener(`click`, function (event) {
const elem = event.target;
if (elem.matches(`.exporter`)) {
exportStudy(elem.dataset.id);
}
});
I guess I should, but I never have thought it would help me that much. I guess I was wrong.You should toss your referral ID in there, like I did with mine
I've gotten 18 referrals just from doing that.
mine includes the referral link, and also the straight to survey, untouched link.
all I did was change @Kadauchi 's code a little bit
Code:// ==UserScript== // @name Prolific Export // @namespace https://github.com/Kadauchi/ // @version 1.1.0 // @description Forum export for surveys on Prolific // @author Kadauchi // @icon http://i.imgur.com/oGRQwPN.png // @include https://www.prolific.ac/studies* // @grant GM_setClipboard // ==/UserScript== function exportStudy (id) { const study = document.getElementById(id); const attrs = study.getElementsByTagName(`li`); const link = study.querySelector(`a[href^="/studies/"]`).href; const title = study.getElementsByTagName(`h3`)[0].textContent; const researcher = attrs[0].textContent.split(':')[1]; const reward = attrs[1].textContent.split(':')[1].split(`$`)[0]; const perhour = attrs[2].textContent.split(':')[1]; const available = attrs[3].textContent.split(':')[1]; const time = attrs[4].textContent.split(':')[1]; const completion = attrs[5].textContent.split(':')[1]; const exchangeRate = localStorage.getItem(`exchangeRate`); const exportcode = `[table][tr][td]` + `[b][size=5][color=red][url=https://www.prolific.ac/rp?ref=PROLIFIC_ID_HERE]PROLIFIC STUDY - click here to join prolific![/url][/color][/size][/b]\n` + `[b]Title:[/b] [color=red][url=${link}]${title} - click here to go directly to survey[/url][/color]\n` + `[b]Hosted by : [/b] ${researcher}\n` + `[b]Reward : [/b][color=green][b] ${reward}[/color] ${exchangeRate ? `| [color=green]$${(+exchangeRate * +reward.replace(/[^0-9.]/g, ``)).toFixed(2)}[/color]` : ``}[/b]\n` + `[b]Avg. Reward Per Hour : [/b] ${perhour} ${exchangeRate ? `| $${(+exchangeRate * +perhour.replace(/[^0-9.]/g, ``)).toFixed(2)}/hr` : ``}\n` + `[b]Available Places : [/b] ${available}\n` + `[b]Maximum Allowed Time : [/b] ${time}\n` + `[b]Avg. Completion Time : [/b] ${completion}\n` + `[/td][/tr][/table]` ; GM_setClipboard(exportcode); alert(`Forum export has been copied to your clipboard.`); } for (let elem of document.getElementsByClassName(`study`)) { elem.insertAdjacentHTML( `beforebegin`, `<button class="exporter" type="button" data-id="${elem.id}">Forum Export</button>` ); } document.addEventListener(`click`, function (event) { const elem = event.target; if (elem.matches(`.exporter`)) { exportStudy(elem.dataset.id); } });
well, most referrals never end up actually doing anything.I guess I should, but I never have thought it would help me that much. I guess I was wrong.
Hey, if you do surveys on mturk, I do not see how prolific is any different. Some of them even pay better, that 10 dollar survey I did this morning took 30 minutes and lined me up for 3 more 10 dollar surveys, ending in August.well, most referrals never end up actually doing anything.
as an example, on instagc.com I have about 120 referrals.
1 of them comes on every other week or so.
but!
you never know!
...link?Hey, if you do surveys on mturk, I do not see how prolific is any different. Some of them even pay better, that 10 dollar survey I did this morning took 30 minutes and lined me up for 3 more 10 dollar surveys, ending in August.
That is just it, how do you get a link if you have already done it and forgot to post it ?...link?