oskgo

Results 26 comments of oskgo

@SarthakSingh31 any updates on this? thanks

@Flying-Toast Can you update/fix the failing tests?

@chenyukang Ping from triage: I'm closing this due to inactivity, Please reopen when you are ready to continue with this. Note: if you are going to continue please open the...

I'm going to mark this as blocked on #122362. @Zoxc; Feel free to relabel if you want to make progress on this directly. @rustbot label -S-waiting-on-author +S-blocked

@AnthonyZhOon Any updates on this? I see that you've reacted to dtolnays review. Are you planning on addressing the reviews?

Most pages will perish in the long run, and "this week in Rust" isn't an archive. It's a newsletter. Wouldn't requiring preservability harm that purpose? What is your criteria for...

It seems like the example site explicitly forbids archiving their site, and blocks it ([check out the "reproduction" section at the bottom](https://kerkour.com/)). I thought the problem was accidental when I...

I'd like to highlight a different alternative; using `expect` or `unwrap_or_else` with an appropriate panic for code that *isn't* prototyping. That allows both short code and easy grepability (`unwrap\(`) for...

> what would you recommend for the unreachable case? `unwrap_or_else(||unreachable!())` or `expect("unreachable")`. Those are a bit verbose, but it's not too bad IMO, especially in non-prototyping code.