07/26 - Totoro Tuesday!

Status
Not open for further replies.

Laika

New Member
Contributor
Joined
Jul 26, 2016
Messages
47
Reaction score
62
Points
93
Age
113
Gender
Male
I saw something on here about a 'Taskmaster' replacement or some such that did the PandA thing and it had tabs. Any of you knoweth what it is? Was?
 
  • Like
Reactions: C to the J

Jharkan

Internets EXPERT
Contributor
Joined
Jul 9, 2016
Messages
11,873
Reaction score
20,418
Points
1,288
Location
Earth
Gender
Male
Here is the export script, don't abuse, no filters are in on my end yet. (Which is why its not on GF)

Change the variable mtc_username so the HITs get credited correctly for HIT poster award stuff.

Code:
// ==UserScript==
// @name         Kadabot Export
// @namespace    http://kadauchi.com/
// @version      1.0.0
// @description  Does stuff.
// @author       Kadauchi
// @icon         http://kadauchi.com/avatar4.jpg
// @include      /^https://www\.mturk\.com/mturk/(searchbar|findhits|viewhits|viewsearchbar|sortsearchbar|sorthits)/
// @grant        GM_log
// @grant        GM_xmlhttpRequest
// @require      https://code.jquery.com/jquery-3.1.0.min.js
// ==/UserScript==

var mtc_username = 'kadabot';

var $hits = $('table[cellpadding="0"][cellspacing="5"][border="0"][border="0"]').children('tbody').children('tr');

for (var i = 0; i < $hits.length; i++) {
    $hits.eq(i).find('a.capsulelink').after('<button class="export" value="' + i + '" style="margin-left: 3px;">Export</button>');
}

$('button.export').click(function () {
    var reque = $hits.eq($(this).val()).find('span.requesterIdentity').text().trim();
    var title = $hits.eq($(this).val()).find('a.capsulelink').text().trim();
    var confi = confirm('Are you sure you want to export this HIT?\n\nRequester: ' + reque + '\n\nTitle: ' + title);
    if (confi === true) {
        _send($hits.eq($(this).val()).html());
    }
});

function _send (data) {
    $.post('https://kadabot.com/export-hit',{data: data, user: mtc_username});
}
what is this?
 

ellie

not to disappear
Joined
Jul 22, 2016
Messages
257
Reaction score
736
Points
293
Age
32
Location
Oregon
Gender
Female
research project hits has some scary looking TO ratings.. gonna steer clear from those. i miss batches..
 
  • Like
Reactions: Concise

saturn

leisureforce
Joined
Jul 21, 2016
Messages
126
Reaction score
257
Points
313
Age
35
Gender
Male
Please note: This survey contains descriptions of harm that some people may find disturbing. If you think such content may distress or offend you, please do not accept this HIT.
triggered money don't make money
 

redtokyoboxers

the güero you cannot sweat-o
Contributor
Champion
Joined
Jan 13, 2016
Messages
1,655
Reaction score
4,329
Points
588
Age
36
Gender
Male
A third of the size of last night.

So regret skipping on the one from last night.
Was just too damn tired though. :bawling:
Eh, at least there was plenty of other stuff up yesterday too.
 
  • Like
Reactions: C to the J

VGB

dr. peepee poopoo
Joined
Jan 21, 2016
Messages
5,753
Reaction score
15,213
Points
1,038
Age
38
Location
Milwaukee via Boston
Gender
Male
research project hits has some scary looking TO ratings.. gonna steer clear from those. i miss batches..
its a grouping of Microsoft requesters, so don't ignore them

the ones that are currently up are not good

but they're worth keeping tabs on, there's been a lot of good recently
 
  • Like
Reactions: ellie

Randomacts

Banned
Banned
Joined
Jul 25, 2016
Messages
1,877
Reaction score
1,515
Points
363
Age
27
Gender
Male
You are QUICK. You use it, and if so, like or dislike it?
I accept donations to the right...

(I actually saw someone talk about it a few pages ago and still that open in my tab... I haven't started using it yet.. but I plan to once I have some free time)
 

ellie

not to disappear
Joined
Jul 22, 2016
Messages
257
Reaction score
736
Points
293
Age
32
Location
Oregon
Gender
Female
its a grouping of Microsoft requesters, so don't ignore them

the ones that are currently up are not good

but they're worth keeping tabs on, there's been a lot of good recently
oh i see, thanks. so "make image caption funny/romantic" hits are garbage, got it!
 
  • Like
Reactions: VGB
Status
Not open for further replies.