大きいBOY

u/ookiiBoy@lemmy.blahaj.zone
0 posts · 87 comments

Recent posts

No posts.

Recent comments

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. :)

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.

You might enjoy this episode of a podcast I enjoy. It speaks a bit about the points you've made...

Toenails: Muscular Christianity

Episode webpage: https://podcasters.spotify.com/pod/show/toenails/episodes/Muscular-Christianity-ekqr2o

Media file: https://anchor.fm/s/305c28b4/podcast/play/20851224/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2020-9-9%2F116661908-44100-2-de0e693c1994e.m4a

on Immersion-breaking · c/historymemes · 3 pts · 1y

Yeah! You gotta lull them into suspension of disbelief.

I'd invest some money into this. Someone has to be brave enough to write the script.

on Immersion-breaking · c/historymemes · 13 pts · 1y

a hyper realistic Viking epic with a full Nordic cast, but they all talk like surfer bros

Jarl! My dude! We totally viking'd the shit out of that Irish monastery! It was fucking rad!

on *Permanently Deleted* · c/selfhosted · 2 pts · 1y

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.

on *Permanently Deleted* · c/selfhosted · 2 pts · 1y

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.