Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)IW
Posts
0
Comments
26
Joined
2 yr. ago

  • at least where I am in texas, they tell you what it will cost before you go. When I was in utah, I asked them beforehand what it would cost and they said it would be impossible to know until after the procedure was done. The front desk person said even they weren't even allowed to know the prices beforehand.

  • Not having to deal with split horizon dns or nat hairpinning is pretty nice, especially with so many things using DoH with public resolvers nowadays, like android or firefox.

    I just put A and AAAA in public dns so things work either ipv4 or ipv6 on the outside. On the inside everything works on and prefers ipv6 so it just works on the inside too. Nothing ever even attempts to use the wrong (public) A record on the inside.

  • It's the worst trying to use git on a capitalization insensitive filesystem, like on mac's default.

    mv DockerFile Dockerfile

    git says there are no changes.

    Had to

    git mv DockerFile Dockerfile1

    git commit -am "rename file"

    git mv Dockerfile1 Dockerfile

    git commit -am f

    git rebase -i origin/master

    and squash the last 2 commits together

    I ended up making a new volume on my mac specifically to hold git repos that was capitalization sensitive so I don't have to deal with that shit.