• 1 Post
  • 10 Comments
Joined 7 months ago
cake
Cake day: November 13th, 2025

help-circle


  • How would you even verify “did this project use an LLM”?

    There are different ways, checking if a CLAUDE.md, AGENTS.md or SKILLS.md file is present is often enough. Obviously this isn’t bullet proof but it’s better than no disclosure in my opinion.

    disclosure tag doesn’t change whether the code is accurate, safe or good.

    I didn’t say it has to be a tag, what I had in mind was a simple disclosure in the post description explaining how you used AI for the project (or just a simple “this project is AI assisted” if you dont know the extent, e.g: projects that aren’t yours).

    I don’t necessarily have an issue with experienced developers using AI to write the code for them which is what I mean with “when not used correctly”. I do take issue with inexperienced developers that create privacy related software without proper knowledge of what their code actually does (AKA vibe-coding) and going around promoting it as “privacy-friendly” and “secure” while that may not be the case.

    Maybe there are better ways to go about this though, which is partly why I created this post.







  • It’s hard to say with certainty, maybe I’m just nitpicking or the developer isn’t very experienced, but there are a few things that could hint towards it (for context, I’m a web developer):

    • lack of white-space and newlines
    • inconsistent indentation
    • a missing <!DOCTYPE html> and missing closing tags for the <body> and for a <div> element
    • <meta name="robots" content="index, follow"> but the robots.txt file that’s present does not match with its content
    • <meta itemprop="..." ...>: I have never actually seen this attribute before, apparently this is meant for SEO but I don’t think any modern website uses it
    • overriding styles that are written lines before it like:
      margin: 0 auto;
      margin-top: 60px;
      margin-bottom: 80px;
      
    • using var statements instead of let/const

    That’s what I gathered after skimming through the index.html file.

    Edit: I forgot to point out that the design of https://memdeklaro.org/ looks extremely vibe coded as well.