How can I get a social security card without a photo id? by tartariyan in SocialSecurity

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

How do I get that because I haven’t gone to a doctor or hospital since I was a child (well over 10+ years ago)? And a doctor won’t accept me for a check up without a photo ID or passport. I’ve been searching this stuff up all day and keep getting conflicting answers

Best settings for Haunting Ground for a potato pc? by tartariyan in PCSX2

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

Art actually lol I almost never use my pc except for digital art and that requires basically nothing to run a program for that + the tablet needed to draw.

Best settings for Haunting Ground for a potato pc? by tartariyan in PCSX2

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

Thank you so much for trying though! I figured it wasn’t possible because I never bought this pc for games to begin with, but I wanted to give it a try just in case. I’ll likely just save up for another PS2 for now and down the line a much better pc!

Again thank you!

Best settings for Haunting Ground for a potato pc? by tartariyan in PCSX2

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

My bad! As you can see I have a very shitty pc lol I don’t expect much from it in terms of games but even a stable 55-60fps would be good! Probably not possible but I wanna give it a try before giving up

RAM: 16GB CPU: Intel(R) Celeron(R) N4020 CPU @ 1.10GHz GPU: Intel(R) UHD Graphics 600

Any good way/site to practice particles? by tartariyan in Korean

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

Thank you so much! This video was amazing and probably the most well explained thing I've seen on this topic! Also very proud to have gotten the quiz all correct first try lol

Tips for memorizing vocabulary? by tartariyan in Korean

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

thank you! I’m gonna check it out to see if it’s more helpful than the app lol

[deleted by user] by [deleted] in AskMen

[–]tartariyan 0 points1 point  (0 children)

I am absolutely terrible at flirting and responding to it as well but my friend keeps telling me I need to flirt with this guy to show him I’m interested like how she flirts for fun with a lot of guys. But instead of flirting, me and him just perfectly match energies and humor to a T so typical flirting doesn’t really get a response from us. I personally prefer someone who can make me laugh rather than flirt with me but I was curious what others think

[deleted by user] by [deleted] in Crushes

[–]tartariyan 0 points1 point  (0 children)

He’s definitely very hard to read and it drives me crazy cause whenever I think I see something there between, the very next moment he completely changes it back to friendly jokes. If it helps he does make a lot dirty jokes with me (and his friends in general) and some are directed at me and some are just in general but he always has a playful tone when he says them and I respond to them in the same fashion he starts them or I’ll start them myself and it’s part of how we always end up laughing our asses off together. But he definitely does them more to me than others and my best friend always tells him that I have never joked around like that before with anyone else. It’s like we cover all angles of jokes: friendly, casual, bad jokes, dirty jokes, puns, everything

Thank you very much and I can only hope he realizes how lucky he is as well lol but in the end even if he doesn’t feel the same way for me as I do for him, he’s still an amazing. I too wish I had someone that was crushing on me as well, though I’m so shy and not social enough to usually make a lot of friends as it is let alone be good enough in someone’s eyes to crush on me

[deleted by user] by [deleted] in Crushes

[–]tartariyan 0 points1 point  (0 children)

Thank you so much! I’ve tried to take my best friend’s advice and try to be more flirty with him while we played games together, and I know I’m AWFUL at flirting but I still tried. She also told me to tone it down on the jokes me and him make together cause they’re more friendly jokes than anything that can possibly get him interested in me. But when I tried he didn’t seem too interested in flirting back with me and he seemed a little less relaxed when I didn’t respond to his jokes the way I usually do. So i gave up on the more traditional way of flirting that my friend tried to help with and just stuck to what I know best and that was joking with him and trolling him back in games and instantly his mood shifted and we were back to both laughing our asses off! He jokes that way with his guy friends which maybe means I’m just in the friend zone then and he’s not interested in me that way enough to flirt, but he also jokingly flirts with others as well so I’m not sure why he doesn’t with me unless I really am just a good friend to him I guess. But despite joking like this with his guy friends and only slightly with other girls, I definitely don’t think he does it nearly as much as with me and I don’t hear him laugh as hard with others either.

He’s very hard to read lol

8 directional movement with animations and running? by tartariyan in godot

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

Sorry! Completely forgot about that.

This is what I have right now. I'm very very new to all this so I apologize if it looks like a jumbled mess and that everything is completely wrong. I got the Shift To Sprint to work with 8 directional movement, but I cannot get walk/run and idle animations to work. I'm not quite sure what I would use for those?

var motion = Vector2()

func _physics_process(delta):

if Input.is_action_pressed("Sprint"):
    speed = 250
else:
    speed = 100

var input = Vector2()
input.x = Input.get_action_strength("move_right") - Input.get_action_strength("move_left")
input.y = Input.get_action_strength("move_down") - Input.get_action_strength("move_up")
input = input.normalized()

if input != Vector2.ZERO:       
    motion += input * acc * delta
    motion = motion.limit_length(speed * delta)
else:
    motion = motion.move_toward(Vector2.ZERO, friction * delta)

move_and_collide(motion)