I like sysadmin, scripting, manga and football.

  • 2 Posts
  • 34 Comments
Joined 2 years ago
cake
Cake day: June 13th, 2023

help-circle



  • I tried it in the past and it felt too heavy for my use case. Also for some reason the sidebar menu doesn’t show all the items at all times but instead keeps only showing the ones related to the branch you just went into.

    Also it seems pretty dead updates wise

    Mdbook is really nice if you mind the lack of dyanimic editing in a web browser




  • 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