Jacob Halsey

Results 62 comments of Jacob Halsey

I'm not sure that the clear global callbacks method is working as expected. I am using `siv.clear_global_callbacks(Event::CtrlChar('c'));` However it does not actually remove the existing pre_event added in `reset_default_callbacks`

One thing I found is that if you are using ErrorHandler middleware to convert 500 errors to JSON, then it will only work if all the middlewares further up the...

The other places that you need to cover JSON are for 404s and 405s. As far as I can see there are two options: 1. You make sure all you...

I think a middle solution would be to ensure that TumblThree saves accurate and useful metadata in the images.txt etc. then it is possible to right a simple frontend viewer...

Is your profile using `wsl.exe -d Ubuntu` or `Ubuntu.exe`? The latter will not respect the starting directory, and always opens in $HOME

@Merith-TK A simple work around I am using for MSYS is to use `env.exe` to set environment variables like ``` C:\msys64\usr\bin\env.exe MSYSTEM=MINGW64 CHERE_INVOKING=1 /usr/bin/bash.exe --login ``` (https://github.com/msys2/msys2.github.io/issues/215)

For anyone else who arrived here looking to find an existing solution, I wanted to point out this function is already implemented in the `serde_with` crate: https://docs.rs/serde_with/latest/serde_with/rust/double_option/index.html Thanks to @jonasbb...

What is the status on this issue - its been open for a long time, is it likely to be implemented anytime soon? It feels like a rough edge on...

Just to check - have you assigned an IAM role to the instance? (In the EC2 instances dashboard -> Select the instance -> click actions -> security -> modify IAM...

In theory you shouldn't have to make that change, the idea of AWS services is that you shouldn't have to manually enter credentials into each application instance. Instead the instance...