SvelteRust

Results 22 comments of SvelteRust

Sailfish is way faster. Source: https://github.com/djc/template-benchmarks-rs

You can do post-parsing transformations on it, for instance

> There should be an official nixos package Where is this located?

Wasmer's new WAI-types could make this easier to implement. https://wasmer.io/posts/wasmer-takes-webassembly-libraries-manistream-with-wai

> I made a `nix shell` for this: https://github.com/thiskappaisgrey/nixpkgs-esp-dev-rust/blob/rust/shells/esp32s2-idf-rust.nix . `esp-idf-sys` still expects `esp-sys` to be a git repo, so I just let it do what it wants and clone...

> > Terminal model editing > > can u explain a bit more on that? Should be possible to use modal editing in the terminal as well, not just the...

I have created a flake for getting the Bun binary here: [bun-flake](https://github.com/knarkzel/bun-flake). Feel free to steal it :smile:

Ok, I've changed the shell now: ```nix { inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; esp-dev = { url = "github:thiskappaisgrey/nixpkgs-esp-dev-rust"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs,...

Awesome stuff, seems to be solved for now then? Basically get an environment able to build esp-idf right?

It seems like the `draw_continious` trait implementations delegate to drawing pixel by pixel. Is it possibile to use hardware specific drawing methods instead? There's also quite a bit of tearing...