IMDb Ratings of the overall show

I saw this made for the seasons average and thought it would be even better to see the highs and lows of each particular season. For example Season 8 has pretty much the same average as Season 7 but Season 7 has a way worse low. Interestingly I think it presents season 6 as the worst season since season 5 at least had a peak finale while season 6 peak relatively worse. Lots of things to extrapolate from here, but I will leave that to your opinion.

u/JellyGrimm — 27 days ago

Did Morty join a cult?

Spoiler warning for whoever didn't watch last episode. I have seen people saying that the group Morty joined was a cult, but to my understanding a cult is defined by being authoritarian and stripping you of your freedom to follow a leader.

When Morty tells them "I want to live this life on my own" the three-eyed guy just tells him "sure bro, you know where to find us, go on" that didn't seem like a cult to me

reddit.com
u/JellyGrimm — 1 month ago

They can't miss this season

Is this the most beautiful episode of the entire series? The whole >!montage of Morty going through the lifecycle of a plant!<was breathtaking. Instant top 3.

reddit.com
u/JellyGrimm — 1 month ago
▲ 8 r/foss

iwakura is a modular data fetcher designed to decouple backend logic from the user interface. It allows you to pick, choose, or create your own backend modules and pair them with any frontend in any language.

This architecture makes it ideal for offloading logic from low-power devices and rendering the interface elsewhere, which is the whole reason I started this project a few weeks ago, since I have a bunch of raspberry pis. I’ve included a tui frontend and a web frontend which you can use right now, or customize, but I highly encourage you to make new ones! I really hope you like this one, it's been the most fun thing to build in a while.

The repo with install instructions and documentation is here.

I plan to offer long time support for this particular project, there is so much more to do, which you can check on the roadmap of the repo. If you wish to support the project and the time I pour into this, you can do so here.

Feel free to ask for features or offer criticism! This project was born out of a very personalized dashboard that I am working on standardizing for a more broad audience so any help in that direction is duly welcome.

u/JellyGrimm — 4 months ago

iwakura is a modular data fetcher designed to decouple backend logic from the user interface. It allows you to pick, choose, or create your own backend modules and pair them with any frontend in any language.

This architecture makes it ideal for offloading logic from low-power devices and rendering the interface elsewhere, which is the whole reason I started this project a few weeks ago, since I have a bunch of raspberry pis. I’ve included a tui frontend and a web frontend which you can use right now, or customize, but I highly encourage you to make new ones! I really hope you like this one, it's been the most fun thing to build in a while.

The repo with install instructions and documentation is here.

I plan to offer long time support for this particular project, there is so much more to do, which you can check on the roadmap of the repo. If you wish to support the project and the time I pour into this, you can do so here.

Feel free to ask for features or offer criticism! This project was born out of a very personalized dashboard that I am working on standardizing for a more broad audience so any help in that direction is duly welcome.

u/JellyGrimm — 4 months ago
▲ 4 r/foss+1 crossposts

Iwakura is a modular data fetcher that can talk to literally any frontend in any language, letting you pick your own backend modules andd frontend designs, or create your own too.

This project started because I had my own dashboard running on a Raspberry Pi and realized 1) I wanted to be able to see it in more places 2) It was eating ram and I wanted to offload the logic somewhere else and keep the rpi just for rendering, so the idea to divide server, ui state and the actual drawers came from there.

I eventually decided to make it modular so that people with different tastes than me could pick and choose exactly what they want to see without being forced into my specific setup.

I won't explain the full architecture here since I’ve already put a detailed breakdown of the pub/sub logic and the socket system in the README, but the main idea is that the backend is completely decoupled from the UI.

More than anything, I would appreciate technical critique since this is a port from a setup that was made for my specific machines and I am in the process of making it safer and making it work on any machine, so there is a ton of things that still need work and improvement, and I’m really looking forward to seeing people make their own cool frontends or hearing your ideas for more useful services to add. I’ve included a terminal-based frontend for now, but since it just streams text over a TCP port, the possibilities for different UI targets are wide open. I for one am working on the web frontend.

check the source code here

u/JellyGrimm — 4 months ago
▲ 1 r/foss

libtrm is a thin C library that allows you to measure your ram as accurately as you need, letting you choose between RSS, PSS and now USS. You can just drop the single .h file in your project and start. It's designed to be simple, easy to use and extremely lightweight. The post with the original explanation is here. But that had a few minor issues like bad error logging and safety rails. So I got the feedback and improved upon it.

So what's new?

I’ve rewritten the ASCII parser from scratch to be much more defensive, andd added logic to handle truncated lines and proper kB suffix validation. It now handles USS too, so can now see the memory strictly private to your process.

It now has actual error codes for things like partial kernel data or IO failures, and it defensively zeroes out the struct so you don't end up acting on garbage memory if a file read fails.

It’s still zero-dependency, single-header, and lightweight. It still uses the fast smaps_rollup path and falls back to a full smaps walk for older kernels.

I’m really happy with the result and would appreciate further feedback, especially in the parser logic.

Web:https://www.willmanstoolbox.com/libtrm/

Repo:https://github.com/willmanduran/libtrm

reddit.com
u/JellyGrimm — 4 months ago

libtrm is a thin C library that allows you to measure your ram as accurately as you need, letting you choose between RSS, PSS and now USS. You can just drop the single .h file in your project and start. It's designed to be simple, easy to use and extremely lightweight. The post with the original explanation is here. But that had a few minor issues like bad error logging and safety rails. So I got the feedback and improved upon it.

So what's new?

I’ve rewritten the ASCII parser from scratch to be much more defensive, andd added logic to handle truncated lines and proper kB suffix validation. It now handles USS too, so can now see the memory strictly private to your process.

It now has actual error codes for things like partial kernel data or IO failures, and it defensively zeroes out the struct so you don't end up acting on garbage memory if a file read fails.

It’s still zero-dependency, single-header, and lightweight. It still uses the fast smaps_rollup path and falls back to a full smaps walk for older kernels.

I’m really happy with the result and would appreciate further feedback, especially in the parser logic.

Web:https://www.willmanstoolbox.com/libtrm/

Repo:https://github.com/willmanduran/libtrm

reddit.com
u/JellyGrimm — 4 months ago

I want to thank u/BlindTreeFrog for their feedback. For those of you who missed the previous post, libtrm is a thin C library that allows you to measure your ram as accurately as you need, letting you choose between RSS, PSS and now USS. You can just drop the single .h file in your project and start. It's designed to be simple, easy to use and extremely lightweight. So what's new?

I’ve rewritten the ASCII parser from scratch to be much more defensive, andd added logic to handle truncated lines and proper kB suffix validation. It now handles USS too, so can now see the memory strictly private to your process.

It now has actual error codes for things like partial kernel data or IO failures, and it defensively zeroes out the struct so you don't end up acting on garbage memory if a file read fails.

It’s still zero-dependency, single-header, and lightweight. It still uses the fast smaps_rollup path and falls back to a full smaps walk for older kernels.

I’m really happy with the result and would appreciate further feedback, especially in the parser logic.

Web:https://www.willmanstoolbox.com/libtrm/

Repo:https://github.com/willmanduran/libtrm

reddit.com
u/JellyGrimm — 4 months ago

I want to thank everyone who gave their input on the previous version. For those of you who missed the previous post, libtrm is a thin C library that allows you to measure your ram as accurately as you need, letting you choose between RSS, PSS and now USS. You can just drop the single .h file in your project and start. It's designed to be simple, easy to use and extremely lightweight.

So what's new?

I’ve rewritten the ASCII parser from scratch to be much more defensive, andd added logic to handle truncated lines and proper kB suffix validation. It now handles USS too, so can now see the memory strictly private to your process.

It now has actual error codes for things like partial kernel data or IO failures, and it defensively zeroes out the struct so you don't end up acting on garbage memory if a file read fails. These last two fixes were suggested by u/voronaam, whom i thank.

It’s still zero-dependency, single-header, and lightweight. It still uses the fast smaps_rollup path and falls back to a full smaps walk for older kernels.

I’m really happy with the result and would appreciate further feedback, especially in the parser logic.

Web:https://www.willmanstoolbox.com/libtrm/

Repo:https://github.com/willmanduran/libtrm

reddit.com
u/JellyGrimm — 4 months ago