Low-Code and the Democratization of Programming
51–60 of 98 posts
Re: Low-Code and the Democratization of Programming
#52Re: Low-Code and the Democratization of Programming
#53Current favorite low-code tool: https://github.com/ToolJet/ToolJet/
Re: Low-Code and the Democratization of Programming
#54Re: Low-Code and the Democratization of Programming
#55All this posts miss the best low code environments of all time: Microsoft Access and FileMaker Pro. Unfortunately these two never made it to Internet era in big time and we have greatly come down from 90s RAD movement.
It worked great! The application even looked almost like a normal Windows app. I wrote all of it by myself without knowing much coding (though I did write lots of VBA).
Re: Low-Code and the Democratization of Programming
#56Am I the only one here who remembers MS Access? It was a great no-code/low code product that created silos of information in many organizations and it was a real PITA to transfer it to other technologies. The advantage in MS Access was that it was part of the MS ecosystem and used VBA which is well documented. What will happen when you'll want to transfer something you've made in today no-code solutions to another pl…
Performance-wise sqlite probably wins, but Access had the added bonus of an extremely straight-forward UI
Re: Low-Code and the Democratization of Programming
#57Re: Low-Code and the Democratization of Programming
#58Since this is likely not going to change, these no-code tools expand the number of workers who can do stuff. But it clearly isn't as good as coding and never will be
Re: Low-Code and the Democratization of Programming
#59Re: Low-Code and the Democratization of Programming
#60The one thing I worry about is security. How do you make low code tools flexible enough to be powerful while retaining security? On the other hand, maybe for the use cases that are well supported, these tools could provide security by default instead of relying on individual engineers to get it right.
A lot of it will be pushed down the stack into infrastructure. Infrastructure typically tails software, so over the next decade I would expect to see shifts in the infrastructure to accommodate this. For example, I think we'll start to see more fine-grained ACLs in databases combined with passthrough authentication from the webapp. So the nocode app is basically just a layout engine that passes a query and your Okta…
I think you can set that up with Postgres using row-level security and a generic "REST to SQL" frontend whose name escapes me. Harder business logic can go in stored procedures, which Postgres allows you to in a range of languages AFAIK. It seems like a great architecture to me, and it should also be some kind of simple to wrap a generator around it with a nice UI.