logoalt Hacker News

nullsmacklast Tuesday at 9:49 PM11 repliesview on HN

I'm shocked in general at the lack of open source Rapid Application Development software.


Replies

etermlast Tuesday at 10:09 PM

Someone will no doubt correct my hazy memory, but I wonder how much to blame was the fact that default QT apps were so ugly around the time that was the height of RAD, and QT was the only(?) well-supported cross-platform cross-DE gui framework at that time.

On windows you could RAD your way to a good looking windows application that looked and behaved like everything else. On linux, default behaviour was either ugly, or not very compatible, or heavily customised anyway, and that didn't change until much later with improvements to GTK.

show 1 reply
progmetaldevlast Tuesday at 10:20 PM

I think Microsoft coming out with XAML/WPF created too much complexity for most of the developers that were working with WinForms. Although the code had better separation from the interface, it also took quite a bit more effort to get an application up and running quickly. They took the "R" out of RAD, and then kind of put both WinForms and WPF on life support, while continuing to tout cross-platform on .NET Core without a first-party GUI platform. Now it just looks like Azure was always going to be the solution, to tie users into a platform they don't fully control.

show 1 reply
coryrcyesterday at 3:05 AM

There was[0] Dabo, an attempt at a modern Visual Foxpro in Python https://dabo.leafe.com/

0: sort-of "is" rather than "was": https://blog.leafe.com/creativity-and-ai-models/

aleph_minus_onelast Tuesday at 11:54 PM

> I'm shocked in general at the lack of open source Rapid Application Development software.

They exist:

- In particular in the 90s and 00s, Tcl/Tk was really magic for creating user interfaces for small applications under GNU/Linux.

- Lazarus attempts to be an open-source analogue to Delphi

- LibreOffice Base attempts to fill the same niche as Microsoft Access

- Historically, in the time of Gtk+ 1.x and 2.x Glade [1] was an editor for clicking together user interfaces. Well, development ceased, and under GNU/Linux there is no attitude of retaining backwards compatibility with applications/libraries that are not maintained anymore (but which might be business-critical).

- ...

But of course Rapid Application Development is much more popular in the business world which is (at least in many European countries) a rather Microsoft-centric environment. Additionally, the typical developer that uses Rapid Application Development is often a subject-matter expert in some department who also knows a little bit about programming (i.e. is not in deep love with programming), and not a programming expert who also knows about some other specialized topics that are important for the business.

On the other hand, the open source environment typically rather attracts people who really like programming.

---

[1] https://en.wikipedia.org/wiki/Glade_Interface_Designer

thinkyfishyesterday at 12:56 PM

If your into C++, there is U++ (Ultimate++), which is a fully featured RAD ide equivalent to Lazarus with the fastest compiler I've seen. It compiles to Win/Mac/Linux/BSD.

markus_zhanglast Tuesday at 9:52 PM

Probably because *nix programmers in general are the black coffee long beard RTFM type.

AshamedCaptainlast Tuesday at 9:56 PM

There have been shitloads of open source RADs. They do not generate much interest.

ChickeNESlast Tuesday at 11:01 PM

Well, (F)OSS projects have never been known for great UI/UX (with some exceptions like Blender), so it doesn't surprise me much

rtpgyesterday at 4:05 AM

Qt Quick and Qt Creator isn't RAD per se but I feel like it gets you close.

Lammylast Tuesday at 11:01 PM

Nerds have vested interests (exposure/influence/status based on exclusivity of skill) to oppose letting ”the wrong people” create software, versus a company like Microsoft is the other way around because they get paid and get to further-entrench their platforms (but I repeat myself).

And/or too many people have internalized a feeling of “I am Very Smart because I know better than to ever try anything unique”, as exemplified by that awful xkcd ‘Standards’ learned-helplessness comic somebody will always rush to post in a discussion of any New Thing, and thus would never even dream of creating RAD tools whose entire premise is the creation of bespoke software.

show 1 reply