07/12 - Tostada Thursday!

Status
Not open for further replies.

Starslip

Well-Known Member
Contributor
Crowd Pleaser
Joined
Jan 19, 2016
Messages
13,351
Reaction score
35,529
Points
1,588
Age
124
Gender
Male
Fet...
Life...
I'm not secretly Angela Listy, she's never asked anything about bastinado and clowns or anything.

More batches, more money, more good times.
That reminds me, Angela hasn't asked me about my penis in a while. Does this mean we've broken up?
 

GTR

Well-Known Member
Joined
Feb 10, 2016
Messages
10,278
Reaction score
22,985
Points
1,313
Gender
Male
Anyone got the script to erase a bubble(that won't let you un-mark it)?
Code:
// ==UserScript==
// @name        mmmturkeybacon Unclick Radio Button
// @author      mmmturkeybacon
// @description Allows you to unclick (i.e. clear, deselected, uncheck) a radio button by clicking on the radio button or the radio buttons label. This script is a helpful companion to mmmturkeybacon Embiggen Radio Buttons and Checkboxes.
// @namespace   http://userscripts.org/users/523367
// @match       http://*/*
// @match       https://*/*
// @exclude     https://*.surveymonkey.com/*
// @require     https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version     1.00
// @grant       GM_log
// ==/UserScript==

//NOTE: surveymonkey radio buttons already allow themselves to be unclicked (cleared).

$(window).load(function()
{
    var is_already_checked = null;
    /* When a label that surrounds a radio button is clicked, it triggers a radio button click,
     * which triggers another label click, so it needs to be debounced. */
    var is_in_bounce_interval = false;


    $(document).on('mousedown', 'input[type="radio"]', function(event)
    {
        is_already_checked = $(this).is(':checked')
    });

    $(document).on('click', 'input[type="radio"]', function(event)
    {
        is_in_bounce_interval = true;
        setTimeout(function(){is_in_bounce_interval = false;}, 0);
        if ($(this).is(':checked') && is_already_checked)
        {
            $(this).attr('checked', null);
        }
    });


    $(document).on('click', 'label', function(event)
    {
        var $this = $(this);
        var id = $this.attr('for');

        if (id)
        {
            var $radio = $('input[id="'+id+'"][type="radio"]');
        }
        else
        {
            var $radio = $this.find('input[type="radio"]');
        }

        is_already_checked = $radio.is(':checked');
        if (is_already_checked && !is_in_bounce_interval)
        {
            event.preventDefault();
            $radio.attr('checked', null);
        }
    });
});
 

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
Title: Work Attitudes & Evaluations | Accept
Requester: Haley Woznyj [A2I3ETWSK1YYDC] Contact
TV: No Reviews
TO: No Reviews
TO2: No Reviews
Reward: 2.00
Duration: 3600
Available: 1
Description: Take a 10 minute survey about your attitudes towards your job; Must work full-time
Qualifications: None
[tr][td]
HIT exported from Mturk Suite v2.3.7
[/td][/tr]
[tr][td][/td][/tr]
 
  • Like
Reactions: Kennedy

Kennedy

Well-Known Member
Contributor
Joined
Jun 18, 2018
Messages
5,694
Reaction score
19,139
Points
1,013
Age
46
Gender
Female
are you running a panda for them?
No. Usually on the penny ones I just accept and auto-accept for the next ones.
 
  • Like
Reactions: GTR

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,896
Reaction score
163,509
Points
3,238
Age
37
Gender
Male
Ok, thanks. So they don't always throttle? I'm at work, so I don't generally use scripts here. Just confused as to why this is working different than other batches I've encountered.
Yea because they are easy pennies means they get done quick as shit which means more throttling.
We're talking about CIs right?
I jumped in to this conversation halfway through and half-baked.
 
  • Like
Reactions: GTR and Kennedy

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
Title: Guess what's next, for linguistics research! [Task I:eek: "SQUID", don't take this HIT if you've already done a "SQUID" HIT] | Accept
Requester: Edinburgh Language Research [A2O4KLPLHO8FZK] Contact
TV: [Hrly=$20.11] [Pay=4.88] [Fast=5.00] [Comm=null] [Rej=0] [ToS=0] [Blk=0]
TO: [Pay=4.57] [Fast=5.00] [Comm=4.67] [Fair=5.00] [Reviews=39] [ToS=0]
TO2: [Hrly=19.38] [Pen=null] [Res=null] [Rec=null] [Rej=0] [ToS=0] [Brk=0]
Reward: 4.00
Duration: 36000
Available: 2
Description: Task consists of 50 incomplete sentences. For each sentence, your task is to guess which object the speaker is talking about. Estimated time is 20 minutes.
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 95; Location EqualTo US
[tr][td]
HIT exported from Mturk Suite v2.3.7
[/td][/tr]
[tr][td][/td][/tr]
 

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
  • Like
Reactions: Pleco
Status
Not open for further replies.