Skip to main content Skip to local navigation
Home » Category: 'lms'

lms

H5P: Time Restrictions with Exceptions

I like to do flipped classes with H5P plugins on Moodle. When I do so I set up “from” and “to” time restrictions to ensure that the homework is done during the class period. It doesn’t matter to me if the students are in the classroom or not. What’s important is that they’re doing homework […]

EECS Tool Highlight: Class Lists

If you’re an EECS instructor here at York University, you can obtain a lists of students that are currently in your course, text files that are easy to download and review. They’re outside of eClass and found in one of three ways: To access the lists on an EECS server like indigo1, use an SFTP […]

VPL: A Java Unit Test Example

The following is an example of the files needed to create a working Virtual Programming Lab exercise for Java: vpl_run.sh vpl_evaluate.sh MainClass.java StudentSolution.java TeacherReferenceSolutions.java TheTestClass.java With this you can evaluate one student submission against a single reference solution. Two methods are run: one is the student’s method and one is the teacher’s method. The output […]

Automated student testing in Java (Part 1)

As with earlier posts for Matlab, I’m putting together a set of exercises for automated student testing in introductory programming classes, but this time for Java. The idea is to integrate this into Virtual Programming Lab or secure lab tests. In a future post I’ll do a VPL version of this, but for now this […]

It’s time to watermark material on eClass

One of my teaching assistants uploaded my instructional material to Course Hero without my permission. It didn’t take me long to figure out who it was. I only had a handful of TAs and the TA used their university user ID as their Course Hero login. When I confronted the TA about it, the TA […]

Automated student testing of Matlab code, Part 1

It’s important to have dynamic 24/7 interactive activities for programming classes. There are plenty of solutions out there, including Matlab Grader and Möbius. The folks at Jetbrains have their Academy system, too. What I need, at this stage, is a no bells-and-whistles, auto-grader for Matlab code that can run a unit test on a student’s […]

VPL: Circuit Simulation Assignments with SPICE

Introduction In YorkU’s EECS Department, we have access to NGSPICE on our department’s Linux machines (via RemoteLab). NGSPICE is yet another variation on the venerable SPICE circuit simulator. Our the University’s Moodle system, eClass, we have access to Virtual Programming Lab, a framework for making interactive exercises for students. It is typically used with programming […]

VPL: Simplest Working Example

Virtual Programming Lab can be a little intimidating to use, but once you get the swing of things, it’s pretty good. So, let’s get you started with the simplest possible working example. We assume that: you have Moodle working at your institution someone has installed VPL on Moodle and you don’t need or have access […]

Welcome to my Classroom

The Teaching in Focus (TiF) conference at York was held online in 2021 due to the pandemic.  Here’s a list of the abstracts.  My “Welcome to my Classroom” talk was based on the work I did in EECS 1011, 1021 and 2021: Giving students rapid and accurate feedback is vital. We can do so with […]

Simulating Micros from Command Line

Introduction Microchip’s MPLAB X permits simulation from the command line.  This is interesting from the perspective of teaching if we have automatically-graded programming assignments that take the student’s program and runs it against a simulated chip in an LMS like Moodle. Background I’m interested in how we can use the MDB in MPLAB X to […]