Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/frontend/course/assignments/consts.ts
Views: 687
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45export const STUDENT_SUBDIR = "student";67// default timeout of 1 minute per cell8export const NBGRADER_CELL_TIMEOUT_MS: number = 60 * 1000;9// default timeout of 10 minutes for whole notebook10export const NBGRADER_TIMEOUT_MS: number = 10 * 60 * 1000;1112// default max output of 1 million characters per cell13export const NBGRADER_MAX_OUTPUT_PER_CELL: number = 500000;14// default max output of 4 million characters for whole notebook15export const NBGRADER_MAX_OUTPUT: number = 4000000;1617// filename of the peer grading guide18export const PEER_GRADING_GUIDE_FILENAME = "GRADING-GUIDE.md";1920// Everything from GRADING_GUIDELINES_GRADE_MARKER to GRADING_GUIDELINES_COMMENT_MARKER21// is parsed as a numerical grade, if possible. i18n's don't mess this up! Also,22// changing this would break outstanding assignments, so change with caution.23// A fix24// would be to store these strings somewhere when pushing the assignment out, so that25// the same ones are used when collecting and parsing. But that will take a few hours26// more work, and it is only necessary if we decide to change these. Whoever decides27// to change these has to do that work.28export const PEER_GRADING_GUIDELINES_GRADE_MARKER =29"OVERALL GRADE (a single number):";30export const PEER_GRADING_GUIDELINES_COMMENT_MARKER =31"COMMENTS ABOUT GRADE (student will see, but not who made them):";3233export const PEER_GRADING_DEFAULT_GUIDELINES = `34Put your final overall score below after "${PEER_GRADING_GUIDELINES_GRADE_MARKER}"353637INSTRUCTOR: REPLACE THIS WITH INSTRUCTIONS FOR STUDENTS383940${PEER_GRADING_GUIDELINES_GRADE_MARKER}41424344${PEER_GRADING_GUIDELINES_COMMENT_MARKER}4546`;474849