Christopher Armstrong
Christopher Armstrong
Unlike Deferreds, Effects can't have callbacks added to them after a result is available. This means that they have a handy property that once an effect has been performed, and...
Hi, I'm trying to integrate the `failure` crate a bit more tightly into a web framework, so that handlers can return `Result` directly. This web framework has a `trait ResponseError:...
I'd love to be able to use Kryptonite, but I use Windows on my Desktop machine, and use native Windows tools. I saw that there are people working to get...
I have an ssh setup where I connect to a bunch of different hosts, and also connect to some hosts via ProxyJump. This means I have to authorize a LOT...
OS: Windows 10 + WSL running Ubuntu Portray: ``` radix@DESKTOP-HOBTFB6:~/Juice/infrastructure$ portray version Portray build info: Version: Git Commit: Build Time: Go Version: ``` so I guess I'm not sure which...
Right now it's difficult to write scripts that make use of portray, because it strictly opens a shell and doesn't parameterize any command to run. I propose the following syntax:...
Hi! I am in the unfortunate situation of having objects with more than 14 fields, and the `object` function only supports up to that many (at least, in a type-safe...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Description The JS API for transactional storage in durable objects supports a field...
# 🐛 Bug Report I'm trying to use the slider component from either Fluent or FAST. I can get it working by using wrap(fastSlider()) or wrap(fluentSlider()), but the resulting component...
How about: ```python with match(myobj): with case(MyClass.MyConstructor) as x: x.y with case(MyClass.MyOtherConstructor) as x: x.z ``` I think I could implement this, but I'm not sure how I would implement...