ookiiBoy

joined 2 months ago
[–] ookiiBoy@lemmy.blahaj.zone 20 points 3 weeks ago

... And nothing of value was lost.

[–] ookiiBoy@lemmy.blahaj.zone 3 points 3 weeks ago

Japan. The cavet? Know some Japanese.

Most people in Japan grow up learning some English. But they almost never use it in their day to day after highschool. So it's a point of issue, maybe even a little embarrassment, for them to "start" a conversation. I've found that the better you are at Japanese, the more willing the Japanese are to want to connect with you.

Unless they're drunk. In my experience, social drinking some how blows away the shyness barrier. Go to a pub, especially in a rural town, and you will be bombarded with questions. You're a novelty, maybe? Not sure. But booze does makes things easier it seems.

Keep going back for some reason. Not sure why. :)

[–] ookiiBoy@lemmy.blahaj.zone 2 points 3 weeks ago (1 children)

Because this is an ad.

[–] ookiiBoy@lemmy.blahaj.zone 1 points 3 weeks ago* (last edited 3 weeks ago)

Maybe it's time to join us in NixOS land. When you have the immutability on top of the whole OS and the language controlling it, things tend to work a bit better.

I'm Sorry we don't have the "))))))". Just a weird ass language.

[–] ookiiBoy@lemmy.blahaj.zone 23 points 3 weeks ago

Just say Nazi.

[–] ookiiBoy@lemmy.blahaj.zone 4 points 1 month ago

... Is another reason that the logo has orange in it?

[–] ookiiBoy@lemmy.blahaj.zone 1 points 1 month ago (1 children)

Glad you had a good time. I understand. :(

[–] ookiiBoy@lemmy.blahaj.zone 6 points 1 month ago

I weirdly dislike most of these things. Nature calls was fine.

Still glad people found joy in his work though. Obviously talented.

[–] ookiiBoy@lemmy.blahaj.zone 2 points 1 month ago

Most of the time you don't need docker. NixOS isolates runtimes.

That being said, you could use nix to build the docker container, and then run it using the built-in oci-container options.

[–] ookiiBoy@lemmy.blahaj.zone 4 points 1 month ago (1 children)

It could be you! (L)

[–] ookiiBoy@lemmy.blahaj.zone 2 points 1 month ago* (last edited 1 month ago) (3 children)

How do you host your DNS sinkhole/resolver?

Like this, baby:

services.adguardhome = {
      enable = true;
      mutableSettings = false;
      openFirewall = true;
      settings = {
        dns = {
          # Web Interface
          bootstrap_dns = ["9.9.9.9" "149.112.112.112"];
          upstream_dns = ["https://dns.quad9.net/dns-query"];
          fallback_dns = ["tls://dns.quad9.net"];
        };
        filters = [
          {
            name = "AdGuard DNS filter";
            url = "https://adguardteam.github.io/HostlistsRegistry/assets/filter_1.txt";
            enabled = true;
          }
        ];
        filtering = {
          blocked_services = {
            ids = [
            ];
          };
          protection_enabled = true;
          filtering_enabled = true;
          rewrites = [
          ];
        };

Deploy to the main home server, and the backup instance. NixOS is fucking awesome. No sync tool needed.

view more: next ›