tabbyrobin
tabbyrobin
I also may be having this problem.
Are you guys familiar with/have you considered [Matrix](https://matrix.org/)? I'd like to suggest it as an alternative to the email-layer as @alexanderkyte proposed: ``` * Post hash to irc/xmpp channel, with...
I notice the pr imports asyncio. Would this fix work for a script using trio?
It appears to have no added ill effects, but it doesn't fix the issue either. Seems to just do the same as without it. Note: my code imports both trio...
I think that once you start to implement aliases like that, you've taken a big step toward becoming a full-fledged package manager. Not sure if that is in scope or...
Any updates on this?
It seems the updates I was looking for are indeed, currently, in rust-lang/rfcs#3724 that you linked. This wasn't initially clear, even after having skimmed the discussion on the RFC. From...
I also tried this as a workaround, but it does not achieve the desired result: ```shell dest=$(readlink -f $dest) dest_dir=$(dirname $dest) { LOCAL TMPDIR=$dest_dir XDG_RUNTIME_DIR=$dest_dir BEGIN mktemp -dsC END }...
It looks like the workaround *can* work, but you have to also put `-t` option (with no arg) on mktemp. Without `-t` option, mktemp ignores the env vars. Example: ```shell...
No worries! Thanks for making Modernish, it's very handy. This workaround is fully working, so you might even disregard this issue.