this post was submitted on 28 Sep 2023
1251 points (98.2% liked)
Programmer Humor
19512 readers
1237 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
When I get helper functions from stack overflow or similar, I normally add a comment with a link to the article, mostly for my own sake so if there's any problems later I can re-read the article to get more info, or use it to try and find other solutions.
You’re supposed to do that anyway. Code on SO is licensed as CC BY-SA, which requires attribution.
The links from that post and top comment point out that that initiative was dropped. It got mired down in bikeshedding from hundreds of opinions and SO eventually just said, "Fuck it."
The MIT announcement thread was edited with the cancellation announcment:
The top comment from your link points out the current license:
And CC BY-SA is the only license listed on the official help page.
I used to do that on complete copy and paste parts.
Now we aren't allowed to do so. If stackoverflow.com is used you have to adjust the answer so that in court your code will not be a copy. They are afraid of users licenseing their code afterward.
For JS shit I usually have to rewrite them because they aren't production quality in terms of readability. Still really useful for getting answers on obscure stuff
The quality is definitely varying, the hardest part is to find a example that fits what you expect, or looks like it can be refactored into what you need.