05/15 - Modernizing Monday!

Status
Not open for further replies.

Pleco

Friendly Neighborhood Rat
Contributor
Crowd Pleaser
Joined
Jan 23, 2016
Messages
19,190
Reaction score
76,218
Points
1,588
Age
37
Gender
Male
How awesome would it be for a time traveler from the 50's to land in 2017, expecting flying cars, nuclear powered airplanes, robotic assistants. Instead they'd get Simpsonswave and fidget spinners.
 
  • Like
Reactions: Peachy

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
35
Gender
Female
Post the script your using....
He is using this..

Code:
// ==UserScript==
// @name         Cuylers New A9 Shoes Keybinds
// @namespace    https://gist.github.com/Kadauchi
// @version      1.93
// @description  New A9 shoes. 1-5 for ratings. z-b for problems with the image. (Severely) Altered Kadauchi keybind script as base. Now checks to make sure that its a shoes hit by looking for LEFT IMAGE PROBLEM text. Now has header text that makes seeing the shoe type easier, as well as a Wikipedia link in a new tab if there are any confusions over shoe types.
// @author       Cuyler
// @icon         http://i.imgur.com/oGRQwPN.png
// @include      /^https://(www\.mturkcontent|s3\.amazonaws)\.com/
// @grant        GM_getValue
// @grant        GM_setValue
// ==/UserScript==

var isItShoes = true;

$(document).ready(function(){
    if ($( 'body:contains(LEFT IMAGE PROBLEM)' ).length) { isItShoes = true; }
    console.log("its shoes");
   
   
    if(isItShoes) {
       
        var shoeType = 'Unknown Shoe Type (Not Added to Script Detection - Contact Programmer)';
       
        if ($( 'body:contains(Sandal)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Sandal\" target=\"blank\">Sandals</a>'; }
        else if ($( 'body:contains(Athletic shoe)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Sneakers\" target=\"blank\">Athletic shoe (Sneakers)</a>'; }
        else if ($( 'body:contains(Boot)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Boot\" target=\"blank\">Boot</a>'; }
        else if ($( 'body:contains(Canvas shoe)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Plimsoll_shoe\" target=\"blank\"> Canvas shoe (i.e., Converse)</a>'; }
        else if ($( 'body:contains(Slipper)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Slipper\" target=\"blank\">Slipper</a>'; }
        else if ($( 'body:contains(Slide)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Slide_(footwear)\" target=\"_blank\">Slide</a>'; }
        else if ($( 'body:contains(Pump)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Court_shoe\" target=\"blank\">Pump</a>'; }
        else if ($( 'body:contains(Loafer)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Slip-on_shoe\" target=\"blank\">Loafer</a>'; }
        else if ($( 'body:contains(Oxford)' ).length) { shoeType = '<a href=\"https://en.wikipedia.org/wiki/Oxford_shoe\" target=\"blank\">Oxford</a>'; }
   
    document.body.insertAdjacentHTML(
  `afterbegin`,

  `<div style="background-color: #d3d3d3; text-align:center;">` +
  `<label style="color: black; margin-left: 10px;"><center><h1>` + shoeType + `</h> <h3>Left is wrong category? X+Enter.<br/>Left is correct, but Right is wrong category? 1+Enter.</h3> <br>Has this script helped you earn more money? Consider <a href=\"http://paypal.me/salembeats\" target=\"blank\">donating</a> - any amount helps!</center></label>` +
  `` +

  `</div>`
    );
       
       
       
       
       
        document.getElementById('result1').insertAdjacentHTML('beforebegin',
    `<div style="background-color: red;">` +
  `<label style="color: black; margin-left: 10px;">1: Not even close.</label>` +
  `` +
  `</div>`);
   
   document.getElementById('result2').insertAdjacentHTML('beforebegin',
    `<div style="background-color: orange;">` +
  `<label style="color: black; margin-left: 10px;">2: Well, at least it's a.` + shoeType + `.</label>` +
  `` +
  `</div>`);
       
   document.getElementById('result3').insertAdjacentHTML('beforebegin',
    `<div style="background-color: yellow;">` +
  `<label style="color: black; margin-left: 10px;">3: Pretty similar structure/markings.</label>` +
  `` +
  `</div>`);
       
   document.getElementById('result4').insertAdjacentHTML('beforebegin',
    `<div style="background-color: green;">` +
  `<label style="color: black; margin-left: 10px;">4: Generic knockoff?</label>` +
  `` +
  `</div>`);
       
   document.getElementById('result5').insertAdjacentHTML('beforebegin',
    `<div style="background-color: blue;">` +
  `<label style="color: black; margin-left: 10px;">5: Perfect Match!</label>` +
  `` +
  `</div>`);
       
    document.getElementById('PoorImageQuality').insertAdjacentHTML('beforebegin',
    `<div style="background-color: #d3d3d3;">` +
  `<label style="color: black; margin-left: 10px;">Z - Blurry/Dark</label>` +
  `` +

  `</div>`);
       
    document.getElementById('IncorrectInputCategory').insertAdjacentHTML('beforebegin',
    `<div style="background-color: #d3d3d3;">` +
  `<label style="color: black; margin-left: 10px;">X - Left Shoe Is Wrong Type</label>` +
  `` +

  `</div>`);
       
   document.getElementById('InputMajorityNotVisible').insertAdjacentHTML('beforebegin',
    `<div style="background-color: #d3d3d3;">` +
  `<label style="color: black; margin-left: 10px;">C - Left Shoe Blocked</label>` +
  `` +

  `</div>`);
       
   document.getElementById('InappropriateInput').insertAdjacentHTML('beforebegin',
    `<div style="background-color: #d3d3d3;">` +
  `<label style="color: black; margin-left: 10px;">V - Shoe Too Far Away</label>` +
  `` +

  `</div>`);
       
   document.getElementById('InappropriateOutput').insertAdjacentHTML('beforebegin',
    `<div style="background-color: #d3d3d3;">` +
  `<label style="color: black; margin-left: 10px;">B\/Spacebar - Can't see proper side to compare</label>` +
  `` +

  `</div>`);
    }
});


window.addEventListener(`keydown`, function (event) {
  const key = event.key;

  if (key.match(/[0-9]/) && isItShoes) {
     
      const convertzero = { '1': 5, '2': 6, '3': 7, '4': 8, '5': 9};
      radio = document.querySelectorAll(`[type="radio"]`)[convertzero[key]];
     
      if (radio) radio.click();
  }

  if (key.match(/z|x|c|v|b| /) && isItShoes) {
    console.log(key);
    const convert = { 'z': 0, 'x': 1, 'c': 2, 'v': 3, 'b': 4, ' ': 4};
    const radio = document.querySelectorAll(`[type="radio"]`)[convert[key]];
    if (radio) radio.click();
  }

  if (key.match(/Enter/) && isItShoes) {
    document.querySelector(`[type="submit"]`).click();
  }
});

window.focus();
It has Enter to Submit, but he wants an Auto Submit.
 

SalvadorZombie

The Jon Moxley of Mturk
Joined
Jun 19, 2016
Messages
703
Reaction score
1,404
Points
393
Location
Missouri
Gender
Male
How awesome would it be for a time traveler from the 50's to land in 2017, expecting flying cars, nuclear powered airplanes, robotic assistants. Instead they'd get Simpsonswave and fidget spinners.
BUT, they'd have computers smaller than their phone receivers that do more than anything conceivable on the planet. That shit would blow their minds.
 
  • Like
Reactions: Pleco

Liz

Babysitter
Contributor
Joined
Jan 18, 2016
Messages
8,766
Reaction score
26,999
Points
1,013
Age
49
Gender
Female
Gonna be an awesome night in my house. Husband won't stop throwing up. Anyone want to trade babysitting for husband sitting?
 

klingeemonster

Does this poncho make me look fat?
Contributor
Joined
Apr 5, 2016
Messages
2,974
Reaction score
7,289
Points
838
Age
59
Location
Southwest Missouri
Gender
Male
Title: [HIT STARTS IMMEDIATELY] Whodunnit 2 Game | PANDA
Worker: Preview | Accept | Requester
Requester: Christoph Riedl [A3LK8OUNUF7A9F] (Contact)
TO 1: [Pay: 4.24] [Fast: 5.00] [Comm: 2.71] [Fair: 5.00] [Reviews: 22] [ToS: 1]
TO 2:
Not Available
Description: Multiplayer game: Solve the art heist mystery. Up to $1.20 bonus available. You may have to wait for other players to show up before the experiment can start.
Time: 60 minutes
HITs Available: 1
Reward: $0.75
Qualifications: None;
HIT exported from Mturk Suite v1.21.10
 

ctraltDel

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
1,953
Reaction score
5,614
Points
838
Gender
Female
So I've got a question... my cousin wants to start turking but he doesn't have his own bank account. Can he use his parent's account to deposit earnings into before he opens up his own? The account doesn't have his name on it at all :\ I told him it would be better to just get an account and save himself the trouble, but IDK if amazon actually has a rule about bank account ownership.
 

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,618
Reaction score
123,839
Points
1,414
Age
123
Gender
Female
Title: A 10 minutes survey for service experiences | PANDA
Worker: Preview | Accept | Requester
Requester: UNO Research Team [A30C1CROFGNN5E] (Contact)
TO 1: [Pay: 3.67] [Fast: 5.00] [Comm: 5.00] [Fair: 5.00] [Reviews: 8] [ToS: 0]
TO 2:
[Rate: $2.82/hr] [Pen: 1.10 days] [Res: 0% of 1] [Rec: 0% of 2] [Rej: 0] [ToS: 0] [Brk: 0]
Description:
You'll be asked to a series of questions regarding scenarios
Time: 30 minutes
HITs Available: 1
Reward: $0.40
Qualifications: Total approved HITs is not less than 50; HIT approval rate (%) is not less than 95; Location is US;
HIT exported from Mturk Suite v1.21.10
 

Pleco

Friendly Neighborhood Rat
Contributor
Crowd Pleaser
Joined
Jan 23, 2016
Messages
19,190
Reaction score
76,218
Points
1,588
Age
37
Gender
Male
BUT, they'd have computers smaller than their phone receivers that do more than anything conceivable on the planet. That shit would blow their minds.
Wait until they learn about Barack Obama.
 

Squatty

.
Contributor
Crowd Pleaser
HIT Poster
Joined
Mar 17, 2016
Messages
21,286
Reaction score
44,989
Points
2,538
Age
35
Gender
Female
So I've got a question... my cousin wants to start turking but he doesn't have his own bank account. Can he use his parent's account to deposit earnings into before he opens up his own? The account doesn't have his name on it at all :\ I told him it would be better to just get an account and save himself the trouble, but IDK if amazon actually has a rule about bank account ownership.
HE should not use a bank account in some one else's name. He should get a prepaid debit card, if he really doesn't want to open an account
 
Status
Not open for further replies.