12/27 - Wisecrack Wednesday!

Status
Not open for further replies.

SweetiePuff

No Lifer
Contributor
Crowd Pleaser
HIT Poster
Joined
Oct 10, 2016
Messages
19,283
Reaction score
34,574
Points
1,838
Location
Jersey Girl
Gender
Female
99.9 percent of the time i would totally post some good hits, but my hitscraper export is messing up but i'm going to take electrolyte @electrolyte 's advice and get MTS this weekend when i have free time so i can be cool again.

so i have to stick with being a negative nancy for now :(

and i'm not trying to be a jerk when i diss low paying hits (sorry if I came off that way A @A2YIE ) . i just believe that if we all get used to better paying hits, the requesters will pay better.
You are literally going to wonder why you waited so long! LoL
 
  • Like
Reactions: thedorchannel

nopoopwarez

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
10,324
Reaction score
18,600
Points
1,238
Age
37
Gender
Male
  • Like
Reactions: Cara

nopoopwarez

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
10,324
Reaction score
18,600
Points
1,238
Age
37
Gender
Male
Title: Answer a survey about visualizations (Test-3) | PANDA
Requester: University of Ljubljana (prof. Bavdaz) [A1UL2ICDAIBR0E] (Contact) TV: $10.76/hr
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
Provide answers about 4 data visualizations and yourself in this 15-minute survey. Open only to workers that have not taken Test-1, Test-2 or Test 4 (no reward for multiple submissions).
Time: 8 hour(s)
HITs Available: 1
Reward: $1.50
Qualifications: HIT approval rate (%) GreaterThan 85;
 

nopoopwarez

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
10,324
Reaction score
18,600
Points
1,238
Age
37
Gender
Male
Title: Social beliefs and attitudes(~ 10 minutes) | PANDA
Requester: Rachel S Rubinstein [A256L8QLLO1TYW] (Contact) TV: N/A
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
Answer a questionnaire about your social beliefs and attitudes
Time: 30 minutes(s)
HITs Available: 1
Reward: $1.00
Qualifications: Total approved HITs GreaterThanOrEqualTo 100; HIT approval rate (%) GreaterThanOrEqualTo 80; Location In US;
 

Trucker

Well-Known Member
Contributor
Crowd Pleaser
Joined
Sep 13, 2016
Messages
6,367
Reaction score
26,498
Points
1,213
Gender
Male
Title: Participate in a Product Evaluation Survey | Accept
Requester: Dagogo Lab [A2L1LBZDMPHPDG] Contact
TV: [Hrly: $4.70] [Pay: 2.00] [Fast: null] [Comm: null] [Rej: 0] [ToS: 0] [Blk: 0]
TO: [Pay: 2.76] [Fast: 4.07] [Comm: 2.70] [Fair: 3.96] [Reviews: 51] [ToS: 0]
TO2: [Hrly: ---] [Pen: ---] [Res: ---] [Rec: ---] [Rej: 0] [ToS: 0] [Brk: 0]
Reward:
$0.35
Duration: 5 minutes
Available: 1
Description: We would like to know your opinion of a consumer product.
Requirements: Total approved HITs GreaterThanOrEqualTo 50; HIT approval rate (%) GreaterThanOrEqualTo 93; Location EqualTo US
[tr][td]
HIT exported from Mturk Suite v2.0.7
[/td][/tr]
[tr][td][/td][/tr]

1.5 mins
 

Nuramazing

Active Member
Contributor
Joined
Apr 26, 2017
Messages
658
Reaction score
1,401
Points
468
Gender
Female
i tried to when it first came out, but it looked hard to install, so i shamefully gave up :(
It's worth trying, but it's not for everyone. I didn't like the look/feel of things (and the fact that I would also have to use Chrome). Don't feel discouraged if it doesn't work for you.
 

cassius

Well-Known Member
Joined
Jan 14, 2016
Messages
8,935
Reaction score
18,670
Points
938
You've received a bonus from Duke Center for Behavioral Economics for work related to 304QEQWKZPKV8OWDJ9X5H6GZWM9O0B.
The value of your bonus is: $55.00 USD
OMG! I even put in the survey thingie that I didn't believe them when the screen came up and said I won the thing!
 

thedorchannel

Well-Known Member
Contributor
Joined
Jan 12, 2016
Messages
15,182
Reaction score
35,688
Points
1,288
Age
38
Gender
Male
i swear i had no idea MTS was in the chrome store. I could have sworn when it first came out it was something you had to install
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
a script huh? I do jd's as filler sometimes...what does the script do
This is version 2. Note at the top the @version 2. This replaces the original script. You should only have one script, make sure you dont have two scripts running or it will interfere. English answers are selected by default, pressing 1 on the numpad changes questions 2 and 3 to foreign.

If you want the enter button to submit for you change the word false on line 11 to true. I am not allowed to do it by default.

Code:
// ==UserScript==
// @name         john doe
// @version      2
// @description  autoselect
// @author       SarahAshlee90
// @include     https://www.google.com/*
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

var submit_Hotkey = false;
setTimeout(function(){

$('div[id="video-placeholder"]').click();

$('input[value="PLAYABLE"]').eq(0).click();
$('input[value="ENGLISH"]').eq(0).click();
$('input[value="ENGLISH"]').eq(1).click();
$('input[value="NOT_SENSITIVE"]').click();

window.onkeydown = function (event) {
        if(event.which == 97){                          //numpad 1 hotkey
            $('input[value="PLAYABLE"]').eq(0).click();
            $('input[value="FOREIGN"]').eq(0).click();
            $('input[value="FOREIGN"]').eq(1).click();
            $('input[value="NOT_SENSITIVE"]').click();
        }

        if(event.which == 13){                //numpad enter hotkey
            console.log('enter was pressed');
            if (submit_Hotkey === true){
                $("#submit").click();
            }
        }
};


}, 888);
 

coffeeowl

hoo?
Contributor
Mentor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
28,032
Reaction score
63,933
Points
1,738
Location
Location EqualTo US
Gender
Female
You've received a bonus from Duke Center for Behavioral Economics for work related to 304QEQWKZPKV8OWDJ9X5H6GZWM9O0B.
The value of your bonus is: $55.00 USD
OMG! I even put in the survey thingie that I didn't believe them when the screen came up and said I won the thing!
Yay!! Congrats!
 
  • Like
Reactions: cassius

MinkyMona

Spooky Turk Ghost
Joined
Jan 21, 2016
Messages
2,461
Reaction score
5,951
Points
763
Gender
Female
This is probably a dumb question, but how do I add a watcher on TurkMaster? I click on "Watch this Page" and it doesn't show up on the side. Am I doing something wrong?
Pretty sure it's still broken.
 

nopoopwarez

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
10,324
Reaction score
18,600
Points
1,238
Age
37
Gender
Male
You've received a bonus from Duke Center for Behavioral Economics for work related to 304QEQWKZPKV8OWDJ9X5H6GZWM9O0B.
The value of your bonus is: $55.00 USD
OMG! I even put in the survey thingie that I didn't believe them when the screen came up and said I won the thing!
Where are we going for lunch? Your treat?
 
  • Like
Reactions: cassius

thedorchannel

Well-Known Member
Contributor
Joined
Jan 12, 2016
Messages
15,182
Reaction score
35,688
Points
1,288
Age
38
Gender
Male
see?!? this is what im talking about. i was using a tool that was outdated and got some wrong information about MTS, and I was kindly nudged in the right direction by the community!

its great the we give each other helpful hints linke this.

as soon as I have MTS i'll be back to posting the bomb diggityest hits on mturk
 
Status
Not open for further replies.