Feuermurmel
Feuermurmel
> This does appear to be the same issue as #338. I get the error if the target is named `MyApp`, but not if it is named `TokamakApp` instead. Ohh,...
> Does setting bigger stack size help in any way? I couldn't find a way that made the problem go away, but different stack sizes lead to different error messages....
I came across a very simple case where reordering of children also happens: ```swift import TokamakDOM struct MyApp: App { @State var showThing = true var body: some Scene {...
> 2.) On OSX, all apps show their settings by pressing cmd-, (cmd + comma). I think RocketChat should show my preferences on that hotkey. Would it make sense to...
> Consistently killing off the ability to connect to non-Apple local and remote storage does not look like something for the benefit of users. It rather looks like lock-in at...
I found a workaround: ```diff diff --git a/test_bad.py b/test_bad.py index b6b5779..a385cde 100644 --- a/test_bad.py +++ b/test_bad.py @@ -1,5 +1,6 @@ def test_bad(migrator): state = migrator.apply_initial_migration(('my_app', '0002_foo')) + state.clear_delayed_apps_cache() A =...
I guess so? 🤔 I think the `RunPython` operation is the only case where the migration state is exposed to user code and there, `clear_delayed_apps_cache()` is called on it right...
I have a hunch that this was due to a stray symlink under `~/.ipython` (haven't tested that the problem is resolved now though). Maybe you can reproduce it by adding...
`/usr/local/bin/` is not writable here: ``` michi ~$ ls -ld /usr/local/bin/ drwxr-xr-x@ 16 root wheel 512 10 Feb 17:23 /usr/local/bin/ michi ~$ touch /usr/local/bin/foobar touch: /usr/local/bin/foobar: Permission denied ``` And...
Thank you for your very helpful response! With it I'm no longer stuck and can continue with my project. :) One note: > I'll re-design JavaScriptKit API to resolve this...