I like sysadmin, scripting, manga and football.

  • 1 Post
  • 148 Comments
Joined 2 years ago
cake
Cake day: June 13th, 2023

help-circle

  • I have a Pixel 9 Pro which is supposed to get security updates until 2031 but at the pace Google is closing Android down I wonder if it will even be viable to stay on an AOSP degoogled ROM until then.

    I feel like the future is leading us to a place where we will have to reduce our mobile computing to a trusted but slow and unreliable main phone while keeping a secondary mainstream device for banking/government apps.













  • The easiest way by far is downloading an existing dump from kiwix

    Per example wikipedia_en_all_nopic_2024-06.zim is only 54GB since it only contains text. Then via docker you could use this compose file where you have your .zim files in the wikis volume:

    services:
      kiwix:
        image: ghcr.io/kiwix/kiwix-serve
        container_name: kiwix_app
        command: '*'
        ports:
          - '8080:8080'
        volumes:
          - "/wikis:/data"
        restart: always
    

    Theorically you can actually one of the wikipedia database dumps with mediawiki but I don’t known of any easy plug and play guide