this post was submitted on 07 Mar 2026
543 points (95.9% liked)

Selfhosted

56953 readers
1359 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

  7. No low-effort posts. This is subjective and will largely be determined by the community member reports.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

My wife needed a cycle tracker. Everything out there was either Flo (which got sued twice for sharing health data) or an abandoned GitHub project. So I built Ovumcy. Single Go binary, SQLite, Docker-ready. No analytics, no third-party APIs, no cloud. Your data stays on your server. Features: period tracking, symptom logging, predictions (ovulation, fertile window), statistics, CSV/JSON export, dark mode, Russian and English. Just pushed v0.2.5. Looking for feedback from real users.

you are viewing a single comment's thread
view the rest of the comments
[–] terraincognita@lemmy.world 53 points 4 days ago (4 children)

I do use AI tools while developing this project, but I also have a BSc in Computer Science. AI is a productivity tool.

Security is something I take seriously, especially since the project deals with health data. All code has test and you're welcome to inspect the repository yourself or point out any specific security concerns if you notice them.

Regarding licensing: the AGPL license applies to the project as a whole regardless of the tools used to write parts of the code.

If you have concrete technical feedback or security issues, I’d genuinely appreciate it.

[–] sonofearth@lemmy.world 32 points 4 days ago* (last edited 4 days ago) (5 children)

You should add a disclaimer stating that you have used an LLM. I have done so for a tool I built with an LLM that I needed, because I don’t know jackshit about coding and I am not gonna pretend I do.

[–] chicken@lemmy.dbzer0.com 22 points 4 days ago* (last edited 4 days ago)

because I don’t know jackshit about coding and I am not gonna pretend I do.

But if OP does know and applies that knowledge to what they are doing, it's not the same thing and doesn't make sense to have the same disclaimer.

[–] terraincognita@lemmy.world 13 points 4 days ago

Partially agree, but I do know how to code and use it as a tool.

[–] Zak@lemmy.world -4 points 4 days ago

Why?

It makes sense to try to give users an idea of how robust a project is, but the exact details of the tools involved in its creation rarely add much to that. It gets a little weird with LLMs because they allow someone with no programming skill to create software that appears to work, which ought to be disclosed; "I don't know what I'm doing and I asked a robot to make this" does indicate unreliable code. A skilled developer having an LLM fill in some extra test cases, on the other hand can only make the project more robust.

[–] terraincognita@lemmy.world -1 points 4 days ago (1 children)

You can see that I use some of metrics, like test coverage, estimates and so on to prove its validation as potentially serious project, that will grow from a pet one.

[–] Tibi@discuss.tchncs.de 8 points 4 days ago (1 children)

Testcoverage by ai generated Tests is close to worthless. "Tests are only as good as the person writing them"

Did you generate your tests?

[–] terraincognita@lemmy.world 1 points 3 days ago

I agree with you, therefore I also need contributors for that. It is difficult to run this on my own, as I have basic in coding, but not a tester, so I have to use agentic workflow to check after it was generated, so it is not just like hiding sh*t.

[–] IanTwenty@piefed.social 10 points 4 days ago (1 children)

The danger being raised with the licensing is that you can't license something if you're not considered to be the author. There are growing examples of courts and lawmakers determining AI output to be public domain:

The US Supreme Court recently refused to reconsider Thaler v. Perlmutter, in which the plaintiff sought to overturn a lower court decision that he could not copyright an AI-generated image. This is an area of ongoing concern among the defenders of copyleft because many open source projects incorporate some level of AI assistance. It's unclear how much AI involvement in coding would dilute the human contribution to the extent that a court would disallow a copyright claim.

https://www.theregister.com/2026/03/06/ai_kills_software_licensing/

This is an evolving, global situation and hard to know what to do right now. I think what you've got is fine though - you've made it clear your intention is to license with AGPL. It's just that depending on the jurisdiction it might be public domain instead.

This is another reason to be clear about the use of AI in the README so your users can make an informed decision.

[–] terraincognita@lemmy.world 4 points 4 days ago

I agree, though there is a difference in case you rovided and mine. It is a human-directed work. Thousands of libraries, Kubernetes, Kubernetes still live and license is valid.

[–] militaryintelligence@lemmy.world 1 points 4 days ago (3 children)

How does AI help with productivity? I've gotten so many false answers that I quit trusting it

[–] prenatal_confusion@feddit.org 15 points 4 days ago (1 children)

Imagine you are on the ground under your car and need a different tool. You ask for it and somebody hands it to you. That person is young and inexperienced. It is up to You to check if it's the right tool, and if not pass it back (and in this example tell the person about the error and help them correct it).

And sure, You can always crawl out and get the tool yourself and sometimes that is the only option and in coding terms in my opinion best practice. But you can be faster with your helper. Use it appropriately and see how it affects your work. And that's the point, your work. Don't pass responsibility or thought off to AI.

[–] militaryintelligence@lemmy.world 2 points 3 days ago (1 children)

Ok but give me a wrench example in coding terms. What wrench are you wanting? I really am curious

[–] prenatal_confusion@feddit.org 2 points 3 days ago* (last edited 3 days ago)

"how would you approach this task where I have x prerequisite and want y"

It's like taking the paper of your classmates as "inspiration". It's a lie that it is only inspiration but it's also not a verbatim copy and got me on the right path.

[–] moriquende@lemmy.world 10 points 4 days ago

Because it's able to write boilerplate faster than a human. And because it's able to perform refactorings that are not possible with IDEs or regex due to their lack of structure. Also because you can ask it to review your files and it does find bugs that would otherwise be missed at first. There's a huge difference between vibe-coded slop and using the tools available to you effectively.

[–] SorryQuick@lemmy.ca 3 points 3 days ago (1 children)

I use it all the time as a kind of brainstorming tool.

“I want to do X (and details), can you tell me what tools or algorithms are available to me? List their pros and cons and give me some comparison”

Or on a somewhat recent project of mine, I has to effectively stub an entire library (but didn’t have to be done well), so I just told AI “take this page (the docs) and generate empty function stubs from it”. It doesn’t need to be high quality since it doesn’t run, it’s just to fool the dotnet engine.

I also tend to ask AI to add logging to some functions, since it’s annoying to do and impossible to mess up.

Best answer I've read. I get why it's used, I just don't trust it because there's got to be a catch as hard as companies are pushing it. It's available for free, so we must be the product somehow

[–] dogs0n@sh.itjust.works -1 points 4 days ago

I'm guessing you let the AI make the tests and everything, which wouldn't give me much reassurance that any of the code is good. Sadly AI will jump through any hoops it can to get tests to pass if it can't get the code working.

I think people who let AI run wild to create a whole app should write the tests themselves or at least only with line completion (jusdging by a quick look at the project files, I am guessing an AI did everything).

Could be food for thought?