Partner and CEO of Find the Path Ventures (https://find-path.com). Voice actor, software engineer, and general nerd.

  • 1 Post
  • 42 Comments
Joined 1 year ago
cake
Cake day: June 5th, 2023

help-circle




  • The purpose of life is whatever you make it. Some people feel their purpose is to make as much money as they can, others to create art that will last for all time.

    There is no one purpose to life. There’s no cosmic point to it all, so we all just find out purpose.

    For me, my purpose is to find happiness. I suffer from depression so that’s my one goal. I find making people laugh makes me happy, so now I do a podcast where I make people laugh most of the time.








  • I use the Fold 4 and like it a lot. Being able to just open my phone to a mini tablet is fire.

    Only downside is not every app works all that well with it so I’m hoping the Pixel fold sells well and encourages more support.

    And sells well enough to get more versions. I was a Pixel user before this and the Samsung experience is kinda eh. Their app store keeps trying to push apps via push notifications that install if I so much as click on the notification and it’s driving me crazy.






  • I’m not saying we shouldn’t be able to hard delete comments, I’m just explaining why the Lemmy developers might not have started with hard-deleting comments. I agree with you we should have the option and it should propagate regardless of any instance settings.

    My point in mentioning other servers not deleting your comments is that ActivityPub is an open standard. Technically someone can write a Lemmy competitor that federates with your instance and does not implement the hard deletion of comments. It’s allowable under the protocol. That doesn’t mean the feature isn’t worth implementing, it just means there are caveats to “this comment disappears off the Internet forever” like we’d like.


  • I host my instance exactly like this with Nginx Proxy Manager. Here’s my config:

    • Block Common Exploits and Websockets Support - on
    • Add a custom location with the following settings:
      • 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;
    • for SSL turn on HTTP/2 Support

    I had to add the custom config so that I would get the IP address of the clients and federated servers. Otherwise I was hitting rate limits on the Lemmy server.