Joel’s creations – Education https://joelbrooker.com (for the win!) Thu, 12 May 2016 01:56:55 +0000 en-US hourly 1 https://wordpress.org/?v=4.6.20 Easily type Spanish accents – free download https://joelbrooker.com/easily-type-spanish-accents-free-download/ https://joelbrooker.com/easily-type-spanish-accents-free-download/#respond Wed, 23 Apr 2014 04:23:29 +0000 http://162.243.67.131/?p=4336 Teaching in Mexico has meant that sometimes I need to type in Spanish. With my Aussie laptop this can be annoying. In Windows 8 it is not too difficult to use the touchscreen keyboard but it is still annoying. Not everyone has a touchscreen either. Using the marvelous AutoHotKey again and a little tinkering, now […]

The post Easily type Spanish accents – free download appeared first on Education.

]]>
Teaching in Mexico has meant that sometimes I need to type in Spanish. With my Aussie laptop this can be annoying. In Windows 8 it is not too difficult to use the touchscreen keyboard but it is still annoying. Not everyone has a touchscreen either.

Using the marvelous AutoHotKey again and a little tinkering, now I can just press Ctrl+Shift+a to give me á, for example. You can download the file here from my server. It should work on most versions of Windows.

 

The file above is a program built from this super-simple script that I made:

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; To use, do Ctrl+Shift+a, to do an 'a' with an accent
^+a::Send á
^+e::Send é
^+i::Send í
^+o::Send ó
^+u::Send ú
^+n::Send ñ

The post Easily type Spanish accents – free download appeared first on Education.

]]>
https://joelbrooker.com/easily-type-spanish-accents-free-download/feed/ 0
Animated GIFs for classroom fun! https://joelbrooker.com/animated-gifs-classroom-fun/ https://joelbrooker.com/animated-gifs-classroom-fun/#comments Mon, 21 Apr 2014 01:21:52 +0000 http://162.243.67.131/?p=4318 If you have ever seen The Simpsons or Family Guy then you know how much fun the cut scenes can be, like this one: YouTube Family Guy cut scene You can do something similar in the classroom if you have a computer connected to a projector. “Teacher, I couldn’t do my homework because I lent […]

The post Animated GIFs for classroom fun! appeared first on Education.

]]>
If you have ever seen The Simpsons or Family Guy then you know how much fun the cut scenes can be, like this one:

YouTube Family Guy cut scene

You can do something similar in the classroom if you have a computer connected to a projector.

“Teacher, I couldn’t do my homework because I lent my laptop to my Mum and she didn’t get home from work until 9pm because of that meteorite that crashed into the highway again this week.”

Instantly, I hit the F6 key on my keyboard and this animated GIF pops-up in full screen glory:

Save the drama for your mama

Save the drama for your mama

The classroom is filled with giggles or moans and groans, all of which are a good result! The kids love it and I have a collection of animated GIFs ready, as well as a few video and sound files. Each one is linked to a hotkey or shortcut combination that can be called upon at any time.

A handy (and free) program is used to provide the technical wizardry. It is called AutoHotKey and can be downloaded here. To make it easy for you, here are two example scripts that I have written:

; Works in Windows 7
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
MediaPlayer=C:\Program Files (x86)\Windows Media Player\wmplayer.exe
f2::Run %MediaPlayer% "C:\Users\YourName\Documents\FilesToUse\omg.gif" /fullscreen
f3::Run %MediaPlayer% "C:\Users\YourName\Documents\FilesToUse\george_clapping.gif" /fullscreen
f6::Run %MediaPlayer% "C:\Users\YourName\Documents\FilesToUse\save-the-drama.gif" /fullscreen
f7::Run %MediaPlayer% "C:\Users\YourName\Documents\FilesToUse\highest_of_fives.gif" /fullscreen
f8::Run %MediaPlayer% "C:\Users\YourName\Documents\FilesToUse\mind_ya_business.gif" /fullscreen
; The following ones mean that you hold the Windows key. E.g. The first one is Windows+F1
#f1::Run %MediaPlayer% "C:\Users\YourName\Documents\FilesToUse\Read_the_full_instructions.mp4" /fullscreen
#v::Run %MediaPlayer% "C:\Users\YourName\Documents\FilesToUse\laugh_villain.wav"

If you are using Windows 8, the default media player will work and the script will be simpler, for example:

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
f2::Run C:\Users\YourName\Documents\FilesToUse\omg.gif
f3::Run C:\Users\YourName\Documents\FilesToUse\george_clapping.gif
f6::Run C:\Users\YourName\Documents\FilesToUse\save-the-drama.gif
f7::Run C:\Users\YourName\Documents\FilesToUse\highest_of_fives.gif
f8::Run C:\Users\YourName\Documents\FilesToUse\mind_ya_business.gif
; The following ones mean that you hold the Windows key. E.g. The first one is Windows+F1
#f1::Run C:\Users\YourName\Documents\FilesToUse\Read_the_full_instructions.mp4
#v::Run C:\Users\YourName\Documents\FilesToUse\laugh_villain.wav

If you like to have fun in the classroom, give it a try and tell me how it turns out!

The post Animated GIFs for classroom fun! appeared first on Education.

]]>
https://joelbrooker.com/animated-gifs-classroom-fun/feed/ 3