frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Instant responsiveness in user interfaces is annoying

21•zero-sharp•1d ago
I hardly make posts on this forum and I don't see people talking about this. This is a personal gripe/rant with a lot of modern applications. Here are some examples of what I mean:

1. As I'm typing text into a search input, the interface wants to instantaneously pattern match my search and offer the best results. Sometimes this is helpful. In other situations, this can take my attention away by opening extraneous menus or interactive elements. To be honest, I just want to finish typing my search. Stop asking me for more input as I'm typing my input.

2. Certain websites are designed to open menus/interactive elements as the cursor hovers over particular web elements. For me, this is sometimes another distraction. Just because I moved my mouse, that doesn't mean I want to see yet another menu. The instant responsiveness can lead me to click in the wrong places due to unexpected interface components showing up. I can't tell you how many times I've chained several misclicks due to unexpected links/buttons (or lack thereof as described in 3 below).

3. Responsiveness creates expectations for feedback. Then, if some part of your application starts to lag (maybe it's the internet, maybe it's my computer), you lose the responsiveness and I get annoyed.

Am I just becoming a grumpy old guy?

Comments

al_borland•1d ago
#1 is especially annoying when it locks up your ability to type, because the site is busy trying to query the first 2-3 letters of the input. The whole process ends up taking longer. If #1 causes #3 to suffer in any way, it's an anti-feature and slows everything down.

#2 can be an issue the opposite way as well, such as manufactured delays. Think of a modal window that pops-up after you've been on a site for 5 seconds and are just about to click a link, but instead click the modal. Or you begin reading, are 2 sentences in, and the modal pops up. When this happens, I close the page. It's so frustrating.

aosaigh•1d ago
I agree with your points. I think the main issue is that most developers don’t consider UI.

They consider app functionality and features, or look-and-feel and design, but they ignore UI (or don’t know what good UI is).

Like you described, even a simple search bar requires careful thought and experimentation to get right.

Another issue is UI libraries. People plug these in thinking they solve everything but in reality they only get you so far.

bediger4000•1d ago
Isn't the issue variable response times? You get used to some sequence of clicks and changes in the interface. Occasionally one response is much slower, so your clicks go away
samdoesnothing•1d ago
This is really a taste issue, and many developers lack it.
jabjq•1d ago
Or they are just lazy. Recently I had to implement text search and making it load the results instantaneously on every keystroke is easier than implementing a delay. I was hoping the client wouldn’t complain, and thus far he has not.
rrgok•1d ago
Or it is not a Software engineer's responsibility? There are roles for that, UI Designer, UX Designer....
bitpush•1d ago
haha, there is that word again - "taste", another way of saying design sensibility, or "good eye". "Taste" is now gaining popularity, ever since LLMs have made is accessible for anyone to create anything.

At its core, the idea is the same - some folks can produce exceptional products with same tools, but it is now packaged for the LLM era.

aegypti•1d ago
Just for what it’s worth, it is a very, very common and basic vocabulary term in any creative field including UI/UX.

The first thing a novice struggles with and reads 30 Medium articles from 2014 about is their taste exceeding their skill, and how to close that gap.

satvikpendem•1d ago
This is why a good design sense is important and it always makes me laugh to hear on HN of people wanting instantaneous responses with zero animations on websites. It sounds good in theory but not so in practice. There have been studies to show that people don't think anything has happened if for example they click a button to compute something and it instantly runs and returns. A delay is actually more comforting to them.
3036e4•8h ago
You can have visual feedback without delays, so that is no excuse. A UI that operates as fast as I can type, with no visible frame-skips, or click is always going to feel better to use than some sluggish bloat ui.
satvikpendem•7h ago
Didn't you read the OP? That is exactly what they're complaining about, that it in fact does not feel good.
ksec•1d ago
It is not that "Instant responsiveness in user interfaces is annoying". It is that certain features should not have Instant responsiveness, while other features should.

Generally speaking I want instant response especially on native apps, but I agree with all the examples you gave especially when it has something to do with Internet. I actually want consistent rendering time across the site rather than fastest possible page view every time.

rrgok•1d ago
It is amazing how most replies make the software engineer or developer the culprit of this. How the user interact and sees the product is the role of UI/UX designer.
Ethee•22h ago
Except that's not really true. Take OPs example of the search bar, in most shops as a UI/UX designer you put a search bar on your figma page and hand it off to the engineer who then implements it. It's entirely up to the engineer how the search functionality is going to work, am I going to query my backend on every keypress? Depending on how big your database that could be anywhere from 50ms-1s for a response PER KEYPRESS, which is exactly OPs problem. I don't see how the UI/UX designer is going to fix or solve that.
rrgok•3h ago
In most shop they stop at the UI part of the UI/UX combination. UX should dictate all these interaction. Slapping a search input on Figma page is just a miniscule part of UI/UX process. I would even argue the easiest part of the entire process: anyone can do it.
adrianwaj•1d ago
Speaking of annoying and never pointed-out, shouldn't all the text in the HN top-posting box be darker.. it's like the OP is being downvoted from the outset? Makes people less responsive.
al_borland•1d ago
I think this is done to discourage text posts and encourage linking to an original source. This way HN links to good and interesting things, rather than being the site holding these things. We can see how the latter can go poorly with how things have gone with Reddit.
adrianwaj•23h ago
Can't it go darker at some point? The age/flags/upvotes/favorites - it'd be obvious when it's safe to do so. Question for the mods.
supriyo-biswas•1d ago
There is no downvoting on posts; it’s intentionally like that to avoid the use of this site as a blogging platform.
layer8•1d ago
I agree with your points, especially #2, but I wouldn’t call that “instant responsiveness”. Reading the submission title, I was expecting advocacy for favoring UI animations over an instantly responsive UI.

It’s good for a UI to be immediately responsive to user actions, as long as the response matches the user’s intent. So it’s not the responsiveness that is the problem, but the response not matching the user’s expectations.

xplt•1d ago
I especially love the part of "instant responsiveness" where a UI changes on interaction an then just shows placeholders while actually fetching data for 2-5 seconds.

Otherwise, snappy interfaces are kinda nice.

hiAndrewQuinn•1d ago
Websites, websites, websites. Of course instant responsiveness is going to be annoying when you have a >30ms network call with P99 an order of magnitude above that in the mix. If you want real, deep breathing instant responsiveness, you gotta commit to the bit. Go local or go home and denounce, for everyone's own sanity.

I've recently been polishing up [1] for commercial release. It's a product that serves a real need for a niche community, and it's one that I built and use every day based on my own experiences for what I need as a member of that community, so I have even more reason than usual up get it right.

Truly instant responsiveness means putting the data as close and as hot to the end user as physically possible, to the point I wrote and tweaked my own trie implementation to get it just right. And even there with some of the new commercial features I'm starting to run up against ever so slightly noticeable input lag, and it really makes the whole experience feel clunkier than it should. Considering adding a 50ms denounce just to hide my shame...

[1]: https://github.com/hiandrewquinn/tsk

benoau•22h ago
#2 happens to me a lot, never ceases to annoy me.
didgetmaster•21h ago
Is the feature to disable a 'submit' button after you press it ever used anymore? I hate it when you click a button to complete a transaction and nothing happens for a long time. You think the button missed the mouse click so you press it again, only to find your order just doubled!
ted_bunny•21h ago
I always hated mouseover menus, but haven't they gone out of style at least?
3036e4•8h ago
Always seems random to me. Can't guess if a menu is going to display itself or wait for a click. The worst kind behaves differently if you click or not. Clicking the menu button brings you to some kind of special menu/profile page, but hoover for a while and instead you get the actual menu to pop up.

Or the menu displays itself, just when I decided to click, so my click instead closes the menu just as it appears.

provinescoch293•11h ago
You’re not grumpy—you’re reacting to “micro-aggression UX.” Instant-everything steals your locus of control and forces cognitive load you never asked for.

Easy fixes: • Search: add `?instant=0` or `debounce=300` to the URL (works on most Algolia & Elasticsearch front-ends). • Hover menus: enable “Reduce motion” in OS settings; many CSS media queries will swap to click-only. • Global: uBlock Origin’s `:has(:hover)` filter nukes 90 % of hover pop-ups.

If you build UIs, ship a 150 ms debounce by default—fast enough to feel alive, slow enough to respect human rhythm.

I bake that delay into every demo on my AI image tool: type a prompt, nothing flashes until you stop—then FLUX Kontext renders in 2.3 s flat. Try the no-jitter editor at https://flux-kontext.io

Show HN: How Claude Code Improved My Dev Workflow

2•IgorGanapolsky•1m ago•0 comments

Despite deepfake audio tech, banks, ISPs push voice print authentication (2021)

https://keydiscussions.com/2021/12/07/despite-the-prevalence-of-deepfake-audio-tech-banks-and-isps-rush-ahead-with-voice-print-authentication-%f0%9f%92%80/
1•spenvo•1m ago•0 comments

The dangers of Musk's new, Manga-style [flirty] chatbot [video]

https://www.youtube.com/shorts/17rkMuExdPI
2•mdp2021•4m ago•1 comments

Qwen3 – Coder

https://old.reddit.com/r/LocalLLaMA/comments/1m6mew9/qwen3_coder/
1•mircea•5m ago•1 comments

Vector Tiles are deployed on OpenStreetMap.org

https://blog.openstreetmap.org/2025/07/22/vector-tiles-are-deployed-on-openstreetmap-org/
1•ikawe•8m ago•0 comments

How Silicon Valley is becoming militarized

https://english.elpais.com/economy-and-business/2025-07-21/big-tech-enters-the-war-business-how-silicon-valley-is-becoming-militarized.html
1•geox•9m ago•0 comments

Show HN: How Claude Code Improved My Dev Workflow

1•IgorGanapolsky•14m ago•0 comments

Checklist Genie – Create Sharable Checklists with Just Your Voice and AI

https://checklistgenie.app
1•alohaplannerapp•15m ago•1 comments

Qwen3-Coder: Agentic Coding in the World

https://qwenlm.github.io/blog/qwen3-coder/
3•danielhanchen•15m ago•0 comments

Ask HN: A Reddit UI where all writing is done by an AI?

1•amichail•16m ago•1 comments

Show HN: A CLI tool for creating Typst screenplay projects

https://github.com/ChaseRensberger/typstscript
1•ChaseRensberger•18m ago•0 comments

Hackers Behind $140M Brazil Banking Heist Turn to Crypto to Launder Their Loot

https://www.coindesk.com/business/2025/07/04/hackers-behind-usd140m-brazil-banking-heist-turn-to-crypto-to-launder-their-loot
1•PaulHoule•18m ago•0 comments

RFC 1392: Internet Users' Glossary

https://www.rfc-editor.org/rfc/rfc1392.html
1•adtac•18m ago•0 comments

A power utility is reporting suspected pot growers to cops. EFF says illegal

https://arstechnica.com/tech-policy/2025/07/eff-moves-to-stop-power-utility-reporting-suspected-pot-growers-to-cops/
3•duxup•18m ago•1 comments

SmoothCSV: The CSV Editor

https://smoothcsv.com
2•msephton•19m ago•1 comments

Ask HN: Can You Buy Your Way into Your Dream Job?

3•YoloVibes•21m ago•3 comments

SWE-Bench Verified Is Flawed Despite Expert Review

https://ddkang.substack.com/p/swe-bench-verified-is-flawed-despite
2•yuxuan18•23m ago•0 comments

Migrating to AWS in production with zero downtime

https://loops.so/engineering-blogs/migrating-to-aws-in-production-with-zero-downtime
2•chrisfrantz•23m ago•1 comments

Show HN: Free crypto screener for Binance, Bybit, OKX and Coinbase (no login)

https://devisecrypto.com
1•zainwah24•24m ago•0 comments

NPM 'Is' Package Hijacked in Expanding Supply Chain Attack

https://socket.dev/blog/npm-is-package-hijacked-in-expanding-supply-chain-attack
1•feross•26m ago•0 comments

If Coding Agents Were Rappers

https://install.md/blog/if-coding-agents-were-rappers
2•goroutines•28m ago•0 comments

UFOs once took control of Russian ICBMs, nearly caused WW3 – testimony

https://www.jpost.com/omg/article-753288
2•handfuloflight•28m ago•0 comments

Andrej Karpathy – The append-and-review note

https://karpathy.bearblog.dev/the-append-and-review-note/
1•superconduct123•30m ago•0 comments

Vibe Coding an SMTP Server, in Rust

https://mailpace.com/blog/musings/vibe-coding-an-smtp-server
2•albertgoeswoof•32m ago•0 comments

Build, Learn, Delete, Repeat

https://ymichael.com/2025/07/18/build-learn-delete-repeat.html
1•sawyerjhood•33m ago•0 comments

Veles, Google's open source secret scanner

https://opensource.googleblog.com/2025/07/stop-leaked-credentials-in-their-tracks-with-veles-our-new-open-source-secret-scanner.html
1•sharkbot•33m ago•0 comments

Show HN: Let ChatGPT Plus control any Python or JavaScript object in 3 lines

https://chatgpt.com/g/g-4ioOcgdvH-telekinesis
1•eneuman•35m ago•0 comments

Leak: Anthropic Says the Company Will Pursue Gulf State Investments After All

https://www.wired.com/story/anthropic-dario-amodei-gulf-state-leaked-memo/
4•alexcos•35m ago•2 comments

Thursday Is Durable Computing Day

3•jedberg•38m ago•2 comments

A Quick(ish) Introduction to Tuning Postgres

https://byteofdev.com/posts/tuning-postgres-intro/
2•AsyncBanana•38m ago•0 comments