Archive
How best to edit PDF here
The college provides each faculty and staff member with a full version of Adobe Acrobat (with editing capabilities) on their office computer. If it is not already installed, you can submit a request here.
Foreign language support in LRC MS-Office 2010
- A full set of proofing tools is available, thanks to MS-Office Language Packs installed on the Windows 7 computers, for all non-classical languages studied here:
-
Language Native name Arabic العربية Chinese (Simplified) 中文(简体) Chinese (Traditional) 中文 (繁體) English English French français German Deutsch Greek Ελληνικά Hebrew עברית Hindi हिंदी Italian italiano Japanese 日本語 Korean 한국어 Polish polski Portuguese (Brazil) Português Portuguese (Portugal) português Russian Русский Spanish español - Some languages have only limited features provided by the MS-Language Interface Pack:
-
KiSwahili Kiswahili Persian (Farsi) فارسی Yoruba ede Yorùbá
Keyboard layouts and IME’s on LRC Windows 7 PCs
You can change the input language using the language toolbar which appears next to the notification area in the lower right of the task bar.
Note that many languages need not be listed since their characters can be typed, Windows-wide, using keyboard shortcuts of the English-US (international extended) keyboard layout.
Some installed input methods benefit from having keyboard overlays which have been installed on some computer. Other input methods allow for drawing characters, e.g. in Japanese or Mandarin, which works better with the Wacom tablet installed on PC01 and PC02 than with a mice.
Many languages have more than one keyboard/input method. After changing to your language on the language toolbar, you can switch from the language’s default keyboard layout to another by clicking on keyboard icon behind the 2-letter language abbreviation.
Below is a comprehensive list of all layouts that are available to you:
How to query lab computers for new IPs after network reconfiguration using Symantec Ghost
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
}
}


