Jason Kohles
Jason Kohles
Things like this are the reason that in general you should not use a GET request to perform actions, especially actions that would be problematic if the happened by accident....
I have been attempting to track down the cause of this but haven't had much luck so far. I did notice that the `iterateHandlers` function that is actually running the...
Trying to do something similar (a command that optionally takes any number of string arguments), I tried *many* variations, before I discovered that this is the only way that works:...
FWIW, here is my version of this trick: ```sh function zshaddhistory() { if [[ $1 == $'jog\n' ]]; then return; fi printf '%s\t%q\n' "$PWD" "${1%%$'\n'}" >> ~/.cache/jog-history } function jog()...
It's waiting for the query because it's a long poll. It already ran it and got a response, the query that it sends with `wait=128000ms` also includes an `index=` parameter....