HackerLangs
TopNewTrendsCommentsPastAskShowJobs

qouteall

no profile record

Submissions

Lock-Free Deadlock

qouteall.fun
2 points·by qouteall·il y a 3 mois·0 comments

Deadlock, Circular Reference and Halting

qouteall.fun
2 points·by qouteall·il y a 3 mois·0 comments

Anything Will Work (In AI)

publish.obsidian.md
2 points·by qouteall·il y a 6 mois·0 comments

Lying Virtual Eyes

surfingcomplexity.blog
1 points·by qouteall·il y a 7 mois·0 comments

Higher-Level Software Design Ideas

qouteall.fun
1 points·by qouteall·il y a 7 mois·0 comments

Shaping the future of AI from the history of Transformer [2024]

docs.google.com
1 points·by qouteall·il y a 7 mois·1 comments

Thought-Terminating Cliches in Software

ckpinnegar.xyz
1 points·by qouteall·il y a 8 mois·1 comments

WebAssembly Limitations

qouteall.fun
4 points·by qouteall·il y a 8 mois·1 comments

Rust Contagious Borrow Issue

qouteall.fun
44 points·by qouteall·il y a 9 mois·10 comments

Higher-Level Design Patterns

qouteall.fun
1 points·by qouteall·il y a 9 mois·0 comments

How to avoid fighting the Rust borrow checker

qouteall.fun
26 points·by qouteall·il y a 9 mois·9 comments

Personality Basins

near.blog
166 points·by qouteall·il y a 2 ans·111 comments

comments

qouteall
·il y a 5 mois·discuss
It's probably due to server side rendering and rehydration. The rehydration use server side component state to override DOM state.
qouteall
·il y a 5 mois·discuss
With modern IDE and AI there is no need to save letters in identifier (unless too long). It should be "sizeInBytes" instead of "size". It should be "byteOffset" "elementOffset" instead of "offset".
qouteall
·il y a 5 mois·discuss
Normally the database and message queue is decoupled from the backend service. This decoupling makes managing simpler and make cross-language things easier.

But if the type system need to cover all these components, then they start coupling again.

Coupling is not necessarily a bad thing as long as it gives good developer UX. If the database is tightly coupled with programming language, then it looks like ORM but better. And it probably can also reduce CRUD biolerplate or N+1 issue etc.

Related, there is SpacetimeDB that make backend run within database, and the backend code is highly coupled with SpacetimeDB's own API
qouteall
·il y a 6 mois·discuss
WebAssembly standard design has considered binary size optimization. The format itself is quite compact. But porting native code to Wasm often brings many large existing libraries which contain a lot of code which makes the binary large.

The native ecosystem never payed attention to binary size optimization, but the JS ecosystem payed attention to code size in the very beginning.
qouteall
·il y a 6 mois·discuss
They originally used JS realm polyfill, which is not real JS realm. The polyfill has some security holes. Now they switched to Js interpreter in Wasm.

https://www.figma.com/blog/an-update-on-plugin-security/
qouteall
·il y a 6 mois·discuss
I've written about limitations of WebAssembly https://qouteall.fun/qouteall-blog/2025/WebAsembly%20Limitat...

WebAssembly still doesn't provide a way to release memory back to browser (unless using Wasm GC). The linear memory can only grow.

The Wasm GC limits memory layout and doesn't yet support multi-threading.

Wasm multithreading has many limitations. Such as cannot block on main thread, cannot share function table, etc. And web worker has "impedance mismatch" between native threads.

And tooling is also immature (debugging requires print debugging)
qouteall
·il y a 7 mois·discuss
One limitation of Rust macro is that it can only access code token, not actual type information.

When macro sees a type `X` macro can never be sure whether it's `&str` as Rust allows type alias. If `X` is not `&str` it may also be a struct that contains `&str`, still macro cannot know.

Wasm-bindgen workarounds this issue by generating "fake functions" then read and remove them in CLI:

https://wasm-bindgen.github.io/wasm-bindgen/contributing/des...

Zig comptime allows getting full type information. This is one advantage of Zig.
qouteall
·il y a 7 mois·discuss
The optimistic concurrency control that reads multiple shards cannot use simple CAS. It probably needs to do something like two-phase committing
qouteall
·il y a 7 mois·discuss
Thanks for reply.

So in my understanding:

- The transactions that only touch one shard is simple

- The transactions that read multiple shards but only write shard can use simple optimistic concurrency control

- The transactions that writes (and reads) multiple shards stay complex. Can be avoided by designing a smart sharding key. (hard to do if business requirement is complex)
qouteall
·il y a 7 mois·discuss
In real-world business requirements it often need to read some data then touch other data based on previous read result.

It violates the "every transaction can only be in one shard" constraint.

For a specific business requirement it's possible to design clever sharding to make transaction fit into one shard. However new business requirements can emerge and invalidate it.

"Every transaction can only be in one shard" only works for simple business logics.
qouteall
·il y a 7 mois·discuss
This video criticizes Rust using perfect solution fallacy. Critizing a useful thing just because it's imperfect.

https://en.wikipedia.org/wiki/Nirvana_fallacy
qouteall
·il y a 7 mois·discuss
We are in the down season.
qouteall
·il y a 7 mois·discuss
There are two kinds of slowness. One is trying hard while getting no visible result. Another is procrastination. The article refers to the first
qouteall
·il y a 7 mois·discuss
The better phrase is that "if it compiles, then many possible Heisenbugs vanish"

https://qouteall.fun/qouteall-blog/2025/How%20to%20Avoid%20F...
qouteall
·il y a 7 mois·discuss
I want to add Contagious Borrow Issue https://qouteall.fun/qouteall-blog/2025/How%20to%20Avoid%20F...

Contagious borrow issue is a common problem for beginners.
qouteall
·il y a 7 mois·discuss
Lecture video https://www.youtube.com/watch?v=orDKvo8h71o
qouteall
·il y a 7 mois·discuss
Goodhart's law: When a measure becomes a target, it ceases to be a good measure.

AI companies have high incentive to make score go up. They may employ human to write similar-to-benchmark training data to hack benchmark (while not directly train on test).

Throwing your hard problem at work to LLM is a better metric than benchmarks.
qouteall
·il y a 7 mois·discuss
It's (at least) the second time Couldflage gets bitten by React. Last time an useEffect caused an incident.

https://blog.cloudflare.com/deep-dive-into-cloudflares-sept-...
qouteall
·il y a 7 mois·discuss
Configuration complexity clock

https://mikehadlow.blogspot.com/2012/05/configuration-comple...
qouteall
·il y a 7 mois·discuss
Can you provide the source of "(eg Android definitely has sanitizers running on every commit and yet it wasn’t until they switched to Rust that exploits started disappearing)"?