- Joined
- Jan 15, 2018
- Messages
- 7,403
- Reaction score
- 20,832
- Points
- 1,363
- Location
- Arkansas
- Gender
- Female
I think that if I had the choice of getting any author's entire collection, it would be Terry Pratchet. RIP.semi-related... this book is excellent
https://www.amazon.com/Amazing-Maurice-Educated-Rodents-Discworld/dp/0060012358
Huge Bill Bryson fan, I find his writing so entertaining, whatever his subject
I don't know but I wanted to say I did read your questionMaybe 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?
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.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
Thank you! LOLI don't know but I wanted to say I did read your question
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.I think that if I had the choice of getting any author's entire collection, it would be Terry Pratchet. RIP.
You should...unless they're entire nonsense. Then that would be a situation where you'd fool the AI and maybe not get paid.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?
A Walk in the Woods is one of my fav books. It's just so satisfying to read!Huge Bill Bryson fan, I find his writing so entertaining, whatever his subject
One of my kids middle names is Vimes. His dad was a huge Pratchet fan. His first name comes from a book as well.I think that if I had the choice of getting any author's entire collection, it would be Terry Pratchet. RIP.
I'm so afraid mine are entire nonsense..guess we will see lol!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.
They give me a headache.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?
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.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.
I LOVE that one... read it twice. Bill Bryson is awesome.
// ==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();
}
});