If you patch your own OS, you can also build the app yourself with the lower target.
Clearwater
Man forgot to put on his VPN before replying to his own thread lol.
To add on this, my server is running a 4790k, and that's plenty for all common tasks. While faster is always nicer, the threshold for good enough is very low for server tasks.
Aaand GSMArena says no on headphone jack... Damn it.
That's all fair enough. I've seen it listed as a gotcha on some very pro-gun sites for the specific case of a thief who's taken something, jewelery for example, and is now running away. You can't take the offensive to get it back. (At least not with your gun. I expect trackling them to the ground would be fine?)
I'll be damned as well.
Worth noting for any Californians that it u-turns if the person stops being a threat. If you threaten and they run away, you're now in the wrong if you shoot.
I agree. Forgejo itself is stable and I love it. Gitea never gave me trouble and that carried over.
Actions is just a bit hard to setup, at least for me, when I tried. We'll get there one day. (I believe the big thing is really just documentation.)
First of all, I actually do prefer Forgejo Actions over Woodpecker. Once set up, my only problem with it (so far) is almost certainly caused by my infrastructure and isn't inherent to FA itself. Pecker, on the other hand, is quite a bit easier to set up and better documented, but I had that issue where it would disconnect from Forgejo and need a few buttons pressed to fix.
This one is just FA being weird:
If you want to deploy the Runner using Docker, the documentation is poor at best. From both a security and documentation standpoint, having it in its own VM is better, but you can do Docker. You just have to read and figure out more on your own. Reading through the example deployments from the documentation will eventually lead you to something along the lines of this (which I copy-pasted from my deployment rather than search for again):
forgejo-runner:
image: code.forgejo.org/forgejo/runner:6.3.1
restart: always
user: 1000:1000
environment:
- DOCKER_HOST=tcp://dind:2376
volumes:
- runner_cache:/data
depends_on:
- dind
command: >-
bash -ec '
forgejo-runner create-runner-file --name runner --instance https://${DOMAIN} --secret ${RUNNER_SECRET};
sed -i -e "s|\"labels\": null|\"labels\": [\"docker:docker://docker.io/node:22-bookworm\", \"ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-latest\"]|" .runner ;
forgejo-runner generate-config > config.yml;
sed -i -e "s|^ network: \"\"$| network: host|" config.yml ;
sed -i -e "s|^ envs:$$| envs:\n DOCKER_HOST: tcp://dind:2376\n CONTAINER_HOST: tcp://dind:2376|" config.yml ;
forgejo-runner --config config.yml daemon
'
You don't actually need to do this since you could edit the two config files yourself and bind them to the container. This is just how you automatically generate those files... And it's dumb, but it works and it means you don't have to keep track of those files.
This one is probably just my infrastructure: https://lemmy.world/comment/16093731
If you do go for FA in Docker (or Podman) and need some help, just ask. I'll post more of my compose and explain my decisions.
I run Forgejo and had issues with woodpecker's hooks breaking causing workflows to not start. Moved to Forgejo Actions which had it's own different set of quirks (really just depends on your exact deployment method), but I'm happy with it.
While I do not make heavy use of these two, I like having my contacts and calendar synced and accessible on both my PCs and phone.
I actually use the notes app, and have a yubikey. For notes, I could just use the regular markdown editor, but I like way the app lays everything out. For the yubikey, NC by default uses yubikeys for passwordless login. I use an app which uses them for 2FA instead. I also use apps which allow me to view hashes and metadata from the files tab.
All that makes me not want to switch yet. We'll get there eventually since none of the features I want are ultra complex or super uncommon.
OCIS, last I tested it (a while ago), also lacked the ability to right click files, requiring you to select it with the checkbox and then select the operation at the top of the screen. I sure hope that they've added that feature by now.
I actually did not know this. Thank you! That was one of my more major gripes.
I'm not saying it'll work. I don't know if the app does anything that necessitates the higher version requirement. It may work perfectly, it may not work at all, or it may work with some things bugging out/crashing. All I'm saying is if you know how to patch your OS, rebuilding the app with a changed target is not going to be very difficult.
My bet is that as of today, recompiling the app with nothing changed except a reduced version requirement will probably work fine. However, over time as features are added or rewritten, it'll get progressively harder to maintain that A7 patch.