12/31 - So This is the Final Day of the Year Saturday!

Status
Not open for further replies.

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,614
Reaction score
123,828
Points
1,414
Age
123
Gender
Female
I don't know what's going on right now. But there sure are a lot of quotes.
 
  • Like
Reactions: Kerek and Jerami

Kadauchi

Well-Known Member
Master Pleaser
Crowd Pleaser
Joined
Jan 12, 2016
Messages
7,098
Reaction score
21,951
Points
1,263
These both result in the same thing.

Old icky code
Code:
var qualif = 'None;';
var quals = hit.hit_requirements;

if (quals.length) {
  qualif = '';
  for (var j = 0; j < quals.length; j ++) {
   var q_comp = quals[j].comparator + ' ';
   var q_name = quals[j].qualification_type.name + ' ';

   var q_valu = quals[j].qualification_values;
   var q_values = '';
   for (var k = 0; k < quals.length; k ++) {
     if (quals[j].qualification_values[k]) {
       q_values += quals[j].qualification_values[k];
       q_values += k === quals.length ? ', ' : '';
     }
   }
   qualif += (q_name + q_comp + q_values).trim() + '; ';
  }
}
New fancy code
Code:
var quals =
   hit.hit_requirements.length ?
   hit.hit_requirements.map(obj => `${obj.qualification_type.name} ${obj.comparator} ${obj.qualification_values.map(val => val).join(`, `)};`).join(` `):
`None;`;
 
D

Deleted member 526

Guest
halp! image segmentation hits - I drew around a deer. but I can't get it to stop drawing lines. double click doesn't finish it. neither single click. how do I stop drawing?

also I dare you to try these after a beer. just kidding don't really.
 

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
halp! image segmentation hits - I drew around a deer. but I can't get it to stop drawing lines. double click doesn't finish it. neither single click. how do I stop drawing?

also I dare you to try these after a beer. just kidding don't really.
esc?
 
  • Like
Reactions: Deleted member 526

WalkingEmphasis

Banned
Banned
Contributor
Joined
Apr 11, 2016
Messages
4,424
Reaction score
8,154
Points
888
halp! image segmentation hits - I drew around a deer. but I can't get it to stop drawing lines. double click doesn't finish it. neither single click. how do I stop drawing?

also I dare you to try these after a beer. just kidding don't really.
what about after three beers? :p
 

Jerami

Well-Known Member
Contributor
Crowd Pleaser
HIT Poster
Joined
Jan 24, 2016
Messages
14,405
Reaction score
25,210
Points
2,238
insert mod quote about drinking and turking
:smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown::smallredtriangledown:
 
Last edited:

Jaded

The real themildone
Administrator
Joined
Jan 10, 2016
Messages
46,614
Reaction score
123,828
Points
1,414
Age
123
Gender
Female
halp! image segmentation hits - I drew around a deer. but I can't get it to stop drawing lines. double click doesn't finish it. neither single click. how do I stop drawing?

also I dare you to try these after a beer. just kidding don't really.
what about after three beers? :p
:nonono:
 
Status
Not open for further replies.