Live data from Hacker News

The infinite scroll may become endangered if controversial Calif. law passes

sfgate.com

111–120 of 464 posts

Re: The infinite scroll may become endangered if controversial Calif. law passes

#113

Curious 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…

I think it's about user agency. When we say that infinite scroll is addictive, we mean that the user keeps on scrolling even when they wish they could stop. It's also about harm. Trapping users on their phones is harmful to their well-being. A person who wants to quit should be able to do so, addictivity that prevents that is harmful.

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

#115
post #36

Earlier 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.

You can implement pagination exactly the same way. It's a UX decision that has nothing to do with underlying queries, although it typically maps.

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

#116

Earlier 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.

IMO "pages of search results" is one of the problems where the closer you look, the more potential problems and inconsistencies you see until you realize it's a leaky abstraction, and sometimes it gets too leaky.

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

#117

Curious 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…

Hello, what right do you have to regulate the presentation of speech? If you regulate this format because it’s now considered harmful, what stops El Presidente from moving to ban “zines” because the format is “harmful to young minds” and used by “antifa”? What stops CA from moving to ban forums because threaded formats are suddenly considered “too addicting”? Maybe we should ban VR or first person shooter video games?

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

#118

It 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!

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

#119

Earlier 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

While I’m uncomfortable with any legislation regarding the presentation of speech, in fact it’s definitely unconstitutional, this isn’t bad if you ignore the 1A issues. Hard to ignore that though

Re: The infinite scroll may become endangered if controversial Calif. law passes

#120

Curious 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…

I know it when I see it.

https://en.wikipedia.org/wiki/I_know_it_when_I_see_it

Post reply on HN