From 1f727d2e1748dc4b885c76ca5ab351f3d133eb24 Mon Sep 17 00:00:00 2001 From: Gleison <126490844+gvieira-dutra@users.noreply.github.com> Date: Mon, 17 Mar 2025 11:57:14 -0400 Subject: [PATCH 1/6] feat: add content for StyleCop (#8337) * Added content for StyleCop section * Update src/data/roadmaps/aspnet-core/content/stylecop-rules@R7Qk5hsEIl9dspQXdaJAJ.md * Update src/data/roadmaps/aspnet-core/content/stylecop-rules@R7Qk5hsEIl9dspQXdaJAJ.md --------- Co-authored-by: Arik Chakma --- .../content/stylecop-rules@R7Qk5hsEIl9dspQXdaJAJ.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/aspnet-core/content/stylecop-rules@R7Qk5hsEIl9dspQXdaJAJ.md b/src/data/roadmaps/aspnet-core/content/stylecop-rules@R7Qk5hsEIl9dspQXdaJAJ.md index 90022a147..9bb092720 100644 --- a/src/data/roadmaps/aspnet-core/content/stylecop-rules@R7Qk5hsEIl9dspQXdaJAJ.md +++ b/src/data/roadmaps/aspnet-core/content/stylecop-rules@R7Qk5hsEIl9dspQXdaJAJ.md @@ -1 +1,10 @@ -# StyleCop Rules \ No newline at end of file +# StyleCop Rules + +StyleCop is a tool used for developers to standardize their code and ensure they all follow the same syntax principles. With StyleCop, one standard can be defined in a `stylecop.json` file and shared across your team so that each member has the same guidelines when formatting your code. Beyond a single project, StyleCop can also be added as an extension, so all of the projects on your IDE follow the same formatting rules, this is especially useful if your organization follows the same rule standards for all projects. + +Visit the following resources to learn more: + +- [@opensource@StyleCop GitHub official page](https://github.com/StyleCop/StyleCop) +- [@opensource@StyeleCop Analyzers, a more modern version of StyleCop](https://github.com/DotNetAnalyzers/StyleCopAnalyzers) +- [@video@The StyleCop setup and Advantages](https://www.youtube.com/watch?v=dmpOKmz3lPw) +- [@article@StyleCop: A Detailed Guide to Starting and Using It](https://blog.submain.com/stylecop-detailed-guide/) From 16db649baf4b88b7c6a24ed5cd54d329470b887a Mon Sep 17 00:00:00 2001 From: Jawher Kl Date: Mon, 17 Mar 2025 20:22:18 +0100 Subject: [PATCH 2/6] fix: broken link (#8334) --- .../qa/content/regression-testing@XCeXiKvBblmDArfbWjDvw.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/qa/content/regression-testing@XCeXiKvBblmDArfbWjDvw.md b/src/data/roadmaps/qa/content/regression-testing@XCeXiKvBblmDArfbWjDvw.md index 935a4c199..9ab5bda98 100644 --- a/src/data/roadmaps/qa/content/regression-testing@XCeXiKvBblmDArfbWjDvw.md +++ b/src/data/roadmaps/qa/content/regression-testing@XCeXiKvBblmDArfbWjDvw.md @@ -4,6 +4,6 @@ Regression Testing is a type of software testing to confirm that a recent progra Visit the following resources to learn more: -- [@article@Regression Testing](https://www.javatpoint.com/regression-testing) +- [@article@Regression Testing](https://www.tpointtech.com/regression-testing) - [@article@What is Regression Testing with Test Cases](https://www.guru99.com/regression-testing.html) -- [@feed@Explore top posts about Testing](https://app.daily.dev/tags/testing?ref=roadmapsh) \ No newline at end of file +- [@feed@Explore top posts about Testing](https://app.daily.dev/tags/testing?ref=roadmapsh) From 98d8510b6007147e21f0f2f76340c62cb240740d Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Mon, 17 Mar 2025 17:15:35 +0000 Subject: [PATCH 3/6] Add UI --- src/components/GenerateCourse/AICourse.tsx | 3 + .../GenerateCourse/FineTuneCourse.tsx | 83 +++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 src/components/GenerateCourse/FineTuneCourse.tsx diff --git a/src/components/GenerateCourse/AICourse.tsx b/src/components/GenerateCourse/AICourse.tsx index 7d4ea4326..8a92cf99f 100644 --- a/src/components/GenerateCourse/AICourse.tsx +++ b/src/components/GenerateCourse/AICourse.tsx @@ -4,6 +4,7 @@ import { cn } from '../../lib/classname'; import { isLoggedIn } from '../../lib/jwt'; import { showLoginPopup } from '../../lib/popup'; import { UserCoursesList } from './UserCoursesList'; +import { FineTuneCourse } from './FineTuneCourse'; export const difficultyLevels = [ 'beginner', @@ -98,6 +99,8 @@ export function AICourse(props: AICourseProps) { + +