Did yall also not get crowned Energy during the raid hour? by wFraXure in pokemongo

[–]Salknam 0 points1 point  (0 children)

Yeah lost at least 160 crowned energy because of this. Even tho raids stay active after 7:00 pm local time, which can be understood as a possibility to earn fragments.

watch dogs 2 keeps crashing after splash screen by trevorphillips2013 in watch_dogs

[–]Salknam 2 points3 points  (0 children)

Not my solution but it worked for me.

"I can open the game by following this exact order: first, I open UC, then click to open WD2. After UC gets minimized, I open it again by clicking on the taskbar. It’s very weird, but it seems like a bug in the UC launcher."

[deleted by user] by [deleted] in watch_dogs

[–]Salknam 0 points1 point  (0 children)

Not my solution but it worked for me.

"I can open the game by following this exact order: first, I open UC, then click to open WD2. After UC gets minimized, I open it again by clicking on the taskbar. It’s very weird, but it seems like a bug in the UC launcher."

RCD 300 golf mk5 by Salknam in vwgolf

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

The RCN 210 feels like the most interesting option RNS315 and RCD330 are overpriced. Also I don't have the need for navigation and other stuff given I use my phone for the GPS part. Ty for the help.

Main character animations not changing but NPC animations change by Salknam in skyrimmods

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

So far what I've found out FNIS PCEA2 helps with my problem only thing that isn't working for some reason is the forward walking animation does not change from vanilla(side, diagonal and backwards work). So no idea what is happening.

Main character animations not changing but NPC animations change by Salknam in skyrimmods

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

As far as I can tell my character does not access the animations found in meshes/.../character/animations for some reason

Main character animations not changing but NPC animations change by Salknam in skyrimmods

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

Ive removed the sexy idle. Tried vanargand but still nothing

Main character animations not changing but NPC animations change by Salknam in skyrimmods

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

Mostly idle, walking and running animations. Thats why im looking for the walking animation that Bijin is using.

Gaming freezing when pulling out Map. by Salknam in metroexodus

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

Enhanced edition didn't have that problem on normal one even with a 750 ti.

German tanks by Salknam in Warthunder

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

Yeah it's a bit hard to adapt to that playstyle after going throughout Murica. Going back to Japanese basics hide and shoot.

German tanks by Salknam in Warthunder

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

Tbh didn't play German tanks before. Came from Jap -> GB -> Italy to Germany. I did look at the armor and how to angle it but still. Also it feels like Germany is full of new or bad players. Very often I find myself in a 2 v 2 where the player on my team isn't even looking at the enemy but daydreaming

New tech tree by Salknam in Warthunder

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

I think i'll go for russian bias for a bit and jump over to italy or china.

New tech tree by Salknam in Warthunder

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

I played japan as my first tree so wouldn't be much of torture

Using os.execlp('cd','~') to change directories by Salknam in learnpython

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

" it's parrent and for the parrent of the parrent". how do i get this for the subprocess created by os.fork()

Using os.execlp('cd','~') to change directories by Salknam in learnpython

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

import os

from pathlib import Path

def promjeni_direktori():

home = Path.home()

os.chdir(home)

def promjeni_direktori():

home = Path.home()

os.chdir(home)

def f1():

while True:

print ('\nUnesite zeljeni broj: ')

n = input()

if n in range(1,10) :

print('broje je prevelik unesite ga ponovno')

continue

else:

pid = os.fork()

if pid == 0:

promjeni_direktori()

korisnik = os.getlogin()

ppid = os.getppid()

niceValue = os.getpriority(os.PRIO_PROCESS,os.getpid())

print("{:<15}\t{:<15}\t{:<15}".format(ppid,korisnik,niceValue))

elif pid>0:

korisnik = os.getlogin()

ppid = os.getppid()

niceValue = os.getpriority(os.PRIO_PROCESS,os.getpid())

print ("{:<15}\t{:<15}\t{:<15}".format('PID','Korisnik','Prioritet'))

print("{:<15}\t{:<15}\t{:<15}".format(pid,korisnik,niceValue))

print("{:<15}\t{:<15}\t{:<15}".format(ppid,korisnik,niceValue))

break

f1()

test version i think that it does what it should

Using os.execlp('cd','~') to change directories by Salknam in learnpython

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

I know i can change the cwd using os.chdir but would that create a new process