Discover Your Learning Style

September 12, 2006

Discover your learning style by taking a short quiz. The quiz told me that I was a ‘visual learner’ which probably explains why the mindmap concept appeals to me.


Mind and Subject Mapping with Freemind

September 12, 2006

I have recently discovered a tool called Freemind which allows anyone to map out anything. I am currently experimenting with using it for study.

Basically you can create a tree of words, icons, and images, which you can then expand on in any direction you like.

By creating a map for each subject, I can outline all the topics covered as they are covered. This means I can simply expand on the map after each lecture. This is a great way to revise at the end of each lecture. At the end of semester when it comes time for exams, you can easily look over the first and second levels and make sure you have studied everything.

Read the rest of this entry »


Search Prank

September 10, 2006

Here’s a small AutoHotKey script I wrote to play a prank on someone.

Basically you run it on the victim’s computer, and it simply waits until they open google in any web browser. As soon as google is opened, anything you specify in the script is searched before the victim realises.

Loop
{
WinGetActiveTitle ActWin
if Instr(ActWin, "Google") > 0
{
Sleep, 2000
Send, Some{SPACE}Stupid{SPACE}Search{SPACE}Term{ENTER}
break
}
}