12/28 - Tickle Thursday!

Tickle or Trickle?


  • Total voters
    67
Status
Not open for further replies.

TinaBanina

Yarn Hoarder
Contributor
HIT Poster
Sole Survivor
Joined
Jul 18, 2017
Messages
3,653
Reaction score
8,485
Points
1,138
Gender
Female
  • Like
Reactions: basketcasey

Cara

ad space now available
Contributor
Joined
Jan 12, 2016
Messages
6,685
Reaction score
12,921
Points
1,163
Location
Mass.
Gender
Female
How is doing those worthwhile? I did about 1500 or so just to get numbers on the way to 5000+. But it paid like $4 an hour. It was just one of the faster ways to get HITS done that I've found.
autoapprove! and theyre just a way to get numbers up
 
  • Like
Reactions: arcyjay

cb456

Let's do some hits!
Mentor
Contributor
Joined
Jul 25, 2017
Messages
5,985
Reaction score
15,964
Points
1,013
Gender
Male
How is doing those worthwhile? I did about 1500 or so just to get numbers on the way to 5000+. But it paid like $4 an hour. It was just one of the faster ways to get HITS done that I've found.
there isn't much else going on, so I'm doing it while trying to catch other hits. its worth it because some money is better than no money. :)
 

MarkC

Stay awhile and listen.
Contributor
Joined
Dec 11, 2016
Messages
1,720
Reaction score
4,404
Points
588
Age
52
Gender
Male
When you guys were talking about being blocked by Ben Peterson, that made me think to check for myself and yep, blocked. I've done his hits as filler for quite a while and never had a problem so its nothing we've done I'm pretty sure he wants new people doing his HITs (my opinion). Also on the block/rejection note I went 4 years with only ~10 or so rejections. I've tallied up 24 this month, mostly from one batch that was rejected because I went too slow on them (wtf I had them queued). I've also HAD THE BEST 45 days since I've been keeping track so bring em on. I've got the padding to take it but I'd be lying if I said that it isn't a kick in the old self-esteem.
 

Beak

Member
Joined
Dec 12, 2017
Messages
443
Reaction score
670
Points
343
Age
46
Gender
Male
autoapprove! and theyre just a way to get numbers up
there isn't much else going on, so I'm doing it while trying to catch other hits. its worth it because some money is better than no money. :)
Thanks to everyone for the replies. That was why I was doing them. I just thought maybe I was missing something and they could be a money maker. If there wasn't a delay in between each one playing it might be more like $5-6 an hour which isn't good but isn't terrible if nothing is going on and you need the $$. I don't know enough about scripts to even use what was posted. I just started earlier this month and I took about a week off because there just wasn't much going on and I really don't need the money enough to sit here and grind. But to get numbers these were as fast as anything else I've seen so I've done a few hours the past few days. It's either that or Scoutit receipts and those should be illegal. I still don't have a clue what I'm doing yet. I figure I'll pester someone to help me a bit after New Years.
 
Last edited:

nopoopwarez

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
10,324
Reaction score
18,600
Points
1,238
Age
38
Gender
Male
Title: Write your review of a law firm | PANDA
Requester: Law Firm Staff [AXC1VPYVYHHLL] (Contact) TV: $24.00/hr
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
Write your view of a law firm based on reviews from Glassdoor.com and other sites as if you were an attorney that has worked or is currently working at the firm.
Time: 2 hour(s)
HITs Available: 150
Reward: $2.00
Qualifications: Masters Exists;
 
  • Like
Reactions: Req.body and kryss

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,979
Points
1,313
Title: Write your review of a law firm | PANDA
Requester: Law Firm Staff [AXC1VPYVYHHLL] (Contact) TV: $24.00/hr
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
Write your view of a law firm based on reviews from Glassdoor.com and other sites as if you were an attorney that has worked or is currently working at the firm.
Time: 2 hour(s)
HITs Available: 150
Reward: $2.00
Qualifications: Masters Exists;
For all the attorneys working on MTurk... :eyeroll:
 

SweetiePuff

No Lifer
Contributor
Crowd Pleaser
HIT Poster
Joined
Oct 10, 2016
Messages
19,283
Reaction score
34,576
Points
1,838
Location
Jersey Girl
Gender
Female
Title: Write your review of a law firm | PANDA
Requester: Law Firm Staff [AXC1VPYVYHHLL] (Contact) TV: $24.00/hr
(TO): [Pay: N/A] [Fair: N/A] [Comm: N/A] [Fast: N/A]
Description:
Write your view of a law firm based on reviews from Glassdoor.com and other sites as if you were an attorney that has worked or is currently working at the firm.
Time: 2 hour(s)
HITs Available: 150
Reward: $2.00
Qualifications: Masters Exists;
For all the attorneys working on MTurk... :eyeroll:
*ahem* Pleco OurResidentRat
 

Beak

Member
Joined
Dec 12, 2017
Messages
443
Reaction score
670
Points
343
Age
46
Gender
Male
Do them with this:

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 = true;
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);
Thanks El Pablo. I'm still new enough that I don't know how to do this yet. My ignorance is something I'll try to rectify soon. With the site changes and holidays I just haven't been willing to spend time to do it yet. Maybe I'm lazy. Well of course I'm lazy. I'm a professional procrastinator. But I made more in December than I expected to make in a year doing this so I won't put it off forever. I appreciate the attempt to make me productive.
 

basketcasey

Curiouser and curiouser
Mentor
Contributor
Crowd Pleaser
Super Smart
Joined
Apr 29, 2017
Messages
10,061
Reaction score
29,333
Points
1,688
Age
37
Location
South Carolina
Gender
Female
  • Like
Reactions: <Gucci>

El Pablo

ಠ_ಠ
Contributor
Joined
Jan 12, 2016
Messages
6,831
Reaction score
13,459
Points
1,063
Location
The Upside Down
Gender
Male
Thanks El Pablo. I'm still new enough that I don't know how to do this yet. My ignorance is something I'll try to rectify soon. With the site changes and holidays I just haven't been willing to spend time to do it yet. Maybe I'm lazy. Well of course I'm lazy. I'm a professional procrastinator. But I made more in December than I expected to make in a year doing this so I won't put it off forever. I appreciate the attempt to make me productive.
Check this out

https://www.mturkcrowd.com/threads/getting-started-with-userscripts.61/
 
Status
Not open for further replies.