she/her

  • 0 Posts
  • 158 Comments
Joined 1 year ago
cake
Cake day: August 3rd, 2023

help-circle



  • If the planets line up correctly, you can do it in way less, like 4 or 5 months. I’d need to get some orbital calculations out for the whole thing

    But simplest case, you lower your perihel to Venus orbit, that’ll take you less than half a year. With a perfect gravity assist you can then head straight for the sun at more than orbital speed, accelerating as you go. Free fall time is a fraction of orbit time, and you’re going in with a high initial velocity, so a month or two more, max. That’s 6-9 months total, but it’ll be faster with more Δv







  • For me it’s probably the way I self-host overleaf, a online LaTeX editor. The community version has a docker image that’s horribly maintained (because they want to sell enterprise, I reckon), and instead relies on a horrendous amalgamation of setup scripts that wrap docker compose.

    What I have is a Dockerfile that pulls the image, manually installs a second version of TeX with the right dependencies, unlinks the old one and links the second one. Then for the database, it uses Mongo replsets, which be to be manually initialized. So I wrote a health check for the container that checks if the repl set is initialized, and if that fails the health check initializes it.

    It’s horrendous, it’s disgusting, and it’s an all-in-one compose file to get overleaf running. Good enough.