Home / Companies / Replit / Blog / January 2017

January 2017 Summaries

3 posts from Replit

Filter
Month: Year:
Post Summaries Back to Blog
Repl.it emphasizes the importance of feedback and prioritizes support for educators and students using their platform, recognizing the challenging yet impactful role of teaching. They have introduced an optional feature allowing assignment dependencies, ensuring students complete tasks in a specific order if the curriculum is designed that way. To enhance the learning process, locked assignments are made accessible in read-only mode, enabling students to preview and prepare for future tasks. Additionally, teachers have the flexibility to manage assignment visibility by keeping them as drafts or scheduling their publication for a specific date.
Jan 27, 2017 216 words in the original blog post.
Repl.it's code execution service allows users to build complex programs without timeboxing, but this also means they can hit infinite loops that cause browser crashes due to excessive output or running on the client-side. To address this, Repl.it has implemented measures such as streaming output from user programs directly to the browser, using pseudo-terminals and raw i/o, and implementing a frontend server in Go that limits output rate to 20 messages per second to prevent browser overload. For JavaScript languages, Repl.it uses Babel plugins to detect potential infinite loops and throws errors if certain conditions are met, such as running on a single thread or exceeding maximum iteration or time limits, allowing users to turn off this feature from settings.
Jan 23, 2017 1,076 words in the original blog post.
Repl.it aims to enhance programming accessibility by empowering teachers with control over the student experience in classrooms, specifically through the ability to reorder assignments via the classroom dashboard. Teachers can now select from seven sorting options including alphabetic, publish date, due date, and a manual drag-and-drop method, ensuring consistency between teacher and student views to prevent confusion. This update also simplifies the student interface by removing sorting options, with plans to introduce assignment dependencies that require sequential completion. This approach reflects Repl.it's commitment to supporting educators and streamlining the learning process.
Jan 19, 2017 207 words in the original blog post.