09/29 - Finally Feeling Funky For Friday!

Discussion in 'Daily mTurk HITs Threads' started by Melting Glacier, Sep 29, 2017.

Thread Status:
Not open for further replies.
  1. ThisPoorGuy

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    What is going on today???
     
  2. GoldGuardian

    GoldGuardian Black Order

    Messages:
    8,005
    Gender:
    Male
    Ratings:
    +16,743
    [​IMG]
     
  3. Ana*

    Ana* H&R Blockhead

    Messages:
    21,637
    Gender:
    Female
    Ratings:
    +27,162
    i sold @Randomacts payment came in for everyone
     
    • LOL LOL x 2
    • Love Love x 1
  4. KnottyDragon

    KnottyDragon Active Turker

    Messages:
    181
    Gender:
    Male
    Ratings:
    +281
    Zlomars? I forgot how to do them 'cuz it's been so long.
     
    • Like Like x 1
  5. Clozy

    Clozy Well-Known Turker

    Messages:
    712
    Gender:
    Male
    Ratings:
    +1,642
    Bookmarklet to catch the page title, often useful with z's
    Code:
    javascript:var title=document.title;if(title){var re=/(\\|\/|:|\*|\?|\"|<|>|\|)/gi;title=title.replace(re,'');void(prompt('Page Title', title));}
     
    • Today I Learned Today I Learned x 1
  6. thedorchannel

    thedorchannel Survey Slinger

    Messages:
    2,021
    Gender:
    Male
    Ratings:
    +4,116
    i got 200k hits. i chanced it. I'm kinda nervouce now cause at the beginning of the batch, the query images were different ones each time. Right now its like the same three, and it doesn't feel like any other pics are a match. So i'd be just hitting the submit button for a lot of them. That makes me nervous lol
     
  7. purplepoppi

    purplepoppi Survey Slinger

    Messages:
    2,406
    Gender:
    Female
    Ratings:
    +3,591
    Arrrgh I'm supposed to leave the house soon! Screw that! ARRGH!
     
  8. WimpLo

    WimpLo Survey Slingin' Batch Masta Former MTG MotM

    Messages:
    35,374
    Gender:
    Female
    Ratings:
    +76,749
    That's good though. Stuff's a little different so it's best to read up and take your first couple slowly. :)
     
  9. ThisPoorGuy

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    I just deleted my Z script too.
     
  10. Jasper

    Jasper Survey Slinger

    Messages:
    2,702
    Ratings:
    +3,639
    Wow, they came back. My months and months of emails worked.

    Holy shit.
     
  11. Tecnique

    Tecnique Survey Slinger

    Messages:
    6,269
    Gender:
    Male
    Ratings:
    +8,981
    its on the wiki
     
    • Today I Learned Today I Learned x 1
  12. lemondrop

    lemondrop Active Turker

    Messages:
    497
    Ratings:
    +732
    What would a society that list doctors (their members) be? Referral Aggregator?
     
  13. ThisPoorGuy

    ThisPoorGuy ThisPoorMod

    Messages:
    39,486
    Gender:
    Male
    Ratings:
    +81,571
    Man, it's like riding a bike.
     
  14. BadPanda

    BadPanda Survey Slinger

    Messages:
    12,058
    Gender:
    Male
    Ratings:
    +54,826
  15. eyeofodin

    eyeofodin Well-Known Turker

    Messages:
    2,772
    Gender:
    Male
    Ratings:
    +5,608
    [​IMG]
     
    • LOL LOL x 3
  16. Vinidarius

    Vinidarius Well-Known Turker

    Messages:
    1,728
    Gender:
    Male
    Ratings:
    +4,284
    No.
     
  17. Confirmed Robot

    Confirmed Robot Survey Slinger

    Messages:
    7,291
    Ratings:
    +27,052
    I was never very good at these. Hovering at just under $8/hr
     
  18. Girl Polar Bear

    Girl Polar Bear Queen of the North

    Messages:
    29,273
    Gender:
    Female
    Ratings:
    +45,742
    Code:
    // ==UserScript==
    // @name Project Endor (Zoltar)
    // @namespace https://greasyfork.org/en/users/12709
    // @version 1.1.2
    // @description easy clicks for zoltars
    // @author feihtality
    // @match https://www.google.com/evaluation/endor/*
    // @grant none
    // ==/UserScript==
    /*jshint esnext:true*/
    (function() {
    'use strict';
    var
    make = (tag) => document.createElement(tag),
    get = (...args) => (args.length > 1 ? args[0] : document).querySelector(args[1] || args[0]),
    getAll = (...args) => (args.length > 1 ? args[0] : document).querySelectorAll(args[1] || args[0]),
    zoltar = {}, submit,
    sel = function(obj) {
    obj.btn.onclick = function() {
    var prev = get(obj.p, '[style]');
    if (prev && !obj.isCheckbox) prev.style.background = '';
    if (obj.isCheckbox) this.style.background = this.style.background === 'lightgreen' ? '' : 'lightgreen';
    else this.style.background = 'lightgreen';
    obj.target.click();
    scroller(obj.target);
    };
    },
    scroller = function(loc, dt) {
    var getPos = function(el) { var offset = 0; while(el) { offset += el.offsetTop; el = el.offsetParent; } return offset; },
    target = getPos(loc)-window.innerHeight/4,
    pos = window.scrollY,
    dpos = Math.ceil((target-pos)/3);
    dt = dt ? dt-1 : 25;
    if (target === pos || dpos === 0 || dt === 0) return;
    window.scrollBy(0,dpos);
    setTimeout( () => scroller(loc, dt), dt);
    };
    if (!/previewand/.test(document.referrer) && get('p') && /An error occurred/.test(get('p').textContent)) document.location.reload(); // autorefresh loading error
    if (!get('h3').textContent.includes('website is NOT available')) return; // not a zoltar
    document.head.appendChild(make('STYLE')).innerHTML =
    '.zoltarpanel p {margin:5px; background:lightblue; padding:2px 5px;}' +
    '.zoltarpanel {z-index:10; position:fixed; top:10%;right:50%; background:aliceblue; opacity:0.9; transform:translateX(50%);}' +
    '.zoltarpanel p button {font-size: 12px; margin-right:2px; padding:1px;}';
    zoltar.sections = getSections();
    if (!zoltar.sections.length) return null;
    zoltar.panel = document.body.appendChild(make('DIV'));
    zoltar.panel.className = 'zoltarpanel';
    for (var section of zoltar.sections) {
    var options = Array.from(getAll(section, '[aria-label]')),
    isCheckbox = options[0].tagName.toLowerCase().includes('checkbox'),
    p = zoltar.panel.appendChild(make('P'));
    for (var option of options) {
    var btn = p.appendChild(make('BUTTON'));
    btn.textContent = option.getAttribute('aria-label');
    sel({ p: p, btn: btn, target: option, isCheckbox: isCheckbox });
    }
    }
    submit = zoltar.panel.appendChild(make('P')).appendChild(make('BUTTON'));
    submit.textContent = 'SUBMIT';
    submit.onclick = () => get('input[type=submit]').click();
    function getSections() {
    var ss = Array.prototype.slice.call(getAll('div[ng-show][flex]'), 1); // slice out initial div (business name)
    if (!ss.length || ss.length < 4) ss = Array.from(getAll('fieldset')); // car dealer website eval
    return ss;
    }
    })();
     
    • Today I Learned Today I Learned x 1
  19. Jasper

    Jasper Survey Slinger

    Messages:
    2,702
    Ratings:
    +3,639
    Does that mean the godly combo of JLos & Zoltar may become a reality once more?
     
  20. jamer

    jamer Survey Slinger

    Messages:
    1,427
    Gender:
    Female
    Ratings:
    +1,805
    I keep getting answer all required areas on my very first Zoltar.. I tried using the script to submit and regular way.. anyone else having this trouble I don't want to return dammit
     
Thread Status:
Not open for further replies.