this post was submitted on 18 Oct 2025
40 points (100.0% liked)

Asklemmy

50915 readers
734 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 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Naich 10 points 13 hours ago (1 children)

I invented a pagination system for web pages that allowed easy navigation with only a few clicks to get to the page you want, whether it was 3 pages or 3000 pages.

I'm really surprised no one else has invented it because it was so much better than anything else I've seen.

[โ€“] EveryMuffinIsNowEncrypted@lemmy.blahaj.zone 7 points 12 hours ago (1 children)

Does it still exist, and can it be implemented client-side? That sounds really cool!

[โ€“] Naich 2 points 7 hours ago

I wrote it for a friend's company, and I don't think he ever did anything much with it. I don't remember the exact details, but it was something like this for 200 pages:

<1 - 100> [101 - 110] 111 ... 120 [121 - 131] <131 - 200>

Basically 3 levels of page selection, where you can pick one in a range of 10, skip forward or back by 10 or go to a new section of pages. It was something like that anyway. The total number of pages defined the ranges. It was all very clever and worked well for moving around large numbers of pages.