daco

joined 1 year ago
[–] daco@lemm.ee 1 points 1 month ago

I use Nikola and it hasn't let me down. It just works and supports all the ways I write content: markdown, asciidoc, rest, Jupiter Notebooks, html and so on. It does not have so many themes, but the default one works and it's not hard to customise if needed. If you like to use python it's also easy to extend. I've written a bit about Nikola here in case it picks your interest.

I've deployed it to CloudFlare pages, but GitHub pages, Gitlab pages and any other provider also work.

[–] daco@lemm.ee 1 points 3 months ago (1 children)

Ok. Thank you for the explanation!

I'm just now thinking out los here, but would it make sense to use a PowerShell script to silently install miniconda and create a venv with a specific version?

Something like

@echo off
REM Download Miniconda installer (replace URL with the latest version)
powershell -Command "Invoke-WebRequest https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -OutFile miniconda.exe"

REM Install Miniconda silently
start /wait "" miniconda.exe /InstallationType=JustMe /RegisterPython=0 /S /D=%UserProfile%\Miniconda3

REM Create a new environment with the specific Python version
call %UserProfile%\Miniconda3\Scripts\activate.bat
call conda create -y -n py39 python=3.9

REM Optional: Set permissions for multi-user access
icacls %UserProfile%\Miniconda3 /grant:r Users:(OI)(CI)F /T

More on that here https://docs.anaconda.com/anaconda/install/silent-mode/

Again, this is just an idea, but if this works then you won't have a problem anymore (maybe?).

[–] daco@lemm.ee 1 points 3 months ago (3 children)

I get your points!

But just out of curiosity, did you try using miniconda to install older python versions? That works wonders for me, also on windows 11.

[–] daco@lemm.ee 7 points 3 months ago* (last edited 3 months ago) (1 children)

If you don't need CI/CD I don't see any reasons to choose Gitlab over gitea. But I'm still testing gitea so take my words with a grain of salt :)

[–] daco@lemm.ee 14 points 3 months ago (6 children)

At work we selfhost gitlab (paid) and I'm checking gitea for my own projects. They have a good comparison table at https://docs.gitea.com/installation/comparison

Do you also need CI/CD?

[–] daco@lemm.ee 1 points 1 year ago

GoatCounter works great, has a free hosted plan and is open source (and you can self-host it). You can export all your data, manage privacy settings, manage users and so on. Made in Go.

[–] daco@lemm.ee 1 points 1 year ago* (last edited 1 year ago) (1 children)

I use docspell and I find it great. I run it on VM on an old microserver running proxmox.

There is also Mayan edms based on Django, but it has to many features for my use case.

[–] daco@lemm.ee 1 points 1 year ago

My experience with openSuse Tumbleweed has been mostly great so far.

I’ve used linux the last 20+ years (Debian, Ubuntu, manjaro, elementary os, fedora and so on).

For me the best ones so far have been Debian and Ubuntu server edition (for servers), Linux mint and openSuse (for desktop use).

I tried openSuse because I didn’t want to upgrade my system every 6 months (for Ubuntu) nor every many years (for Debian). I like the idea of having a stable main desktop system which I can rely on and it just works. I’m hoping openSuse Tumbleweed is that system.

I’ve used primarily openSuse with KDE on my main machine the last year and I’ve had the folllowing issues:

  • some VPN connections do not work but the same one does work without problems on Linux mint. (For example the Fritz-box VPN) I’m still researching this.
  • most tutorials are made for Ubuntu and other distros, so you have to search a bit more to find answers. (I’ve written a few on my site) You need more time and knowledge to do some stuff on openSuse, because the defaults are more secure (or less permissive). For example sharing a folder on a network or adding a network printer means configuring the firewall rules, which on Linux mint, Ubuntu and many others is not required (which also means that the required ports are open and the required packages are pre installed).

What I’ve liked

  • there defaults are more secure and that means I’ve learned what some apps need and I’ve understand a little bit how they work.
  • zypper dup is great and I love having a rolling distribution. (I also love apt-get btw)
  • I feel openSuse is more stable (as a desktop, I haven’t tried it on servers yet) although I don’t have any basis to say that. I have another machine with linux mint and I feel I have more problems with stability there. (Again, this is just a feeling)