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!
- Open-ended question
- 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.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- !lemmy411@lemmy.ca: a community for finding communities
~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
view the rest of the comments
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.
Does it still exist, and can it be implemented client-side? That sounds really cool!
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.