Jump to content

Recommended Posts

Posted

I have been asked by our French Teacher if I know of any good (preferably free!) websites that would be good for teaching, either by providing resources or for use by the children.

 

I thought I'd save myself some Google time, by asking you lot!

 

We take children up to age 11. She reckons she's teaching our Year 6 Year 7/8 material. She also teaches at a private secondary school; so website suggestions for all year groups would be gratefully received.

 

thanks for your help

Posted

Have a looksie here:

 

accueil: Universalis Junior

 

If it looks of interest to the MFL dept let me know and i'll arrange trial logins for a month or so.

 

No idea of price unfortunately as our French cousins have only just chose to inform us of its existence, one company and all that.. :rolleyes:

 

Adam

Posted
We have Task Magic 2, Hot Potatoes, ACTIF, Vektor Expressions amongst other stuff but I think they prefer Linguascope above them all.
Posted
Our Lang College use Quia a lot, I think the teachers have to create the "games", but I also think, that the stuff that is loaded there, is available to everyone... Just be careful how you say it, as it always draws a few laughs in year 10.
  • Thanks 1
Posted

 

TaskMagic2 - Home Page

 

They love it here...

 

 

Noooo

 

I've just converted 300 of these damn taskmagic drag and drop files to VLE compatible hot potatoes drag and drop files.

 

The problem we have is that our languages dept are heavy VLE users, and they put their drag and drop taskmagic files on the VLE. problem is that kids at home cannot open them, some don't have permission to install taskmagic, some don't want to, some have macs etc.

 

Hotpotatoes is much better, it produces files that the VLE automatically accepts (moodle) so we can get the VLE to automatically mark the work. without any unnecessary installer. the hotpot gui is intuitive enough to.

If you have the choice of using hotpot over taskmagic then do so. if not then use this script to convert drag and drop to hotpot format:

 

#!/usr/bin/python
import optparse
import string
 
def main():
p = optparse.OptionParser()
p.add_option('--filename', '-f', default="filename.MDL")
options, arguments = p.parse_args()
file = open(options.filename, 'r')	
data = file.readlines() #read lines in file and put
file.close()
questions= data[0] # number of questions, the first line of the file
questions=questions.strip()
try:
 		questions = int(questions)
except ValueError:
 		questions = 0

i = 1
print '''







 '''


print ""+options.filename+""
print '''

 

6




'''
print " "+ options.filename + ""
print '''

600





0













???

'''


while i<=questions:
	question= data[i+1]
	awnser = data[questions+i+1]
	print ""
	print ""+question+""
	print "1"
	print ""
	print ""+awnser+""
	print "0"
	print ""
	i=i+1
           
print '''









Matching exercise

Match the items on the right to the items on the left.

nextpage.htm

0

0

1

0

0

Next

Delete

Correct! Well done.

Sorry! Try again. Incorrect matches have been removed.







Your score is 

:-)

X

0

0

Your time is over!

Check

OK

=>

<=

Index

1

1

0

contents.htm



Geneva,Arial,sans-serif

small

#C0C0C0

#000000

#FFFFFF

#000000

#0000FF

#0000CC

#000000

http://yourserver.com/cgi-bin/FormMail.pl

[email protected]

Please enter your name:

one

two

three








'''
        
if __name__ == '__main__':
main()

 

 

you can call it like this:

 

#!/bin/bash
find . -name "*.mdl" | while read FILE
do
~/path_to/mdl_script.py -f $FILE > ../path_to_output/$FILE.jmt
done

 

edit:

did i mention hotpot is a free download:

http://hotpot.uvic.ca/

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...