home.social

#runnable — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #runnable, aggregated by home.social.

  1. ...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. 🤜🏻👽🔦🔦🔦🚀🛸👩🏼‍🚀

  2. 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 📚 ...

    docs.runme.dev/

  3. 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 📚 ...

    docs.runme.dev/

  4. 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 📚 ...

    docs.runme.dev/

  5. 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 📚 ...

    docs.runme.dev/

  6. 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 📚 ...

    docs.runme.dev/

  7. 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.

  8. Since nobody has every written this up, according to big influential search engines, here's how to create a #java #Function that returns a #Runnable:

    ````java
    static Function<String, Runnable> f = (final String input) -> {
    return () -> {/*
    use input for something
    */}
    };
    ````