AtomHeartFather

I’m just an old guy with a lot of opinions. I am a sysadmin by trade. I like Linux, cool gadgets, Sci-Fi, DC comics, bass guitar, prog rock/metal, and annoying my kids with dumb dad jokes.

  • 16 Posts
  • 27 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle
  • Polaris strikes me as the retelling of a fever dream. I did enjoy The White Ship more than Polaris because it seemed to be a little more cohesive. Either story could easily be the basis for a concept album by Rush or an epic song by Iron Maiden.

    I have to admit that I don’t much care for these early writings. They are brief and somewhat disjointed, a little too dreamlike to hold my interest. I do hold them in some regard since they show the beginnings of his Dreamlands ideas that take on fuller form in his later writings.


  • The Doom That Came To Sarnath was my first introduction to the writings of HPL many many years ago. I enjoy re-reading it as much as I did the first time. This time I opted to listen to it on HorrorBabble, the narrater was very good.

    I always find myself thinking about little side stories in the same setting. What did the “people” of Ib ever do to deserve the hate of Sarnath? The beings that inhabited Ib seemed to just keep to themselves. They are described as having “bulging eyes, pouting, flabby lips, and curious ears, and were without voices”. Is it just simple pure xenophobia that drove the people of Sarnath to kill them all, or were there unstated incursions into Sarnath? The story does does not describe the denizens of Ib as anything other than ugly, and maybe that was enough for the people of Sarnath.

    In the end the people of Sarnath got what they deserve, which is a somewhat surprising result considering how deeply xenophobic HPL was at the time of the writing. One would expect a Sarnath apologist viewpoint.

    I always feel like Doom has an almost cinematic feel to it. Even though the story is brief the setting is lush and very interesting.


















  • Community discovery that spans all federated instances should be one of the top things that development should be working on. And it should be integrated into Lemmy, not as a separate website people have to go to and search.

    Peoples are lazy. They don’t want to have to go to some separate website and then search for something. And lets not even get started on the difficulties of adding a remote community if your instance doesn’t know it exists, its wonky at best.

    If a user cant type “Stephen King community” in the search bar on their instance and then get results, they are either going to assume it doesn’t exist OR they are going to be hitting that “Create Community” button.


  • Of the themed instances that exist now, I’d be willing to bet that in addition to their local communities they host that they also subscribe to other communities that aren’t strictly related to whatever theme they are going with.

    For example, I’m sure the Star Trek instance also subscribes to the [email protected] community so the admin can stay abreast of Lemmy news. And probably also follows other technology related communities as well.

    I think most people would just want to gravitate to whatever they want to be identified with. There’s nothing stopping you from joining a music themed instance and then adding some non-music subscriptions to your list. It doesn’t force those subs on anyone else on the instance.

    And if you don’t want to be identified with any specific topic or community, you can always join a general Lemmy instance like Beehaw or Lemmy.world and subscribe to whatever you like piecemeal.



  • Honestly, I hope not.

    For example, if all the “programming” communities ended up on a single instance, that is still a single point of failure. I think it would be better if they were spread out a bit. That way if the programming themed instance went down unexpectedly it wouldn’t take ALL the programming communities out with it, only the ones it hosts.

    There’s nothing stopping anyone from creating a programming themed instance and then subscribing to various programming communities on other instances and then creating their own local communities to fill in the gaps.




  • Hot take. I think the instances that are trying to be Reddit are the ones that give their users carte blanche to create new communities without any thought of looking to see if the same community exists elsewhere. I’d prefer that community creation be limited to the admins of each instance, that way they could hopefully at least do a cursory search to see if the community exists already and then just add it to THEIR instances subscriptions. There’s a reason why every community shouldn’t be on a single instance. It’s a single point of failure.




  • I guess at the end of the day that I don’t have many concerns for privacy. I am not searching for things that might get me on a watch list. Searching from my private instance is no more/less secure in terms of privacy than it would be if I did a Google search. The search endpoints (Google, Bing, DDG, etc) all know the IP that the search is coming from even if its passing through SearXNG first. So if I was doing something shady, I could easily be tracked down that way.

    The main reason I run my own SearXNG is so I can strip ads and search multiple search providers from a single search.


  • I’m assuming you’re using docker.

    Make sure you have websockets support turned on.

    You might also try to add custom locations under NPM. I made those changes at the same time I made some changes to the “advanced” tab of NPM. I’m not sure which thing fixed it, or maybe it required both. Try this, and if it still doesn’t work, then add the advanced tab settings farther down this reply.

    You will need custom locations in your NPM proxy host settings for Lemmy for the following paths.

    /api

    /feeds

    /pictrs

    /nodeinfo

    They should point to the container that is running the lemmy application, not the UI one, just the lemmy one and to port 8536. If your NPM is not on the same docker network as lemmy, you will need to expose port 8536 on the lemmy container and add it to the lemmyexternalproxy network.

    If those changes don’t bring you joy, try also adding the following lines to the “advanced” tab of your NPM proxy host settings for Lemmy.

    proxy_set_header X-Real-IP $remote_addr;

    proxy_set_header X-Forwarded-For $remote_addr;

    proxy_set_header X-Forwarded-Host $remote_addr;

    real_ip_header X-Real-IP;

    real_ip_recursive on;

    If anything I have said is confusing to you, please reach out via DM and I’ll try to help.