projects-overview

This document lists all the public repositories of the france-ioi organization.

All of our tools are under MIT License, even when the License is not specified in the repository.

All of our tasks published in these repositories are under CC-BY-SA license.

This repository also hosts some documentation common to projects on GitHub pages.

Presentation websites

These are just basic presentation websites for contests organized by France-ioi

Login module

Algorea learning platform

Bebras contest platform

Production versions of the contest side of this platform are available here (among other places): * concours.castor-informatique.fr * epreuve.concours-alkindi.fr

Alkindi contest platform

This platform is used to run the rounds 2 and up of the Alkindi cryptography contest. Students that are qualified can log in, create or join teams, access to the current round of tasks and collaborate to solve them. alkindi-frontend alkindi-backend

Alkindi tasks

Tasks for the Alkindi platform are developed separately, but do not use the task API yet. They can mostly be tested independently of the platform, but are not yet ready to be integrated in other platforms. alkindi-task-lib alkindi-task-adfgx alkindi-task-playfair alkindi-task-example

Codecast learning tool

The codecast project is a C language interpreter and debugger that runs in the browser, except for the parsing stage which is done on the server using clang. The tool is designed as an educational tool. Teachers can record a session where they speak while using the tool to demonstrate the execution of C code to teach a new concept. The recording can then be played by students that can interrupt it at any time to take over and play with the debugger. It can be tested on codecast.france-ioi.org, try the examples in the top-right corner. codecast: recording/replaying events and voice persistent-c: C interpreter in the browser * c-to-json: uses clang to parse C and send a json AST to the client

Monitoring tools

Task integration API

This API’s purpose is to make it easy to integrate a given task in different platforms, and for platforms to use tasks from all types of sources. The API is documented here pem-task Scripts that are part of the task-side of the task integration API. pem-platform Scripts that are part of the platform-side of the task integration API pem-task-validator A tool to validate that tasks and platforms conform to the Task integration API. It also provides a way to check that grading works as expected. fioi-task-importer A tool to import tasks from svn (documentation here): * For server evaluated tasks, import their content into a mysql database of tasks, to be used by TaskPlatform * For pure client tasks (bebras-based) or presentation, simply place the files on a server. (This is temporary) * lti-to-bebras Wrapper to present tasks that conform to our Integration API, as LTI-compliant tasks. (also used with login-module to authenticate users through LTI)

Server-evaluated programming tasks

This set of tools is used to offer programming tasks, where the solutions of the students are sent to servers to be graded. TaskPlatform This is the main interface that hosts programming tasks, and is the user-facing entry points of programming tasks. fioi-editor2 This is the ace-based multi-file editor used by TaskPlatform to let the user edit different solutions in different languages, as well as different test cases. Also integrates a Blockly editor. submission-manager This is an interface that presents the results of the grading of a submission. It is intended to be integrated in the TaskPlatform interface, or any similar interface. graderqueue Submissions from students are sent to this queue, and different servers connect to that queue to obtain their next submission to grade. The repository also includes graderserver, which fetches tasks from this queue and sends them for evaluation to taskgrader. taskgrader This is the tool that actually grades a submission, running it within a sandbox (isolate), on a list of specified test cases, etc. The repository includes lots of tools to create, test and submit tasks (documentation here). Jvs2Java This is a simple script that converts programs written in the JavaScool language (a simplified version of Java), into pure Java, so that they can be graded

Bebras tasks

These tasks can be tested as part of our contest archive on concours.castor-informatique.fr, or directly on castor-informatique.fr/questions.

Tasks libraries

Task editor

Bebras review

Synchronization framework

Forks of external tools