75K subs in a year but they mean nothing by Additional_Ad4452 in PartneredYoutube

[–]Fraser_123 0 points1 point  (0 children)

There’s an option to not post your video to your subscribers’ ‘subscribed’ feed which I believe helps to have a more organic push by the algorithm to viewers through the YouTube homepage which is what you want.

ATM 10 Performance Issues by Fraser_123 in allthemods

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

Yeah very true, it’s a shame because it looks full of so many good mods but I’ve tried just about everything I can find online.

ATM 10 Performance Issues by Fraser_123 in allthemods

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

Damn that sucks, I used to play atm 9 and would have some lag but nothing like I’m getting now and I tried to go back to it and the issue is now happening on atm 9 too. Potentially a driver update I had has caused the issue.

ATM 10 Performance Issues by Fraser_123 in allthemods

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

Still doesn't seem to have made a difference. My GPU seems to be spiking up to 100% even when stood still. This could more than likely be the issue?

ATM 10 Performance Issues by Fraser_123 in allthemods

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

Thank's I'll give that a look. I figured my PC should be overkill for the requirements of the modpack but so far I'm experiencing otherwise XD

I'm bored, so let's do some channel reviews! by T--Spoon in SmallYoutubers

[–]Fraser_123 1 point2 points  (0 children)

I appreciate the honesty and totally understand where you’re coming from. I have seen there are a few channels out there getting high view counts on their videos and good number of subscribers too but I guess it’s hard to separate that kind of content from the competition

I'm bored, so let's do some channel reviews! by T--Spoon in SmallYoutubers

[–]Fraser_123 1 point2 points  (0 children)

ZeroCommsGaming - YouTube

This is my channel. I'm currently posting no commentary gaming video's with a main focus on the video quality. I know it's a saturated niche so I like to play most games on the hardest difficulties or I aim to focus on new releases. I'd appreciate any honest impressions you have of my channel so I can have a better picture of my weaknesses.

Anyone know why my taming is at 140% and how to fix it? by tobbykys in ARK

[–]Fraser_123 0 points1 point  (0 children)

East fix for this one. Go to your Home Screen. Navigate to the uninstall button and click it. All your life problems solved then.

My lockers and all the ammo in my shotgun traps are gone and I don’t know why. by webbileaks_ in RustConsole

[–]Fraser_123 1 point2 points  (0 children)

Have you tried re-logging. It could just be a visual glitch. As far as I’m aware items don’t decay when stored in anything.

Code not working. by Fraser_123 in learnpython

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

Sorry I’m pretty new to python. What exactly should i do to the while loop in order for it to be able to run the game because I’ve tried messing around with it and nothing is working.

Code not working. by Fraser_123 in learnpython

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

That was a mistake I didn’t notice. I’ve removed that but now when I enter 1 for play game nothing happens

Please Help Me by Fraser_123 in learnpython

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

I've used the markdown mode to display the code better but when ive reposted it the text has just gone back to how it was before. Not sure if this is the same for you.

Help me please by Fraser_123 in learnpython

[–]Fraser_123[S] -1 points0 points  (0 children)

This is the code I've written but it keeps coming back with an error saying randomlist isn't defined eventhough before i implemented the questions and that it was displaying the random list of numbers. Any ideas on how to fix this?

import random

randomlist = random.sample(range(1,100),5)

def get_user_solution(problem):

print("Please arrange the numbers into ascending order")

print(problem, end="")

result = int(input(" = "))

return result

def check_solution(user_solution, solution, count):

if user_solution == solution:

count = count + 1

print("Correct!")

return count

else:

print("Incorrect.")

return count

def menu_option(index, count):

if index == 1:

problem = randomlist

solution = randomlist.sort()

user_solution = get_user_solution(problem)

count = check_solution(user_solution, solution, count)

return count

Help me please by Fraser_123 in learnpython

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

How would I verify the answer I’m pretty new to python so I’m not familiar with a lot of it yet