I agree with the other's regarding the dynamic nature of the content. In addition, the widgets themselves haven't changed all that much for desktop GUI's. WxWidgets, Win32, Gtk, and Qt have mostly the same basic set of controls today that they had 15 years ago. Just imagine the extra R&D churn it would consume if you also had to update your GUI editor every time you changed a web UI control!
Ask HN: Why Haven't GUI Front End Editors Caught On?
121–130 of 140 posts
Re: Ask HN: Why Haven't GUI Front End Editors Caught On?
#122I think they're there, you just need to find them. For example, here's a pretty good one: http://h5mag.com/
Re: Ask HN: Why Haven't GUI Front End Editors Caught On?
#123The real issue is a huge WYSIWYG : HTML mismatch. You want HTML that looks different on different screens, handles blind users, and gracefully degrades to still work on IE 6, early iOS, etc. Meanwhile designers using WYSIWYG tend to build applications that work just fine in their environment and nowhere else.
Re: Ask HN: Why Haven't GUI Front End Editors Caught On?
#124The software industry largely decided to use HTML for the front end, it also largely gave up the 20 years of R&D on GUI design tools for existing semantically rich front-end frameworks. If Motif were FOSS or if CMU hadn't handed license rights to Andrew WM to IBM, we'd have probably avoided this whole mess that is HTML.
Haha. Do a google image search for "motif gui" and you'll see the most horrible interfaces made by men.
Re: Ask HN: Why Haven't GUI Front End Editors Caught On?
#125Earlier quoted context omitted.
Here is the best visual approach ive seen to designing flexbox layouts: http://flexboxgame.com
This is great. Until now, I have been using the "flex box froggy" game for reference. It has been faster for me to recall flex-box CSs rules by scrolling through levels in that game than reading any "real" documentation. The link you shared above is a big upgrade.
Re: Ask HN: Why Haven't GUI Front End Editors Caught On?
#126Re: Ask HN: Why Haven't GUI Front End Editors Caught On?
#127Earlier quoted context omitted.
If you can afford not to support IE9 [1], you don't need a 500K - 1MB framework to center vertically and horizontally by using flexbox (align-items: center; justify-content: center) on the parent container. [1] http://caniuse.com/#feat=flexbox
Or you can support it but not give them vertically centered content. Screw em. If they want it to be 5 years ago, let them be 5 years ago. FIVE!
Re: Ask HN: Why Haven't GUI Front End Editors Caught On?
#128It comes down to this: programmers write code. If you build your UI or whatever graphically without writing code, then you are not a programmer -- you are a user. The last thing any programmer wants to be is a lowly user. So programmers have a natural motivation to not make these tools better or try to use them. And it becomes part of the culture to not use visual tools, and naturally having rarely used them and never trying to improve them and the fact that they diminish their job towards more user-like behaviors, programmers often do not find them useful.