• 4 Posts
  • 74 Comments
Joined 2 years ago
cake
Cake day: July 2nd, 2023

help-circle
rss
  • Purely anecdotal but I accidentally fell into this during university when studying for final exams. 3 hours sleep at night, 3 hours in early afternoon. Was great and never felt better so tried to keep it after exams but it was just impossible. Once I got back to real life, it was impossible to keep such a rigid and inflexible system. I didn’t do it long enough to see any long term effects but just found it impossible to keep anyway so naturally reverted back to 7-8 hours overnight


  • My manager and a team mate had to go to the US for work earlier this week. They’re both British citizens but Indian heritage so was genuinely worried for them. Work made sure their papers were in order and they had local contacts just in case. It was “no more difficult than usual” (it’s always been hard for brown people coming in with “random” security checks). There is no way I would be going though, would flat out refuse.

    One made it home but funnily enough the other is stuck in Vancouver on the connection as theres some fire in Heathrow. At least he’s out of the USA!





  • From the UK and personally, 100% yes but not sure I feel the rest of the population would agree. I mean, a lot of us turned our backs on the EU and there’s a lot of cross over with US right wing nutters.

    However, I would believe that when push comes to shove, we would be generally willing to defend Canada, Australia and NZ over anyone else, and then European countries at the next level. The reaction in support for Ukraine was pretty universal here and there are still lots of donations and support that is not shared with any African, Asian or Central/South American countries having similar problems.

    Basically, you’re white so yes you can count on us!


  • I would highly recommend using docker compose files. The services you are after usually have them in their installation instructions, on github or docker hub (the latter tells you how many image pulls so you can see what most people are using). Also check out https://awesome-docker-compose.com/apps and https://haxxnet.github.io/Compose-Examples/.

    Then think of each compose file as a separate service that functions completely independently and can’t access any others unless you open a port to the host system (ports: ) or have a common network (networks:). The container cannot access or save files unless you open volumes (volumes: ). Personally I have separate folders for each service, and always persist and store config, data and db files in a subfolder of that so it’s all in one place. It’s easier to migrate or save your info if something goes wrong, and males backups easier to manage.

    In the composer file there is image: <image place/image>:<tag> The tag could be ‘latest’ or a specific version you can look up on docker hub by searching for that image and looking a the tags that are near the ‘latest’ tag or have the same file size. For critical services use a specific version, and for non critical use latest.

    To update a docker compose file, go to the folder, update the version of the image (e.g :15.6 to :16.1) or if using the ‘latest’ tag no need to change anything. Then run “docker compose down && docker compose pull && docker compose up -d” to update the services top the latest image.

    I use wud https://github.com/getwud/wud about once a week to highlight any available updates then manually update them one by one, and before doing so looking at the update notes to see if there are any breaking changes and testing the services after. I used to just use latest and blindly update but have had occasional issues like bad updates or having to figure out breaking changes. If it goes wrong you can just go back to the old version while you investigate more.

    Also, docker keeps old images forever unless you prune them so lookup ‘docker image prune’ or ‘docker system prune’ before trying them as they’ll remove a lot.



  • As someone who used to cycle, walk or ride a bus across these bridges, please don’t blow them up. In fact, I think all the central London bridges have bus lanes, plenty of walking space and some have cycle lanes. Theres one bridge for people only. I know im taking this too seriously but it’s a very scary thought








  • I think most of the “underground”, at least the older lines are operated by TFL. The TFL also operates some of the “overground” lines as a franchise owner. This line runs on national rail lines out to Reading so maybe it if more like “overground” than “underground”. I thought this project would fall under TFL regardless so it is just a joke really.

    By the way, for national rail trains, private companies also own most of the rolling stock which the franchise owners lease. The whole British railway system is an absolute mess…



  • pastebin.com/DiHX2vg2

    Hopefully this works and you can see the compose file. I’ve put a few things in [square brackets] to hide some stuff, probably overly cautiously. I have an external network linked to NPM and in that, I use nextcloud-server for IP address and 80 for the port (it’s the inside container port, not 8080 on the system - that took me a long time to figure out!). Add a .env file with everything referenced in the compose file, then (hopefully!) Away you go



  • Not sure if it makes a difference and not quite your question but I’ve just switched away from nextcloud-aio to just having my own docker compose, so I have better control and know what’s going on more. I always found it funny and when installing on a new VPS decided to try. It was surprisingly straightforward and Ive been able to install everything I need.

    Let me know if my docker compose would help. I still need to add the backup solution but it’s going to be straightforward as well.