Eric Mertens

Results 23 issues of Eric Mertens

- [ ] Add command for toggling view of ignored messages without clearing ignore list - [x] Add window for viewing ignore list

enhancement

This would lead to bundling the hostname, port, tls settings so that each entry in the list could have a different setting. ``` servers: * name: "example" remotes: * hostname:...

enhancement

- [x] Activity bar could benefit from being multi-line with proper line wrapping. - [ ] Show network name either conditionally or configurably - [ ] Allow showing all channels...

enhancement

The new cancel behavior in 2.1.1 has implications for operations like `waitAnyCancel`. These operations will no longer allow threads to teardown concurrently as they wait to cancel the next thread...

HsOpenSSL only allows you to specify a PEM decryption password when decoding a PEM file and then using `sslContextSetPrivateKey` with the resulting key, but HsOpenSSL can only open RSA and...

I was looking to see how `pcap_breakloop` was implemented to be safe to call from a signal handler and it seems that a `volatile` qualifier might be missing on this...

Now that GHC 8 has callstack printing for uses of `error` it seems tricky to write doctests that work across multiple versions of GHC. Example: ``` ### Failure in src/Control/Lens/Traversal.hs:639:...

My understanding is that regex' was supposed to catch errors and wrap them in `Left`, however for an empty string we see: ``` Prelude Data.Text.ICU> regex' [] "" *** Exception:...

ZNC sends PASS without a leading colon. This means that for ZNC users to send their passwords with spaces in them, they need to prefix their password with a leading...

```c int main(void) { int * x = &(int){0}; } ``` generates ```rust #![allow(dead_code, mutable_transmutes, non_camel_case_types, non_snake_case, non_upper_case_globals, unused_assignments, unused_mut)] unsafe fn main_0() -> libc::c_int { let mut x: *mut...

bug