JP
JP
I'm attempting to set a CA certificate using `contextSetCAFile`, but when I send the https request, I get the following error: ``` TlsExceptionHostPort (HandshakeFailed (Error_Protocol ("certificate has unknown CA",True,UnknownCa))) "hostname"...
I'd like to create an argument with a single dash. Is this possible? If I do `name "foo"`, the flag is `--foo`, but I'd like it to be `-foo`.
I was consistently getting EOFs while using the `Handle` API to communicate with an arduino over a serial port. Switching to the `SerialPort` API seems to have fixed these issues....
Certain responses (like 401) from the OAuth provider can cause exceptions to be thrown when calling `authGetJSON`. This is problematic because Yesod displays exceptions to the end user automatically, which...
HTML in documentation is not properly escaped, which is an injection issue. You can see this by [searching for textarea](http://hayoo.fh-wedel.de/?query=textarea).
Try [searching for markdown](http://hayoo.fh-wedel.de/?query=markdown). I think javascript code from the hackage is being injected. This could be a serious security risk.
Implements #1576. It's not perfect, but is a step in the right direction.
## Feature Request Currently, to retrieve the contents of a [`Signal`](https://docs.rs/dioxus/0.5.1/dioxus/prelude/struct.Signal.html), you need to *call* the `Signal` struct. For example: ``` let signal: Signal = use_signal(|| None); if let Some(s)...
Opening a separate issue from #680. Refined type aliases aren't checked unless LH type signatures are given. ``` {-@ LIQUID "--reflection" @-} {-@ LIQUID "--ple" @-} {-# LANGUAGE RecordWildCards #-}...
The following is marked as safe, even though `o` is not in scope. ``` {-@ unsafe :: i:Int -> {o = o} @-} unsafe :: Int -> () unsafe _...