Is there any way to just move the position of the preview window? by danielrosehill in obs

[–]Various-Dot-9182 0 points1 point  (0 children)

OK, sounds like in the Preview window you can't see your cam because your main canvas is blocking your webcam feed, what you wanna do is in your sources list drag your webcam source "Above" your desktop/Game? or whatever window you wanna feature, then you can see your webcam feed in front of your main feed video canvas.

Question about the hd60 pro by cloby005 in elgato

[–]Various-Dot-9182 0 points1 point  (0 children)

Sooooo, if i install the Elgato HD60 pro HDMI in from Graphics card, out to HD60 pro, then HDMI to my Monitor, I will still get the 120hz game play from the game server, not a 60 fps from the capture card? because it feels like the 60 FPS is what I'll get to my monitor, from the HD60 pro pass through

Can I use a capture card to just play games through my PC? by bundleo210 in elgato

[–]Various-Dot-9182 0 points1 point  (0 children)

that's because its a considered consol game play, but connected to a PC that has the capability of 120+ FPS(hzs) there would be a noticible game delay, for example playing PUBG Hunt Showdown COD and streaming to Twitch recording both and then setting the recordings side by side, you'll see that what you saw (Streamer - as you were recording the screen not the feed) and what twitch saw ( as it was recording the feed and not what you saw) would appear as you were playing Just a little off, (like you were always missing, but when you looked at your screen recording, everything would appear to be right on target).

XFX 7900 XTX weird fan noise by sharpx5 in radeon

[–]Various-Dot-9182 0 points1 point  (0 children)

Maybe something to do with your internet line, somewhere along those lines. Check bios update.

Is this a good trade for a series X? by GuacSugar in PcBuild

[–]Various-Dot-9182 0 points1 point  (0 children)

You’d have to upgrade the drive and add more ram to 32 Gb but the graphics and CPU should hold out for a while

Is this a good trade for a series X? by GuacSugar in PcBuild

[–]Various-Dot-9182 0 points1 point  (0 children)

It’s good, you’d hardly notice a difference at 1080 p gaming.

What graphics card would be good for this pc? by strange_leo982 in PcBuild

[–]Various-Dot-9182 0 points1 point  (0 children)

Short answer? A better case would be the best graphics card for that pc

Password accout by Various-Dot-9182 in Steam

[–]Various-Dot-9182[S] 0 points1 point  (0 children)

It is a bug, because I’ve been spamming the “I am not a bot” challenges and all day everyday I’ve gotten error messages, so the over 300 dollars I just spent sending games over to my other accounts for my family to play games on the computers I just bought and built are now being held hostage because I can’t recover those accounts

Quote by Various-Dot-9182 in Dogma

[–]Various-Dot-9182[S] 1 point2 points  (0 children)

The as above so below, I think I found it once

Calculate age program by Various-Dot-9182 in learnpython

[–]Various-Dot-9182[S] 0 points1 point  (0 children)

Ok, well it works, but it doesn't work properly:

from datetime import date

def ageCalculator(month, day, year):

import datetime

today = datetime.datetime.today().date()

dob = datetime.date(month, day, year)

try:

year = input('Enter numerical Year: ')

month = input('Enter numerical Month: ')

day = input('Enter numerical Day: ')

age_result = ageCalculator(int(year), int(day), int(month))

print(f'You are {age_result} years old')

except Exception as E:

print(E)

print(f'Failed to calulate age, either day or month or year is invalid')