09/30 - Farquhar Friday!

Status
Not open for further replies.

chuchotant

I made that batch faaamous
Joined
Jan 22, 2016
Messages
966
Reaction score
2,243
Points
493
Age
47
is there a script for these? :bolt:
Code:
// ==UserScript==
// @name        Customer Interests - Product to Interest Audit (Mturk)
// @description Not the worst script ever written...
// @version     0.0.3
// @namespace   zeusdapps@gmail.com
// @icon        https://dl.dropbox.com/s/hkd52d1wvz6m7pn/Zeus.jpg
// @license     https://www.tldrlegal.com/l/mit
// @include     https://s3.amazonaws.com/mturk_bulk/hits/*
// ==/UserScript==

/* jshint esnext: true */

(function() {
    "use strict";

    var sel = document.querySelector.bind(document);
    var selAll = document.querySelectorAll.bind(document);

    var submit = (function submit() {
        setTimeout(function() {
            document.querySelector('#submitButton').click();
        }, 1000);
    });

    var keyCap = (function keyCap(e) {
        switch (e.which) {
            case 49:
                sel('#radio-yes').click();
                submit();
                break;
            case 50:
                sel('#radio-no').click();
                submit();
                break;
            case 51:
                sel('#radio-skip').click();
                sel('#comments').focus();
                break;
            default:
                break;
        }
    });

    var fun = (function fun() {
        let pageText = document.body.textContent || document.body.innerText;
        if (pageText.indexOf("Is the item relevant to the interest") > -1) {
            console.log("Zeusd!");
            sel('#Survey > div > div').style.display = "none";
            selAll('a').forEach(function(entry) {
                entry.target = "_blank";
            });
            window.addEventListener("keyup", keyCap, false);
            window.focus();
        }
    });

    window.onlaod = fun();

})();
 
  • Like
Reactions: <Gucci>

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,621
Reaction score
123,845
Points
1,414
Age
124
Gender
Female
Thank you when I searched every spelling of tattoo nothing came u possibly because of the ! ?
That would be my guess, I don't really know I searched google like this mturkcrowd.com tattoos

>.> I don't like the search feature.
 
  • Like
Reactions: <Gucci>

dick90210

Dick
Joined
Sep 16, 2016
Messages
445
Reaction score
737
Points
93
Gender
Male
So I think I'm going to try and start doing some of the transcribe HITS- audio / written- Which are the easiest or best you think to start off with?
Transcribe This are the best of the regularly posted ones. Most of theirs are a penny per second of transcription, which isn't awesome, but if you type 100+ wpm like I do, it's better pay than most stuff you'll do. The one exception is their generic .60 hits which are often less than 60 seconds, those are the ones I PANDA, and the only ones I bother doing now.

Written Paper isn't bad if you find the right hits that contain a lot of text. You'll get a solid bonus on those. Avoid anything with numbers, though.

All the penny transcription hits are generally horrible. Do not do p9r, scoutit, etc... unless you're really desperate to get your hit totals up.
 
  • Like
Reactions: Rena and lsutiger25

Sondi

Goddess of soup
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
9,018
Reaction score
33,771
Points
1,213
Age
35
Gender
Female
Title: Labeling Tweets | PANDA
Requester: Derek Powell [A2D0JU8F7ELU91] (TO)
TO Ratings:
★★★★★ 0.00 Communicativity
★★★★★ 5.00 Generosity
★★★★★ 5.00 Fairness
★★★★★ 5.00 Promptness
Number of Reviews: 3 | TOS Flags: 0
Submit a new TO review
Description: You will determine whether tweets are relevant or irrelevant to an event that occurred.
Time: 5 minutes
HITs Available: 300
Reward: $0.03
Qualifications: Masters has been granted

these seem ok
 

Tjololo

Active Member
Joined
Jan 12, 2016
Messages
629
Reaction score
2,628
Points
493
Age
36
his is gonna be the time I repost this, sorry for the spam and thank you all for being so understanding! If you haven't yet, take my quick survey: https://goo.gl/forms/u6kciZJ6SurkoJ1x1 it's to get some ideas and gauge interest in the hit. Anyone who doesn't get the qual beforehand will have to get it when the hits pop. FYI there's a little spoilered spoiler with some info about my preliminary plans for the hits, take a look at that so you're informed :D

Log in or register now. to view Spoiler content!

Some neat stats from the survey:

Log in or register now. to view Spoiler content!
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,621
Reaction score
123,845
Points
1,414
Age
124
Gender
Female
I just remembered my dream from last night.

I ran away with one of y'all. We never turked again.

Great dream.
 
D

Deleted member 481

Guest
Just got some $1.15 c-sats so start your pandas if you haven't already.
 

P L A Y E R 9 1

Don't Mind The Salt!
Contributor
Joined
Jan 12, 2016
Messages
3,588
Reaction score
12,747
Points
838
Location
Los Angeles
Code:
// ==UserScript==
// @name        Customer Interests - Product to Interest Audit (Mturk)
// @description Not the worst script ever written...
// @version     0.0.3
// @namespace   zeusdapps@gmail.com
// @icon        https://dl.dropbox.com/s/hkd52d1wvz6m7pn/Zeus.jpg
// @license     https://www.tldrlegal.com/l/mit
// @include     https://s3.amazonaws.com/mturk_bulk/hits/*
// ==/UserScript==

/* jshint esnext: true */

(function() {
    "use strict";

    var sel = document.querySelector.bind(document);
    var selAll = document.querySelectorAll.bind(document);

    var submit = (function submit() {
        setTimeout(function() {
            document.querySelector('#submitButton').click();
        }, 1000);
    });

    var keyCap = (function keyCap(e) {
        switch (e.which) {
            case 49:
                sel('#radio-yes').click();
                submit();
                break;
            case 50:
                sel('#radio-no').click();
                submit();
                break;
            case 51:
                sel('#radio-skip').click();
                sel('#comments').focus();
                break;
            default:
                break;
        }
    });

    var fun = (function fun() {
        let pageText = document.body.textContent || document.body.innerText;
        if (pageText.indexOf("Is the item relevant to the interest") > -1) {
            console.log("Zeusd!");
            sel('#Survey > div > div').style.display = "none";
            selAll('a').forEach(function(entry) {
                entry.target = "_blank";
            });
            window.addEventListener("keyup", keyCap, false);
            window.focus();
        }
    });

    window.onlaod = fun();

})();
:glomp:
 
  • Like
Reactions: chuchotant

chuchotant

I made that batch faaamous
Joined
Jan 22, 2016
Messages
966
Reaction score
2,243
Points
493
Age
47
Code:
// ==UserScript==
// @name         New Version? Consumers Interest
// @namespace
// @version      1.0
// @description  relevant to the interest
// @author       Kadauchi / Modded by ceedj.
// @include      https://www.mturkcontent.com/dynamic/*
// @include      https://s3.amazonaws.com/*
// @grant        GM_log
// @require      http://code.jquery.com/jquery-2.1.0.min.js
// ==/UserScript==

var autosubmit = false;

// Variable to check for the type of HIT.
var Category_Validation = $('p:contains("The goal is to answer the question")');

if (Category_Validation.length) {

    $("input[value='yes']").focus();
    $("input[value='yes']").click();

    // Keybinds
    document.onkeydown = function(e) {

        // Yes
        if ((e.keyCode === 49) || (e.keyCode === 97) || (e.altKey && e.keyCode === 97)) { // 1 or Numpad1 or Alt+Numpad1
            $("input[value='yes']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }

        // No
        if ((e.keyCode === 50) || (e.keyCode === 98) || (e.altKey && e.keyCode === 98)) { // 2 or Numpad2 or Alt+Numpad2
            $("input[value='no']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }

        // Skip
        if ((e.keyCode === 51) || (e.keyCode === 99) || (e.altKey && e.keyCode === 99)) { // 3 or Numpad3 or Alt+Numpad3
            $("input[value='skip']").click();
            if (autosubmit) {
                $("input[id='submitButton']").click();
            }
        }


        //Submit
        if (e.keyCode === 13) { // Enter or NumpadEnter
            $("input[id='submitButton']").click();
        }
    };
}

window.focus();
 
  • Like
Reactions: P L A Y E R 9 1

chuchotant

I made that batch faaamous
Joined
Jan 22, 2016
Messages
966
Reaction score
2,243
Points
493
Age
47
sorry for the jacked up posting, but I am not very computery despite all appearances.
I re attached the full code cause I think the first time it got cut off?
 

Matilda Jones

Grey Ghost
Contributor
Joined
Jan 24, 2016
Messages
4,608
Reaction score
6,757
Points
788
Gender
Female
Title: FEMALE only native speakers of American English, make 70 recordings of yourself saying short phrases.(20160929_en_US) | PANDA
Requester: Acme Data Collection [A3A1AJ4RPLTOLY] (TO)
TO Ratings:
★★★★★ 3.61 Communicativity
★★★★ 4.68 Generosity
★★★★ 4.92 Fairness
★★★★ 4.49 Promptness
Number of Reviews: 81 | TOS Flags: 4
Submit a new TO review
Description: Please answer a few demographic questions, then record yourself saying short phrases.
Time: 60 minutes
HITs Available: 1
Reward: $4.25
Qualifications: Location is US
 
  • Like
Reactions: vickiJ
Status
Not open for further replies.