-
Notifications
You must be signed in to change notification settings - Fork 4.3k
[Term Entry] C# Math-functions: SinCos() #7970
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Term Entry] C# Math-functions: SinCos() #7970
Conversation
Added documentation for the Math.SinCos() method which returns both the sine and cosine of a given angle as a tuple. This method is more efficient than calling Math.Sin() and Math.Cos() separately. Resolves #7953
0349100 to
4ed0697
Compare
|
@mamtawardhani Obligatory confession: I did this in three minutes with https://claude.ai/code The fastest ever. All I had to do was type in "Work on Issue #7953". I am in shock, now we can do dozens of issues in a single day. Would that be okay, for this issue and future ones? |
mamtawardhani
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good for a second review! 🚀
dakshdeepHERE
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with minor changes 🚀
|
👋 @ylevental 🎉 Your contribution(s) can be seen here: https://www.codecademy.com/resources/docs/c-sharp/math-functions/sincos Please note it may take a little while for changes to become visible. |
|
This article and all articles by this author were written by AI: https://www.reddit.com/r/ClaudeAI/comments/1ozytsi/thanks_to_claude_code_i_was_able_to_write_ten/ |
You are clearly not the wise guy you think you are. I have reported you for disruptive behavior and harassment -- to the Codecademy GitHub repo and to GitHub administration. |
|
Not trying to be a wise guy. I don't think Code Academy should give a platform to AI written articles. Ethical reasons aside, this does violate their contribution docs
|
This rule was written during the early stages of AI, when most output was patent nonsense. I believe it should be amended given recent dramatic improvements, where a person would have to simply disclose they used AI. I will put in a formal request later for this. |
Regardless of when the rule is written, its still the rules, and its still valid. |
You could just have made a single master post, which would have been far more efficient. I will apologize in my formal request, just in case. These articles are very basic in nature. The main issue would have been inaccuracy, which didn't even happen. |
|
I would definitely argue that is not the main issue. Accuracy is one issue, but there are many issues with using AI to write articles like this |
Please direct all critiques to #8014 to keep everything more organized. I just created this issue. Remember to be civil and follow GitHub rules. |
Added documentation for the Math.SinCos() method which returns both the sine and cosine of a given angle as a tuple. This method is more efficient than calling Math.Sin() and Math.Cos() separately.
Resolves #7953
Description
Added documentation for the
Math.SinCos()method in C# math-functions. This method returns both the sine and cosine of a given angle as a tuple, which is more efficient than callingMath.Sin()andMath.Cos()separately when both values are needed.The documentation includes:
Issue Solved
Closes #7953
Type of Change
Checklist
mainbranch.Issues Solvedsection.