Spyke

Replies

Comment on

First U.S. nuclear reactor built from scratch in decades enters commercial operation in Georgia

14 years and 35 billion (combined with #4 which has not been finished) and didn't generate a single kWh in anger until now. Put the same investment into renewables and it would generate similar or greater energy and would start doing so within a year.

The argument against nuclear now is not about safety. It is about money. Nuclear simply cannot compete without massive subsidies.

Comment on

Nextcloud alternatives

I seriously suggest you give Nextcloud another go, this time under Docker. Very simple to do.

Save the following in a new folder as docker-compose.yml

version: '3'

volumes:
  db:

services:

  nextcloud-app:
    image: nextcloud
    container_name: nextcloud-app
    restart: always
    volumes:
      - ./data:/var/www/html
    environment:
      - MYSQL_PASSWORD=changeme
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - MYSQL_HOST=nextcloud-db
    ports:
      - "80:80"
    links:
      - nextcloud-db

  nextcloud-db:
    image: mariadb
    container_name: nextcloud-db
    restart: always
    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
    volumes:
      - db:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=changeme
      - MYSQL_PASSWORD=changeme
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud

run this command in the folder -

docker-compose up -d

open http://localhost

oglaf

Comment on

Confused about The Apprentice storyline in Oglaf? Read here!