I take my shitposts very seriously.

  • 0 Posts
  • 173 Comments
Joined 2 years ago
cake
Cake day: June 24th, 2023

help-circle


  • Did you hallucinate that I said anything like it or something? Obviously not every situation is solved by the same concept. Dense city centres – sidewalks, bike paths, trams, human-scale infrastructure. Suburban areas – abolish Euclidean zoning, European-style grid streets, buses, local light rail services. Inter-city transit – high-speed rail. Smaller villages and towns – regional rail. It’s an issue that most of the developed world has solved.

    Public transit is not supposed to replace cars altogether, but give people another choice. A transit system that is built well, operated well, and cheap, will reduce the reliance on cars, and make the streets safer for people or services that have to use cars.


  • Uh, yes, actually. I know someone like you can’t even fathom the possibility of a public transit system being well-built because you’ve been gaslit into believing that whatever happens in The West is the best humanity can offer, but we’ve got 80 bus and trolley lines criss-crossing the city. As a guesstimate, three quarters of the city is within a 10-minute walk from a stop, and the elderly and disabled who can’t walk benefit from the resulting reduction in traffic.
















  • My compose.yaml inside...
    volumes:
      db:
    
    services:
      db:
        image: mariadb:10.6
        restart: always
        command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
        volumes:
          - db:/var/lib/mysql
        secrets:
          - mysql_root_password
          - mysql_nextcloud_password
        environment:
          - MYSQL_ROOT_PASSWORD_FILE=/run/secrets/mysql_root_password
          - MYSQL_PASSWORD_FILE=/run/secrets/mysql_nextcloud_password
          - MYSQL_DATABASE=
          - MYSQL_USER=
    
      nextcloud:
        image: nextcloud
        restart: always
        ports:
          - 8080:80
        depends_on:
          - db
        links:
          - db
        volumes:
          - /var/www/html:/var/www/html
          - /srv/data:/srv/data
        secrets:
          - mysql_nextcloud_password
        environment:
          - MYSQL_PASSWORD_FILE=/run/secrets/mysql_nextcloud_password
          - MYSQL_DATABASE=
          - MYSQL_USER=
          - MYSQL_HOST=db
    
    secrets:
      mysql_root_password:
        file: ...
      mysql_nextcloud_password:
        file: ...
    

    If you use the links: element in the nextcloud service, the services listed there will be available using their hostnames. On the Nextcloud setup screen, choose mysql as the database engine, use db as the database host, and enter matching values into the other fields.