• 0 Posts
  • 27 Comments
Joined 1 year ago
cake
Cake day: March 7th, 2025

help-circle




  • nibbler@discuss.tchncs.detoSelfhosted@lemmy.worldPaperless
    link
    fedilink
    English
    arrow-up
    14
    ·
    5 days ago

    I run a small it company. Each month I have to sort all tax relevant documents and hand them to my tax office.

    So I download the tx CSV from my accounts. Those get parsed and the relevant invoices get searched in paperless, so I see if something is missing etc with a few minutes of manual work.













  • nibbler@discuss.tchncs.detoMemes@lemmy.mlCommunism is when no food
    link
    fedilink
    English
    arrow-up
    18
    arrow-down
    2
    ·
    edit-2
    14 days ago

    You’re mixing two population averages, so you need a weighted calculation.

    Let’s approximate first: France has about 67 million people out of roughly 447 million in the European Union, so ≈15% French and 85% non-French.

    We set up:

    Overall EU rate = weighted average 1.7=0.15⋅8+0.85⋅x

    Solve:

    1.7=1.2+0.85x 0.5=0.85x x≈0.59

    So, among non-French Europeans, the rate is roughly 0.6 per 100,000.

    That’s substantially lower than both the French rate (8) and the EU average (1.7), which makes sense given how high the French figure is relative to the rest. Also this is pretty much what I read for Vietnam in this chart.

    thanks France, for ruining our numbers!

    Edit: somewhere in this thread someone from France gives a perfectly good reason and connects the high starvation rate to assisted suicide. Which shines it’s light on another problem but very well explains and justifies the “starvation rate” - making this graph/comparison even more absurd.


  • Once the dump was complete, we transferred it to the new server using rsync over SSH. With 248 GB of compressed chunks, this was significantly faster than any other transfer method:

    rsync -avz --progress /root/mydumper_backup/ root@NEW_SERVER:/root/mydumper_backup/

    that’s a bit weird. rsync -z is compression, but they did compress in the mydumper export already, so this is a slow down (or neutral at best). also in my experience rsync is as fast as scp is as fast as piping anything to the tcp port on the destination etc. rsync does not win for speed but for enabling resume so to say…

    besides this: nice read!