HackerTrans
TopNewTrendsCommentsPastAskShowJobs

strager

no profile record

comments

strager
·3년 전·discuss
> Ideally type-checking, linting, highlighting and formatting would run in one language service doing incremental parsing and updates to a shared AST on every keystroke.

I think this is the reason Biome (originally called Rome) started. Rome's vision was a shared toolchain to yield better performance and to fix config hell.
strager
·3년 전·discuss
Here is the answer I got from vjeux:

> There's a lot of fast web tooling being written in rust those days. https://twitter.com/Vjeux/status/1722769322299609565

I don't buy it. I think vjeux is riding the hype.
strager
·3년 전·discuss
Sean Baxter is doing a decent job with his Circle compiler, so I hear. https://www.circle-lang.org/
strager
·3년 전·discuss
Unfortunately, we live in the real world where compilers do not do the things that you suggest that they ought to.
strager
·5년 전·discuss
> All dependencies sources must be included with project sources.

This sounds great for applications. But for libraries, you'll likely end up with the diamond dependency problem: an application uses two libraries, and each library uses their own copy of a third library.