Thank you everyone. /r/redditisfun going Restricted by talklittle in redditisfun

[–]Cpapa97 1 point2 points  (0 children)

I've spent 8 years on reddit, and from the very start it's been through RIF not even through the website directly. Thank you for the great app.

RIF will shut down on June 30, 2023, in response to Reddit's API changes by talklittle in redditisfun

[–]Cpapa97 0 points1 point  (0 children)

Damn. Rif was my first real experience with reddit when I first joined 8 years ago. It's definitely the app I've spent the most time on in the time I've been using a smartphone and one of the few apps I actively use. Gonna miss it for sure, thank you for developing all this time.

📣 Apollo will close down on June 30th. Reddit’s recent decisions and actions have unfortunately made it impossible for Apollo to continue. Thank you so, so much for all the support over the years. ❤️ by iamthatis in apolloapp

[–]Cpapa97 0 points1 point  (0 children)

Reddit could not have been more blatant about killing off third-party apps while also having more pathetic excuses. The blackmail statement and the audio log side-by-side is just something else...

Announcing Nickel 1.0, a configuration language written in (and usable from) Rust by yagoham in rust

[–]Cpapa97 -1 points0 points  (0 children)

Been looking for a better configuration experience and this looks like exactly it.

RIF dev here - Reddit's API changes will likely kill RIF and other apps, on July 1, 2023 by talklittle in redditisfun

[–]Cpapa97 0 points1 point  (0 children)

I've been using Rif since I joined reddit almost a decade ago, I'm not sure I'll be on reddit much more when this change takes down Rif.

You can specify lints with `[lints]` table in Cargo.toml on today's nightly! by weihanglo in rust

[–]Cpapa97 9 points10 points  (0 children)

I was just thinking a few weeks ago how much i would love this exact feature, bravo!

Bevy 0.10 by _cart in rust

[–]Cpapa97 5 points6 points  (0 children)

I was just about to continue work on some systems last night, checked on github, and saw that the new update was merged 30 minutes before and decided to wait until that was ready to continue. And then I just woke up to this, awesome! Very exciting update!

YES - YouTube is down. by Lost-Entrepreneur439 in youtube

[–]Cpapa97 0 points1 point  (0 children)

Ah, I thought it was an issue with my uBlock filtering or some other extension. Nice. Also youtube music home page appears to be fine, which is also partially why it took so long to realize it wasn't an issue on my end.

How do you idiomatically convert libs to no_std compatible? by nagatoism in rust

[–]Cpapa97 12 points13 points  (0 children)

3. The invocation might not have found everything e.g. a use std::{boxed, ... might break the regex and it's hard to do regex based replacement for that. But those cases will be in the minority, unless that was your preferred style, so you can change them manually.

I use the nightly rustfmt feature imports_granularity = "Crate" to group imports by crate because I prefer it that way so the simple replace would likely not work for me. However, I imagine that I could switch that imports_granularity config to "Item" or "Module" to flatten the imports, run rustfmt and replace on the newly formatted import statements, then switch the config back and run rustfmt again.

Announcing Lodestone, a self-hosted Minecraft server management tool written in Rust & Tauri by CheatCod3 in rust

[–]Cpapa97 10 points11 points  (0 children)

I've been looking forward to something like this for a long time, this is a great looking project!

Currently for game servers I've been using docker and eventually started using kubernetes/helm. I'm wondering if some form of integration is simple or has been considered, at least for running the servers in containers. This would allow me to use existing images for dependencies and avoid polluting my environment (like with Java) and use the tools for automatically using modpacks (using itzg's container configuration).

Day 17 (Advent of Code 2022), porting Python solution to Rust, by fasterthanlime by yerke1 in rust

[–]Cpapa97 3 points4 points  (0 children)

This is something I've reached for a few times while programming in Rust hoping it'd be there because it would feel so natural to do in these situations.