Paddy Mullen
Paddy Mullen
Yes this is definitely the conflict. My div with `ag-theme-alpine-dark` looks like this ```HTML
Sorry for being overly verbose. It helps to keep track of things I have tried, while writing this, I thought of other approaches to try. I guess the generic question...
I pulled the most recent main, and that fixes the problem. Thanks for the quick response, and bearing with me as I debug it. There are still some other styling...
I think I see a usecase. Many times I want to compare dataframes that I'm not super familiar with. I could manually look at each column and figure out the...
https://py.cafe/paddymul/buckaroo-gallery
Totally understand if this doesn't fit in your roadmap. In an ideal world, for my usecase backend would be better. The code generation code is in python/JLisp anyway. Practically, frontend...
FWIW I would only want to access it in edit mode. The code gen functionality is built for interactive GUI/coding use.
I don't think MCP would help with my usecase, but maybe I'm not understanding how MCP could fit in. So I want to have a widget that runs in Cell...
Some explanatory code for understanding the graph structure ```python class CycleA(ColAnalysis): provides_defaults = {'cycle_a': 'asdf'} requires_summary = ["cycle_b"] class CycleB(ColAnalysis): provides_defaults = {'cycle_b': 'foo'} requires_summary = ["cycle_a"] {'CycleA###cycle_a': {'cycle_b'}, 'cycle_a':...
For now I have added detection of `SelfCycle` where an analysis `requires` a key that it `provides`. That is a particularly confusing case. Ideally I'd like an error that says...