How students upload a video file to Moodle using Kaltura
-
My closest related instruction so far has been for teachers, and the CTL also seems to have only instructions for how teachers upload videos for students. However, instructions for students are very similar, follow these steps:
-
Be aware that your video resolution will likely be downscaled (my 1280*1024 screencast in this example ended up pretty grainy).
Setting time zone for all and for all misconfigured OWA users
live@edu/Office365 Exchange in the cloud does not seem to allow setting a default time zone, but rather leaves it to the user to change the time zone (defaulting to the time zone the cloud server is in that the user happens to hit) on first login – in the world I operate in, большая ошибка!
How to use the cmdlet set-MailboxRegionalConfiguration with parameter TimeZone to change the time zone of all your mailboxes is nicely explained on the blog How Exchange Works here, including screenshot and PowerShell command.
Unfortunately such an operation is reported to have needed 3 days for updating all mailboxes in an educational live@edu installation with 30000 users… You can restrict the mailboxes touched by examining first which are not in your local time zone (consult the MS TimeZone table for syntax, e.g. US “Eastern Standard Time”):
$mymailboxes = get-mailbox
ForEach ($examinedmailbox in $mymailboxes){
$regionalconfig = get-MailboxRegionalConfiguration –identity $examinedmailbox.identity
if ($regionalconfig.timezone -ne “Eastern Standard Time”){
Set-MailboxRegionalConfiguration -identity $examinedmailbox.identity -TimeZone “Eastern Standard Time” -confirm:$false
}
}
Computer-aided scheduling in HE
Source code samples
Trados translation memory from TMX
- Open Trados studio professional 2011
- choose from the menu: file / new / translation memory
- in the create translation memory dialogue
- choose source and target language (the same as in the file name of the TMX files which follow the source-target naming convention)
- select “Allow multiple translation for the same source segment”
- choose as name for this translation memory the file name of the TMX files you are going to import (some include a year)
- click button: “create”,
- choose from the menu: file / import
- in the “import” dialogue window
- select “large import file”, “keep most recent”, “add to setup”
- click button “ok”
- select “large import file”, “keep most recent”, “add to setup”
- and in the dialogue “open import file”
- select as file type TMX 1.4b, if this does not work, 1.4, if this does not work, 1.1
- browse to C:\Temp\Trados to select one file (after the other)
How to peek inside your MSI files with LessMSI
In spite of a few typos in the (generally very helpful) descriptions (and the pun at the cost of poor Victor), this seems a very useful tool that gives you an overview of what you are embarking on when installing software, like so:
LessMSI allows you can even extract individual files to investigate further:
Moreover, it is extremely easy to install using chocolatey after which it is going to be in your PATH, to be called as “LessMSI.bat”.









