If I’m doing anything substantial, calculation-wise, I use openpyxl.
If I’m doing anything substantial, calculation-wise, I use openpyxl.
Agreed. I really tried to like Libre/OpenOffice over the years but it never felt right. OnlyOffice really hits the spot for me.
I don’t use Windows much any more but I was happy with the discounted student version of Office 2016, afaik the last perpetual license.
Rhino for CAD.
However, I have been using OpenSCAD for parametric design more than the Grasshopper extension.
Thankfully, skipped ArcGIS entirely for QGIS and Python GDAL wrappers.
It’s a bit more barebones but I really like BoxySVG
I don’t know about Adobe but I think it’s true for some software.
My previous employer (~30 person company) got in trouble for a Fusion360 file that was sent to a customer after being edited by an intern’s pirated copy. Employees and interns typically used a different licensed CAD software.
I think the pirated file being opened at a larger company tipped them off, but I don’t know how they ultimately tracked us down.
That being said, I personally wouldn’t want the stress of using pirated software, let alone pirated assets in a professional setting.
If a custom site is too involved, this should also be possible with Google forms.
Yes, nginx and caddy are popular reverse proxies.
Without one you can only host applications on different ports, not combined on one port like you want.
You need a reverse proxy to accomplish this. The reverse proxy will have port 80 exposed and points PiHole/Searx containers and their respective ports for the paths you specify.
Sounds like end-to-end encryption is opt-in. Thus, a default configuration leaves communications unencrypted and vulnerable to eavesdropping.
I have a Pi4 running octoprint, pi-hole and some of my own containers.
The rest I run on a Hetzner VM.
I have worked with Docker/WSL for a number of years and it is more difficult compared to Docker in Linux. There are a lot a unique quirks and bugs that are an absolute pain to deal with.
Would not recommend for any relatively complex use case and certainly not for a server.
You might also find the Python library pandas useful. Its “DataFrames” can mirror your excel data 1:1 and you have convenience methods like to_excel(). Easy to combine with numpy for performant matrix math.
XLSX just becomes a container for storing/sharing your data, and while Python is used for analysis. I would use matplotlib for plotting rather than embedding in the sheet.