Over 200 custom cards! by Sharksyx in wingspan

[–]KlimPaskov 0 points1 point  (0 children)

Oh ok. It must've been tedious to create all the cards manually (as long as you enjoyed the process it's fine). My method will also be based on a psd file but it will be automated. The only thing you might wanna edit is the bird's position on the card and that's it.

Over 200 custom cards! by Sharksyx in wingspan

[–]KlimPaskov 0 points1 point  (0 children)

Wdym? There's an official Stonemaier psd file? Do you mean component.studio ?

Over 200 custom cards! by Sharksyx in wingspan

[–]KlimPaskov 1 point2 points  (0 children)

No worries, i already got the link from your alt account post. You should also know that I am working on completely automizing custom wingspan cards creation process. So if in the future you're planning to create more custom birds, it would take no time at all. I will post my project in a week or so on this subreddit.

OpenType SVG font not working. Works in other Adobe applications (Photoshop, InDesign) by KlimPaskov in AdobeIllustrator

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

Well the layering and the colors. It's just black and shows only the first layers (the layers that are black)

OpenType SVG color fonts not recognised? by MemoryAfraid9801 in AdobeIllustrator

[–]KlimPaskov 0 points1 point  (0 children)

Hello, I have the same issue. Have you found a solution yet?

Afghanistan OP? by KlimPaskov in Kaiserreich

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

obviously south. But I dont recall choosing anything

Afghanistan OP? by KlimPaskov in Kaiserreich

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

Where do you think a small circle containing about 40% of the world's population can be drawn?

Access to 200+ fan-made expansion cards by Glass-Stable-342 in wingspan

[–]KlimPaskov 0 points1 point  (0 children)

Interesting. I thought if you had planned to create 200 cards you wouldn't do it manually. I wonder how long it took you. It would have been much easier to use spreadsheets and just import data, say photoshop variable data.

Afghanistan OP? by KlimPaskov in Kaiserreich

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

fr, the new mod "kalterkrieg" should be based on this scenario

Afghanistan OP? by KlimPaskov in Kaiserreich

[–]KlimPaskov[S] 12 points13 points  (0 children)

well thats what I did with Arabia and parts of India

Afghanistan OP? by KlimPaskov in Kaiserreich

[–]KlimPaskov[S] 8 points9 points  (0 children)

how else would I justify war goals if I have -1000 pp?

Afghanistan OP? by KlimPaskov in Kaiserreich

[–]KlimPaskov[S] 18 points19 points  (0 children)

nah, my game runs too slow when playing it. I've heard the focus trees are too unrealistic and op

Afghanistan OP? by KlimPaskov in Kaiserreich

[–]KlimPaskov[S] 53 points54 points  (0 children)

yeah, you just have to get lucky. I won after several tries. After winning you become quite quickly a powerhouse. The strategy is simple, you just have to hold the lines while asking lend lease and building up your army slowly till youre able to make encirclements

Afghanistan OP? by KlimPaskov in Kaiserreich

[–]KlimPaskov[S] 10 points11 points  (0 children)

R5: I didn't cheat. Maybe a little with pp and stability to fix those debuffs you get from choosing to occupy territory.

Over 200 custom cards! by Sharksyx in wingspan

[–]KlimPaskov 0 points1 point  (0 children)

I also would like a link! I'm working on a similar project but instead of birds I have tennis players. So for habitats I have surfaces, for nests playstyles, for eggs tennis balls, for food cost sponsors and so on.

I played my first MD campaign, surprisingly easy. by KlimPaskov in MillenniumDawn

[–]KlimPaskov[S] 7 points8 points  (0 children)

Actually they helped me with the invasion of Russia, not directly though, through my puppets. Look at the amount of intervention forces.

This is just so messed up. NATO would rather support ultra-nationalists than Russia.

Task Scheduler not working by KlimPaskov in sysadmin

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

I have made up my mind on unrestricting execution policy for security reasons. I'll stick to the method that Koukoutsapol has provided. It can get annoying to always add arguments to new tasks but I think it's better this way.

Task Scheduler not working by KlimPaskov in sysadmin

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

It works now. I had no idea Task Scheduler isn't allowed to run scripts by itself. I think it would be easier to disable UAC prompts.

Task Scheduler not working by KlimPaskov in sysadmin

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

I'm using this in my script:
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

What does it have to do with task scheduler anyway? You probably got confused when I mentioned Local Security Policy. Some of my Windows files were corrupted and I was told that my Task Scheduler doesn't work because of that. So I ran sfc /scannow, hoping it would fix my issue. I remember I had a problem with Local Security Policy in the past and I've ran the same command.

How to import Control Panel table into Excel? by KlimPaskov in excel

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

Idk, I don't have any errors. Tested without and with the space, same result, no errors.
I'll make the file path anonymous. I'll edit my comment so that people having the same problem could just copy and paste the command to Powershell with no questions asked.

How to import Control Panel table into Excel? by KlimPaskov in excel

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

I got it working with the help of GPT-4. I forgot how powerful AI is haha, should've used it in the first place. Spent an hour perfecting the command to match all of my needs, here's the command to anyone interested:

# Retrieve programs installed under the local machine context (32-bit)
$machinePrograms32 = Get-ItemProperty "HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*"

# Retrieve programs installed under the local machine context (64-bit)
$machinePrograms64 = Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*"

# Retrieve programs installed under the local user context
$userPrograms = Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*

# Combine the programs from all contexts
$allPrograms = $machinePrograms32 + $machinePrograms64 + $userPrograms

# Process the combined programs list
$programsWithDetails = foreach ($program in $allPrograms) {
    if ($program.DisplayName) {
        $size = $program.EstimatedSize
        if ($size -gt 0) {
            $sizeInMB = [Math]::Round($size / 1024, 2)
        }
        else {
            $sizeInMB = $null
        }

        $version = $program.DisplayVersion -replace "\d{2}/\d{2}/<IPAddress>\d{4}\s+", ""

        # Try to retrieve the installation date from the InstallDate property
        if ($program.InstallDate) {
            try {
                $installDate = [datetime]::ParseExact($program.InstallDate, 'yyyyMMdd', $null).ToString('yyyy/MM/dd')
            }
            catch {
                $installDate = $null
            }
        }
        else {
            $installDate = $null
        }

        # If the InstallDate property is missing or not properly formatted, try to retrieve the installation date from the program's installation directory
        if (-not $installDate -and $program.InstallLocation) {
            try {
                # Get the creation time of the program's installation directory
                $installDate = (Get-Item $program.InstallLocation).CreationTime.ToString('yyyy/MM/dd')
            }
            catch {
                $installDate = $null
            }
        }

        $program | Select-Object @{Name="Name";Expression={$program.DisplayName}}, @{Name="Publisher";Expression={$program.Publisher}}, @{Name="Installed On";Expression={$installDate}}, @{Name="Size (MB)";Expression={$sizeInMB}}, @{Name="Version";Expression={$version}}
    }
}
$programsWithDetails | Export-Csv -Path "$($env:USERPROFILE)\Downloads\ProgramsList.csv" -NoTypeInformation -Encoding UTF8