11/26 - Scarves Saturday!

Have you nominated a November Crowd Pleaser yet?


  • Total voters
    29
  • Poll closed .
Status
Not open for further replies.

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
Title: Categorize 1000 personal interests | PANDA
Requester: EdAdapt [AB8LI3IISIFVU] (TO)
TO Ratings:
★★★★★ 3.89 Communicativity
★★★★★ 3.32 Generosity
★★★★ 4.94 Fairness
★★★★ 4.89 Promptness
Number of Reviews: 95 | TOS Flags: 4
Submit a new TO review
Description: You will fill in a survey asking you to categorize 1000 personal interests.
Time: 12 hours
HITs Available: 1
Reward: $10.00
Qualifications: Total approved HITs is not less than 1000;HIT approval rate (%) is not less than 95;Location is US
Is this the same one?? So...if I message and ask for my other $5 they will laugh at me won't they :( this thing was awful. At least at 3am it was. And for $5.
 

MindNumbing

Well-Known Member
Contributor
Joined
Jan 12, 2016
Messages
5,971
Reaction score
10,565
Points
1,013
Gender
Female
Is this the same one?? So...if I message and ask for my other $5 they will laugh at me won't they :( this thing was awful. At least at 3am it was. And for $5.
Could be because it says not to do it again if your did it before.
 

harriss143

Baked Cuppycake
Contributor
Joined
Nov 21, 2016
Messages
1,065
Reaction score
2,219
Points
588
Age
32
Gender
Female
where you guys post the .gifs from...it wont let me use gyfcat
 

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
Here, I will try to make this as easy to understand as possible.
Code:
// This is your "counter" variable
let idx = 0;

// This adds a listener when you press a key.
document.addEventListener('keydown', (e) => {
  switch (e.which) {
      // If the 1 (case 49) key or Numpad1 (case 97) key are pressed.
    case 49: case 97:

      // Everything is zero indexed, so the first radio is 0, the second is 1 and so on.
      // $(':even') will get all of the radios that are 0,2,4,6.... So being zero indexed means..
      // it will choose the 1st, 3rd, 5th, 7th....
      // .eq(idx ++) will choose which of the :even radios, so $(':radio:even').eq(2) will choose the 5th radio.
      // .click() will click on the element.
      // So we are getting all of the even radios, then choosing which we want out of those and clicking it, then adding +1 to the index.
      $(':radio:even').eq(idx ++).click();

      // This will focus the next radio, scrolling the page if necessary
      $(':radio:even').eq(idx).focus();
      break;
      // If the 2 (case 50) key or Numpad2 (case 98) key are pressed.
    case 49: case 97:
      // Same as above, but odds instead of evens.
      $(':radio:odd').eq(idx ++).click();

      // This will focus the next radio, scrolling the page if necessary
      $(':radio:even').eq(idx).focus();
      break;
    default: return;
  }
});
This is incredibly helpful. If you could do this with all of your scripts, I could actually learn stuff. And would be really annoying for you and is also way too much to ask, but hey I can dream, right? :D
 

lil queen trashmouth

Pile of ham
Contributor
Joined
Jul 6, 2016
Messages
5,115
Reaction score
17,359
Points
1,013
Age
35
Location
Iowa
Gender
Female
where you guys post the .gifs from...it wont let me use gyfcat
It'll let you use anywhere - click the little picture next to the smiley face when you're writing a post, paste the gif address in there.
 

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,978
Points
1,313
where you guys post the .gifs from...it wont let me use gyfcat
Click on the box above the reply text box where you type to the right of the smiley face (it looks like a square with a mountain in it). Then paste the URL for the GIF in that box (it'll end with .gif).
 

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
how long did this take?
All I know is it seemed to last through several episodes of White Collar on netflix while i was half alseep. Maybe a couple of hours? Probably would go faster in other circumstances.
 

lil queen trashmouth

Pile of ham
Contributor
Joined
Jul 6, 2016
Messages
5,115
Reaction score
17,359
Points
1,013
Age
35
Location
Iowa
Gender
Female

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
Could be because it says not to do it again if your did it before.
Well I asked nicely for something, even if not the whole other $5, can't hurt right? they already paid me the $5 so cant reject me for it...haha and maybe I'll give them a good laugh if nothing else.
 

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
  • Like
Reactions: jan
Status
Not open for further replies.