05/15 - Modernizing Monday!

Status
Not open for further replies.

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,618
Reaction score
123,839
Points
1,414
Age
123
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.
I'm want to say that could hinder him because I think it asks for name on the account, but it's been a long time since I added an account. It would probably be better if he just opened an account somewhere.
 
  • Like
Reactions: Kerek and ctraltDel

TissueHime

Thread Maker Extraordinaire
Threaderator
Joined
Jan 12, 2016
Messages
5,549
Reaction score
7,589
Points
813
Age
35
Location
Seattle
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
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
65,018
Reaction score
145,519
Points
2,088
Gender
Male
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.
You don't have to have a bank account at all, I think. That's linked to payments but you could, for example, just always transfer to amazon gift cards.

There are those prepaid cards or whatever people use that aren't bank accounts, too.

Edit: Bluebird cards.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
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();
$("#submitButton").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();
$("#submitButton").click();
  }

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

window.focus();
It has Enter to Submit, but he wants an Auto Submit.
Thats just annoying
$("#submitButton").click();
 
  • Like
Reactions: Squatty

Bode "Emo Barry" Miller

Unofficial Official
Contributor
HIT Poster
Joined
Jan 11, 2016
Messages
7,303
Reaction score
24,899
Points
1,213
You don't have to have a bank account at all, I think. That's linked to payments but you could, for example, just always transfer to amazon gift cards.

There are those prepaid cards or whatever people use that aren't bank accounts, too.
yeah besides, I don't see the need for a bank account. I've never transferred a cent from my mturk account.. what's the worst that could happen?
 

Pippa

All things lovely and beautiful.
Contributor
Joined
Jan 12, 2016
Messages
7,219
Reaction score
16,375
Points
1,163
Gender
Female
Thanks :love:

I'll be 22 weeks tomorrow, so I think sometime in September. They haven't even told me a due date yet :cautious:
Awe that's awesome. I hope you are feeling well and take care of yourself in the heat this summer. My children were born in August and September so I remember that heat.
 

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

ctraltDel

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
1,953
Reaction score
5,614
Points
838
Gender
Female
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
You don't have to have a bank account at all, I think. That's linked to payments but you could, for example, just always transfer to amazon gift cards.

There are those prepaid cards or whatever people use that aren't bank accounts, too.
I'm want to say that could hinder him because I think it asks for name on the account, but it's been a long time since I added an account. It would probably be better if he just opened an account somewhere.
Thank you guys! That's helpful. Didn't know prepaid debit cards were even a thing that worked with payments, I'll see if he's willing to do that. He should just get an account though, lol.
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
65,018
Reaction score
145,519
Points
2,088
Gender
Male
Thank you guys! That's helpful. Didn't know prepaid debit cards were even a thing that worked with payments, I'll see if he's willing to do that. He should just get an account though, lol.
Tell him he can apply for an account online, if that's the problem.
 
  • Like
Reactions: Jaded

Pippa

All things lovely and beautiful.
Contributor
Joined
Jan 12, 2016
Messages
7,219
Reaction score
16,375
Points
1,163
Gender
Female

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,618
Reaction score
123,839
Points
1,414
Age
123
Gender
Female
Status
Not open for further replies.