Matthias Endler

Results 663 comments of Matthias Endler

This can be done with the [Wayback Machine API](https://archive.org/help/wayback_api.php) if anyone wants to give it a try. Here is a sample request: https://archive.org/wayback/available?url=example.com

An alternative approach would be to use a Markdown command-line processor for extracting the tags and only use lychee on its output: ``` md --md-tags link | lychee - ```...

Go for it! Just post questions here and we'll try to help. I like the bonus task, but don't stress it too much if it takes longer than expected. We...

Oh that's a really good idea! There's probably no performance overhead except in case of panic, which is perfect for our use-case. @vipulgupta2048 I don't know how far you got...

@vipulgupta2048, no worries and thanks for looking into it. Originally I thought this was possible after the discussion with @lebensterben above: ```rust let result = panic::catch_unwind(|| self.reqwest_client.execute(request)); let fut =...

> Is there a temporary workaround one can apply? @dend, the only workaround we have at the moment is to exclude the panicking URLs. 😞

Well, the other alternative is to parse the URIs like reqwest would do and return an error before passing it to reqwest. That would be a waste of resources and...

I've created a PR to work around the panics. Would love to get some feedback. @dend, @lebensterben [mentioned](https://github.com/lycheeverse/lychee/pull/557#issuecomment-1072850121) that URLs like `https://web.archive.org/some_stub/https://my_archived_url` don't panic and I can confirm that. Perhaps...

Yeah they look fine. Maybe the issue is with a different link that was sent before. It panics and then Tokio closes the channel and after that it tries to...

Weird, it works for me. ``` > lychee --version lychee 0.9.0 > echo 'https://web.archive.org/web/20070312014327/https://developer.yahoo.com/weather/' | lychee - 🔍 1 Total ✅ 1 OK 🚫 0 Errors ``` Can you try...