this post was submitted on 01 Apr 2025
66 points (94.6% liked)

Technology

68244 readers
4240 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] taladar@sh.itjust.works 4 points 2 days ago (1 children)

Every couple of years a shiny new AI development emerges and people in tech go “This is it! The next computing paradigm is here! We’ll only use natural language going forward!”. But then nothing actually changes and we continue using computers the way we always have, until the debate resurfaces a few years later.

Reminds me a bit of graphical programming. Every couple of years someone comes up with the idea of replacing textual programming with some kind of graphical interface with arrows between nested boxed of various shapes and it inevitably fails.

[–] jorm1s@sopuli.xyz 2 points 2 days ago (1 children)

Except there's Simulink, which has been around since the 80's, and is anything but a failure. For a few specific usecases, like modeling complex physical systems and developing control algorithms for them, it's far better than any traditional text based language. Especially when it comes to maintainability of that code.

Though I have to admit that if you try to use it as a general programming language, you'll learn that while that's possible, it's also very painfull. And even while implementing said control algorithms you'll occasionally run on to some bits of logic that prove to be annoyingly difficult to implement with it compared to any text based language.

[–] taladar@sh.itjust.works 2 points 1 day ago (1 children)

I think the problem is that you can't create new abstractions very well in graphical languages. It works for something like fixed domains (e.g. Blender node editor or your example) but for a general purpose language you need the ability to define abstractions that never existed before.

The other problem is that you can't really apply any of the tooling to it that works with other languages, e.g. version control, formatters, linters,...

[–] jorm1s@sopuli.xyz 1 points 1 day ago

I have to agree. I guess the only reasonable application for graphical languages is domain specific languages, and even then they need to provide a significant benefit over any text based alternative to outweight the tooling incompatibilities you mentioned.