Archive
Archive for the ‘technology-domains-is-any’ Category
Trying to reduce Attempt abandoned in Hot Potato Hot Pot Moodle quizzes
2013/12/20
Leave a comment
- The Hot Potatoes quiz activity per se does not seem to have a submit button, since it is auto-grading, per question.
- . When the quiz is completed, the string in ExerciseCompleted (usually: “You have complete the exercise” )appears in a modal dialogue and on top.

- Before Exercise is complete, the instructions now remain, since I have turned off ShowCompleteSoFar:

- One could make ExerciseCompleted much more visible (like with ShowCompleteSoFar permanently in a Hot Potatoe inhstallation), if looking out for this message would help the students not abandoning the quiz early:

How to get rid of “Questions completed” feedback in Hot Potatoes quizzes
2013/12/20
Leave a comment
- If you dig into the JavaScript in the HTML, looking for the default feedback t4ext (“Questions completed so far”), you see (as I have done here manually; this could be relatively easily done also for an entire batch of course quizzes with a global replacement) that you turn this option off:
- var CompletedSoFar = ‘Questions completed so far: ‘;
- var ShowCompletedSoFar = false;
- But that does not get rid of the #/# being displayed.
- There is an option to get rid of the Feedback text:

- If I read the options correctly, there is no such setting (we tried the obvious suspects here):

-
function CheckQuestionsCompleted(){ // trp: trying to disable showing to student QuestionsCompleted // (entire function even if somebody changes the variable ShowCompletedSoFar) // if i understand correctly, what users really do not want to show // is a misleading completed correctly for completed // (which leads to students not know that they have finished?) - \ // is there no better way? // was: if (ShowCompletedSoFar == false )){return '';} // trp: cannot find a gui to set ShowCompletedSoFar to false var QsCompleted = 0; for (var QNum=0; QNum<State.length; QNum++){ if (State[QNum] != null){ if (State[QNum][0] >= 0){ QsCompleted++; } } } //Fixes for 6.2.2.2 if (QsCompleted >= QArray.length){ return ExerciseCompleted; } else{ return ''; // trp: CompletedSoFar + ' ' + QsCompleted + '/' + QArray.length + '.'; } } - Since you can edit the sourcefiles of a HotPotatoes installation, you can turn it also off for a machine permanently:
- If this variable is there in the underlying code, shouldn’t there be also an option in the GUI (not necessarily, maybe was never implemented – or maybe I just have not found it…).
- For what the output will look like, see here.
Categories: assessments, Authoring-tools, e-learning, sourcecode
hot-potatoes, javascript
How to change your button text in Hot Potatoes activities
2013/12/19
Leave a comment
Categories: assessments, e-learning
hot-potatoes, quizzes
Firefox and Chrome – Enterprise version in computer lab image?
2013/12/19
Leave a comment
- The tension between having to update the platform while not leaving the ecosystem behind seems one of the oldest issues IT – does the web browser platform add something fundamentally new to the mix?
- My understanding has always been that campus computer labs should run the “enterprise versions” of the Chrome and Firefox web browser, especially if they advertise the non-default web browsers to students on the start menu right next to Internet Explorer (which IT, with the help of the Windows Update tools that allow to shut out forced Internet Explorer’s upgrade, upgrades very conservatively, in order to not break applications).
- Reason for installing enterprise versions in the (ahem!) enterprise is that – I believe to know this for Firefox ESR – the enterprise version:
- is kept up to date with security patches, but
- is feature-stable (as opposed to the consumer version which gets updated every few weeks) which allows our software vendors – textbook websites etc. – to make sure their software works on a mainstream, non-cutting edge version of the web browser. Case in point which would likely cause havoc when trying to use online language textbooks in the LRC over the next term: http://www.theregister.co.uk/2013/12/10/firefox_26_blocks_java/
- Running the enterprise version of the software should also relieve
- IT departments of constant updates and testing, and
- students using deep-frozen lab computers to – every time they log in on a computer – having to wait for the auto update of the web browser to go through.
- E.g. you can see from this Firefox ESR version history graphic, that it has been on version 17 since November 2012, and that version 17, after an overlap of a few weeks, is now (December 3) deprecated, in favor of version 24.
- That means: with Firefox ESR, we were spared from having to deal with (test application software compatibility, like online textbooks) the 7 individual upgrades in between. If we upgrade to ESR version 24 now, we will likely for another full year receive security patches, but not have to deal with features that break instructional websites.
- Given this, I assume we should upgrade to Firefox ESR (and the Chrome equivalent, if it is one, i.e. works like Firefox ESR) in the LRC image
Request to download the digital audio lab classroom audio configuration on the fly, program and source for Windows 7
2013/12/09
Leave a comment
Testing and semi-automatically changing the Sanako student audio configuration
2013/12/09
Leave a comment
- Problem
- We have had teacher complaints about too much background noise from neighboring students being recorded in our Sanako Study 1200, with SLH-07 headsets.
- In addition, upon looking through some recordings as samples for a workshop, I found cases of clipping audio, especially in pair recordings.
- We are using the default settings for the Sanako SLH-07 headset. However, the default recording level (67) seems high.
- Solution approach
- We need to test
- many other settings quickly for these recording levels. We use my sanakoaudioconfigonthefly utility for this
- in an acoustically realistic environment: 5 Lab assistants site in tight lab area and read out sample English text during a Sanako reading activity
- Reading practice
- Todo: Pairing
- Here is a “window” into the recorded results set, a student’s audio recording shown in Audacity at various (but all lowered) recording levels from (visible) 30 to 5, you can see the diminishing waveform amplitude.
- The waveform per se is not conclusive. You will have to listen in and compare, especially to evaluate background noise (the original complaint – we have no and will not be able to go back to language lab carrels). The Sanako SLH-07 headset microphones are supposed to be highly directional. However, our students to not always wear the headsets properly. And our acoustics is marred by large (almost 50%) window spaces and a tight positioning of the student seats.
- Any test recording is only as good as it can mimic the acoustics during an actual class session which we did as much as we could with only 6 concurrent LRC staff. This means unfortunately some more testing will have to spill into actual classes, but this test is a start.
- We need to test

