You have the potential to run into issues if the device is externally managed. At&t likes to push firmware updates at early hours. Cutting power during one of those would be problematic.
- 0 Posts
- 17 Comments
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•Context: Docker bypasses all UFW firewall rulesEnglish4·29 days agoIt’s better than nothing but I hate the additional logs that came from it constantly fighting firewalld.
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•Context: Docker bypasses all UFW firewall rulesEnglish109·29 days agoThis was a large part of the reason I switched to rootless podman for everything
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•Child labour with 10 years of experience, 'AI-native' accepting 250k lines of Cursor codeEnglish22·2 months agoIt’s astounding how many lowlifes are using commit counts to measure impact. It’s just throwing bisectability out the window and promoting stupid tactics for quick returns.
Static_Rocket@lemmy.worldto Programming@programming.dev•Worktrees: Git's best kept secret (and why you should use them) | Tom UpsEnglish6·2 months agoI use them all the time, but that’s just because of Yocto and the need to keep at least the 3 major LTS builds hot in the event something breaks.
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•Types of development but more realisticEnglish52·4 months agoThis is unrealistic, agile stages aren’t missing unusual pieces that aren’t quite critical but probably should be there anyway.
Static_Rocket@lemmy.worldto Selfhosted@lemmy.world•Looking for a software suggestionEnglish7·4 months agoDon’t forget about linkwarden
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•Python needs an actual default functionEnglish7·4 months agoJust cross your fingers nobody attempts to import it…
Static_Rocket@lemmy.worldto Programming@programming.dev•Why care about the no-JS experience?English5·5 months agoDoesn’t avoiding JS typically structure a website in such a way that the browsers built-in assistive services can cover it easier?
Static_Rocket@lemmy.worldto Programming@programming.dev•FUTO License, an alternative to Closed SourceEnglish4·5 months agoIt does inherently lean into the concept of corporate forks over community forks. A byproduct of prioritizing monetary gain. I think the license is really just a foot in the door to allow for community audits. Realistically I don’t see anyone wanting to contribute to something like this unless the product has slim to no real competition.
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•It all makes sense nowEnglish5·5 months agoI’ve also witnessed matrix structure break down when too many methods of communication are used. It’s all very brittle.
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•muskrat's data eng expert's hard drive overheats while processing 60k rowsEnglish1·6 months agoOr it’s a cheap external nvme chassis with a Samsung 980 Pro. Had to run that when I was copying files from one of my old machines and boy, it will absolutely overheat to the point of failure.
Gave me quite the scare when I started getting read errors and then it dropped off the bus. It shutdown to protect itself but it certainly didn’t seem like that at the time.
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•We Should Probably Have Another MeetingEnglish38·8 months agoJust note that if you somehow get out of those meetings, incorrect information will be propagated somehow. Even if you put the correct answers in an email and send it to everyone involved. If someone has a way to prevent that from happening please let me know. It’s killing me slowly.
Static_Rocket@lemmy.worldto Selfhosted@lemmy.world•Vest way to host nextcloud that isn't the all in one container?English9·9 months agoI use the linuxserver images for Nextcloud. Have worked pretty well for me over the past few years.
Static_Rocket@lemmy.worldto Selfhosted@lemmy.world•Ripping my hair out over this, how do I make Wireguard in Docker work?English1·9 months agoReformatting that compose for people:
version: "2.1" services: wireguard: image: linuxserver/wireguard container_name: wireguard cap_add: - NET_ADMIN - SYS_MODULE environment: - PUID=1000 - PGID=1000 - TZ=Asia/Singapore - SERVERURL=auto #optional - SERVERPORT=51820 #optional - PEERS=1 #optional - PEERDNS=auto #optional - INTERNAL_SUBNET=10.13.13.0 #optional volumes: - ./config:/config - /lib/modules:/lib/modules ports: - 51820:51820/udp sysctls: - net.ipv4.ip_forward=1 - net.ipv4.conf.all.src_valid_mark=1 restart: unless-stopped
Sounds like you didn’t read the extended manual: https://github.com/linuxserver/docker-wireguard
There are a lot of other configs for that container that must be provided before startup. It’s just a generic runner. If you want it to run as a server you need to follow this section: https://github.com/linuxserver/docker-wireguard?tab=readme-ov-file#server-mode
Are you at getting the handshake in the app? If so, you’re probably just missing the dispatch commands for traffic masquerading.
Static_Rocket@lemmy.worldto Programmer Humor@programming.dev•I HATE THE ANDROID GRADLE PLUGIN I HATE THE ANDROID GRADLE PLUGIN I HATE THE ANDROID GRADLE PLUGIN I HATE THE ANDROID GRADLE PLUGIN I HATE THE ANDROID GRADLE PLUGIN I HATE THE ANDROID GRADLE PLUGIN...English1·1 year agoTo be fair, C predates dependency hell. It was either there or it wasn’t. C++ has less of an excuse, but it was just object oriented concepts taped to C so it’s no surprise it was also missing dependency management.
Now with cmake, gnu-make, meson, gradel, and the world of metabuild systems that wrap those, nothing will change. It it does, it might as well kick start world war 3.
I’m a little disappointed in the amount of time spent on the XZ attack. The title and it starting off with some good history made me think this was going to be more of a retrospective, looking into the issues that created the solutions used today.
It seems to be just calling out the solutions and how they would interfere or did interfere with a given attack, where XZ is most commonly used as an example.