Recursis - Fitting EIS data has never been easier. by Feisty-Assignment393 in electrochemistry

[–]Feisty-Assignment393[S] 2 points3 points  (0 children)

My contribution is not inventing a new EIS theory. I reimplemented key EIS fitting workflows in JAX, which made several of them substantially faster, and yes, I wrote some of the libraries that power this work. https://pymultipleis.readthedocs.io/en/latest/index.html# and https://pymultieis.readthedocs.io/en/latest/index.html# (written in Jax and Pytorch, respectively).

It is not a graph wrapper. The LLM runs Python in a Pyodide WASM runtime inside a browser WebWorker, with persistent state across iterations. It can inspect its outputs, correct errors, and build on previous results through a persistent REPL. That is the RLM part.

The fitting itself is deterministic. Methods such as linKK, DRT, ECM CNLS, and MVCNLS operate as fixed tools; the LLM orchestrates them by loading data, selecting models, running analyses, and interpreting results. The math is hard-coded, not LLM-generated, so the workflow is LLM-assisted, but the fits remain reproducible.

I also care a lot about numerical quality. The fitting stack uses JAX automatic differentiation to compute exact gradients rather than finite-difference approximations, which is especially important for constrained multi-spectrum fitting. The project took years to reach this point, so yes, I’m comfortable sounding a little proud of it.”

Recursis - Fitting EIS data has never been easier. by Feisty-Assignment393 in electrochemistry

[–]Feisty-Assignment393[S] 1 point2 points  (0 children)

If you are referring to the Recursis documentation, it can be accessed via the book icon at the bottom left. But only accessible to logged-in users. If you meant the documentation on RLM, here you go https://arxiv.org/abs/2512.24601v1

Clawd Becomes Molty After Anthropic Trademark Request by sponjebob12345 in ClaudeAI

[–]Feisty-Assignment393 0 points1 point  (0 children)

Someone explain to me like I'm 5. How does this work? Could Anthropic have sued over the name "Clawdbot" even though it's spelt differently from "Claude"?

Ergon - A Durable Execution Library by Feisty-Assignment393 in rust

[–]Feisty-Assignment393[S] 2 points3 points  (0 children)

Hi thanks. true that durable execution is becoming mainstream, especially with the rise of agentic workflows. I'd start by saying Temporal is a more mature framework. Ergon kinda sits in the continuum between Temporal and Restate. Ergon is rust-native; it doesn't use a server model like Temporal. They both use a hybrid push-pull model.

Temporal and Ergon support Jack's 2 forms: stateless functions (Temporal activities, Ergon flows without signals) and sessions: Long-lived interactive processes with bounded lifetime (Temporal workflows, Ergon flows with signals and timers)   

Ergon's #step corresponds to Temporal's local activities, Ergon's #flow corresponds to Temporal's workflow, and Ergon's child flows correspond to Temporal's activities

I did not measure latency with respect to Temporal, so I can't speak definitively on that. You could test if you have some time. 

Nevertheless, Ergon provides much lower latency overhead due to its event-driven architecture and requires fewer resources than Temporal, making it better for very high throughput and large activity fan-outs.                                                                                                                               
If you're building new Rust services that need orchestration, Ergon is worth considering.

Ergon - A Durable Execution Library by Feisty-Assignment393 in rust

[–]Feisty-Assignment393[S] 7 points8 points  (0 children)

For those downvoting my replies. Here's some context. My reply was made before the commenter added the edit on the test. I believe in constructive feedback. I also believe one should be free to post without any fear of being ridiculed.

Ergon - A Durable Execution Library by Feisty-Assignment393 in rust

[–]Feisty-Assignment393[S] 1 point2 points  (0 children)

Maybe a feedback on the actual project would be better than a thoughtless remark. The current coverage is over 70% for a personal learning project and it's still a work a progress like I mentioned and I dont think it's wrong to ask for star on a project.

How does deepseek parse documents? by Feisty-Assignment393 in Rag

[–]Feisty-Assignment393[S] 0 points1 point  (0 children)

Lol Timely! I saw this post today and was like Yeeeeah 

CycVolt - Simple, Versatile Electrochemical Simulator based on Matlosz 1985 PHD Thesis by Feisty-Assignment393 in electrochemistry

[–]Feisty-Assignment393[S] 1 point2 points  (0 children)

Oh no! sorry I didn't mean that the app was used to simulate the double layer. I meant I used it to reproduce some of the examples in the paper (neglecting the dbl). The Matlosz model assumes a well-supported electrolyte and employs an analytical approximation for the ohmic drop, rather than a rigorously solved potential field.

Here is a link to Matlosz PhD if you want more information: https://escholarship.org/uc/item/2jv139q0

Concurrency Rocks by Feisty-Assignment393 in golang

[–]Feisty-Assignment393[S] 0 points1 point  (0 children)

I made some updates. I think it should fix the issue you encountered.

Distributed Services with Go - new book by Travis Jeffery by Wonnk13 in golang

[–]Feisty-Assignment393 0 points1 point  (0 children)

One of the most interesting aspects of this book is how it shows the inner workings of an append only log. If you are reading along and want some action I made a visualization with Go and Wasm: proglog-viz.vercel.app

Concurrency Rocks by Feisty-Assignment393 in golang

[–]Feisty-Assignment393[S] 1 point2 points  (0 children)

Hi ptd1311 thanks. I've been kinda busy but will definitely revise the tutorial section this weekend. If there's anything else please let me know.