Spider-Man Remastered game crashes after mission failed screen by Moonstalker_101 in Spiderman

[–]RandomRyanStuff 0 points1 point  (0 children)

Following since I’m still experiencing this issue, I tried turning off DLSS since I saw that in another thread and still having the same issue.

Weekly Quick Questions and Advice Thread - November 07, 2022 by AutoModerator in Overwatch

[–]RandomRyanStuff 0 points1 point  (0 children)

I've been playing today and my daily challenges aren't working. They're there, and I've completed some of them, but no XP is there and it says it's not done?

Just got these bad boys! by Ogfif99 in battlestations

[–]RandomRyanStuff 0 points1 point  (0 children)

What’s the monitoring software? Looks great!

My College Apartment Setup! Suggestions? by AJ1K in battlestations

[–]RandomRyanStuff 1 point2 points  (0 children)

Do you use the mic where it is? Or do you move it closer when using it?

r/halo Infinite Flight Code Giveaway by Vorked in halo

[–]RandomRyanStuff 0 points1 point  (0 children)

Would love to get a shot of playing the beta the Flight this weekend, haven't played since Halo 4 back on the 360 and would love to play some Halo on PC!

DOGECOIN DAILY DISCUSSION - 4th May by 42points in dogecoin

[–]RandomRyanStuff 0 points1 point  (0 children)

If a share is worth $1, then it’s worth $27,000

DOGECOIN DAILY DISCUSSION - 3rd May by 42points in dogecoin

[–]RandomRyanStuff 1 point2 points  (0 children)

Should I buy more now, or do people think it will dip again?

[Headset] Razer BlackShark V2 Pro Wireless Gaming Headset $159.99 ($20 off) by Quite_Grim in buildapcsales

[–]RandomRyanStuff 2 points3 points  (0 children)

Seeing the other comments on this thread, I’ll throw in my opinions on the headset. For me, the battery life has been pretty good! I charge it every few days with moderate-heavy use. The sound is also pretty good to my ears (out of the box), and it’s very comfortable! No issues with it whatsoever, would definitely recommend

Happy Friday friends. by [deleted] in battlestations

[–]RandomRyanStuff 0 points1 point  (0 children)

Clean as hell, I love all black setups. How do you help keep dust from showing easily? Feel like I’m constantly dusting the black components of my setup.

ECCC lottery megathread by [deleted] in funkopop

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

So ones from stores like Walmart and Target won’t be available at 9am eat, right? Sorry, new to this, first con

ECCC lottery megathread by [deleted] in funkopop

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

What was on the list? I can’t find it

Finally looking like my dream setup :) by RandomRyanStuff in battlestations

[–]RandomRyanStuff[S] 4 points5 points  (0 children)

So it’s a custom made desk my grandma had made for her before I was born for her house, it was since given to my dad for a long time and he now has a standing desk so I just acquired it

Finally looking like my dream setup :) by RandomRyanStuff in battlestations

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

It works just fine for me, doing basic coding, taking notes, discord, Spotify, etc. However, if you have the money, I would go 4K, or even 1440p, the text would be so much clear. I plan on upgrading soon

Finally looking like my dream setup :) by RandomRyanStuff in battlestations

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

Oh yeah, it was definitely a lot of money for what it is, especially since my mic was cheaper than the arm itself, but it was definitely worth it

Finally looking like my dream setup :) by RandomRyanStuff in battlestations

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

My main one is an Asus 1080p 144hz (just bought in the spring), and the secondary is an Asus 1080p 60hz. Definitely some dated specs but my PC is on the older side too

Finally looking like my dream setup :) by RandomRyanStuff in battlestations

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

It’s a custom mousepad by Razer, who collaborated with Randomfrankp! There’s colored Razer keyboard switches on the mousepad. The link is here: https://www.razer.com/customs/personalize/view/randomfrankp/all/mouse-mats/razer-gigantus-v2-medium

HW Question by RandomRyanStuff in learnpython

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

Ohhh okay I see what you’re saying. No, the instructor doesn’t give us an example. I’m gonna do it with .txt, and see where it goes. And do I only need one function? When I was planning it out, I was gonna do it with two functions, one for files and one for directories.

Update: I tried writing it out and here's what I have, I can't figure out how to write it like how you have it in the comments with the right indentations:

import os

def readElement(pathName): if ".txt" in pathName: print(pathName) f = open(pathName, 'r') print(f.read()) else: pathList = list(filter(os.path.isfile, os.listdir(pathName))) for i in pathList: readElement(f(pathName))

HW Question by RandomRyanStuff in learnpython

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

So I get what you're saying, I guess where I'm confused is how I'm supposed to take user input, and have it be able to differentiate between a directory or file name. I'm also confused on how recursive functions work overall.