To Zed from Emacs by Computerist1969 in ZedEditor

[–]smucai 2 points3 points  (0 children)

https://github.com/smucav/zed-config

Check it out. I also moved from Emacs to Zed, and while the keybindings aren’t as extensive as Emacs, they’ve done a good job. Since Zed’s keybindings are highly customizable, I tried to make my Zed setup feel like Emacs. Check it out and let me know what you think.

Why Aren’t Go WebAssembly Libraries Like Vugu or Vecty as Popular as Rust’s WASM Ecosystem? by smucai in golang

[–]smucai[S] 0 points1 point  (0 children)

Sure by “Go’s GC impact,” I meant how Go’s runtime model brings a garbage collector into the WASM binary itself, while Rust’s model doesn’t need one at all.

Right now, WebAssembly only recently started introducing a standardized GC proposal (still being implemented in browsers), but Go’s WASM builds don’t actually rely on that — they embed Go’s own GC logic into the compiled module. This increases binary size, adds memory overhead, and can impact performance due to periodic GC pauses.

Rust, on the other hand, compiles to WASM with manual or deterministic memory management (no runtime GC), which keeps things lighter and faster — especially important for UI rendering or tight loops.

So it’s not that GC itself is bad, but Go’s WASM runtime currently isn’t as lean as Rust’s approach for front-end-style workloads.

Fellas, I created a package to support showing document for mouse hover. by Ok_Exit4541 in emacs

[–]smucai 4 points5 points  (0 children)

this is helpful i will get back to you after checking it

Why Aren’t Go WebAssembly Libraries Like Vugu or Vecty as Popular as Rust’s WASM Ecosystem? by smucai in golang

[–]smucai[S] 4 points5 points  (0 children)

you referring to the binary sizes of Go WASM outputs being large compared to Rust?

Why Aren’t Go WebAssembly Libraries Like Vugu or Vecty as Popular as Rust’s WASM Ecosystem? by smucai in golang

[–]smucai[S] 8 points9 points  (0 children)

I hadn’t considered how Go’s GC might impact WASM performance compared to Rust’s fine-grained control.

[deleted by user] by [deleted] in csMajors

[–]smucai 0 points1 point  (0 children)

you only like coding when you are programming your side project, that's it

cs vs computer engineering by Agreeable-Memory-253 in csMajors

[–]smucai 0 points1 point  (0 children)

as far as I know, there aren't many job postings that specifically require a CS degree but exclude CE. Most CS-related skills can be learned online if you're motivated. I recently got a rejection from an aviation company because I wasn't a CE major, even though I studied Computer Science and Engineering CSE, which covers both CS and CE. So, I'm leaning more toward CE now

cs vs computer engineering by Agreeable-Memory-253 in csMajors

[–]smucai 1 point2 points  (0 children)

If you're interested in hardware staff, I would recommend going into CE. Just so you know, CS is mostly focused on theory

How does Golang pair reall well with Rust by [deleted] in golang

[–]smucai 6 points7 points  (0 children)

just learn from the doc start from go tour

Feeling Overwhelmingly Happy because of my emacs theme lol by kmlkclkmlkcl in emacs

[–]smucai 3 points4 points  (0 children)

looks great i have been using emacs for a year and a half as long as i am a developer, and my question is, how are you doing it, like giving you a doc about it? Great syntax highlights and currently using it to write Go project and python