In that case it’s highly unlikely your problem is with DNS. And much more likely it’s a problem with the actual connection to the server. If you are willing to share the IP/domain I can help troubleshoot (either here or in a DM).
- 0 Posts
- 48 Comments
If you do a DNS lookup (through
nslookup
or many other tools) on the client you’re using to connect, does it get the right IP back?
Max@lemmy.worldto Selfhosted@lemmy.world•First server: Buying hardware in a developing countryEnglish1·24 days agoSorry I completely misread your comment to be saying that the maximum efficiency was 50% not that it occurred at 50%.
Max@lemmy.worldto Selfhosted@lemmy.world•First server: Buying hardware in a developing countryEnglish1·25 days agoI believe for the highest efficiency you only want to use about half of the rated power of the PSU. So if your system draws 350W, 700 is a very reasonable power supply
For me that’s under Internet > Saved Networks > network name > Share, instead of doing it from the main list of networks
This is a really good question!
I believe the general answer is, until the compressed file is indistinguishable from randomness. At that point there is no more redundant information left to compress. Like you said, the ‘information content’ of a message can be measured.
(Note that there are ways to get a file to look like randomness that don’t compress it)
Max@lemmy.worldto Selfhosted@lemmy.world•Encrypted boot drive and unattended rebootsEnglish3·2 months agoBy default, an enencrypted boot drive is not sufficient to be able to decrypt a LUKs drive. If you have to type in your password to start the computer/unlock LUKs then you should be good.
If you’ve setup a keyfile or TPM based decryption of LUKS, then your data is probably not safe (though a TPM based decryption could be if the OS is secure and secure boot is setup properly)
In this case, if you have another server then you could setup a mutual tang/clevis system where each device gets the keys it needs from the other server on the LAN. Both would be LUKs encrypted. So if one is online the other gets the required key from the online one while booting. But if both are offline then no keys are available and you have to type in a LUKS password to boot. Something like https://www.ogselfhosting.com/index.php/2023/12/25/tang-clevis-for-a-luks-encrypted-debian-server/ but what they do with multiple servers is probably overkill
That’s probably only for selling steam keys on another store. You might be able to sell non steam versions for any price you want
The original is something like “it’s all Ohio” “always has been”. The globe shown is just a large landmass that looks like Ohio. They’re probably astronauts since you’d have to be in space to see it. The astronaut killing the other has the Ohio flag on them and is killing them for knowing too much.
Max@lemmy.worldto Technology@lemmy.world•Windows RDP lets you log in using revoked passwords. Microsoft is OK with that. - Ars TechnicaEnglish1·2 months agoIf there’s a 0 day in the VPN software then I’m also probably boned. The chances of that seem on par with the likelihood of an openssh vulnerability? I feel like vpns are useful to secure services without good authentication, but their use in front of an openssh server has never made much sense to me.
Max@lemmy.worldto Technology@lemmy.world•Bluesky has started honoring takedown requests from Turkish governmentEnglish2·3 months agoIt’s pretty trivial for them to block all major instances though, or even all instances federated with all major instances
Max@lemmy.worldto Linux Gaming@lemmy.ml•Discord screen sharing under wayland has landed on stable?1·3 months agoYou can probably route the audio you want with helvum or qpwgraph. This is what I’ve used to route screen sharing audio in the past
Max@lemmy.worldto Open Source@lemmy.ml•I'm a Professional Game Composer now using entirely Open-Source tooling5·4 months agoIf you’re on Linux, its on flathub: https://flathub.org/apps/org.ardour.Ardour
This is what I’ve been going through, sold as teaching rust to people who already know other languages. I’m not very far in at all, but it seems decent? https://google.github.io/comprehensive-rust/
The important thing is that the game itself uses vulkan. I believe that’s entirely independent of whether your window manager uses vulkan. If your games work, then they’re probably using vulkan. They won’t work any better if sway does as well.
Max@lemmy.worldto Voyager@lemmy.world•SOLVED: Notification on Settings button, but what is it for?English20·5 months agoWhat’s also funny is that there is a person asking exactly the same question in the screenshot that you shared
Max@lemmy.worldto Voyager@lemmy.world•SOLVED: Notification on Settings button, but what is it for?English7·5 months agoThis means that there’s an update. If you go to the play store and install updates then restart the app it will go away. There seems to be a bug in voyager where it disables the update menu but not the red bubble if installed from the play store (instead of as a PWA)
This is the number of times you have upvoted that account
Max@lemmy.worldto Technology@lemmy.world•Open source projects drown in bad bug reports penned by AIEnglish2·7 months agoThis is a really fantastic explanation of the issue!
It’s more like improv comedy with an extremely adaptable comic than a conversation with a real person.
One of the things that I’ve noticed is that the training/finetuning that’s done in order to make it give good completions to the “helpful ai conversation scenario” is that it flattens a lot of the capabilities of the underlying language model for really interesting and specific completions. I remember playing around with gpt2 in it’s native text completion mode, and even with that much weaker model, it was able to complete a much larger variety of text styles without sliding into the sameness and slickness of the current chat model fine-tuning.
A lot of the research that I read on LLMs is using them in the original token completion context, but pretty much the only way people interact with them is through a thick layer of ai chatbot improv. As an example for code, I imagine that one would have more success using an LLM to edit your code if the context that you give it starts out written like it is a review of a pull request for the code, or some other commentary of a form that matches the way that code is reviewed in the training data. But instead of having access to create that context directly, we have to ask for code review through the fogged window of a chat between an AI assistant and a person discussing code. And that form of chat likely isn’t well represented in the training data.
That’s kinda an insane amount of ram for most simulations. Is this like a machine learning thing? Is his python code just super unoptimized? Is it possible he’s making a bunch of big objects and then not freeing the references when he’s done with them so they’re never garbage collected?