Assessment of open-ended assignments such as programming projects is
a complex and time-consuming task. When students learn to program,
however, they benefit from receiving timely feedback, which requires an
assessment of their current work. Our goal is to build a tool that
assists in this process by partially automating the …
Project-based courses are crucial to gain practically relevant
knowledge in modelling and programming education. However, they fall
into the “ill-defined” domain: there are many possible solutions; the
quality of a deliverable is subjective and not formally assessable;
reaching the goals means designing new artefacts and analysing new
information; and the …
In the programming course of our engineering design degree tutorials
are the focal point of learning. This is especially so since we employ a
tinkering based educational approach, in which students explore, from
the very beginning, the material by self-defined projects. The
assignment defines ingredients to use and sets expectations …
Individual feedback is a core ingredient of a personalised learning
path. However, it also is time-intensive and, as a teaching form, it is
not easily scalable. In order to make individual feedback realisable for
larger groups of students, we develop tool support for teaching
assistants to use in the process …
The aim of the Atelier project is to develop an online platform that
creates an atelier-like setting that emphasises collaboration and
sharing of ideas. It is built for the Community of Practice of students,
student assistants, and lecturers involved in teaching programming in
Processing in the first year of the …
With online forms of education, it has become harder to ‘gauge the
room’ and get an impression of how well students are following along. We
introduce Apollo, a tool that automatically analyses code uploaded by
students to get an overview of their progression towards the learning
objectives of the course …
How to use FAKE to automatically set version numbers based on your
Git history.
For Fake.StaticGen,
I wanted to have a semi-automated way of determining the version number
for each release. Inspired by Nerdbank.GitVersioning,
I liked the idea of having a unique version for every commit, but I …
.NET Core versioning is a mess. There are lots and lots and lots of
version numbers, from runtime to SDK, from Visual Studio to languages
and of course .NET Standard. So what SDK corresponds to which runtime
again? I know there some sort of a system, but it differs per …
To display version information about .NET Core on versionsof.net,
I had to decode the releases.json files in the dotnet/core repo. Not a big
problem, you’d think. These are just JSON files, how hard can it be?
That’s fair, but the schema, nor the data of …