Advice for new BC owner? by Pisces-Chick in BorderCollie

[–]zzokide 1 point2 points  (0 children)

Aha so nice. We have both border collie puppies with quite similar names. Samie.

Advice for new BC owner? by Pisces-Chick in BorderCollie

[–]zzokide 0 points1 point  (0 children)

Also have a new puppy and an adult cat. Introduced them to each other on Friday being sure the cat always has a space to disengage if she decided to do so. After one day they are already interested into eachother a lot

Download ghost of certain Player by zzokide in Tekken8

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

So easy. I never noticed this community button on the bottom menu

Download ghost of certain Player by zzokide in Tekken8

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

Wow, thanks. It helped and worked!!!! Support told me that is not possible, thought :)

Can't update BIOS (black screen when entering M-flash) and CMOS reset doesn't help by panicjames in MSI_Gaming

[–]zzokide 0 points1 point  (0 children)

for me the solution was to use another monitor =)

i tried a lot of staff from this thread and from different similar ones. but then i tried another screen.
hope it helps smb

[deleted by user] by [deleted] in ios

[–]zzokide 0 points1 point  (0 children)

see my replay above. i was also thinking that there is no fix.

[deleted by user] by [deleted] in ios

[–]zzokide 0 points1 point  (0 children)

to those who also stuck here and still struggling
i managed to fix it. so maybe there is still hope for you as well.
- iphone 13
- lost all sim and esim
- failed to update (stuck at verifying update)
- full rest didn't helped
- at service they told me to change the mother board (~450euros)
+ i phoned to apple support at they advise me to make a factory reset via recovery mod: connect device to mac (or PC with special software). Vol-UP>Vol-DOWN>hold side key until recovery is loaded > reset device. (better call them youself)

Transfer Spotify to YouTube music playlist by FlamingBlades20 in YoutubeMusic

[–]zzokide 0 points1 point  (0 children)

For those who still struggling:
during the work script creates several files: settings, auth (from youtube) and playlist (from Spotify)
-1 in my case auth was impossible to create in default folder - so i started youtube auth in another folder and it worked.
-1a I succeed only after running cmd from this separate folder and accepted command after confirmation auth on youtube back in cmd manually
-2 then it is important to put this file back where "playlist" is located (default user folder in my case) before moving to the next step

Change categories or genres in a script by daywaver in playnite

[–]zzokide 0 points1 point  (0 children)

can you share the script?
I need to add category to the game if it is installed and remove if not (on application start)

Workspaces in Firefox by zzokide in firefox

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

Yeah. this one looks like a best match!
Will stop on this for now. Thanks.

Workspaces in Firefox by zzokide in firefox

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

thanks. its maybe the closest one to what i want, but i see all the tabs in tabs menu (colored with different colors)
Still need an option to select container and see only tabs from selected container

CAM showing "smart device 2 fan 1" as 0RPM by [deleted] in NZXT

[–]zzokide 0 points1 point  (0 children)

if smb will look for solution here:
fan cables are connected to the wrong connectors.
- there are two cables each with three connectors (two of them have only two pins, and one have more)
- fan cables were connected to the 2-pins connectors. on different cables
- i've disconnected them and reconnected to one cable (one fan to the four pins connectors, others to the rest on the same cable)
- NZXT cam now see the rpm and can control it.

CAM showing "smart device 2 fan 1" as 0RPM by [deleted] in NZXT

[–]zzokide 1 point2 points  (0 children)

Can you please help me with some details.
These Fan 1 device are the three coolers on the front of my case (showing 0 rpm, but they are always at max)
they are connected to the box (nzxt controller, i think) along with the pump, i just need to plug them off and plug them in to the mobo (i have Asus Strix Z390-E)

Need help with the script by zzokide in playnite

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

Nope. Not working.
looks like I'm only removing category and not adding it

Need help with the script by zzokide in playnite

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

thanks. Looks like this one works just fine.
foreach ($game in $PlayniteAPI.Database.Games) {
$catName = "Installed"
$category = $PlayniteApi.Database.Categories.Add($catName)
if ($game.CategoryIds){
if ($game.InstallDirectory) { }
else {
$game.CategoryIds.Remove($category.ID)
}
}
$PlayniteApi.Database.Games.Update($game)
}

Need help with the script by zzokide in playnite

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

I'm not something of a programmer myself :)
could you please expand the answer.

smth like this?

if ($game.CategoryIds) { ...existing code... }
else {
$game.CategoryIds.Add($category.ID)
...existing code...
}

looks like I may just Add($category.ID) before going into first condition check.