• 8 Posts
  • 2.43K Comments
Joined 2 years ago
cake
Cake day: October 4th, 2023

help-circle

  • Setting aside the specifics of the case, I do think that from a UI standpoint, cars either need to support being left in park without the climate control eventually cutting off or be so extremely clear that this will happen that it would be extremely difficult for a user to miss, as this is a legitimate example of a “fail-deadly” feature.

    IIRC from reading comments from people who have slept in their car and very much want the ability to leave the climate control system active, at least some Toyota models do support leaving the climate control active for extended periods of time, but the car needs to be in “Ready” mode. It was not immediately obvious to users that this was the case.





  • “Fallout is the big one,” Middler claimed. “There are multiple Fallout projects in development, including, as far as I’m aware, that one that I’m sure you’re all wanting. It’s not far enough in along to say anything like ‘you’re going to be playing this game anytime soon’.”

    Middler then joked, “Anyway, New Vegas 2, coming soon”. Is this the one we’re “all wanting”? Yes, but then also so is Fallout 3 Remastered, Fallout 5 and even a remake of Fallout 2. The fanbase is rabid, and hungry, and it’s been a long time since they’ve been fulfilled outside of Fallout 76 updates.

    I mean, if Bethesda released all four of those, I’d buy all four.

    I also don’t know what “Fallout 3 Remastered” entails, but if it means forward-porting the content to Starfield’s engine, that’d be pretty cool, though I do wonder how much effort will be required for mod-porting.


  • tal@lemmy.todaytolinuxmemes@lemmy.worldSuperior ping
    link
    fedilink
    English
    arrow-up
    16
    arrow-down
    1
    ·
    edit-2
    1 day ago

    IPv4 has some other features too.

    $ ping 0x8.02004010
    PING 0x8.02004010 (8.8.8.8) 56(84) bytes of data.
    64 bytes from 8.8.8.8: icmp_seq=1 ttl=116 time=22.8 ms
    

    That’ll be Google’s root DNS server, using hexadecimal and octal representations.












  • Well, if you want an atmosphere to start with, might try running numbers for sulfur hexafluoride. I don’t know if it’d be your best option, but I’d guess that it’d be up there if you can keep the object warm enough for it to be a gas.

    https://www.epa.gov/eps-partnership/sulfur-hexafluoride-sf6-basics

    Sulfur hexafluoride (SF₆) is a synthetic fluorinated compound with an extremely stable molecular structure. Because of its unique dielectric properties, electric utilities rely heavily on SF₆ in electric power systems for voltage electrical insulation, current interruption, and arc quenching in the transmission and distribution of electricity. Yet it is also the most potent greenhouse gas known to date. Over a 100-year period, SF₆ is 23,500 times more effective at trapping infrared radiation than an equivalent amount of carbon dioxide (CO₂).

    I don’t know how to calculate albedo, but I’m sure that there are Web pages out there talking about it.

    EDIT: If all you care about is keeping the body warm via solar radiation and you don’t care about it specifically using purely the greenhouse effect, you could use space mirrors in orbit.


  • I’m not familiar enough with Cloudflare’s error messages — or deployment with Cloudflare — to know what exact behavior that corresponds to, but I’d guess that most likely it can open a TCP connection to port 443 on what it thinks is your server, but it’s not getting HTTPS on that port or your server isn’t configured to serve up the right certificate for that hostname or the web server software running on it is otherwise broken. Might be some sort of intervening firewall.

    I don’t know where your actual server is, may not even be accessible to me. But if you have a Linux machine that can talk to it directly – including, perhaps, the server itself – you should be able to see what certificate it’s handing back via:

    $ openssl s_client -showcerts -servername akaris.space IP-address-of-actual-server:443
    

    That’ll try to establish a TLS connection, will send the specified server name so that if you’re using vhosting on the server, it knows which site to return, and then will tell you what certificate the web server used. Would probably be my first diagnostic step if I thought that there was a problem with the TLS handshake on a machine I was running.

    That might provide enough information to you to let you resolve the issue yourself.

    Beyond that, trying to provide much more information probably isn’t possible without more information about how your server is set up and what actually is working. You can censor IP addresses if you want to keep that private.