#runnable — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #runnable, aggregated by home.social.
-
How context engineering works, a runnable reference
https://github.com/outcomeops/context-engineering
#HackerNews #contextengineering #runnable #reference #programming #github #technews
-
How context engineering works, a runnable reference
https://github.com/outcomeops/context-engineering
#HackerNews #contextengineering #runnable #reference #programming #github #technews
-
How context engineering works, a runnable reference
https://github.com/outcomeops/context-engineering
#HackerNews #contextengineering #runnable #reference #programming #github #technews
-
How context engineering works, a runnable reference
https://github.com/outcomeops/context-engineering
#HackerNews #contextengineering #runnable #reference #programming #github #technews
-
How context engineering works, a runnable reference
https://github.com/outcomeops/context-engineering
#HackerNews #contextengineering #runnable #reference #programming #github #technews
-
...but by the emergence of integrated #development #ecosystems that handle the entire #lifecycle of software production, from initial scaffolding to final distribution as a #runnable #Android Package (APK) -- I'll take any help. 🤜🏻👽🔦🔦🔦🚀🛸👩🏼🚀
-
Runme is a great new notebook approach to run scripts from markdown docs with CLI integration and multi-language support every dev and data scientist should try in #VSCode.
With #Runme versatile notebook kernel, CLI interop, and shared #Runbook session state you can now make your docs truly interactive.
Give your markdown docs new #Runnable lifespan and get creative with your fenced code outputs. You'll never just read the Intro and README docs.
#codeNotebooks 📚 ...
-
Runme is a great new notebook approach to run scripts from markdown docs with CLI integration and multi-language support every dev and data scientist should try in #VSCode.
With #Runme versatile notebook kernel, CLI interop, and shared #Runbook session state you can now make your docs truly interactive.
Give your markdown docs new #Runnable lifespan and get creative with your fenced code outputs. You'll never just read the Intro and README docs.
#codeNotebooks 📚 ...
-
Runme is a great new notebook approach to run scripts from markdown docs with CLI integration and multi-language support every dev and data scientist should try in #VSCode.
With #Runme versatile notebook kernel, CLI interop, and shared #Runbook session state you can now make your docs truly interactive.
Give your markdown docs new #Runnable lifespan and get creative with your fenced code outputs. You'll never just read the Intro and README docs.
#codeNotebooks 📚 ...
-
Runme is a great new notebook approach to run scripts from markdown docs with CLI integration and multi-language support every dev and data scientist should try in #VSCode.
With #Runme versatile notebook kernel, CLI interop, and shared #Runbook session state you can now make your docs truly interactive.
Give your markdown docs new #Runnable lifespan and get creative with your fenced code outputs. You'll never just read the Intro and README docs.
#codeNotebooks 📚 ...
-
Runme is a great new notebook approach to run scripts from markdown docs with CLI integration and multi-language support every dev and data scientist should try in #VSCode.
With #Runme versatile notebook kernel, CLI interop, and shared #Runbook session state you can now make your docs truly interactive.
Give your markdown docs new #Runnable lifespan and get creative with your fenced code outputs. You'll never just read the Intro and README docs.
#codeNotebooks 📚 ...
-
Use case for returning a #Runnable from a #Function in the #java #programming #language:
````java
Optional.<String>ofNullable(null)
.ifPresentOrElse(
input -> { /* consume */ },
logError.apply("No value given?")
);
````in which logError is a Function you create, that accepts a String and returns the Runnable.