elsiegee40 Posted October 14, 2008 Posted October 14, 2008 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
heybatesy Posted October 14, 2008 Posted October 14, 2008 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.. Adam
kmount Posted October 14, 2008 Posted October 14, 2008 Our team swear by Linguascope.com, not free, but they get their money worth I reckon given they speak so highly of it! 1
Sylv3r Posted October 14, 2008 Posted October 14, 2008 Homepage - Zut! - Language Skills LINGUASCOPE.com >>> The Award Winning Language Learning Website Quia Are the ones I can think of off the top of my head. We are a language college so they seem to use quite a few. If I can remember to check tomorrow i'll get you a bigger list. 1
Sylv3r Posted October 14, 2008 Posted October 14, 2008 Oh forgot to mention, its not a website but a relatively cheap peice of software: TaskMagic2 - Home Page They love it here...
kmount Posted October 14, 2008 Posted October 14, 2008 We have Task Magic 2, Hot Potatoes, ACTIF, Vektor Expressions amongst other stuff but I think they prefer Linguascope above them all.
elsiegee40 Posted October 14, 2008 Author Posted October 14, 2008 Thanks for both posts Sylv3r... I'll get the teachers to take a look at TaskMagic... I can see it being popular.
User3204 Posted October 14, 2008 Posted October 14, 2008 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. 1
WithoutMotive Posted October 14, 2008 Posted October 14, 2008 We also use A tantôt ! MFL resources for the interactive whiteboard. 1
CyberNerd Posted October 14, 2008 Posted October 14, 2008 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/ 1
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now