• 0 Posts
  • 23 Comments
Joined 2 years ago
cake
Cake day: September 7th, 2023

help-circle

  • I wasn’t looking for technical support. You can do everything correctly and still get your mails randomly marked as spam or not delivered at all. This has happened to us, some of our customers, multiple smaller email providers as well as several municipalities (imagine blackholing government emails, what a grand idea). They don’t send sensible return headers, they might not even return your undelivered mail at all, they won’t react to any inquiries to their postmaster contact (or anywhere else really), they will blacklist entire IP blocks sometimes. The only way to sidestep any issues with them is to pay a few thousand bucks to enter their cool kids club certified sender alliance, which is what the big marketing firms use to deliver mass amounts of unwanted ads unhindered through their networks.



  • I’ve had the opposite experience with their cloud services in a professional context. My biggest gripe is with United Internet, the monopolistic company that owns IONOS, 1&1 (an ISP) as well as the ad-ridden, flaming pile of garbage that are GMX and WEB.DE, two of the most popular email service providers in Germany as well as a constant source of pain for anyone operating an Email server. They will ignore common industry standards and best-practices, silently block your mailserver for absolutely no reason, not respond to inquiries and just generally make the internet a slightly worse place for small to medium sized businesses and selfhosters.





  • I wouldn’t recommend Docker for a production environment either, but there are plenty of container-based solutions that use OCI compatible images just fine and they are very widely used in production. Having said that, plenty of people run docker images in a homelab setting and they work fine. I don’t like running rootful containers under a system daemon, but calling it a giant mess doesn’t seem fair in my experience.



  • With bluray rips, I don’t really see any way to avoid that unfortunately, unless someone else has already added the hashes for your release. Most people use it to scan their encoded releases, which will (in most cases) have already been added to AniDB by the release group. I’m a bit surprised though, that none of your rips are recognized. Have you checked the AniDB pages for your series to see if anyone uploaded hashes for bluray rips?



  • Shoko compares a files ED2K hash against the AniDB database. The filename doesn’t matter for automatic detection. Have a look at the log to see if there are any issues. It’s entirely possible that AniDB just doesn’t have the hashes for the raw BluRay rip. In that case you can either manually link them in Shoko, connecting the AniDB episode id to the file hash, or create new file entries on AniDB with your specific hashes.




  • That’s what a firewall and a DNS service is for respectively, imho. As long as you get an IPv6 prefix from your ISP, you can expose as many devices or services to the public as you want, by just allowing incoming traffic to a listening port. That was sort of the whole point of having a large enough address space when moving away from v4. Maybe it’s just me but reading stuff about “private AI” on a website where the relation to the product is not immediately obvious, makes me question their legitimacy.

    The more I look at their site, the more it reads like a sales pitch for IPv6, which sounds kind of expensive at $6-10 a month.





  • Doubt.

    Cool attitude. In my experience, most docker/docker-compose setups will work transparently with podman/podman-compose. If you want to tighten security, lock down ressource access, run rootless (daemon and inside the container), integrate with SELinux, then you might need to put in extra-work, just like you would if you used docker.

    Why re-invent the wheel?

    They aren’t. Podman is mostly just a docker-compatible CLI wrapper around an existing OCI runtime (runc by default). It also lets you manage pods and export k8s yaml, which is arguably the more important industry standard at this point. Podman was also completely usable in rootless mode way before Docker support for that was on the table, which was the main reason I switched years ago. Podman development effort also yielded buildah, which is a godsend if you want to build container images in a containerized environment, without granting docker socket access (which is a security nightmare) or using some docker in docker scenario (which is just a nightmare in general).


  • YAML is way too bloated of a standard and has a ton of inconsistencies between implementations, despite the widespread reputation of simplicity. It is easy to read as long as you limit yourself to a fraction of its capabilities and err on the side of caution when it comes to escaping characters (especially when number literals are involved, or booleans for that matter). As far as alternatives go, I prefer TOML for simple key=value configs, but it has its own issued and is nowhere near as featureful, for better or worse.