From 22fff79e523b16fd310cbb64c98920216aaa430f Mon Sep 17 00:00:00 2001 From: Zarina Kurbatova Date: Mon, 27 Nov 2023 17:46:21 +0100 Subject: [PATCH] Add surveys to Introduction and Conclusion sections --- .../kotlin/jetbrains/refactoring/course/conclusion/Main.kt | 5 +++++ Conclusion/FeedbackSurvey/FeedbackSurvey/task-info.yaml | 5 +++++ .../FeedbackSurvey/FeedbackSurvey/task-remote-info.yaml | 1 + Conclusion/FeedbackSurvey/FeedbackSurvey/task.md | 6 ++++++ Conclusion/FeedbackSurvey/lesson-info.yaml | 3 +++ Conclusion/FeedbackSurvey/lesson-remote-info.yaml | 1 + Conclusion/section-info.yaml | 3 ++- .../jetbrains/refactoring/course/introduction/Main.kt | 5 +++++ .../GettingToKnowYou/GettingToKnowYou/task-info.yaml | 5 +++++ .../GettingToKnowYou/GettingToKnowYou/task-remote-info.yaml | 1 + Introduction/GettingToKnowYou/GettingToKnowYou/task.md | 5 +++++ Introduction/GettingToKnowYou/lesson-info.yaml | 3 +++ Introduction/GettingToKnowYou/lesson-remote-info.yaml | 1 + Introduction/section-info.yaml | 1 + 14 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 Conclusion/FeedbackSurvey/FeedbackSurvey/src/main/kotlin/jetbrains/refactoring/course/conclusion/Main.kt create mode 100644 Conclusion/FeedbackSurvey/FeedbackSurvey/task-info.yaml create mode 100644 Conclusion/FeedbackSurvey/FeedbackSurvey/task-remote-info.yaml create mode 100644 Conclusion/FeedbackSurvey/FeedbackSurvey/task.md create mode 100644 Conclusion/FeedbackSurvey/lesson-info.yaml create mode 100644 Conclusion/FeedbackSurvey/lesson-remote-info.yaml create mode 100644 Introduction/GettingToKnowYou/GettingToKnowYou/src/main/kotlin/jetbrains/refactoring/course/introduction/Main.kt create mode 100644 Introduction/GettingToKnowYou/GettingToKnowYou/task-info.yaml create mode 100644 Introduction/GettingToKnowYou/GettingToKnowYou/task-remote-info.yaml create mode 100644 Introduction/GettingToKnowYou/GettingToKnowYou/task.md create mode 100644 Introduction/GettingToKnowYou/lesson-info.yaml create mode 100644 Introduction/GettingToKnowYou/lesson-remote-info.yaml diff --git a/Conclusion/FeedbackSurvey/FeedbackSurvey/src/main/kotlin/jetbrains/refactoring/course/conclusion/Main.kt b/Conclusion/FeedbackSurvey/FeedbackSurvey/src/main/kotlin/jetbrains/refactoring/course/conclusion/Main.kt new file mode 100644 index 0000000..0db3d75 --- /dev/null +++ b/Conclusion/FeedbackSurvey/FeedbackSurvey/src/main/kotlin/jetbrains/refactoring/course/conclusion/Main.kt @@ -0,0 +1,5 @@ +package jetbrains.refactoring.course.conclusion + +fun main() { + // Write your solution here +} diff --git a/Conclusion/FeedbackSurvey/FeedbackSurvey/task-info.yaml b/Conclusion/FeedbackSurvey/FeedbackSurvey/task-info.yaml new file mode 100644 index 0000000..93798ed --- /dev/null +++ b/Conclusion/FeedbackSurvey/FeedbackSurvey/task-info.yaml @@ -0,0 +1,5 @@ +custom_name: Feedback survey +type: theory +files: + - name: src/main/kotlin/jetbrains/refactoring/course/conclusion/Main.kt + visible: true diff --git a/Conclusion/FeedbackSurvey/FeedbackSurvey/task-remote-info.yaml b/Conclusion/FeedbackSurvey/FeedbackSurvey/task-remote-info.yaml new file mode 100644 index 0000000..fefb20f --- /dev/null +++ b/Conclusion/FeedbackSurvey/FeedbackSurvey/task-remote-info.yaml @@ -0,0 +1 @@ +id: 441980153 diff --git a/Conclusion/FeedbackSurvey/FeedbackSurvey/task.md b/Conclusion/FeedbackSurvey/FeedbackSurvey/task.md new file mode 100644 index 0000000..2f2c148 --- /dev/null +++ b/Conclusion/FeedbackSurvey/FeedbackSurvey/task.md @@ -0,0 +1,6 @@ +# Feedback survey + +Thank you for taking our Introduction to IDE Code Refactoring course! +We would really appreciate it if you could take a few minutes to +answer [our survey](https://surveys.jetbrains.com/s3/course-feedback-code-refactoring). +Your feedback will help us improve this course and make it relevant for future students. \ No newline at end of file diff --git a/Conclusion/FeedbackSurvey/lesson-info.yaml b/Conclusion/FeedbackSurvey/lesson-info.yaml new file mode 100644 index 0000000..987fac3 --- /dev/null +++ b/Conclusion/FeedbackSurvey/lesson-info.yaml @@ -0,0 +1,3 @@ +custom_name: Feedback survey +content: + - FeedbackSurvey diff --git a/Conclusion/FeedbackSurvey/lesson-remote-info.yaml b/Conclusion/FeedbackSurvey/lesson-remote-info.yaml new file mode 100644 index 0000000..9ce2862 --- /dev/null +++ b/Conclusion/FeedbackSurvey/lesson-remote-info.yaml @@ -0,0 +1 @@ +id: 811555218 diff --git a/Conclusion/section-info.yaml b/Conclusion/section-info.yaml index f188005..1a1dc9e 100644 --- a/Conclusion/section-info.yaml +++ b/Conclusion/section-info.yaml @@ -1,3 +1,4 @@ custom_name: "Section 8: Conclusion" content: -- Conclusion + - Conclusion + - FeedbackSurvey diff --git a/Introduction/GettingToKnowYou/GettingToKnowYou/src/main/kotlin/jetbrains/refactoring/course/introduction/Main.kt b/Introduction/GettingToKnowYou/GettingToKnowYou/src/main/kotlin/jetbrains/refactoring/course/introduction/Main.kt new file mode 100644 index 0000000..02019d6 --- /dev/null +++ b/Introduction/GettingToKnowYou/GettingToKnowYou/src/main/kotlin/jetbrains/refactoring/course/introduction/Main.kt @@ -0,0 +1,5 @@ +package jetbrains.refactoring.course.introduction + +fun main() { + // Write your solution here +} diff --git a/Introduction/GettingToKnowYou/GettingToKnowYou/task-info.yaml b/Introduction/GettingToKnowYou/GettingToKnowYou/task-info.yaml new file mode 100644 index 0000000..4a509c7 --- /dev/null +++ b/Introduction/GettingToKnowYou/GettingToKnowYou/task-info.yaml @@ -0,0 +1,5 @@ +type: theory +custom_name: GettingToKnowYou +files: + - name: src/main/kotlin/jetbrains/refactoring/course/introduction/Main.kt + visible: true diff --git a/Introduction/GettingToKnowYou/GettingToKnowYou/task-remote-info.yaml b/Introduction/GettingToKnowYou/GettingToKnowYou/task-remote-info.yaml new file mode 100644 index 0000000..a65875b --- /dev/null +++ b/Introduction/GettingToKnowYou/GettingToKnowYou/task-remote-info.yaml @@ -0,0 +1 @@ +id: 1517810155 diff --git a/Introduction/GettingToKnowYou/GettingToKnowYou/task.md b/Introduction/GettingToKnowYou/GettingToKnowYou/task.md new file mode 100644 index 0000000..5c7efa9 --- /dev/null +++ b/Introduction/GettingToKnowYou/GettingToKnowYou/task.md @@ -0,0 +1,5 @@ +# Getting to know you + +Thank you for taking our Introduction to IDE Code Refactoring course! +We would be happy to get to know you a bit better, so we’re asking you to fill +in [this brief form](https://surveys.jetbrains.com/s3/course-introduction-code-refactoring). \ No newline at end of file diff --git a/Introduction/GettingToKnowYou/lesson-info.yaml b/Introduction/GettingToKnowYou/lesson-info.yaml new file mode 100644 index 0000000..ee1d0a5 --- /dev/null +++ b/Introduction/GettingToKnowYou/lesson-info.yaml @@ -0,0 +1,3 @@ +custom_name: Getting to know you +content: + - GettingToKnowYou diff --git a/Introduction/GettingToKnowYou/lesson-remote-info.yaml b/Introduction/GettingToKnowYou/lesson-remote-info.yaml new file mode 100644 index 0000000..cd8864e --- /dev/null +++ b/Introduction/GettingToKnowYou/lesson-remote-info.yaml @@ -0,0 +1 @@ +id: 998264157 diff --git a/Introduction/section-info.yaml b/Introduction/section-info.yaml index 2858431..3aaf7f4 100644 --- a/Introduction/section-info.yaml +++ b/Introduction/section-info.yaml @@ -1,3 +1,4 @@ content: - Introduction - JoinOurDiscordCommunity + - GettingToKnowYou \ No newline at end of file