home.social

#zuzu — Public Fediverse posts

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

fetched live
  1. ZuzuScript 0.7.x released

    New releases for the core runtimes, Android app, and editor toolingNew releases of ZuzuScript are available for Perl, Rust, JS, Android, and the main editor/tooling packages. The shared stdlib and languagetests components are tagged 20260625.

    Major user-visible changes include:

    The #value cardinality prefix operator. It calls count() where available

    and otherwise follows existing length […]

    #android #release #zuzu #zuzuJs #zuzuRust #zuzuPl #zuzuscript

    toby.ink/blog/2026/06/25/zuzus

  2. ZuzuScript 0.6.x released

    New releases for Perl, Rust, JS, and AndroidNew releases of ZuzuScript are available for Perl, Rust, JS, and Android. This release is mostly about bringing implementation behaviour back into line with the language documentation, improving cross-runtime parity, and tightening temporary-file cleanup in the standard library.

    Important changes include:

    The ?: operator now follows its documented […]

    #android #release #zpath #zuzu #zuzuJs #zuzuRust #zuzuPl #zuzuscript #zzpath

    toby.ink/blog/2026/06/19/zuzus

  3. ZuzuScript 0.5.x released

    New releases for Perl, Rust, JS, Android, and syntax highlighting packagesNew releases of ZuzuScript are available for Perl, Rust, JS, and Android, alongside fresh browser highlighter, VS Code, and Pulsar syntax packages. This release is mostly about filling out the logical operator family, improving cross-runtime parity, and making the newer language operators available inside ZZPath […]

    #android #release #zuzu #zuzuJs #zuzuRust #zuzuPl #zuzuscript #zzpath

    toby.ink/blog/2026/06/18/zuzus

  4. Building GUIs with Zuzu-Designer

    This tool makes it so easyThis tutorial assumes you have:

    zuzu-designer 0.1.0

    zuzu-rust 0.4.0

    ZuzuScript standalone browser bundle 0.4.0

    All of these are available on the downloads page.

    Designing the GUI

    Just run zuzu-designer and a window will pop up allowing you to design a GUI. On the left side there is a tree view showing how the GUI controls are nested within each other, from the […]

    #GUI #release #zuzu #zuzuJs #zuzuRust #zuzuscript

    toby.ink/blog/2026/06/16/build

  5. Introducing Rowquill

    Brand new ORM for Zuzu just dropped!

    Rowquill is an ORM for ZuzuScript, allowing you to declare classes for your database tables, and perform searches, inserts, updates, and deletes in an object-oriented manner. It takes inspiration from Perl’s DBIx::Class and other popular ORMs.

    Features

    create, find, search, all, first, count, exists,

    find_or_create, create_or_update, insert, update,

    […]

    #release #rowquill #zuzu #zuzuPl #zuzuscript

    toby.ink/blog/2026/06/14/intro

  6. ZuzuScript 0.4.x released

    New releases for Perl, Rust, JS, and AndroidNew releases of ZuzuScript are available, mostly aimed at fixing bugs. In addition to implementation-specific bug fixes for each runtime, they all update the languagetests component to version 20260612 (which includes improved tests for the method-call dot operator) and update stdlib to version 20260612.

    Major new features include:

    std/string/encode […]

    #android #release #zuzu #zuzuJs #zuzuRust #zuzuPl #zuzuscript

    toby.ink/blog/2026/06/12/zuzus

  7. ZuzuScript 0.3.x released

    New releases for Perl, Rust, JS, and AndroidNew releases of ZuzuScript are available, mostly aimed at fixing bugs. In addition to implementation-specific bug fixes for each runtime, they all update the languagetests component to version 20260610 (which includes improved tests for the method-call dot operator) and update stdlib to version 20260610.

    zuzu.pl

    Zuzu-0.003000

    zuzu-rust

    0.3.0 amd64 […]

    #android #release #zuzu #zuzuJs #zuzuRust #zuzuPl #zuzuscript

    toby.ink/blog/2026/06/10/zuzus

  8. ZuzuScript 0.2.x released

    New releases for Perl, Rust, and JSNew releases of ZuzuScript are available, mostly aimed at fixing bugs. In addition to implementation-specific bug fixes for each runtime, they all update the languagetests component to version 20260608 (which includes improved tests for semicolon placement after statements) and update stdlib to version 20260608 (which includes better support in Zuzuzoo for […]

    #release #zuzu #zuzuJs #zuzuRust #zuzuPl #zuzuscript

    toby.ink/blog/2026/06/08/zuzus

  9. zuzu.pl 0.001004

    New version of the Perl runtime releasedChanged

    Raised the required versions of Path::Tiny and Sub::Quote.

    Marked the std/clib integration test as author-only.

    Excluded blib from distribution manifests.

    Fixed

    Fixed the marshal golden fixture test to parse on older supported Perl versions.

    metacpan.org/release/TOBYINK/Z

    #release #zuzu #zuzuPl

    toby.ink/blog/2026/06/05/zuzu-

  10. Golfing with Zia

    code.golf has experimental ZuzuScript supportcode.golf now allows you to submit solutions in ZuzuScript.

    It uses zuzu-rust 0.1.0 to evaluate solutions.

    #release #zuzu #zuzuRust #zuzuscript

    toby.ink/blog/2026/06/01/golfi

  11. Introducing ZuzuScript

    So I’ve created a programming language which blends a fairly JavaScript-like syntax with fairly Perl-like semantics, and a few other features that I haven’t really seen in many programming languages.

    This Perl:

    use Path::Tiny;

    my $str = uc(substr(Path::Tiny->new(“myfile.txt”)->slurp_utf8, 0, 80));

    Becomes this in ZuzuScript:

    from std/path import Path;

    let str := new Path(“myfile.txt”)

    […]

    #zuzu

    toby.ink/blog/2026/05/31/intro

  12. Zuzu JavaScript Runtime Released

    zuzu-js 0.1.0 is now available through npm.The JavaScript runtime is now available on npmjs.com.

    npmjs.com/package/zuzu-js

    You can install it using npm install -g zuzu-js.

    Run simple inline code:

    zuzu-js -e ‘say(“Hello, world”);’

    Run a full script:

    zuzu-js path/to/script.zzs

    Compile from ZuzuScript into JavaScript:

    zuzu-js-compile path/to/script.zzs -o script.js

    node […]

    #release #zuzu #zuzuJs #zuzuscript

    toby.ink/blog/2026/05/31/zuzu-

  13. zuzu-rust Released

    zuzu-rust 0.1.0 is now available through cargo.The Rust runtime is now available on crates.io.

    crates.io/crates/zuzu-rust

    You can install it using npm install -g zuzu-js.

    Run simple inline code:

    zuzu-rust -e ‘say(“Hello, world”);’

    Run a full script:

    zuzu-rust path/to/script.zzs

    #release #zuzu #zuzuJs #zuzuRust

    toby.ink/blog/2026/05/30/zuzu-

  14. ZuzuScript is born

    First release of ZuzuScript for Perl!The Zuzu distribution is now available on CPAN.

    metacpan.org/release/TOBYINK/Z

    You can install it using cpanm Zuzu.

    Run simple inline code:

    zuzu.pl -e ‘say(“Hello, world”);’

    Run a full script:

    zuzu.pl path/to/script.zzs

    #release #zuzu #zuzuPl #zuzuscript

    toby.ink/blog/2026/05/29/zuzus

  15. Every Zuzu growling panel in all Dog Man comics

    #Zuzu #DogMan

  16. #15marzo giornata nazionale del #fiocchettolilla per la lotta ai #disturbialimentari

    Su #altremodernita Gaetano Lacalandra analizza la rappresentazione del corpo in due #graphicnovel della fumettista #zuzu: in "Cheese" la protagonista porta a compimento il percorso di guarigione da #bulimia e #dismorfofobia grazie soprattutto agli amici; in "Giorni felici" il corpo diventa strumento per superare la dipendenza affettiva

    Qui in #openaccess:
    ⬇️riviste.unimi.it/index.php/AMo

    @cultura

  17. #15marzo giornata nazionale del #fiocchettolilla per la lotta ai #disturbialimentari

    Su #altremodernita Gaetano Lacalandra analizza la rappresentazione del corpo in due #graphicnovel della fumettista #zuzu: in "Cheese" la protagonista porta a compimento il percorso di guarigione da #bulimia e #dismorfofobia grazie soprattutto agli amici; in "Giorni felici" il corpo diventa strumento per superare la dipendenza affettiva

    Qui in #openaccess:
    ⬇️riviste.unimi.it/index.php/AMo

    @cultura

  18. #15marzo giornata nazionale del #fiocchettolilla per la lotta ai #disturbialimentari

    Su #altremodernita Gaetano Lacalandra analizza la rappresentazione del corpo in due #graphicnovel della fumettista #zuzu: in "Cheese" la protagonista porta a compimento il percorso di guarigione da #bulimia e #dismorfofobia grazie soprattutto agli amici; in "Giorni felici" il corpo diventa strumento per superare la dipendenza affettiva

    Qui in #openaccess:
    ⬇️riviste.unimi.it/index.php/AMo

    @cultura

  19. #15marzo giornata nazionale del #fiocchettolilla per la lotta ai #disturbialimentari

    Su #altremodernita Gaetano Lacalandra analizza la rappresentazione del corpo in due #graphicnovel della fumettista #zuzu: in "Cheese" la protagonista porta a compimento il percorso di guarigione da #bulimia e #dismorfofobia grazie soprattutto agli amici; in "Giorni felici" il corpo diventa strumento per superare la dipendenza affettiva

    Qui in #openaccess:
    ⬇️riviste.unimi.it/index.php/AMo

    @cultura

  20. #15marzo giornata nazionale del #fiocchettolilla per la lotta ai #disturbialimentari

    Su #altremodernita Gaetano Lacalandra analizza la rappresentazione del corpo in due #graphicnovel della fumettista #zuzu: in "Cheese" la protagonista porta a compimento il percorso di guarigione da #bulimia e #dismorfofobia grazie soprattutto agli amici; in "Giorni felici" il corpo diventa strumento per superare la dipendenza affettiva

    Qui in #openaccess:
    ⬇️riviste.unimi.it/index.php/AMo

    @cultura