this post was submitted on 06 Nov 2023
170 points (94.3% liked)

Asklemmy

43392 readers
1971 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 5 years ago
MODERATORS
 

Comment on the top level thing and someonw will hopefully comment on yours. Just say like "Test"

you are viewing a single comment's thread
view the rest of the comments
[โ€“] cheese_greater@lemmy.world 5 points 10 months ago (1 children)
[โ€“] BlueEther@no.lastname.nz 7 points 10 months ago (2 children)

It looks like you broke the interwebs my mate

[โ€“] cheese_greater@lemmy.world 4 points 10 months ago (1 children)

Did I actually do something bad? Like are y'all upset at me?

[โ€“] Anbalsilfer@lemmy.ml 13 points 10 months ago* (last edited 10 months ago) (1 children)

You're a grey hat. Technical problems like these are likely to never get fixed until their consequences are demonstrated.

[โ€“] cheese_greater@lemmy.world 1 points 10 months ago

I feel like I'm def more of an IdeasGuy, like I don't implement stuff but I guess I'm good at finding edge cases/outliers.

[โ€“] cheese_greater@lemmy.world 2 points 10 months ago (1 children)
[โ€“] BlueEther@no.lastname.nz 3 points 10 months ago (3 children)

looks like 128 deep from here, and that number feels very familiar some how. I just cant place where Ive seen it before...

[โ€“] user224@lemmy.sdf.org 5 points 10 months ago (2 children)

Hmm... I got 99. The red line is there 14 times with full color change + 1 extra line. Each time it's 7 colors, so 99. I double-checked.

[โ€“] BlueEther@no.lastname.nz 11 points 10 months ago (1 children)

If in doubt look at the code:

const MAX_COMMENT_DEPTH_LIMIT: usize = 100;

I Guess that is the answer

[โ€“] user224@lemmy.sdf.org 4 points 10 months ago

Now, what would happen with other instances if you compiled it with higher number for your own ๐Ÿค”

[โ€“] BlueEther@no.lastname.nz 3 points 10 months ago (1 children)

I think you are correct, I based it on:

[โ€“] Feathercrown@lemmy.world 1 points 10 months ago

Maybe there are branches in the tree of comments?

[โ€“] Feathercrown@lemmy.world 4 points 10 months ago

128 = 2^7; powers of 2 show up a lot in computing. Looks like it's 100 though per the below comment.