Comments

This profile is from a federated server and may be incomplete. Browse more on the original instance.

evranch, to linux in Is DNS Bloat too?

Really annoying is when recent devices don’t respect the DNS you’re advertising or allow configuration (Android…)

My site is behind CGNAT on IPv4 with recently added fully routed IPv6. There are legacy control devices all over it that don’t speak IPv6, with local DNS records that allow them to be readily accessed while walking around with a mobile device… Allowed them to be accessed that is, until IPv6.

The Android IPv6 stack ignores the RA for my local DNS and also resolves via v6 by default, forwarding local queries upstream and returning no results. Then it doesn’t bother to fall back to v4. Unrooted Android has no exposed configuration for IPv6 of any sort to modify its behaviour, no hosts file to override or any way I can see to fix this. I can’t even disable IPv6 on my phone.

So to access my local devices from Android I need to use their full IPv4 address or VPN back into my own network… Oh wait, the stack is so broken that despite setting DNS in Wireguard, it still tries to resolve through upstream v6 first!

Apparently recent smart TVs are doing similar even on IPv4, hard-coded to 1.1.1.1 or 8.8.8.8 to dodge ad blocking, which is plain malicious and ignores all standards…

So anyways this is why DNS is dragon #3

evranch, to lemmyshitpost in Eminem concert

I’ve ignored Fortnite for years but am suddenly paying attention to after these 2 comments. No building? Rocket League arcade racing? I might actually want to play this, at least to try it out

evranch, to memes in It's a problem

Cannabis, heavy indica. Some sort of Kush usually that I keep in reserve, I rarely smoke these days otherwise. Knocks me straight out in this sort of situation, great sleep.

Don’t overdo it or you’ll be all baked and goofy feeling, you just want to be relaxed and sleepy.

evranch, to piracy in When a Torrent disappears from 1337x, how do you find out what happened?

Futurama did it too. Though I remember it being actually funny, without all the associated culture war baggage.

More of a commentary on Bender’s poor impulse control and minimal ethics than on society I would say

evranch, to lemmybewholesome in Black olive birthday

Who’s to say there’s a problem with licking a salt block? You’re out there in the pasture sweating in the hot sun and there it is, all tempting and shiny and blue…

The only issue is the shiny comes from the cow slobber

evranch, to piracy in I hope someday we'll find a way to pirated a car

Install a modchip, or as we used to call them a “remote starter” lol

I’m sure someone still makes a product that you can splice into the wiring harness. And if they don’t… There’s a market for it

evranch, to science_memes in Hummingbird feet

It’s a bit like gravity. We have some good theories, but that’s about it.

No! That’s the point I’m trying to make! Gravity and its source truly are a mystery (aside from the basic fact that it causes mass to attract other mass, of course)

Magnetism is a well defined component of the electromagnetic force. We know what it is, where it comes from, and why it has the effect that it does. We’ve known most of this for a century! The study of electromagnetism came early to the field of physics because it’s easy to work with and understand on human scales.

To be very short, moving electricity creates magnetism; moving magnetism creates electricity. A permanent magnet is magnetic because most of the electrons are spinning the same way, creating magnetism. That’s it.

That is what you tell the grade 4 students.

Later you can teach them about magnetic domains, dipole moment, electric and magnetic fields and their relationship to radio waves etc… But these are all things we know, and I feel like it’s important that kids know that humanity has in fact mastered magnetism.

Sure there is still a lot to learn, but at this point it’s engineering, not science. Practical things like magnetic alloys or optimal field arrangements for motors.

evranch, to lemmyshitpost in Friendly Reminder

I love how you still have to defeat them with an axe.

However if the trees get you this hard I would love to know what you thought of the game’s true terrifying jump scare enemy. I’m not mentioning them just in case you haven’t run across them yet… But I’m sure you have, right?

evranch, to piracy in Me vs my ISP

For free tier, Google Cloud is more transparent about what you get than AWS IMO.

The only catch is to make sure your persistent disk is “standard” to make it totally free as it defaults to SSD.

However if you do mess up the disk you’ll still only be paying $1-2/mo. Been using GC for years, and recently they finally started offering dual stack so you can do your own 6to4 tunneling or translation if you want, depends on your usage case.

AirVPN also are legit and will let you forward ports to expose your local services if you’re worried about DMCA type issues.

I finally got IPv6 here through Starlink, it’s nice to have full access to the internet again after a decade behind CGNAT

evranch, to linuxmemes in Just a PSA

Especially as a Dvorak user CTRL-C is effortless. Reaching for ESC makes zero sense!

evranch, to piracy in Ways to pirate albums?

You can download from Spotify using Zotify. Albums, playlists, if you set it to Artist unfortunately you will get a bunch of singles and EPs that you have to clean up.

If you have Premium you can download at high bitrates, otherwise you get Ogg Vorbis at around 150 ABR. You can automatically transcode to whatever format you want, then I feed it to beets to catalogue and deliver it with Ampache.

I like the moderate bitrate OGGs myself, as I often stream from Ampache to my phone and our mobile service is quite slow. So this system works great for me.

evranch, to memes in Achievement for all of us

Always nice to meet another electrician on Lemmy!

Though we would consider that a pretty moderate position around here, as we often question whether plumbers even count as people.

evranch, to asklemmy in Am I the only one getting agitated by the word AI?

To me, it’s as useful as a toy is.

This used to be my opinion, then I started using local models to help me write code. It’s very useful for that, to automate rote work like writing header files, function descriptions etc. or even to spit out algorithms so that I don’t have to look them up.

However there are indeed many applications that AI is completely useless for, or is simply the wrong tool.

While a diagnostic AI onboard in my car would be “useful”, what is more useful is a well-documented industry standard protocol like OBD-II, and even better would be displaying the fault right on the dashboard instead of requiring a scan tool.

Conveniently none of these require a GPU in the car.

evranch, to memes in It's a problem

Still far, far better than the Benadryl suggestion.

A drugged antihistamine sleep leaves you in better shape than if you hadn’t slept at all, but not much better. That’s only good when you’re sick as a dog and doing nothing the next day.

evranch, to programmer_humor in Works on my machine

I really don’t see how building a docker container afterward makes it easier

What it’s supposed to make easier is both sandboxing and reuse / deployment. For example, Docker + Traefik makes some tasks so incredibly easy and secure compared to running them on bare metal. Or if you need to spin up multiple instances, they can be created and destroyed in seconds. Without the container, this just isn’t feasible.

The dockerfile uses MySQL because it works. If you want to know if the core service works with PostgreSQL, that’s not really on the guy who wrote the dockerfile, that’s on the application maintainer. Read the docs, do some testing, create your own container using its own PostgreSQL or connecting to an external database if that suits your needs better.

Once again the flexibility of bind mounts means you could often drop that external database right on top of the one in the container. That’s the real beauty of Docker IMO, being able to slot the containers into your system seamlessly due to the mount system.

adapting can be a pita when the package is built around a really specific environment

That’s the great thing about Docker, it lets you bring that really specific environment anywhere and in an incredibly lightweight manner compared to the old days of heavyweight VMs. I’ve even got Docker containers running on a Raspberry Pi B+ that otherwise is so old that it would be nearly impossible to install the libraries required to run modern software.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #