purplemonkeymad

joined 1 year ago

It was a way to get people talking about the update. If you argue for your favourite, you're talking about it. The first one was a point when I think they wanted to show that the game was getting new content.

Yea I remember this being one of the suggestions for the stalker series. if the enemies are too hard, turn the difficulty up so they die faster.

[–] purplemonkeymad@programming.dev 5 points 2 weeks ago (1 children)

Is mono not the .net framework version? .net core has always been multi platform, but is not compatible with .net framework apps. So any .net apps built against 3.5 or 4.x would still need to use mono.

Funny thing is I remember control panel being criticized for having things too many dialogs deep. Now you have more clicks when using settings instead of less.

[–] purplemonkeymad@programming.dev 40 points 2 weeks ago (1 children)

Can't they just send up extra suits with the dragon capsule? Badly fitted suits are probably better than none, it's not like they are piloting it down.

Yep, depending on the version it was under either administrative tools or system tools option in control panel. It's now also in the menu when you right click the start button.

You can now reach the network connections folder, using an option on the network status page. It's something like advanced network options. Still all the classic stuff, but avoids "control panel." I'm going to guess links like that are not going to be removed.

If they just outright remove all of that, you really will need to learn how to do everything in powershell.

[–] purplemonkeymad@programming.dev 3 points 3 weeks ago (1 children)

Don't feel bad, on my first flight I ran into the sun by accident.

Kept working on it and was rewarded with the rest of the game. For real I continued to die to spaceship piloting issues but it didn't ruin the game for me.

If you don't mind having email go through Gmail etc, then you might not want to full host, but just run a local IMAP server. There are some pop to SMTP solutions you can use to pull your emails (fetchmail.) you can then use your account as an outbound relay. Keep in mind you'll only be able to set this up for a single account if you use something like Gmail.

If you buy a business product like workspace or m365, you should be able to setup relay/hybrid connectors for multiple accounts.

Accountants have it hard even if they do keep up-to-date. We migrated one to a new server, but some of their clients still use archaic versions of accounting software. Unfortunately beyond a particular age it won't activate the new install, so they are stuck telling the client to upgrade or continue to run the old server as well.

This meme is basically what airplane 2 was.

Bd players need internet as they only have keys for the discs made before they were made. So if you stick a newer disc in it won't play until it gets updated.

 

So I managed to get part 1 of the day, but it took 2 seconds to run on the real input, which is a bad sign.

I can't see any kind of optimisation that means I can skip checks and know how many combinations are in those skipped checks (aside from 0.) I can bail out of branches of combinations if the info so far won't fit, but that still leads me to visiting every valid combination which in one of the examples is 500k. (And probably way more in the input, since if I can't complete the example near instantly the input is not happening.)

Right now I take the string, then replace the first instance of a ? with the two possible options. Check it matches the check digits so far then use recursion on those two strings.

I can try to optimise the matching, but I don't think that solves the real problem of visiting every combination.

I don't think (or hope) it's just bad code but this is my code so far (python.)

edit:

spoilera cache was the solution!

view more: next ›