(i ended up using wasm-ld's --no-merge-data-segments with a classic `wasm2wat | grep memory.init` then memcpying the sections where i wanted them at startup, clearly a much less cursed option)
24.07.2025 14:11 β π 1 π 0 π¬ 0 π 0@tombl.dev.bsky.social
internet developer, computer professional
(i ended up using wasm-ld's --no-merge-data-segments with a classic `wasm2wat | grep memory.init` then memcpying the sections where i wanted them at startup, clearly a much less cursed option)
24.07.2025 14:11 β π 1 π 0 π¬ 0 π 0ok i'm slightly hyperbolizing but i was once so annoyed patching the linker script dependency out of some software that i genuinely contemplated writing my own wasm linker with linker script support.
24.07.2025 14:08 β π 1 π 0 π¬ 1 π 0my life would be significantly better if wasm-ld supported linker scripts
24.07.2025 03:12 β π 1 π 0 π¬ 1 π 0GPT/3.5 (compatible) Gemini-Pro/1.5 (PaLM-2; Bard) Claude/3-sonnet LLaMA/3.2-3B-int4 (like LLaMA/3-8B) Gemma-7B (SearchGrounded/2.0; like Flash)
01.07.2025 10:26 β π 5 π 0 π¬ 0 π 0@mjackson tweet: "These are just implementation details. We havenβt had time to dig in yet, but class components are old school and we donβt plan on supporting them." I have highlighted the text "class components"
I'm pretty sure this was only said in reference to React's class components, not classes as a language feature.
Looking at the small amount of the new Remix that's already published (github.com/mjackson/rem...), they seem perfectly happy to use classes where they're appropriate.
the design isn't close to finalized, but they've actually been doing the async and rpc stuff on public branches if you know where to look: github.com/sveltejs/kit...
29.04.2025 08:47 β π 2 π 0 π¬ 1 π 0the dilemma of jj:
you can use it and have nobody on your team even tell the difference, and yet you will feel compelled to evangelize it to anyone that will listen.
Soonβ’
github.com/github/roadm...
I'm really hoping that with memory64 shipping now, more of a focus is put on memory control/virtual memory. I think it's the last wasm feature needed for true native parity.
08.01.2025 09:58 β π 2 π 0 π¬ 0 π 0ok but what's more impactful: breadth of shaming, or depth of shaming?
04.01.2025 08:07 β π 2 π 0 π¬ 1 π 0arch is immutable if you mount / as readonly
30.12.2024 12:45 β π 1 π 0 π¬ 0 π 0you might've already seen this, but browsers have a pretty well defined (but complicated) algorithm for when they decide to show the encoded or decoded form:
chromium.googlesource.com/chromium/src...
like maybe I'm overindexing on that lightbulb moment, where you realize the elegance of the handful of base primitives jj gives you, and how you can really build any composite workflow on top of them, but first impressions are important!
29.10.2024 14:45 β π 2 π 0 π¬ 0 π 0I might be coming at this with my perspective of really enjoying your first tutorial, rather than as a newcomer who only knows git, but I feel like starting by demonstrating jj's unique aspects might be more valuable than presenting it as a different interface to the same git workflows.
29.10.2024 14:45 β π 3 π 0 π¬ 1 π 0Any reason you're introing `jj commit` rather than `jj desc && jj new`?
It might be the right choice because it maps closer to git, but OTOH I think it would be valuable to open with "we have a familiar but different mental model"
Then, to map from icon name to svg file, take the hash of the name mod the number of buckets you want.
24.10.2024 14:16 β π 0 π 0 π¬ 0 π 0Assuming we're talking svg icons, they'll compress extremely well when chunked together.
I would do a pretty small number of spritemaps, then you're only dealing with a few svg files so you can just inline the map of hashes.
I feel like this is a tough find. A library that does more than just string templating, but hasn't had enough scope creep that it wants to own the entire client architecture.
The closest thing I can think of is lit-html (and clones), but that really depends on your definition of templating library.
Hmm the question is do you ever actually want an isomorphic templating library?
Surely you'd want a string templating library on the server, but a dom templating library on the client.
(or is that what you're looking for?)