[-] MaximilianKohler@lemmy.world 9 points 1 month ago

I've never seen "nazi shit" on Lemmy. The threads that have been deleted have all seemed on-topic with normal discussions taking place. The last one was a "what made you leave reddit?" thread with hundreds of comments.

[-] MaximilianKohler@lemmy.world 14 points 4 months ago

I made accounts on Mastodon and Blue Sky but most people still use Twitter, so if there's info you're looking for, or if you want to share things, you're forced to use what most people are using.

[-] MaximilianKohler@lemmy.world 12 points 5 months ago

Dr. Alexander Khoruts (University of Minnesota GI, Director, UMN Microbiota Therapeutics Program) made a similar comment. https://forum.humanmicrobiome.info/threads/designer-hit-panel-discussion-achieving-cures-together-dec-2023-peter.216/

He asks an FDA adviser "Does the FDA care more about profits or people?", and the response he gets is "one of the missions of the FDA is to protect the interests of commercial developers". Another question to the advisor: "How much influence does the industry have over the FDA decisions?", A: "A lot".

25
submitted 7 months ago* (last edited 7 months ago) by MaximilianKohler@lemmy.world to c/reddit@lemmy.ml

A group of scammers is retaliating against me for exposing them and the Reddit admins and legal department completely ignore it.

I consulted with lawyers who told me that my only option is to spend tens of thousands of dollars trying to pursue each individual reddit account that's doing it.

24
28
[-] MaximilianKohler@lemmy.world 15 points 7 months ago

Chronic disease and general poor-functioning has been skyrocketing and the vast majority of people just ignore it like it's no big deal.

Obviously it's a big deal when the intelligence and competence of a majority of people has been severely diminished. We're now living in Idiocracy. And it's why for two elections in a row we've ended up with the choice of two senile old white men.

[-] MaximilianKohler@lemmy.world 10 points 8 months ago

It will definitely start to happen more as more forums start to join the fediverse (discourse for Eg).

[-] MaximilianKohler@lemmy.world 15 points 8 months ago

I was thinking something similar. It's not good that everyone goes to lemmy.world. Keeping the fediverse diverse is important. Shitjustworks is a good instance too that has low blocks.

[-] MaximilianKohler@lemmy.world 11 points 8 months ago

First time I'm seeing what it looks like. Looks exactly like Twitter.

[-] MaximilianKohler@lemmy.world 24 points 8 months ago

Yep. This is the primary thing preventing me from contributing to, and recommending Lemmy. People confidently posting and upvoting harmful misinformation, and toxic/unintelligent people. I've already left Reddit and Facebook (a long time ago) for similar reasons.

[-] MaximilianKohler@lemmy.world 9 points 8 months ago

It was said in the previous thread that the TPM and Microsoft account requirements can be overridden with Rufus, so anyone can update to Win 11.

63
submitted 8 months ago* (last edited 8 months ago) by MaximilianKohler@lemmy.world to c/youshouldknow@lemmy.world

It's refreshing to see a major news outlet discussing collateral damage and not just resistance. Over the past decade, 99% of the time antibiotic overuse is covered and warned about it's always only in regards to resistance.

It's a good article that also doesn't spread the common misinformation of "just take some probiotics and fermented foods after antibiotics and you're good to go".

Swallowing an antibiotic is like carpet-bombing the trillions of microorganisms that live in the gut, killing not just the bad but the good too, said Dr. Martin Blaser, author of the book “Missing Microbes” and director of the Center for Advanced Biotechnology and Medicine at Rutgers University.

“I think the health profession in general has systematically overestimated the value of antibiotics and underestimated the cost,” Dr. Blaser said.

No shit. And it has spread like a virus to the general populace as well. The majority of people seem mentally addicted to antibiotics and think they're going to die if they don't get an antibiotic for every minor issue.

  • Find out if you really need an antibiotic.
  • Ask for the shortest course.
  • Rethink probiotics.

I appreciate the NYT for finally helping spread this.

Just yesterday people on Lemmy were cheering about AI discovering new antibiotics. When I shared info about the concerns of collateral damage, the responses were more unintelligent and close-minded than on reddit. Extremely depressing.

For more info on this subject there's a wiki and forum at https://humanmicrobiome.info.

[-] MaximilianKohler@lemmy.world 20 points 9 months ago

4chan's been going downhill for years as well. It's been extremely ban-happy for a very long time. I recently got permabanned for posting a screenshot from Hatching 2022. Something similar has happened to me every time I've gone back over the past 10 years.

8
submitted 9 months ago* (last edited 9 months ago) by MaximilianKohler@lemmy.world to c/selfhosted@lemmy.world

EDIT: It was a firewall issue. I disabled my firewall and it works.

https://listmonk.app/

The site loads properly on serverIP:5870 and if I change proxy_pass http://127.0.0.1:5870; to proxy_pass http://listmonk.mydomain.com:5870; then it will load on listmonk.mydomain.com:5870. But it gives the 502 error when I visit the site without the port.

If I set proxy_pass http://127.0.0.1:5870; and visit listmonk.mydomain.com:5870 I get:

The connection for this site is not secure
listmonk.mydomain.com sent an invalid response.
[Try running Windows Network Diagnostics](javascript:diagnoseErrors()).
ERR_SSL_PROTOCOL_ERROR

docker-compose.yml:

version: "3.7"

x-app-defaults: &app-defaults
  restart: unless-stopped
  image: listmonk/listmonk:latest
  ports:
    - "5870:9000"
  networks:
    - listmonk
  environment:
    - TZ=Etc/UTC

x-db-defaults: &db-defaults
  image: postgres:13
  ports:
    - "9432:5432"
  networks:
    - listmonk
  environment:
    - POSTGRES_PASSWORD=pw
    - POSTGRES_USER=listmonk
    - POSTGRES_DB=listmonk
  restart: unless-stopped
  healthcheck:
    test: ["CMD-SHELL", "pg_isready -U listmonk"]
    interval: 10s
    timeout: 5s
    retries: 6

services:
  db:
    <<: *db-defaults
    container_name: listmonk_db
    volumes:
      - type: volume
        source: listmonk-data
        target: /var/lib/postgresql/data

  app:
    <<: *app-defaults
    container_name: listmonk_app
    depends_on:
      - db
    volumes:
      - ./config.toml:/listmonk/config.toml
      - ./uploads:/listmonk/uploads

networks:
  listmonk:

volumes:
  listmonk-data:

nginx config:

server {
        listen              443 ssl;
        server_name            listmonk.example.com;

  location / {
     proxy_pass  http://127.0.0.1:5870;
     proxy_set_header   Host            $http_host;
     proxy_set_header   X-Real-IP       $remote_addr;
     proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for; 
    }

}

server {
    listen              80;
    server_name            listmonk.example.com;
      location / {
return 301 https://$host$request_uri;
      }
}
[-] MaximilianKohler@lemmy.world 13 points 10 months ago

I won't pay for Youtube because they keep making their product worse and treating creators horribly.

17

https://gist.github.com/MaximilianKohler/3bdedd0185283ac30c1f1422f9626947

If you have a Reddit account please post this to /r/RedditAlternatives.

Why move from Reddit to a forum?

Reddit has been going downhill on the path to enshittification for many years. But recently, they really s**t their bed. They've made communities no longer autonomous, and completely ignore their Terms of Service. Meaning there is no guarantee that any user or community can freely participate under the ToS without fear of the admins randomly stepping in and asserting their power -- whether that be via banning users or communities without cause, or turning over the community to complete outsiders or hostile entities.

Reddit showed that you can't trust a 3rd party. They can rapidly and drastically change their policies to screw you over after you've put in a decade of work hosting & growing your communities on their platform. With hosting your own forum, there is no such risk; you are under complete control.

Hosting your own Lemmy instance is a similar possibility, but Lemmy is early in development, and has various issues and more limitations currently. For me, adding a traditional forum to my existing website seemed like the best option at the time.

I wanted to move away from Reddit ASAP without losing any of the functionality/features, and I was able to accomplish that.


Pros & cons of Lemmy

I posted this to lemmy.world/c/reddit https://lemmy.world/post/3125497 and it was deleted without any reason/notification and I don't see a modmail feature. They have a modlog but it just shows an endless loading icon. There is also no access to your content after it's deleted, unlike with reddit.

There was another thread where people were discussing the need for attracting more niche communities & content creators to Lemmy. Well you're not going to attract them like that. As a content creator that hosted a handful of niche communities on reddit, my /c/reddit experience seems to confirm that making my own forum was the right decision.

I made the below comment about some of the drawbacks of Lemmy and I guess these are more to add. Perhaps Lemmy would be the best option in the [near] future. Unfortunately, forums lack the networking exposure of the fediverse.

I've seen people complain about the phpBB UI, so that made me shy away from using it for my website even though I personally like it.

I started looking into forums some months ago, and in that time Lemmy has already come a long way, to where I think Lemmy would possibly be the better option soon. But I wanted to get my site up and running ASAP.

A few things that factored into my decision:

  • I think Reddit and its alts need the features of /r/enhancement and /r/Toolbox.
  • I don't like the default UI of Lemmy. It's too bloated. I'm using old.lemmy.world now but it's definitely lacking in features and a bit buggy (IE: I had to switch to the "regular" site, and log in separately, to edit my post).
  • I saw beehaw defederate due to lack of mod tools.
  • lemmy.world showing Lemmy's vulnerabilities (ddos, security, etc.).
  • I'm still familiarizing myself with Lemmy and the fediverse. It's a bit complex.
  • The voting system has its upsides and downsides. I think no downvote button is the best option.
  • I don't like the time-based nature of reddit-type sites. With forums, you don't need to always be there to answer right away. Discussions can take place over longer periods of time.
  • As you say, a full step-by-step guide is essential.
  • I'm now very hesitant to trust any 3rd party. I'd have to trust that the Lemmy instance I choose won't do the same thing reddit did to me.

I wasn't really considering hosting my own Lemmy instance at the time. But I think it can be installed onto a subdomain of any website?

[-] MaximilianKohler@lemmy.world 20 points 1 year ago* (last edited 1 year ago)

It seems like it would be difficult to keep track of all the instances that have/haven't banned the communities/instances you're interested in.

Like if someone wanted to move to an instance that hasn't banned these piracy communities, how would they even know where to look?

EDIT: I found this:

Awesome Lemmy Instances has a list where you can see how many instances block/are blocked by each other https://github.com/maltfield/awesome-lemmy-instances

21
submitted 1 year ago* (last edited 1 year ago) by MaximilianKohler@lemmy.world to c/selfhosted@lemmy.world

https://gist.github.com/MaximilianKohler/84d2175472612a34bcc1c2ebf99b91d4

When I searched for this I had a very hard time finding a right answer because all the results were SEO blogs advertising their newsletter services (Mailchimp, Convertkit, etc.), which is not the same thing.

My use case is that I have a Google form collecting tens of thousands of applications. And I need to reply to those people en masse (a few thousand per day). None of the newsletter services are designed for this, and they're all very expensive.

Even if your use case is a regular newsletter, setting up your own server is way cheaper.

My goal was to find the most cost-effective, user-friendly, bulk/mass email sender with good deliverability and open rates. One-time, 100,000+ emails per month, 3-4k/day.

Feel free to share your input in the comments. I'm a total noob and had never dealt with anything like this in the past. But have now hosted multiple sites for various reasons, and wrote guides for them as well.


The short answer is that you need to set up your own web server (Hetzner, AWS, DigitalOcean, etc.), install an email software on it (Listmonk, Mailwizz, Mautic), and use an SMTP like Amazon SES. It's not that hard. If you're on Windows, Putty and FileZilla will be your main programs to access your server. When using CSV files for your contacts, you want to use UTF-8 format.

view more: ‹ prev next ›

MaximilianKohler

joined 1 year ago