Dominique Martinet

Results 143 comments of Dominique Martinet

If you need another example, megatokyo.com has the same issue for its comics e.g. https://megatokyo.com/strip/1586 has a relative link to `strips/1586.png` but there's a `` (feed url: https://megatokyo.com/rss/megatokyo.xml ) Looking...

Getting a fresh auth token/cookie didn't help. Before investigating futher I'd like to confirm if others are running in the same issue recently? More precisely, my irc client connects and...

(I ended up using [mautrix-slack](https://github.com/mautrix/slack) instead of trying to fix this further; it's also based on slack-go so I had assumed it wouldn't work but it somehow did and I...

That segv can be fixed with this patch: ``` diff --git a/src/MainNFSD/9p_dispatcher.c b/src/MainNFSD/9p_dispatcher.c index abf35a452310..8e0380d9dbd8 100644 --- a/src/MainNFSD/9p_dispatcher.c +++ b/src/MainNFSD/9p_dispatcher.c @@ -407,7 +407,7 @@ static void _9p_worker_run(struct fridgethr_context *ctx) continue;...

Ok so the hang is because we're not initializing read/write args and the fsal helpers loops on fsal_resume, a memset helps: ``` diff --git a/src/Protocols/9P/9p_read.c b/src/Protocols/9P/9p_read.c index 284dc23910e2..b96dc91a2834 100644 ---...

Hi @SamuelKurtzer -- I don't see any PR for nil over there https://github.com/dense-analysis/ale/pulls?is%3Apr+nil , have you had a chance to find time to do it? (just looking at nix linters...

Hmm don't want to assume ipv4 will never work, I guess we can try all IPs that come back (I'm surprised though, ipv6 should come first if it's available... I...

Hmm just TAC might not be enough. For my device model/region it looks like `TAC + [1 or 2] + 5 digits + luhn code` is accepted, anything outside (0...

I assume you're respecting the parity digit when you generate IMEI? ( https://simplycalc.com/luhn-calculate.php if guessing manually) samsung servers will reject anything that doesn't match. (I'd try but no idea what...

Note on this: `builder.http()` returns `Http2Builder` so using `into()` immediately after it works, but setting any option will return a `&mut Http2Builder` which we cannot get back from, so I'm...