NellowTCS

@nellowtcs
2 Followers
6 Following
11 Posts
Hey! I'm NellowTCS, a developer and fun person!
GitHubhttps://github.com/NellowTCS
Bloghttps://nellowtcs.me

Good news for our trans friends:

The European Court of Justice on Thursday ruled that European Union nations must provide transgender citizens with identification documents reflecting their "lived gender" rather than their gender at birth.

To translate this for non-EU people, it's the equivalent of the US supreme court (the ECJ here) ruling that states (the EU Member States here) must respect people's gender choices.

Source: https://www.euractiv.com/news/gender-changes-must-be-recognised-across-borders-eu-top-court-rules/

Docs: https://nisoku.github.io/Saikuro/docs/
GitHub: https://github.com/Nisoku/Saikuro

Still early but core pieces work end-to-end. Feedback and "why did you design it this way" discussions welcome.

#devtools #opensource

Saikuro : Saikuro

Cross-language invocation fabric for seamless multi-runtime integration

Saikuro

What it looks like in practice:

TypeScript: provider.register("math.add", (a, b) => a + b)

Python: client.call("math.add", [10, 32]) returns 42

No HTTP server. No IDL file. No stub generator. Just function calls across languages.

Why Rust for the runtime?

- Portable (runs anywhere)
- Strongly typed
- Predictable under concurrency
- Safe to embed
- Fast enough to sit in the middle

Basically: "I want this to run everywhere and not explode"

#rustlang #systemsprogramming

After months of work, I just released the first public version of Saikuro, a cross-language invocation fabric that lets different languages call each other without RPC boilerplate.

TypeScript, Python, Rust, and C# adapters, all talking to a shared Rust runtime.

#rustlang #typescript #python #dotnet #opensource

If anyone has any suggestions or ideas or literally anything, I'd love to hear it!

(The GitHub is at: https://github.com/HTMLToolkit/HTMLPlayer/tree/updates)

GitHub - HTMLToolkit/HTMLPlayer at updates

An offline mp3 and ogg music player with playlist, ratings, and persistence. - GitHub - HTMLToolkit/HTMLPlayer at updates

GitHub
I got a domain!
The blog's now located at https://nellowtcs.me

So, most of you probably don't know what HTMLPlayer is.
Basically, it's a web-based, open-source, and completely client-side music player with a bunch of features and useful tools.
I had created it last year in a single, messy index.html file, and have been working on remaking and improving it since then.
I am actually almost done with it, but it's still in public beta:

Check the original out here: https://htmltoolkit.github.io/HTMLPlayer
And the public beta here:
https://htmltoolkit.github.io/HTMLPlayerBeta

Hello, world!