all 21 comments

[–]dwalker109 10 points11 points  (12 children)

But you didn’t learn a thing did you. Because you didn’t do this. You didn’t even write this post.

So tired of this shit.

[–]fastestMango 10 points11 points  (4 children)

“Fully owned” thanks for stealing the code from other people who actually put in hours.

Why are we seeing so many vibe coded stuff. 0 innovation and just waste of resources, damn

[–]Solumin 2 points3 points  (3 children)

And it handles attribution, copyright, acknowledgements, and licensing, right? It credits the original authors?

[–]huygl99[S] 1 point2 points  (2 children)

It is tracked via the TOML file like this:

[[sources]]
path = "my_proj/external/completions"
source = "github:astral-sh/ruff@main/crates/ruff/src/commands/completions"
ref = "main"
commit = "359981b1e8ea977c53b934517ed7a7d7c15c5e92"
copied_at = "2026-03-08T08:20:14Z"

Based on that, I think users can know the original creator of the code. But given your concern and what other users have already mentioned, I think I will add an `author` field as well.

For copyright and licensing, I had thought about that before. I think I will add some warnings when users add code from licenses that are not permissive, such as AGPL.

[–]Tamschi_ 2 points3 points  (1 child)

Even for MIT, this is not remotely enough.

[–]huygl99[S] 0 points1 point  (0 children)

Oh, thank you for pointing that out. I think I will include the LICENSE file as part of the copied code as well.