Any examples of websites with ZUIs? Looks interesting!
Ask HN: What are weird and/or novel ways to do web UIs?
11–20 of 364 posts
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#12Re: Ask HN: What are weird and/or novel ways to do web UIs?
#13Google Maps has a ZUI in Chrome ;) more or less.
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#14Re: Ask HN: What are weird and/or novel ways to do web UIs?
#15I'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.
Just like communicating with strangers via on-demand electric currents is weird as well, if you phrase it like that.
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#16I'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.
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#17Go spend 5 minutes here on pc desktop. http://cyberspaceandtime.com/Gaano9Y6KAU.video+related I came across this site a few weeks ago. And it's quite unlike anything I've seen. And try to inspect the site using browser inspector. It's a very different ui than I've ever seen before.
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#18I'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?
And they never kept track of their dependencies in the first place. That's the job of some build tool. Whatever it pulls in is fine.
Re: Ask HN: What are weird and/or novel ways to do web UIs?
#19Re: Ask HN: What are weird and/or novel ways to do web UIs?
#20Earlier quoted context omitted.
That's indeed weird. How would they not lose track of their dependencies? How do they keep their code lean and load times fast?
They just hope that Google will keep pouring infinite money into making their JavaScript engine faster. And they never kept track of their dependencies in the first place. That's the job of some build tool. Whatever it pulls in is fine.