I stay away from any big subs now. The smaller stuff that tends to have 2 to 15 posts a day (like game specific subs) feel like they did before. Although I really feel a lot of those are going to discord as well.
I stay away from any big subs now. The smaller stuff that tends to have 2 to 15 posts a day (like game specific subs) feel like they did before. Although I really feel a lot of those are going to discord as well.
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.
You’re not safe there either, they had almost the same issue on the Linux version of the product a few months ago.
HumanFemales and HumanM both inherit from the Ape base class, it’s from an older java code base. We tried to change it once but it turned out the person that had written had retired and any changes we made just broke stuff.
Because 48 bits over 32 bits does not really solve the problems with ip4. 128 bits basically gives one ip4 address space to each square meter of earth. Ip6 also drops all the unused and silly parts of ip4 too.
it limits the Windows updates you’ll receive.
I don’t think it does now does it? For the longest time ms wants to make sure all machines are up to date to try and keep, “always getting viruses” moniker away. I think maybe xp did that?
Yea, this is not cheap companies doing cheap things. This is companies getting annoyed by stupid licencing and restrictions, getting around the problem.
Everyone saying PSU, but I also had a similar issue and it turned out to be my GPU overheating (driver did an emergency shutdown of windows.) It was a fair few years old, but after a re-paste of the GPU thermal compound the issue went away. The reason I say is it’s probably cheaper than a new PSU, so I would do it first.
It’s been getting “more and more use” since 2001. To start with the isps said that they were not going to do any work to implement it until endpoints supported it. Then vista came with support by default. Next they wanted the backbones to support it. All tier 1 networks are now dual stack. Then they said they were not going to do anything until websites supported it widely. Now all cdns support it. Then they said, it’s ok we will just do mass nat on everyone so won’t do any work on it.
It depends where you want the complexity.
Since ssh is a layer4 tunnel if you don’t run a proxy on your home box, you’ll need a new network connection for each service, if you are fine with that, I would set it up only on the VPS. This means if the tunnel goes down, you should at least get 502 error rather than a timeout or connection refused.
Alternatively you could forward 80, 443 to a proxy service on the home server. That would require two ports for the ssh.
You can drop it to a single ssh connection by having a proxy on both and just have the VPS proxy Http and https to the same port on the home server.
One issue is that some people are still on windows 7 installs that were upgraded. Windows 7 had a large enough partition for then, but the upgrade now needs more. Unfortunately 2009 Microsoft didn’t anticipate that this should be bigger for 2023 installs. Making it larger is a hassle I wouldn’t want to code either.
Where getter?
Bad news, I have an AMD card and still got the copilot button. It’s probably a very specific version of the software that is an issue.
Make sure the columns in your csv are named properly, my code assumes it’s named just “name”
For csv import, use import-csv and loop on the results:
Import-csv myfile.csv | foreach-object {
Templates should be easy, just copy the template to a new file with the docx extension. Use one of the columns (in this case “name” as the column header,) from the csv for the name:
$newname = $_.name + '.docx'
Copy-item 'template.dotx' $newname
}
I use it with WAC on my home server and it’s good enough for anything I need to do. Easy to create VMs using that UI, PS not even needed.
For real, I’ve had problems where I specifically checked if it was DNS, concluded it was not, but it still turned out to be DNS.
Last time I did this domain accounts needed to include their domain/upn to logon, so there won’t be any account confusion. However if they were accessing the nas from a domain joined machine, it would use Kerberos anyway so shouldn’t be getting prompted to logon. Obviously that is only for SMB shares, other connection types didn’t use Kerberos.
For real, at the minimum use a virtual machine.
And then they just push a new commit without the files, completely unaware that git keeps all versions of the code? I feel like this repo is going to disappear.