I once worked at Chase Manhattan Bank and one of their internal networking teams had a web site for wiring requests. They didn’t want to work too hard so their UI was designed to make data entry as slow as possible, mostly by using huge multi-level drop down lists where the slightest twitch would make them collapse and you would have to start over navigating through them, repeat a dozen times for every run of cable,…
Ask HN: What are weird and/or novel ways to do web UIs?
61–70 of 364 posts
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#62Re: Ask HN: What are weird and/or novel ways to do web UIs?
#63I once worked at Chase Manhattan Bank and one of their internal networking teams had a web site for wiring requests. They didn’t want to work too hard so their UI was designed to make data entry as slow as possible, mostly by using huge multi-level drop down lists where the slightest twitch would make them collapse and you would have to start over navigating through them, repeat a dozen times for every run of cable,…
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#64Weird? Maybe. Super simple single page responsive website, no JS, CSS + HTML only: https://isabellegrell.com/
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#65Not sure if this counts as weird or novel web UI, but I wrote a small library to stream Dear ImGui's vertex and index buffers to browsers via websockets, and just render them using WebGL's drawElements [0]. There a couple of examples linked in the README for anyone interested. [0] https://github.com/ggerganov/imgui-ws
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#66Re: Ask HN: What are weird and/or novel ways to do web UIs?
#67I've heard that some people build UIs with thousands of dependencies, in JavaScript that hits the server for text that is then parsed to object that are then passed through all sorts of classes that each spit out HTML. They also do some weird stuff with events like key-ups in order to re-render input fields based on objects rather than letting the browser manage those kinds of things. Sounds pretty weird to me.
That's indeed weird. How would they not lose track of their dependencies? How do they keep their code lean and load times fast?
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#68A small album of the best and worst of these submissions: https://www.reddit.com/r/ProgrammerHumor/comments/6fdl8h/an_...
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#69This company's web UI would allow its users to initiate bank transactions. Nothing weird from the user's end. However, the company had to "approve" the transactions in real time, synchronously. The company could do all sorts of programmatic verification on the user, recipient, transaction, etc, but we had to actually physically press a button on the screen of a smart telephone to approve the transaction. There was no programmatic way around this.
Some programmers at the company came up with a robotic arm which could be controlled programmatically, which would do the telephone screen pressing for us.
I always thought that was pretty clever.
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#70I've heard that some people build UIs with thousands of dependencies, in JavaScript that hits the server for text that is then parsed to object that are then passed through all sorts of classes that each spit out HTML. They also do some weird stuff with events like key-ups in order to re-render input fields based on objects rather than letting the browser manage those kinds of things. Sounds pretty weird to me.
Says everyone on HN while relying on these weird UIs to do their job daily.