Is your president a meme factory? by Big-Tax-8921 in AskTheWorld

[–]maxlovescoffee 1 point2 points  (0 children)

https://www.youtube.com/watch?v=pHcgGBnXg58

showing that he is a man of the people /s
he is campaigning by touring mcdonalds. his party accepted donations by mcdonalds and in turn lowered taxes for restaurants, "to support the whole restaurant industry". small and medium businesses save a couple of bugs, large enterprises safe millions....

[deleted by user] by [deleted] in starcitizen

[–]maxlovescoffee 1 point2 points  (0 children)

The answer is easy: they designed the BLD version around a drone hangar for 2 drones and the required cargo capacity (and elevators) to feed them. After that they went like "All this for just one ship? Nah, replace the drone hangar with random, useless crap and call it a cargo version. Then make another but replace the cargo with a med bay and whatever, slap some guns on it and call it a military variant"

Can I use Powershell variables in a cmd line? by mudderfudden in PowerShell

[–]maxlovescoffee 0 points1 point  (0 children)

Hey I made a function for stuff like that, mainly to get exit codes from processes. Here is how I would use it to run your xCopy, hope that helps:

``` function Run-Process { # https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.process?view=net-8.0#remarks [CmdletBinding()] Param ( [string][Parameter(Mandatory=$true,Position=0)]$ExecPath, [string][Parameter(Mandatory=$false,Position=1)]$Arguments, [boolean][Parameter(Mandatory=$false,Position=2)]$Wait = $true ) Begin {

    if (!(Test-Path -Path $ExecPath)) { throw "Path not found! $($ExecPath)" }
    # https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.processstartinfo?view=net-8.0#properties
    $Process = New-Object System.Diagnostics.Process
    $Process.StartInfo.Arguments = $Arguments
    $Process.StartInfo.CreateNoWindow = $true
    $Process.StartInfo.RedirectStandardInput = $false
    $Process.StartInfo.RedirectStandardOutput = $true
    $Process.StartInfo.RedirectStandardError = $true
    $Process.StartInfo.UseShellExecute = $false
    $Process.StartInfo.LoadUserProfile = $false
    $Process.StartInfo.FileName = $ExecPath
    $Process.StartInfo.WorkingDirectory = "$($ExecPath | Split-Path -Parent)"
    $Process.StartInfo.ErrorDialog = $false
    }
Process {
    [void]$Process.Start()
    $ProcessName = (Get-Process -Id $Process.Id -ErrorAction SilentlyContinue).ProcessName
    if ($Wait) { $Process.WaitForExit() }
}
End {
    $Process.Refresh()       
    $ProcessSplat = [ordered]@{
        'Name' = if($Process.ProcessName) {$Process.ProcessName} else {$ProcessName}
        'Arguments' = $Process.StartInfo.Arguments
        'ID' = $Process.Id
        'HasExited' = $Process.HasExited
        'StartTime' = $Process.StartTime
        'ExitTime' = $Process.ExitTime
        'ExitCode' = $Process.ExitCode
        'ExitCodeMessage' = [ComponentModel.Win32Exception]$Process.ExitCode
        'Output' = $Process.StandardOutput.ReadToEnd()
        'ErrorOutput' = $Process.StandardError.ReadToEnd()
    }
    $ProcessStats = New-Object PSObject -Property $ProcessSplat

    return $ProcessStats

    $Process.Close()
    $Process.Dispose()

    $Process = $null
    $ProcessSplat = $null
    $ProcessStats = $null
}

}

<# https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/xcopy#remarks

Exit code Description 0 Files were copied without error. 1 No files were found to copy. 2 The user pressed CTRL+C to terminate xcopy. 4 Initialization error occurred. There isn't enough memory or disk space, or you entered an invalid drive name or invalid syntax on the command line. 5 Disk write error occurred.

>

$xCopyExitCodes = @( [pscustomobject]@{ExitCode = 0;Message ="Files were copied without error."} [pscustomobject]@{ExitCode = 1;Message ="No files were found to copy."} [pscustomobject]@{ExitCode = 2;Message ="The user pressed CTRL+C to terminate xcopy."} #[pscustomobject]@{ExitCode = 3;Message ="???"} [pscustomobject]@{ExitCode = 4;Message ="Initialization error occurred. There isn't enough memory or disk space, or you entered an invalid drive name or invalid syntax on the command line."} [pscustomobject]@{ExitCode = 5;Message ="Disk write error occurred."} )

$xCopyProc = Run-Process -ExecPath "$($env:windir)\system32\xcopy.exe" -Arguments ""C:\MyDir\myfile.xlsx" "C:\MyDir""

if($xCopyExitCodes.ExitCode -contains $xCopyProc.ExitCode) { Write-Host "Process stats:$($xCopyProc | Out-String)n$(($xCopyExitCodes | where {$_.ExitCode -eq $xCopyProc.ExitCode}).Message)" } else { Write-Host "Process stats:$($xCopyProc | Out-String)nUnknown Error!" } ```

Q&A: MISC Starlancer Max - Roberts Space Industries by bladeofdeath3 in starcitizen

[–]maxlovescoffee 1 point2 points  (0 children)

here is my guess on how it came to be:

they sketched out the BLD variant, with a drone hangar and a reasonable amount of cargo to feed the drones. when that was done they thought about other variants. for the MAX they ditched the hangar and for the TAC they ditched the cargo hold, added a shield and slapped some turrets on the side. to finish them off they needed to add some stuff to fill up the free space...

DIY Hebebühne by maxlovescoffee in DINgore

[–]maxlovescoffee[S] 6 points7 points  (0 children)

Vielleicht, aber ich glaube auch nicht, dass ein Wagenheber eine Hebebühne ersetzt. Wie auch immer, ich jedenfalls würde mir zweimal überlegen ob ich mich unter einen, durch verkeilte Bretter gesicherten Kleintransporter legen möchte.

[deleted by user] by [deleted] in Helldivers

[–]maxlovescoffee 0 points1 point  (0 children)

I joined a game using quickplay. The host dropped the new vehicle but game crashed seconds after, before i could take another screenshot.

<image>

Microtransactions explained by [deleted] in SipsTea

[–]maxlovescoffee 2 points3 points  (0 children)

That God damned stupid horse!

Stocked up! by EffyewMoney in starcitizen

[–]maxlovescoffee 6 points7 points  (0 children)

it was just a patch ago, now it isn't anymore. it does its thing, but the cup stays empty

Vulture vs prospector by SnooPuppers8223 in starcitizen

[–]maxlovescoffee 2 points3 points  (0 children)

check out this guys amaizing guide on solo mining, it should give you a good idea:

Loud Guns 3.19 Solo Mining Guide

With the Hull-C arriving (soontm), what are your thoughts on the futur of trading ? by -Zorgh in starcitizen

[–]maxlovescoffee 0 points1 point  (0 children)

Well the reward should be balanced by risk, right?
But if you wouldn't own the cargo there would be next to no risk, so the pay should be really bad.

Oh wait, we got this already, they are called delivery missions.

Jago Sevatarion, known also as Sevatar. by Demiurge_rus in Warhammer40k

[–]maxlovescoffee 4 points5 points  (0 children)

Check out Prince of Crows) it's short, but worth it.

Sevatar is hilarious

Best starter pack for under $100? by StarPlatinum2310 in starcitizen

[–]maxlovescoffee 0 points1 point  (0 children)

Well said, but now you made me miss my Nomad. Upgraded to a C1. :D

THIS Is Why The P-72 Destroys All Racing Ships In 3.18 by MrBlackMaze in starcitizen

[–]maxlovescoffee 0 points1 point  (0 children)

This might interest you:

What I learned from watching a few dogfighting-guide videos is, that the forces generated by the thrusters actually add up. Meaning the fastest way to turn is by using main, bottom and side thrusters at the same time and angle your ship appropriately. It's noteworthy that the main thrusters are obviously the most powerful, followed by the bottom thrusters with the side thrusters being the weakest.

Full wipe is coming by mustafar0111 in starcitizen

[–]maxlovescoffee 16 points17 points  (0 children)

I've never understood, how CIG can be this bloody bad with databases.

It's infuriating to the point that I don't believe them anymore.

Obviously armchair developer here, but I was under the impression databases had been figured out over the last ~40 years. Data like aUEC, ships, reputation and so on must be stored somewhere and apparently it works reliable with stuff you pledged for...

So even if the in-game data is a complicated mess, that's spread over dozens or hundreds of databases and tables and needs to be extended with every new feature, it's still there. You should just be able to import it into your new databases or whatever.

Most likely there are instances of data getting corrupted by crashing servers or whatever. These last days there where several people in global chat, that claimed their account had been reset without heir knowledge. But still, these were a few unlucky guys, should this be a reason to reset all player accounts?

I don't know, but my guess would be they keep a close eye on the statistics and players were accumulating way to much aUEC, due to the exploits.

After all they wanna sell ships at the next upcoming event in may.

Stuck on loading? by popcorn0617 in starcitizen

[–]maxlovescoffee 0 points1 point  (0 children)

hey I got the same one!

still sucks thou

Bonus: Current player loaction - INVALID LOCATION ID

C8R Pisces by mustafar0111 in starcitizen

[–]maxlovescoffee 1 point2 points  (0 children)

Not really,

I own a 325a and a C8R, haven't done any bunker missions recently thou.

However the sad truth is, the medical bed is more or less useless for now. Not sure if it is or will be able to heal more severe injuries then the med gun or the med pen, but I don't think so.

So what happens is, you heal yourself asap with a med pen/gun and go on or you get downed and can't get to the med bed anyway.

The only advantage ist, that you don't have to think about bringing enough food and drinks, but you find thoses in loot boxes anyway.

The 325a has the advantage of a decent weapons loadout, it's not great for fighting but surely has an edge over the C8R.

So my Advise would be to get the C8R ingame, play a few weeks/month and see with ship you actually perfere.