11/28 - Wild Wednesday!

Do you like Rocky Movies?

  • Yes

  • No

  • Haven't seen 'em


Results are only viewable after voting.
Status
Not open for further replies.

savvy

goin' down to the yee-haw
Moderator
Joined
Jul 29, 2017
Messages
8,903
Reaction score
27,482
Points
1,113
Age
33
Location
Virginia
Gender
Female
Update on Team View remote - after a few hours, it auto resets the password for remote connection. The same password worked from 6:30am until about 20 minutes ago. Now it doesn't work anymore and says it's an invalid password. So this isn't very useful, unfortunately, since I can't see the new password being created on my computer.
 
  • Like
Reactions: SherryNotShirley

Kadauchi

Well-Known Member
Master Pleaser
Crowd Pleaser
Joined
Jan 12, 2016
Messages
7,098
Reaction score
21,951
Points
1,263
I got it. I'm watching the vids now. It also comes with his node.js course. Once I get a better handle on javascript I'll start looking at the server-side stuff:nailbiting::nailbiting::nailbiting:
Its not too hard of a jump really since its all still JS. I'm finally diving into Firebase today and getting a chance to add that in.
 

lolkatB

Well-Known Member
Contributor
Joined
Jan 6, 2018
Messages
2,459
Reaction score
5,314
Points
838
Age
51
Gender
Female
I think that if I had the choice of getting any author's entire collection, it would be Terry Pratchet. RIP.:(
I have one.... one of the hardships of divorce was flipping a coin for the Pratchett collection. I'm so grateful I won. I'd never be able to afford them all now. I started reading them the year he published his first and have one of each of his novels.
 
  • Like
Reactions: SherryNotShirley

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
Maybe I'll try some of these Alexandrias and hurt my brain

Edit: If I do validate and fool the AI then I should get all my hits approved right?
You should...unless they're entire nonsense. Then that would be a situation where you'd fool the AI and maybe not get paid.

Sorry. Didn't see your Q.
 

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
I'm so afraid mine are entire nonsense..guess we will see lol!
I always worry about this stuff.
I mean like nearly unreadable. If the words make sense(gramatically)but, the action doesn't, you should be fine. But, only the requester really knows.
 

CrazyCatLady

..
Contributor
Crowd Pleaser
Joined
Jan 15, 2018
Messages
7,403
Reaction score
20,832
Points
1,363
Location
Arkansas
Gender
Female
I mean like nearly unreadable. If the words make sense(gramatically)but, the action doesn't, you should be fine. But, only the requester really knows.

Hopefully, I'm going to torture myself to $10 with them and then do other stuff rest of the day lol.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
Code:
// ==UserScript==
// @name         A9 11/28/18
// @version      .02
// @description  LowCalCalzone request
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

$('input[value="yes"]').click();
console.log("loaded");
window.addEventListener("keydown", function (event) {
    if(event.code === "Numpad1"){
        $('input[value="no"]').eq(0).click();
    }
    if(event.code === "Numpad2"){
        $('input[value="no"]').eq(1).click();
    }
    if(event.code === "Numpad3"){
        $('input[value="no"]').eq(2).click();
    }
    if(event.code === "Numpad4"){
        $('input[value="no"]').eq(3).click();
    }
    if(event.code === "NumpadEnter"){
        $("#submitButton").click();
    }
});
Kadauchi @Kadauchi LowCalCalzone @LowCalCalzone
 
Status
Not open for further replies.