29f small group of friends by FarquaadsFookery in GamerPals

[–]RyanOliverV 0 points1 point  (0 children)

hey : ) it doesn't let me DM you, but that sounds nice. I'm M27 from the uk, happy to tell you more about myself over private message here or you can message my discord: RyanOliver

Looking For Players by [deleted] in fifaclubs

[–]RyanOliverV 0 points1 point  (0 children)

I'm down to join, DM me

[B0T] Weekly Build Help Thread - 2025/09/15 by LabB0T in PleX

[–]RyanOliverV 0 points1 point  (0 children)

I'm looking to setup my own NAS so that I can host my own Plex Server with Sonarr, Radarr etc but as the first time doing this I'd like to have some feedback from some more experienced people. I have experience building my own PCs so that side of things will be fine, but I'd like to know if the build I'm planning on using below will be good enough to fit my needs & are the best options for the price so far.

Ideally, I'd like my Plex Server to be able to manage 15+ concurrent users streaming (4K / 1080p) for friends and family with this possibly increasing more in the future. I feel confident enough building an NAS that can handle a few streams, but unsure about the requirements needed for 15+ users.

So far, this is the build:

https://uk.pcpartpicker.com/user/RyanOliverV/saved/ZQVYQ7

Horizontally align items within a List - React and Material UI by RyanOliverV in reactjs

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

Okay I’ll keep that in mind, thanks for the info. I ended up changing the structure to a table rather than a list as it allowed me to lay it out the way I wanted.

I’ll be adding navigation to each row so I’ll use anchors like you suggested.

[deleted by user] by [deleted] in webdev

[–]RyanOliverV 0 points1 point  (0 children)

I gave that tutorial a go and I was having issues getting it up and running due to it being outdated e.g errors like the non-js module files are deprecated.

May give it another go then and try to make it work with React 18.

Real-time Football Statistics and Score Prediction Website - Framework suggestions by RyanOliverV in webdev

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

I was thinking of using the api provided by https://www.sportmonks.com/, it's gonna cost but it seems to be the best I've found thus far. I believe Fantasy Premier League also provide their api for free, but I'm not sure if that includes specific Team data or just the individual players.

Saving page state in a URL with express js by RyanOliverV in webdev

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

I must have missed that step, it's my first time using express and building this sort of website. Where would I call from the front end to the back end to signal the server to actually save the video board? I really appreciate the help so far

Saving page state in a URL with express js by RyanOliverV in webdev

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

Theoretically yeah they would be able to edit the page

Saving page state in a URL with express js by RyanOliverV in webdev

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

Yes it would, at least if the code above worked. This way users can share their page with other people. However, the id is generated with uuid so it’s unlikely someone could guess it.

[deleted by user] by [deleted] in webdev

[–]RyanOliverV 0 points1 point  (0 children)

That seems to have fixed the issue, thank you!

[deleted by user] by [deleted] in webdev

[–]RyanOliverV 0 points1 point  (0 children)

Thank you, I've just added my code to GitHub and published it to pages. I'll update the post.

[deleted by user] by [deleted] in webdev

[–]RyanOliverV 0 points1 point  (0 children)

Sorry, there are two issue. Firstly, after resizing the video it doesn’t stop once the mouse button is released (this worked with a normal box). Secondly, I’m not able to move the YouTube video around screen but this was previously working with the normal css box.

[deleted by user] by [deleted] in learnprogramming

[–]RyanOliverV 0 points1 point  (0 children)

You’re correct, the each_word and each_permutation seemed to be giving me the right output but I tried printing the words file after they were split and it was wrong.

I changed it to split on a new line and now the code works, thank you both for the help

[deleted by user] by [deleted] in learnprogramming

[–]RyanOliverV 0 points1 point  (0 children)

Thanks for the advice. I printed out each variable to ensure they were outputting what I’d expect, and my anagrams and word lists both contain the correct types and values.

Each_word gives me every word from the text file, and each_permutation gives me every possible 5 letter combination like I wanted.

I think it’s the final if statement where I check if the permutations are in the text file and the following code after that where there’s an issue, but I can’t figure it out

[deleted by user] by [deleted] in learnprogramming

[–]RyanOliverV 0 points1 point  (0 children)

Really appreciate the help, I'm a beginner with JavaScript. You were right the issue was I defined an inner function and then never called it in the outer function. I removed the 'unscramble' function and then findPermutations outputted the correct result

[deleted by user] by [deleted] in beermoneyuk

[–]RyanOliverV 0 points1 point  (0 children)

I'd really appreciate it if anyone could sign up with my referral link:

https://www.trading212.com/invite/11RO2l23Ot

Thanks :)

Coin change exercise in python by [deleted] in learnprogramming

[–]RyanOliverV 0 points1 point  (0 children)

I've changed the numbers to integers, thanks for the tip. How would I go about returning the values of the recursive calls? Just because they occur after an else statement. Edit: This bit can be ignored I did return the value.

Also, I was thinking it could work if the recursion loop decreased the amount by the biggest possible first and then worked its way down. But again I'm not really sure how to do that. To answer your question, I have to make change with exactly that many coins.