

Removed by mod
Removed by mod
So CDU is just AfD in disguise…
PopOS is great, the installation process is like 5minutes, with 4 minutes being the download and boot from USB. From there on you click “next” 5 times and are rebooting into a working system.
To be absolutely honest, I had to do some googling and command line stuff to get my fingerprint reader in the laptop working but that was the only thing that needed any attention. But I never did a Windows install where I didnt have to configure at least 2-3 drivers, so I consider it a draw.
From there one it is the typical stuff: You need one proprietary software? You have to figure it out for hours how to get it to work. You are fine with open source options? Go enjoy a blazing fast ad-free non intrusive non annoying OS. For me the trade of is worth it. Been using Linux since I was 14, if I could do it from my kids room with parents switching of WLAN after 22:00 you can do it too.
Found this on stackoverflow: https://stackoverflow.com/questions/68903835/how-to-draw-a-shape-inside-a-pdf-with-python
import fitz
Open the pdf
doc = fitz.open(‘./test.pdf’) for page in doc: # For every page, draw a rectangle on coordinates (1,1)(100,100) page.draw_rect([1,1,100,100], color = (0, 1, 0), width = 2)
Save pdf
doc.save(‘./your-route/name.pdf’)
Seems like it has a solid chance of working.