Benjamin Chung

Results 30 comments of Benjamin Chung

@HKruenaegel We should be fixing the incorrect initialization system issue that causes the system to go to all-0s after an affect fires soon(^tm) when my development branch gets merged. I...

Should have in https://github.com/SciML/ModelingToolkit.jl/pull/3144. I'll look at this tomorrow; also working on getting the changes to initialize and finalize packaged out independently of ImperativeAffect.

I tried `NoInit` with Fredrik's example and it exhibits exactly the same behavior that it does with `CheckInit` so there's something else happening here. I think that either the underlying...

Should be fixed now; https://github.com/SciML/ModelingToolkit.jl/pull/3197 just adds tests that the examples given all work now.

The single biggest issue I've had with MLStyle is that the documentation on how to customize it isn't great. It's there, just not particularly apparent. I still don't entirely get...

That's absolutely the reason for that specific case; my experience is that with function names in particular there's just an endless list of weird oddities you need to find out...

One idea is that a pattern matcher could go backwards from SemanticAST-like semantic concepts (like "a function definition") backwards to the full set of constructs that could have been used...

Sorry for the delay; yes, I'm indeed doing something fairly cursed. What I'm doing is serializing the in-progress server and client state (that is, I save the server-side handlers that...

Yes, by default rp-pico uses XIP while running which keeps the RAM mapped, so the boot script keeps working. This project https://github.com/BenChung/RP2040_boot2_run_from_ram (which is based on @9names's https://github.com/9names/rp2040-hal-run-from-ram/tree/main) should be...

I prompted this - the use case is that I'm making a histogram interactively with a "clear data" button, and this change makes that not error out horribly. The other...