There’s a big difference between UNIX and Linux, and BSD can be very different from even other UNIX distributions. I believe macOS’ userland (definitely not the kernel) is based on FreeBSD 4.2.
Cousin Mose
90% of people aren’t worth the time
- 1 post
- 130 comments
Why would you be forced to use Xcode? I’ve been a developer (just not Swift) for years and have never used Xcode.
Why would the dictator “give” a new constitution after the country burns down? Wouldn’t the country burning down imply “the dictator” is gone?
Cousin Mose@lemmy.hogru.chto
Programming@programming.dev•GNU Octave 11 Open-Source Scientific Programming Language Officially Released
4 monthsan updated Java
And you lost me
Cousin Mose@lemmy.hogru.chto
Selfhosted@lemmy.world•If you are not in a tech field, what got you into self-hosting?English
4 monthsI’m a web developer and whenever I see my (awesome) mechanic I always wonder what it’s like on the “other side.”My dad was a mechanic when I was a child and I always regret never picking up those skills.
A lot of times when they run me through their problem-solving I’m like “damn, that’s just like reproducing a bug to find its root cause.”
- 5 months
Your performative edginess has been noted and filed wHeRE iT bEloNGs.
- 6 months
If you see a Docker solution that looks nice just look at how it’s built and replicate whatever software is packaged in its
Dockerfile.
My router is just a Protectli Vault mini PC with Alpine Linux. You can essentially pick your favorite Linux (or BSD) distro and make it a router.
- 6 months
They’re similar but mainly Tailscale arranges WireGuard tunnels between peers. There are tons of useful features around that functionality like being able to route specific traffic through specific hosts (“nodes” using “app connectors”); it’s even better at finding a way out of hostile networks using relays.
Just as an example I typically use my VPS as an “exit node” so that all my traffic routes through it (which does a ton of tunnel hopping through commercial VPNs) while my wife isn’t into that at all, but both of us have Tailscale on our devices so when either of us accesses Home Assistant it’s routed directly to the host hosting it.
- 6 months
I used to just use a script with
cronto update Cloudflare DNS records but these days I don’t screw around with exposing anything to the public internet directly, I just use Tailscale.
- 6 months
Ha, this reminds me of implementing “API” access in the shipping world for companies that only ship a 90s-style web portal.
Cousin Mose@lemmy.hogru.chto
Selfhosted@lemmy.world•Is it possible to host a lemmy instance over I2P?English
6 monthsAre you thinking of Tor? i2p can be very quick once your node becomes aware of others.
Cousin Mose@lemmy.hogru.chto
Selfhosted@lemmy.world•Is it possible to host a lemmy instance over I2P?English
6 monthsWhy is this always the go-to answer? I kind of wish we’d stop asking it must sync to the clearnet.
Honestly if Lemmy (and other services) were built from the ground up for anonymous overlay networks rather than clearnet in the first place it would be a better place overall.
Cousin Mose@lemmy.hogru.chto
Selfhosted@lemmy.world•Best way to browse and share files between hoarders?English
7 monthsEven worse, don’t use the suggested Samba, NFS without a tunnel either! You should probably have the default ports blocked at the router.
Cousin Mose@lemmy.hogru.chto
Selfhosted@lemmy.world•Best way to browse and share files between hoarders?English
7 monthsSurprised no one just said Samba or NFS over a tunnel (Tailscale, WireGuard, etc).
Or by “sharing” so you mean mean keeping files synced between the two for replication?
Ironic because it constantly screws up escaping on macOS. I have a feeling when it says Bash it’s actually using
zsh(default on modern macOS) and it doesn’t even realize it.
I’ve witnessed it do
Bash) echo "Done"then claim a task was done without actually doing anything beforehand.
I’m mostly into it for the strong typing, self-documenting nature of it. In my own GraphQL APIs I’ve done a pretty great job of avoiding common pitfalls.
I’m a Ruby on Rails developer currently developing a service that’s basically ripped out of another Ruby on Rails app and the legacy data is just crazy bad — a lot of it has to do with poor validation but it’s understandably easy to get to that point in a dynamic language like Ruby if you’re not careful.
I also manage a REST JSON:API and it’s just so bulky and horrible to deal with. The tooling is barely there and it’s way overly complicated compared to GraphQL — the concept of “only query what you need” is fantastic.






I do most my work on the terminal so I prefer something in the middle: convention over configuration, most functionality included but rather small by default. More complex needs can be compiled in.
Related: I wish more Linux distributions’ package managers would allow for binary installation alongside source compiled packages. In FreeBSD I’m amazed at how well
pkg’ binary packages play with ports-compiled ones.