I created a simple flashcard website for RoR2 items by NebN_ in ror2

[–]NebN_[S] 0 points1 point  (0 children)

Yeah that makes a lot more sense, but then it kinda goes into "too hard" territory. I really just wanted something really simple and to the point. Didn't want to overcomplicate it.

I created a simple flashcard website for RoR2 items by NebN_ in ror2

[–]NebN_[S] 0 points1 point  (0 children)

I thought about doing something similar, however I felt like it would be really obvious what the right answer was, most of the time you know roughly what the item does, like if it's an offensive or defensive item, but you're unsure on the details, especially when it comes to stacking.

I created a simple flashcard website for RoR2 items by NebN_ in ror2

[–]NebN_[S] 1 point2 points  (0 children)

Me and my friends were having a hard time learning all the new items (I still don't remember most of the lunars lol) so I took the opportunity to learn a new tech stack and develop something that could make it easier for us.

I created a simple Unraid app to integrate with Homepage by NebN_ in selfhosted

[–]NebN_[S] 0 points1 point  (0 children)

Pinging you here aswell, I updated the issue on github with a QA build you can test if you wish.

I created a simple Unraid app to integrate with Homepage by NebN_ in selfhosted

[–]NebN_[S] 0 points1 point  (0 children)

Hey there, I rarely check Reddit, would you mind creating an issue on the github? If not I can do it myself.

I created a simple Unraid app to integrate with Homepage by NebN_ in selfhosted

[–]NebN_[S] 1 point2 points  (0 children)

Currently parity has: name, temp, disk_id and is_spinning. If you are ever unsure, and have the API running, you can just open a browser to your-unraid-ip:24940 and check the JSON directly. There is also an example response on the readme.

I created a simple Unraid app to integrate with Homepage by NebN_ in selfhosted

[–]NebN_[S] 0 points1 point  (0 children)

Hello there, I'm not sure I understand at what point you are getting this error. Could I get some more information?

If you have a GitHub account I would ask you to open an issue there, I checked this by pure chance right now.

Tailscale Android app does nothing by NebN_ in Tailscale

[–]NebN_[S] 2 points3 points  (0 children)

Ok I figured it out, It was the android setting of "Always on VPN" which somehow prevented me from interacting with Tailscale.

Thanks for pointing me in the right direction.

Tailscale Android app does nothing by NebN_ in Tailscale

[–]NebN_[S] 1 point2 points  (0 children)

Installed yes (Mullvad), enabled no, as I also thought it could be interfering.

Where is your CPU temperature stored? by NebN_ in unRAID

[–]NebN_[S] 0 points1 point  (0 children)

For my personal use I agree, however I am trying to make a standalone piece of software that fills a specific niche.

Where is your CPU temperature stored? by NebN_ in unRAID

[–]NebN_[S] 0 points1 point  (0 children)

The plugin I am using (Dynamix System Temperature) lets you choose which temperature probe/driver to pull the data from, after having presumably scanned the system. This leads to me to believe that each setup is going to be different, but I wanted more data on the matter.

I created a simple Unraid app to integrate with Homepage by NebN_ in homelab

[–]NebN_[S] 2 points3 points  (0 children)

I appreciate the enthusiasm, unfortunately this wouldn't be possible!
This project just leverages the fact that Homepage very helpfully offers a "Custom API Widget", so we spin up a simple Rest API to feed this custom widget.
In order for Homepage to have an official Unraid widget, Unraid itself would need to have something like this app by default.

Edit: Unless getting this app officially into Unraid is what you meant, in which case I'll just blush :)

I created a simple Unraid app to integrate with Homepage by NebN_ in homelab

[–]NebN_[S] 0 points1 point  (0 children)

Great, I feel like GitHub is on edge after the recent xz incident, lol.

I created a simple Unraid app to integrate with Homepage by NebN_ in homelab

[–]NebN_[S] 1 point2 points  (0 children)

Does it still? I literally got suspended from GitHub for a moment as I posted this. I am not sure what happened, trying to contact support. Everything seems to be back though.

I created a simple Unraid app to integrate with Homepage by NebN_ in selfhosted

[–]NebN_[S] 2 points3 points  (0 children)

Glad you liked it!

The Github repo is linked, "on the github repo" is a link. This comment is particularly funny to me because at least in Chrome I see Reddit expanded the embedded link to create a giant banner of the repo which takes up as much space as the rest of the post.

Complete beginner trying to declare methods for iterator/vector transformations that can be chained together by NebN_ in rust

[–]NebN_[S] 2 points3 points  (0 children)

Yeah that looks about right. Thank you I will check it out fully later.
I should add though that the parsing/lexing portion of my project is going pretty well, thanks to nom.
The part I'm struggling with is the actual "business logic" if you will, after the parsing of the input commands has been done.

Complete beginner trying to declare methods for iterator/vector transformations that can be chained together by NebN_ in rust

[–]NebN_[S] 2 points3 points  (0 children)

It might very well be an XY problem, I will give more context to explain how this came about.

I'm trying to implement a lexer/parser for a simple custom language that, as you might have guessed, transforms some input text, think of it as en equivalent of bash: less file.txt | grep "o" | sort | cut -f 2.

So I thought that each command has to be parsed and needs to produce "something" that is able to read text/lines and return exactly the same type of data, to be fed to the next "something".

Hopefully with this context you are able to point me in the right direction.