▲ | indigoabstract 3 days ago | |
For some reason while reading this, I thought of Erlang, a language I know nothing about, except that it's not a visual language and it's build out (many) processes, kind of like a tiny internet with server and client nodes that can be taken down anytime for repairs or updates. Maybe there's an unobvious way to make visual programming actually useful? Probably quite a few people have wondered that throughout the ages. I know I have. In the meantime, this AI thing happened, emphasizing even more the use of text/voice as a mode of creative expression. | ||
▲ | Towaway69 3 days ago | parent | next [-] | |
Have a look at Erlang-Red[1] which uses Erlang for the basis of making a visual programming environment. Erlang-Red is inspired by Node-RED which itself is inspired by flow based programming. [1] https://github.com/gorenje/erlang-red Disclaimer: I’m the author of Erlang-Red. | ||
▲ | sublinear 3 days ago | parent | prev [-] | |
> Maybe there's an unobvious way to make visual programming actually useful? I'd think it would be finding the optimal parameters for an algorithm that is probably better expressed in another language. Even though they are all Turing complete, any programming paradigm is biased towards solving certain kinds of problems. It seems "visual programming" is biased towards the computationally irreducable[1]. This is a class of problem very sensitive to initial conditions. The chaotic behavior may eventually settle towards a stable state. So, the image of that stable state then encodes the parameters you'd want to use on the algorithm you wrote in another language. That's not meant to be harsh. This gets directly to the heart of why we may want to write the same ideas in different ways even if those writings seem logically equivalent. One way is just easier to understand than the other depending on what part of the problem you're trying to tackle. These multiple writings are not redundant, but the facets necessary to more thoroughly explain a problem. In fact, upon closer inspection you'd find that what seems like the same algorithm written two different ways is actually not the same because they are executed differently. [1]: https://en.wikipedia.org/wiki/Computational_irreducibility |