nobe4
nobe4
An alternative to this might be to generalise the "smart rewind" feature and give it 2 settings: - After `Xs` of pause - Rewind `Ys` In my personal case, the...
@williammartin yes, that's why I was confused during some debugging 🤔 Also, manually setting up the header prints it in the `gh` output: ```shell $ GH_DEBUG=api gh api http://localhost:8080/graphql -H...
Good find! I have a couple of other cases that might be interesting: - using `-H 'Accept-encoding: identity'` is accepted and doesn't transform the content; [ref](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding#identity) ```shell $ GH_DEBUG=api gh...
For what https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding#identity is saying, a solution might be to set `'Accept-encoding: indentity'` by default and leave compression to the user via `-H`.
Confirmed, it took me a little while to figure it out, but I got the following working: ```shell GOFLAGS="--ldflags=-X=main.version=v0.0.0" fyne-cross darwin -app-id=test.test ``` The main catch was whitespaces in the...
[The docs](https://docs.github.com/en/codespaces/developing-in-a-codespace/default-environment-variables-for-your-codespace#list-of-default-environment-variables) mention a few environment variables present in any codespace, the interesting one being: ``` CODESPACE_NAME The name of the codespace For example, octocat-literate-space-parakeet-mld5 ``` Using this environment variable...
> Maybe we could just handle that edge case in the delete command to prompt "are you SURE you want to delete the codespace you are currently in??" Honestly, that...
> with this functionality enabled would result in the codespace suddenly getting deleted out from under you. Aight, then I would definitely include some guardrails first, with respect for the...
@GeographicCone your version worked for me, thanks for providing this!
Thanks for the review @bashbunni ❤️ > I'm thinking it might make sense to integrate your change directly into Index [...] we should be preserving the item's original index as...