Spyke

Posts

asklemmy·Asklemmybysuspended

How would you feel if Beehaw left the Fediverse?

I am one of the admins of Beehaw and I'm trying to get some feedback on our potential move.

Let's start out with a little Beehaw history before judgements are passed, please.

A handful of us were beta testing Tildes when we decided to have discussions on a Discord server.

We decided that our 'Northern Star' or guiding principle would culminate as 'Be Nice' with purposefully vague/flexible interpretations. Our overall goal is to provide a safe space to disenfranchised persons.

We talked for a little over a year and some of our members became impatient. Then someone stepped in to suggest a couple of platforms that we could consider getting started with.

One of those platforms was Lemmy. None of us knew, at that time, anything about ActivityPub.

During the Reddit exodus (surrounding the API outcry and blackout), our instance exploded. We were, initially, crippled by the mass amounts of users seeking refuge.

Thankfully, someone stepped in and volunteered hundreds of hours of work to stabilize our instance and refine it further.

After many hours of talks, it became clear to us that our overall goal could be achieved outside of Lemmy/ActivityPub.

Right now, we feel that Lemmy and ActivityPub have downsides that are limiting us from achieving that goal.

View original on lemmy.ml
asklemmy·Asklemmybysuspended

Questions regarding Unity, Windows and gaming

My two sons will be getting a Windows gaming PC for their upcoming Christmas gift.

However, one of my sons has expressed their desire to use Unity.

I've been looking at this MSI Cubi for their gaming desires.

However, when I looked at the free/personal download specs for Unity, I noticed that Windows 11 is not supported.

Maybe I'm going about all of this the wrong way? I just want a Windows machine that would handle most of the popular games out there that would support the use of Unity.

Please, help us solve this problem.

View original on lemmy.ml

What is happening with the Lemmy mobile apps?

It's my, general, understanding that most people connect to the Internet through mobile apps.

If this is the case, then why have apps such as Remmel, Lemmur and jerboa taken a back seat?

IMHO, it would be a mistake to market Lemmy without these mobile apps functioning properly.

I have forked the three aforementioned mobile apps here and will try to 'drum up' support from developers wherever I can find them.

Please, if you don't feel comfortable talking to me about this here, then send me a private message. Thank you.

View original on lemmy.ml
lemmy_support·Lemmy Supportbysuspended

[RESOLVED] Federation configuration for v. 0.15.1 NOT working

Current lemmy.hjson configuration file (with or without the closing bracket...both do not work):

{
  # the domain name of your instance (eg "lemmy.ml")
  hostname: "beehaw.org"
  # Settings related to activitypub federation
  federation: {
    # Whether to enable activitypub federation.
    enabled: true
    # Allows and blocks are described here:
    # https://join-lemmy.org/docs/en/federation/administration.html///instance-allowlist-and-blocklist
    #
    # list of instances with which federation is allowed
    allowed_instances: [
      lemmy.ca
      midwest.social
      /* ... */
    ]
    # Instances which we never federate anything with (but previously federated objects are unaffected)
    blocked_instances: [
      string
      /* ... */
    ]
    # If true, only federate with instances on the allowlist and block everything else. If false
    # use allowlist only for remote communities, and posts/comments in local communities
    # (meaning remote communities will show content from arbitrary instances).
    strict_allowlist: true
    }
}

Docker logs:

lemmy_1     | thread 'main' panicked at 'Error connecting to postgres://lemmy:password@localhost:5432/lemmy', src/main.rs:65:25
lemmy_1     | note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
lemmy_lemmy_1 exited with code 101
lemmy_1     | 2022-01-23T12:53:58.959887Z ERROR r2d2: could not connect to server: Connection refused
lemmy_1     | 	Is the server running on host "localhost" (127.0.0.1) and accepting
lemmy_1     | 	TCP/IP connections on port 5432?
lemmy_1     | could not connect to server: Address not available
lemmy_1     | 	Is the server running on host "localhost" (::1) and accepting
lemmy_1     | 	TCP/IP connections on port 5432?

Safari browser throws this error when attempting to reach https://beehaw.org/

https://beehaw.org/404?err=FetchError%3A+request+to+http%3A%2F%2Flemmy%3A8536%2Fapi%2Fv3%2Fsite%3F+failed%2C+reason%3A+connect+ECONNREFUSED+172.23.0.4%3A8536

So, my instance is connecting from a secured HTTPS and the lemmy connection is attempting to connect to an unsecured HTTP.

docker-compose.yml:

version: '2.2'

services:
  postgres:
    image: postgres:12-alpine
    environment:
      - POSTGRES_USER=lemmy
      - POSTGRES_PASSWORD=thr33n1n3
      - POSTGRES_DB=lemmy
    volumes:
      - ./volumes/postgres:/var/lib/postgresql/data
    restart: always

  lemmy:
    image: dessalines/lemmy:0.15.1
    ports:
      - "127.0.0.1:8536:8536"
    restart: always
    environment:
      - RUST_LOG="warn,lemmy_server=info,lemmy_api=info,lemmy_api_common=info,lemmy_api_crud=info,lemmy_apub=info,lemmy_db_schema=info,lemmy_db_views=info,lemmy_db_views_ac>
    volumes:
      - ./lemmy.hjson:/config/config.hjson
    depends_on:
      - postgres
      - pictrs

  lemmy-ui:
    image: beehaw/frontend-ui:latest
    ports:
      - "127.0.0.1:1235:1234"
    restart: always
    environment:
      - LEMMY_INTERNAL_HOST=lemmy:8536
      - LEMMY_EXTERNAL_HOST=beehaw.org
      - LEMMY_HTTPS=false
    depends_on:
      - lemmy

  pictrs:
    image: asonix/pictrs:v0.2.6-r2
    ports:
      - "127.0.0.1:8537:8080"
    user: 991:991
    volumes:
      - ./volumes/pictrs:/mnt
    restart: always
https://beehaw.org/Open linkView original on lemmy.ml

You reached the end