this post was submitted on 24 Jul 2026
23 points (96.0% liked)
Programming
27841 readers
591 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You can just hit up any other language from it though?
Here is SDK for those languages:
Raku Perl Bash Python Ruby Powershell Php Golang
UPDATE: so it's not just hitting up a language from a pipeline , it's full reach SDK, one writes a pipeline on a language, if I get your comment correctly
Well no I mean if you want to do something in python just call up the python interpreter, if you have some existing stuff in TCL, just run it through that interpreter and so on,no need for a specific anything.
But now when you have a YAML program as the first level abstraction how do you handle results between those multi language calls ? In DSCI this is achieved via states and normal functions , and everting is just a function on general purpose programming language, in YAML you need all these magic ( awkward ) YAML syntax to mimic all those things ( pass parameters , handle global variables , process user input , handle returned parameters , etc )
When I did it was just like bash in yaml, return 1/0 from python, TCL, ...
IIRC !