From 510aea76bc846144309d0e8476f36971248faf40 Mon Sep 17 00:00:00 2001 From: Yifan Zhu Date: Thu, 21 Mar 2024 16:07:15 -0500 Subject: [PATCH 1/9] Update regrade policy in syllabus --- _pages/syllabus.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_pages/syllabus.md b/_pages/syllabus.md index bc2ccfad2..7b116fe5f 100644 --- a/_pages/syllabus.md +++ b/_pages/syllabus.md @@ -75,7 +75,11 @@ Opportunities for a small amount of extra credit may be offered and will be anno Grading issues should be raised with your TA during section or by email. Missing scores need to be reported within 3 days of being published. ### Regrades -At the end of the semester there will be a last chance regrade option for two weeks of machine problem or lab grades. To be able to take advantage of this opportunity you will need to have a perfect attendance grade after the drops. Please note that the score for each regrade will be capped at 90%. +At the end of the semester there will be a last chance regrade option for two weeks of machine problem or lab grades. If you have a perfect lab attendance grade after the drops, you will receive a bonus and have the option to regrade three weeks of assignments instead. Please note that the exact number of regrade weeks is subject to change, and we will announce the definitive regrade policy near the end of a semester. + +If you want to regrade a multi-week machine problem, you must regrade all parts of the assignment together. For example, if you were to regrade malloc, you must use two weeks to regrade both part 1 and part 2 at the same time. + +If you decide to regrade an assignments, the new score will be capped at 90%, and it will replace your previous score **only if** it is higher. This means that a regrade cannot lower your grades, only increase them. ### Lab Attendance From 42aef4db2169161fbae07f969b16317b31e9842b Mon Sep 17 00:00:00 2001 From: Xinyi Wei <73124063+xwei16@users.noreply.github.com> Date: Fri, 22 Mar 2024 11:57:06 -0500 Subject: [PATCH 2/9] Update syllabus.md --- _pages/syllabus.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/_pages/syllabus.md b/_pages/syllabus.md index 7b116fe5f..dd5f1059e 100644 --- a/_pages/syllabus.md +++ b/_pages/syllabus.md @@ -75,11 +75,15 @@ Opportunities for a small amount of extra credit may be offered and will be anno Grading issues should be raised with your TA during section or by email. Missing scores need to be reported within 3 days of being published. ### Regrades -At the end of the semester there will be a last chance regrade option for two weeks of machine problem or lab grades. If you have a perfect lab attendance grade after the drops, you will receive a bonus and have the option to regrade three weeks of assignments instead. Please note that the exact number of regrade weeks is subject to change, and we will announce the definitive regrade policy near the end of a semester. +At the end of the semester there will be a last chance regrade option for two weeks of machine problem or lab grades. To be able to take advantage of this opportunity you will need to have a "perfect" (we define) attendance grade after the drops. -If you want to regrade a multi-week machine problem, you must regrade all parts of the assignment together. For example, if you were to regrade malloc, you must use two weeks to regrade both part 1 and part 2 at the same time. +When will this start? We will announce the regrade policy on [Ed](https://edstem.org/us/dashboard) later in the semester. -If you decide to regrade an assignments, the new score will be capped at 90%, and it will replace your previous score **only if** it is higher. This means that a regrade cannot lower your grades, only increase them. +How many assignments can be regraded? We will announce the regrade policy on [Ed](https://edstem.org/us/dashboard) later in the semester. + +Are there any exceptions or special conditions? We will announce the regrade policy on [Ed](https://edstem.org/us/dashboard) later in the semester. + +Please note that the score for each regrade will be capped at 90%. For the assignment's final grade, we will **automatically** use your higher score between the regrade score and the original score. ### Lab Attendance From 381e59d871f8ddcc02e8a62b3d47b2893e2cde59 Mon Sep 17 00:00:00 2001 From: Yifan Zhu Date: Sat, 23 Mar 2024 02:34:59 -0500 Subject: [PATCH 3/9] Remove claim that we do not support VSCode --- _tutorials/vscode.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/_tutorials/vscode.md b/_tutorials/vscode.md index dcb738650..5125119d6 100644 --- a/_tutorials/vscode.md +++ b/_tutorials/vscode.md @@ -3,16 +3,13 @@ layout: doc title: VS Code Tutorial --- -## Disclaimer -Although using VS Code can be helpful and possibly more intuitive than vim, we do not officially support it. This means that any problems you run into by using VS Code are up to you to solve. - ## Introduction Most of you have noticed that you must develop in your VMs for CS 341. This requires editing and writing code within the VM, which is usually done via the vim text editor. Vim is a great tool, and we highly encourage you to at least pick up the basics of vim so that you can be comfortable using it throughout your careers as software engineers. -That being said, we understand that it can be frustrating to use vim when you are working with large files and projects, and many of you would feel more comfortable using your traditional text editor of choice. We'll provide a series of steps here that will help you set up a development environment that lets you edit your code locally in VS Code (you can modify this process to use Atom or Sublime) and run the code in the VM. +That being said, we understand that it can be frustrating to use vim when you are working with large files and projects, and many of you would feel more comfortable using your traditional text editor of choice. We'll provide a series of steps here that will help you set up a development environment that lets you edit your code locally in VS Code (you can modify this process to use Atom or Sublime) and run the code in the VM. Feel free to -To be clear, you will not be running your code locally. You will still need to ssh into the VM to run your code (e.g. make, make test, running binaries, etc). You will be editing your code in VS code, which will then be synced to the VM. +To be clear, you will not be running your code locally. You will be editing and running your code on your VM through ssh (e.g. make, make test, running binaries, etc). However, you will be able to do all of that in VS code, which is synced to the VM through ssh. ## Steps @@ -38,4 +35,4 @@ Ensure that this successfully logs you into your VM, and navigate to an assignme 9. Once again hit Cmd + Shift + P and type in "SFTP: List". Click enter on the top, and then navigate to your CS 341 directory. You'll need to go in home/ and your netid and navigate from there. Once you're in your directory, click the dot at the top that says current folder. Your files should start slowly showing up in the left column of VS code. -10. Try editing a file. On your VM that you've ssh'd into in your terminal from Step #2, cat the file you just edited. You should see that your changes have shown up on your VM! You can now edit your code in VS code and then run it in your VM while you are on the VPN or on IllinoisNet. \ No newline at end of file +10. Try editing a file. On your VM that you've ssh'd into in your terminal from Step #2, cat the file you just edited. You should see that your changes have shown up on your VM! You can now edit your code in VS code and then run it in your VM while you are on the VPN or on IllinoisNet. From 68722351787443f6a417cdfb017e91b1a785689d Mon Sep 17 00:00:00 2001 From: Yifan Zhu Date: Sat, 23 Mar 2024 02:52:34 -0500 Subject: [PATCH 4/9] Add hint and link to VSCode tutorial --- _tutorials/development.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_tutorials/development.md b/_tutorials/development.md index d7249296f..7318b8da5 100644 --- a/_tutorials/development.md +++ b/_tutorials/development.md @@ -169,11 +169,10 @@ sudo apt-get install -y libc6-dbg This is your VM! You can `sudo` and install whatever you want on it (given that it is school appropriate and compliant with [VM Farm policies](https://answers.uillinois.edu/illinois.engineering/page.php?id=104597)) -You can install `vim` or `emacs`. If you've ever wanted to become terminal-savvy, this is definitely the course to do it! +You can install `vim` or `emacs`. If you've ever wanted to become terminal-savvy, this is definitely the course to do it! If you don't feel like learning a new language and want to stick to GUIs, you can also `ssh` into your machine and work on your code through VSCode, which is covered in greater detail in [this guide](https://cs341.cs.illinois.edu/tutorials/vscode). If anything is unclear, either post on the course forums or ask your TAs/CAs/fellow students! **Be careful about messing up your VM.** If your VM ever gets into an unusable state, please make a private post in the course forums **with your VM number**, and we will try to resolve it. - You may find ssh-copy-id useful (A web search using Google/Duck Duck Go is useful). You can also configure MS Code and other GUI editors to work remotely. However some people still use 'out of the box' terminal-based editors like vi/vim that you can find (or install) on even the smallest of Linux distributions, and work even on low-bandwidth connections. Have fun! In the worst case we can reset your VM back to its initial state. From 42f775ccd06c0d88c0f5781cf007fae119cf7047 Mon Sep 17 00:00:00 2001 From: Xinyi Wei <73124063+xwei16@users.noreply.github.com> Date: Wed, 24 Apr 2024 16:52:41 -0500 Subject: [PATCH 5/9] Update regrade --- _pages/syllabus.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_pages/syllabus.md b/_pages/syllabus.md index dd5f1059e..0e57c4af5 100644 --- a/_pages/syllabus.md +++ b/_pages/syllabus.md @@ -77,11 +77,11 @@ Grading issues should be raised with your TA during section or by email. Missing ### Regrades At the end of the semester there will be a last chance regrade option for two weeks of machine problem or lab grades. To be able to take advantage of this opportunity you will need to have a "perfect" (we define) attendance grade after the drops. -When will this start? We will announce the regrade policy on [Ed](https://edstem.org/us/dashboard) later in the semester. +When will this start? For Fall semesters, it will be around the middle of April; for Spring semesters, it will start around the Thanksgiving week. -How many assignments can be regraded? We will announce the regrade policy on [Ed](https://edstem.org/us/dashboard) later in the semester. +How many assignments can be regraded? 3 weeks of assignments. We may provide some bonus if you attend >= 9/13 labs. -Are there any exceptions or special conditions? We will announce the regrade policy on [Ed](https://edstem.org/us/dashboard) later in the semester. +More info? We will announce the regrade policy on [Ed](https://edstem.org/us/dashboard) later in the semester. Please note that the score for each regrade will be capped at 90%. For the assignment's final grade, we will **automatically** use your higher score between the regrade score and the original score. From 48f6730514249efd0f4b044990f08112a4bc1df9 Mon Sep 17 00:00:00 2001 From: Xinyi Wei <73124063+xwei16@users.noreply.github.com> Date: Wed, 24 Apr 2024 16:57:56 -0500 Subject: [PATCH 6/9] Update "Lab Attendance" --- _pages/syllabus.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pages/syllabus.md b/_pages/syllabus.md index 0e57c4af5..caee56500 100644 --- a/_pages/syllabus.md +++ b/_pages/syllabus.md @@ -87,7 +87,7 @@ Please note that the score for each regrade will be capped at 90%. For the assig ### Lab Attendance -Chicago students will have their own online lab (arranged with the TA). Urbana-Champaign students have in-person labs in Siebel. Labs are required and there is also a small reward for in-person attendance: Your final exam contribution (23%) can be reduced to 20% by attending all labs. Partial attendance of in-person labs will be prorated. For example, if after allowing for 2 drops, you attended 6 of 9 in-person labs then your final exam will be worth 21%, and you will have 2% of full course credit. +Chicago students will have their own online lab (arranged with the TA). Urbana-Champaign students have in-person labs in Siebel. Labs are required and there is also a small reward for in-person attendance: Your final exam contribution (23%) can be reduced to 20% by attending all labs. Partial attendance of in-person labs will be prorated. For example, if after allowing for 2 drops, you attended 6 of 9 in-person labs (11 labs in total after drops **in real**) then your final exam will be worth 21%, and you will have 2% of full course credit. What this means: If you choose to complete this course virtually, or are sick and unable to attend labs, or do not wish to be in close contact with other students you can still succeed and earn a high grade. From ce99bf30f2df7c2c44e617814939b105a0828b6f Mon Sep 17 00:00:00 2001 From: Xinyi Wei <73124063+xwei16@users.noreply.github.com> Date: Wed, 24 Apr 2024 17:00:42 -0500 Subject: [PATCH 7/9] Update "Autograding Policy" --- _pages/syllabus.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_pages/syllabus.md b/_pages/syllabus.md index caee56500..633a3c09a 100644 --- a/_pages/syllabus.md +++ b/_pages/syllabus.md @@ -119,7 +119,7 @@ Forgot to commit or your committed code that does not compile? Zero. The basic h There are two kinds of autograder runs: - * Pre-deadline runs: **You are responsible for starting these.** Our team has worked really hard to improve our grading system and make it more reliable and flexible. Now, you can schedule your pre-deadline autograder runs using the on-demand grading system, that you can find on the `Assignments` page! You have to log in with your GitHub Enterprise account. Assignments will become visible on the web app as we release them. You will get one AG run a day which you can trigger at your disposal. Please be careful in using these. **These pre-deadline runs do not roll over.** We recommend that you develop and work on your assignments every day to make the best of this system. Once you click "Grade Now", your code will start getting tested on our grading machines. You can expect to see feedback in your CS 341 repository's `_feedback` branch in a few minutes. In rare circumstances, the grading process might fail (if your code made our Docker containers crash). In this scenario, there will be no visible feedback. You should make a private post in the course forums and we will deal with this on a per-student basis. Use these runs for feedback as you work on the assignment. **These have no effect on your grade for the assignment.** + * Pre-deadline runs: **You are responsible for starting these.** Our team has worked really hard to improve our grading system and make it more reliable and flexible. Now, you can schedule your pre-deadline autograder runs using the on-demand grading system, that you can find on the `Assignments` page! You have to log in with your GitHub Enterprise account. Assignments will become visible on the web app as we release them. You will get one AG run a day which you can trigger at your disposal. Please be careful in using these. **These pre-deadline runs do not roll over.** We recommend that you develop and work on your assignments every day to make the best of this system. Once you click "Grade Now", your code will start getting tested on our grading machines. You can expect to see feedback in your CS 341 repository's `_feedback` branch in a few minutes. In rare circumstances, the grading process might fail (if your code made our Docker containers crash). In this scenario, there will be no visible feedback. You should make a private post in the course forums and we will deal with this on a per-student basis. Use these runs for feedback as you work on the assignment. **Students are 100% responsible for the pre-deadline runs and they have no effect on your grade for the assignment.** * Deadline runs: These will be triggered by us and the grades you get on these will be counted towards your final grades. The results will show up in the `_feedback` branch as usual. Labs: @@ -134,7 +134,7 @@ MPs: We will test your code on a multi-core machine; testing on your own laptop is insufficient. Don't be surprised if race conditions that go undetected on a different machine cause your code to fail. We encourage you to develop and test your code on your CS 341 VM, which is near-identical to the grading machine. We will attempt to give you some partial credit if your code passes the tests. -If you have a question about your personal autograder results after the final autograde run, then feel free to make a private post in the course forums titled "<assignment name> Autograde Question" with the folders/tags/labels `autograder` and `` selected. +If you have a question about your personal autograder results after the final autograde run, then feel free to make a private post in the course forums titled "<assignment name> Autograde Question" with the folders/tags/labels `` and `` selected. * It will take time to go through autograder questions, so please do not expect an immediate (or even same day or same week) response. We will try to answer you as quickly as possible. * _You must show us your test cases first. If they are not close to exhaustive, we reserve to right to not answer your question._ From bb897107acca51e5005806003af55716d865c3f4 Mon Sep 17 00:00:00 2001 From: Xinyi Wei <73124063+xwei16@users.noreply.github.com> Date: Wed, 24 Apr 2024 17:02:27 -0500 Subject: [PATCH 8/9] Update vscode.md - typo --- _tutorials/vscode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_tutorials/vscode.md b/_tutorials/vscode.md index 5125119d6..b97fa58b7 100644 --- a/_tutorials/vscode.md +++ b/_tutorials/vscode.md @@ -7,7 +7,7 @@ title: VS Code Tutorial Most of you have noticed that you must develop in your VMs for CS 341. This requires editing and writing code within the VM, which is usually done via the vim text editor. Vim is a great tool, and we highly encourage you to at least pick up the basics of vim so that you can be comfortable using it throughout your careers as software engineers. -That being said, we understand that it can be frustrating to use vim when you are working with large files and projects, and many of you would feel more comfortable using your traditional text editor of choice. We'll provide a series of steps here that will help you set up a development environment that lets you edit your code locally in VS Code (you can modify this process to use Atom or Sublime) and run the code in the VM. Feel free to +That being said, we understand that it can be frustrating to use vim when you are working with large files and projects, and many of you would feel more comfortable using your traditional text editor of choice. We'll provide a series of steps here that will help you set up a development environment that lets you edit your code locally in VS Code (you can modify this process to use Atom or Sublime) and run the code in the VM. To be clear, you will not be running your code locally. You will be editing and running your code on your VM through ssh (e.g. make, make test, running binaries, etc). However, you will be able to do all of that in VS code, which is synced to the VM through ssh. From 18b890f6b5dac77a3a65f6b9d24de4e21cd5de0e Mon Sep 17 00:00:00 2001 From: Yifan Zhu Date: Wed, 22 Jan 2025 15:49:22 -0600 Subject: [PATCH 9/9] Make regrade numbers consistent --- _pages/syllabus.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pages/syllabus.md b/_pages/syllabus.md index 633a3c09a..ed3332b52 100644 --- a/_pages/syllabus.md +++ b/_pages/syllabus.md @@ -75,7 +75,7 @@ Opportunities for a small amount of extra credit may be offered and will be anno Grading issues should be raised with your TA during section or by email. Missing scores need to be reported within 3 days of being published. ### Regrades -At the end of the semester there will be a last chance regrade option for two weeks of machine problem or lab grades. To be able to take advantage of this opportunity you will need to have a "perfect" (we define) attendance grade after the drops. +At the end of the semester there will be a last chance regrade option for three weeks of machine problem or lab grades. To be able to take advantage of this opportunity you will need to have a "perfect" (we define) attendance grade after the drops. When will this start? For Fall semesters, it will be around the middle of April; for Spring semesters, it will start around the Thanksgiving week.