Christopher Armstrong
Christopher Armstrong
Just FYI, my use cases are for "interactive scripting" anyway -- i.e. convenience scripts that humans would run to do complex sequences of commands across multiple roles/accounts, so prompting is...
@ooesili Just fwiw, this isn't urgent for me. I figured out a workaround by declaring a type in my own code that supports the number of arguments I need (up...
@joanllenas See here: https://github.com/radix/pandt/blob/92f0ecc8e085dcb4c32e62973e10a00fac86e8a5/ptui/src/PTTypes.ts#L527-L555
I am having this problem on Windows, though not exactly like the OP, since when I use `q` to stop mprocs it shuts down cleanly. I have a few different...
I'd be happy to review Effect-using code :) Please ping me in whatever PR introduces it.
Also, my general advice when it comes to Effect is to try _not_ using it, while still trying to write purely functional code. You might be happy without it, but...
@hackebrot Sorry, I don't follow. What are you referring to? The Effect library? It has quite thorough test coverage and uses the py.test library.
So I'm getting this error (only started recently) when running a d1 execute from my Windows machine (only when I run it on prod; local wrangler dev works fine). The...
e.g. ``` PS C:\Users\radix\Projects\arpeggiorpg\worker> bash -c python3 Python 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> open('schema.sql', 'rb').read()...
looking back on this, this could also work, without any global stack: ```python with match(myobj) as M: with M.case(MyClass.MyConstructor) as x: return x.y with M.case(MyClass.MyOtherConstructor) as x: return x.z ```