Please consider adding `cargo watch` - that would be a killer feature!
/* * Check if 1M context is disabled via environment variable. * Used by C4E admins to disable 1M context for HIPAA compliance. */ export function is1mContextDisabled(): boolean { return…
Super-relatable. Now that I think about it, most of my advice starts something like "Here's what you're gonna do..." Wait, that itself sounds like a problem, but how do I fix it...
You are correct, that was an uneducated guess on my part. I just glanced at the IR which was different for some attributes (nounwind vs mustprogress norecurse), but the resulting assembly is 100% identical for every…
Probably LLVM runs different sets of optimization passes for C and C++. Need to look at the IR, or assembly to know exactly what happens.
Sure, he is one of biggest advocates for it, and yet he was quite clear that it is not yet possible for him to do his actual research in Lean. Quoting one of the recent papers (2020): > With current technology, it would…
I share your fascination with proof assistants and formal verification, but the reality is that I am yet to see an actual mathematician working on frontier research who is excited about formalizing their ideas, or…
Understanding IMO is "developing a correct mental model of a concept". Some heuristics of correctness: Feynman: "What I cannot build. I do not understand" Einstein: "If you can't explain it to a six year old, you don't…
> more than 1,000,000 lines of Lean 4 code and concluding with a QED. Usually the point of the proof is not to figure out whether a particular statement is true (which may be of little interest by itself, see Collatz…
Before Church there was Peano, and before Peano there was Grassmann > It is rather well-known, through Peano's own acknowledgement, that Peano […] made extensive use of Grassmann's work in his development of the axioms.…
What would you suggest as a reference problem (a benchmark of sorts) to try to play with formal methods for someone with just a bit of formal verification background but not in the field of software verification? Can…
What do you mean exactly by "error-tolerance"? Is it like, each node is wrapped into a result type, that you have to match against each time you visit it, even though you know for a fact, that it is not empty or…
I certainly hope so. I wonder, what is the actual blocker right now? I'd assume that LLMs are still not very good with specifications and verifcation languages? Anyone tried Datalog, TLA+, etc. with LLMs? I suppose that…
LLVM makes it so much easier to build a compiler - it's not even funny. Whenever I use it, I feel like I'm just arranging some rocks on a top of a pyramid.
What language do you use parser combinators in, and what kind of grammar do you parse usually? Nom was terribly verbose and unergonomic even by Rust's standards. Haskell's Megaparsec/Parsec is good but yeah, it's…
Does it support sending and executing commands to the panes like tmux does? like this: tmux send-keys -t 0:1.1 "ls" Enter edit: well, yes, you can: zellij action write-chars ls zellij action write 10
That "itch" is exactly what I meant, lol! And I agree! I'd definitely give Rust a try. Playing around with types and traits until they click is genuinely addictive - it feels like solving a puzzle or something
More information is needed to give proper advice: - Do you like filling out the type annotations in Python (making sure linter check passes)? Do you like TYPES in general? - Do you like working with memory (crushing…
I remember Arc randomly rewriting my bookmarks using some kind of summarization model or something like that, it also sometimes changed the name of downloaded files reinterpreting their names. Maybe it is related…
Another salesperson trying to jump on a departing bandwagon, without having an interesting product and not providing any valuable insights. > grief > denial Yeah, and he's in the denial phase
Why this weird json output, though? Well, I figured it out - had to strip the newlines and some backslashes - but just having a few plaintext objects or files makes more sense, I think.
They seem to be betting on multiple things happening at once - as indicated by recent projections by their CFO, following Oracle's own insane projections. They are betting on demand rising exponentially and somehow…
> 1/6th of total US economic growth over the last year What economy indicator exactly are you referring to?
How would you peer-review something like that? Or rather, how would you even _reproduce_ any of that? Some inception-based model with some synthetic data? Where is the data? I'm sure the paper was written in good faith,…
Why would you really need something like that in a non-totalitarian state? Basically, it follows the russian playbook (essentially the same 'language' - safety concerns), but instead of the FSB, who is the beneficiary…
Please consider adding `cargo watch` - that would be a killer feature!
/* * Check if 1M context is disabled via environment variable. * Used by C4E admins to disable 1M context for HIPAA compliance. */ export function is1mContextDisabled(): boolean { return…
Super-relatable. Now that I think about it, most of my advice starts something like "Here's what you're gonna do..." Wait, that itself sounds like a problem, but how do I fix it...
You are correct, that was an uneducated guess on my part. I just glanced at the IR which was different for some attributes (nounwind vs mustprogress norecurse), but the resulting assembly is 100% identical for every…
Probably LLVM runs different sets of optimization passes for C and C++. Need to look at the IR, or assembly to know exactly what happens.
Sure, he is one of biggest advocates for it, and yet he was quite clear that it is not yet possible for him to do his actual research in Lean. Quoting one of the recent papers (2020): > With current technology, it would…
I share your fascination with proof assistants and formal verification, but the reality is that I am yet to see an actual mathematician working on frontier research who is excited about formalizing their ideas, or…
Understanding IMO is "developing a correct mental model of a concept". Some heuristics of correctness: Feynman: "What I cannot build. I do not understand" Einstein: "If you can't explain it to a six year old, you don't…
> more than 1,000,000 lines of Lean 4 code and concluding with a QED. Usually the point of the proof is not to figure out whether a particular statement is true (which may be of little interest by itself, see Collatz…
Before Church there was Peano, and before Peano there was Grassmann > It is rather well-known, through Peano's own acknowledgement, that Peano […] made extensive use of Grassmann's work in his development of the axioms.…
What would you suggest as a reference problem (a benchmark of sorts) to try to play with formal methods for someone with just a bit of formal verification background but not in the field of software verification? Can…
What do you mean exactly by "error-tolerance"? Is it like, each node is wrapped into a result type, that you have to match against each time you visit it, even though you know for a fact, that it is not empty or…
I certainly hope so. I wonder, what is the actual blocker right now? I'd assume that LLMs are still not very good with specifications and verifcation languages? Anyone tried Datalog, TLA+, etc. with LLMs? I suppose that…
LLVM makes it so much easier to build a compiler - it's not even funny. Whenever I use it, I feel like I'm just arranging some rocks on a top of a pyramid.
What language do you use parser combinators in, and what kind of grammar do you parse usually? Nom was terribly verbose and unergonomic even by Rust's standards. Haskell's Megaparsec/Parsec is good but yeah, it's…
Does it support sending and executing commands to the panes like tmux does? like this: tmux send-keys -t 0:1.1 "ls" Enter edit: well, yes, you can: zellij action write-chars ls zellij action write 10
That "itch" is exactly what I meant, lol! And I agree! I'd definitely give Rust a try. Playing around with types and traits until they click is genuinely addictive - it feels like solving a puzzle or something
More information is needed to give proper advice: - Do you like filling out the type annotations in Python (making sure linter check passes)? Do you like TYPES in general? - Do you like working with memory (crushing…
I remember Arc randomly rewriting my bookmarks using some kind of summarization model or something like that, it also sometimes changed the name of downloaded files reinterpreting their names. Maybe it is related…
Another salesperson trying to jump on a departing bandwagon, without having an interesting product and not providing any valuable insights. > grief > denial Yeah, and he's in the denial phase
Why this weird json output, though? Well, I figured it out - had to strip the newlines and some backslashes - but just having a few plaintext objects or files makes more sense, I think.
They seem to be betting on multiple things happening at once - as indicated by recent projections by their CFO, following Oracle's own insane projections. They are betting on demand rising exponentially and somehow…
> 1/6th of total US economic growth over the last year What economy indicator exactly are you referring to?
How would you peer-review something like that? Or rather, how would you even _reproduce_ any of that? Some inception-based model with some synthetic data? Where is the data? I'm sure the paper was written in good faith,…
Why would you really need something like that in a non-totalitarian state? Basically, it follows the russian playbook (essentially the same 'language' - safety concerns), but instead of the FSB, who is the beneficiary…