Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)PU
Posts
0
Comments
198
Joined
2 yr. ago

  • Sure, but that term does not violate the first amendment since the government didn't stop you from saying it, so would hold up. You might be able to get it thrown out due to something else, you would need a lawyer for that.

    That contract will have penalties for violations, and those are what you would be subject to if in violation.

  • Did they think about how far I would have to move my hand to type it? Sudo is only in two easy to reach places on the keyboard, run0 is 4 separate areas of the keyboard, one two rows from home and none on the home row.

    I'm only partially joking.

  • 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.

  • In the how this works section they detail that it comes from MDM solutions. In English this is a feature for it admins of companies who use the intune management software from Microsoft. You probably need pro or better to even use the feature.

    At a quick glance, it looks to be a way of whitelisting domains at a DNS level, but with the added feature of having allowed DNS servers.

  • 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.

  • This must have been xp or earlier. Since vista there was a shared key and certificate for each OEM that paired with a code on the motherboard. And since 8 or 10 there is now a key in the motherboard that has been pre-registered with the activation servers. Now when you activate a retail key, it registers the motherboard not the install, so a reinstall gets activated automatically.

  • Energy don't have weight but, it does have an effect on the curvature of space the same way matter does. In fact one of the proposed methods to create artificial blackholes is to put enough photons into the same place. It's easier than getting matter together as photons don't interact with eachother.

    However the point is correct that light energy will only impart an insignificant amount to the earth's pull.

  • turn off the toggle for “Show recommendations for tips, app promotions, and more.”

    I turn this off anyway, as in Windows 10 it always kept pushing 3rd party apps. Is this ad any different to the Windows 10 "Suggested App" that was in the start menu for it?

  • I find it surprising that existed. Not an unreasonable change.

    For the lazy, when a game sold "advanced access" as part of a pre-purchase; game time before release didn't count to the 2h refund limit. So you could play eg 10h of a game, then refund it on release. This is them fixing it.

  • 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
        }