[flagged]
The infinite scroll may become endangered if controversial Calif. law passes
111–120 of 464 posts
Re: The infinite scroll may become endangered if controversial Calif. law passes
#112Re: The infinite scroll may become endangered if controversial Calif. law passes
#113Curious as to where the line between “addictive feature” and "good UX" is. Is deliberate pagination actual impedance to use or merely an annoyance that's been weeded out with modern UX design? When does a feature that simply makes your product easier to use cross into a territory that it's illegal? What about media previews, in a platform like reddit if you can preview or expand media directly from the main list is t…
Reading the bill I see carve-outs for things like "commercial transactions", perhaps allowing Amazon and Temu to use infinite scroll, but not Facebook and TikTok
Re: The infinite scroll may become endangered if controversial Calif. law passes
#114Re: The infinite scroll may become endangered if controversial Calif. law passes
#115Earlier quoted context omitted.
The challenge is to retain an ordering over the result set. How would infinite scroll behave any differently in this case? The changing results seems to be an orthogonal concern to pagination/infinite scroll.
Infinite scroll makes the problem much easier, even if it’s still a problem. The only action you need to support is loading more results, which you can do by loading all results and filtering out those already shown. With pagination, the user may say “give me page 3” and you have no idea what was on pages 1 and 2, if they were even loaded.
The typical infinite scroll that I've seen implemented does not work the way you describe though, it's just pagination without controls. The reason it works is because it's pushing content you never asked for anyway and it just keeps pushing. Without any sense of pages you'll never know the difference.
Re: The infinite scroll may become endangered if controversial Calif. law passes
#116Earlier quoted context omitted.
If page 1 and 2 were 10 each you load results 21-30 Same as if you are scrolling and have reached result 20 And want to load more.
But the underlying table changed since. I'm not very familiar with these myself, but it seams to me that the best solution is to keep a session cursor for the user, and these are a lot simpler when you only ever move it forward.
We want visitors to imagine that we just plopped a binder of sorted results down in front of them for their page-by-page perusal, but the suggests permanence and invariants we don't want to provide (because it's harder.) For example, the assurance that page 2 will always have the same items on it unless they "search again", and the last item on page 2 will not not duplicate itself on the top of page 3 as they page forward.
By way of contrast, imagine a system where a result-set was not just a UI metaphor, but real domain concept. Do a search, and you get a Result which is a limited-size listing generated at time X for user Y and will be cached for Z.
Re: The infinite scroll may become endangered if controversial Calif. law passes
#117Curious as to where the line between “addictive feature” and "good UX" is. Is deliberate pagination actual impedance to use or merely an annoyance that's been weeded out with modern UX design? When does a feature that simply makes your product easier to use cross into a territory that it's illegal? What about media previews, in a platform like reddit if you can preview or expand media directly from the main list is t…
The way I see it, it's the incessant stimuli you get through these apps. There's just no point where the screen stays quiet, stimulus free. Moving elements capture our attention naturally, especially when the entire screen keeps moving. The endless scroll element just makes sure that the stimulus keeps getting renewed the moment you're done with it. Instead, a scroll should give you a break before heading into the ne…
There is no allowable constitutional authority for actions like this. CA is literally overstepping the 1A limits of the Constitution here.
Re: The infinite scroll may become endangered if controversial Calif. law passes
#118It should just be universally required to give an option to disable addictive features. Should prevent age verification, and giving users optionality is always a good thing (for them).
How will you measure purely psychological addiction using a neutral process that can’t be easily captured by political interests? That said, I like the idea of an option. Options are good!
Re: The infinite scroll may become endangered if controversial Calif. law passes
#119Earlier quoted context omitted.
How will you measure purely psychological addiction using a neutral process that can’t be easily captured by political interests? That said, I like the idea of an option. Options are good!
Clearly there is a fuzzy line of demarcation. I was thinking for a simple opt-out of any rec-sys
Re: The infinite scroll may become endangered if controversial Calif. law passes
#120Curious as to where the line between “addictive feature” and "good UX" is. Is deliberate pagination actual impedance to use or merely an annoyance that's been weeded out with modern UX design? When does a feature that simply makes your product easier to use cross into a territory that it's illegal? What about media previews, in a platform like reddit if you can preview or expand media directly from the main list is t…