MajorDallas

Results 32 comments of MajorDallas

This is an absolutely critical capability, imo. Particularly if the CLI app, `jj`, aims to compete against `jq`, I would think feature parity would be a high priority. This kind...

It's like you read my mind! I was thinking "something like `@values` would be perfect" if keeping the behavior of `*` were important. I appreciate the quick response, too! The...

Also having this issue. Version info: ``` # influx version Influx CLI 2.0.3 (git: fe04d346df) build_date: 2020-12-15T01:00:16Z ``` I have a tag with two keys that need to be dropped...

[CopyQ](https://copyq.readthedocs.io/en/latest/index.html) supports most if not all the same features. It has some issues with Wayland, but there's a workaround in the FAQ if you use it. I had partial success...

There's a limitation to using the `http_proxy` env variables: If the proxy doesn't "hairpin" requests to internal sites, then any dependencies hosted on eg. an internal git repo can't be...

I've also run into this issue. In my case, I have functions that iterate over the given parameter assuming said parameter is a List or Tuple of strings. If a...

After re-reading some of the older comments... I agree that the fundamental problem is that `str` is defined in terms of itself. Every element of a `str` is **always** `str`....

I also found `TypeGuard`'s behavior surprising and unintuitive. For what I needed it for, not being able to narrow in the negative case also meant that I had to find...

>Type narrowing is applied in the negative case only if the following conditions are met: > > 1. The input parameter to the user-defined type guard function is a union....

I found this library just earlier today. I'm quite impressed and already integrating it with my project. The process and frame information (pid, source file and line, etc.) was something...