12/22 - Fruitcake Friday!

Status
Not open for further replies.

Diane89

New Member
Joined
Dec 15, 2017
Messages
78
Reaction score
124
Points
233
Age
34
Gender
Female
It is driving me NUTS now knowing how much money i have pending in total, or approved and not yet paid. i mean NUTS lol. Also, does anyone know how many of those crayola hits we can do?
 

Binxybaby

Well-Known Member
Joined
May 19, 2017
Messages
3,508
Reaction score
9,250
Points
813
Age
35
Gender
Female
It is driving me NUTS now knowing how much money i have pending in total, or approved and not yet paid. i mean NUTS lol. Also, does anyone know how many of those crayola hits we can do?
ME TOOOOOOOO I'm like trying to calculate it in my head but Im sure Im wrong..... I hate this!
 

DjBonadoobie

DOUBLEWAT
Contributor
Joined
Jan 12, 2016
Messages
342
Reaction score
1,030
Points
468
Age
37
Gender
Male
got it.

TurkMaster around line 2407, in the `Watcher.prototype.parseNewHit` method:

replace this

Code:
  if (result.results) {
    return; // No more HITs available
  }
with

Code:
  // Mturk now returns a message object on errors (ie {message: 'Accepted maximum hits/ PRE's/no more hits etc.'})
  // We need to check for and return.
  if (result.results || result.message) {
    return; // No more HITs available
  }
or even safer throw in a type check (i swear i've seen a `result` that was xml at some point)

Code:
  if (typeof result !== 'object' || result.message || result.results) {
    return; // No more HITs available
  }
seems to be working now instead of erroring out

can't test thoroughly atm. on spotty car wifi otw to Ohio
 
Last edited:

Diane89

New Member
Joined
Dec 15, 2017
Messages
78
Reaction score
124
Points
233
Age
34
Gender
Female
ME TOOOOOOOO I'm like trying to calculate it in my head but Im sure Im wrong..... I hate this!
Exactly and i dont want to go through every single day to see and add them all up but i feel like i have to =(
 
  • Like
Reactions: Binxybaby

Turtlefemm

Mostly a Turtle
Contributor
Mentor
Joined
Jan 12, 2016
Messages
3,030
Reaction score
18,984
Points
1,338
Location
Earth
Gender
Female
Morning, peoples... I'm barely awake, so I'm not sure if this is here somewhere or yesterday's thread somewhere, but when I logged on and tried to do some HITs from a requester who didn't switch over to the new site, nothing shows up on any browser, even with scripts turned off. (except for empty border boxes. My solution from my sleeping brain was to use this link for my queue:

https://www.mturk.com/mturk/myhits?doNotRedirect=true

and then collect the HITs in my queue with Panda Crazy. I'm keeping the link handy, because when the ones I collected have run out, it goes back to the new site. (and I don't want a continuous queue flow before I have finished at least one cup of coffee!)
 
Last edited:

JBrown5886

New Member
Joined
Jun 16, 2016
Messages
54
Reaction score
101
Points
283
Age
42
Gender
Male

Diane89

New Member
Joined
Dec 15, 2017
Messages
78
Reaction score
124
Points
233
Age
34
Gender
Female
If you are comfortable with it add in the lines to HIT DB from this post https://www.mturkcrowd.com/threads/12-20-watch-it-all-burn-wednesday.2906/page-11#post-1085705 and use the old worker dashboard to update it https://www.mturk.com/mturk/dashboard?doNotRedirect=true, it's kind of a pain but the pending is important in my opinion
I have no idea how to do that =( thank you though!! Yes, pending is super important to me too but im not the best computer literate person even though im only 28 i cant stand technology lol
 
  • Like
Reactions: Binxybaby

Dekabmi

New Member
Joined
Dec 19, 2017
Messages
9
Reaction score
46
Points
13
Age
34
Gender
Male
Good morning. It's a cold one out here today. I got my first rejection (my fault), just shaking it off, and getting back to work.
 
Status
Not open for further replies.