Wednesday, March 4, 2015
Chinese New Year Interactive E Book for Smartboard
With the Chinese New Year (a.k.a. the Lunar New Year or Spring Festival) coming up this Friday, January 31, I figured Id give them a look and the history and traditions of the holiday. I learned so much while I was researching to write this book and I cant wait to share it with my students this week!




This Smart Notebook file is sure to get your students interested in the Lunar New Year! I hope this helps to inspire all of the students to learn more about other cultures!
Monday, March 2, 2015
Down with Boring E Learning Interview with Dr Michael W Allen
Link to article (by Ryann Ellis)
"In Michael Allens (CEO of Allen Interactions) book, Michael Allen?s Guide to e-Learning: Building Interactive, Fun, and Effective Learning Programs for Any Company, Allen speaks out about his frustrations with today?s e-learning and brings fundamental issues to light. He also shares specific, commonsense guidelines that reliably produce effective and practical learning solutions.
What is the most misunderstood concept about e-learning?both in its current state and ideal state?
(Michael Allen) There are so very many misunderstood concepts, it?s hard to decide which is the most misunderstood. I guess it depends on one?s perspective. Let me give you a short list from several perspectives:
Business:
- Effective e-learning is expensive. Actually, it?s poor e-learning that?s expensive. Effective e-learning can bring amazing returns and pay for itself quickly over and over again.
- Boring e-learning is all we can afford. Actually, you can?t afford boring e-learning because it?s a total waste of time and money. You can?t learn people, they have to do the learning themselves. If they are bored, learning ceases. Your costs rise every time another learner wastes time in it.
Management:
- Its all about content: Get all the needed information out to people. Actually, it?s all about achieving desired performance levels, and that often means narrowing content down so that you can focus on creating meaningful, memorable, motivating learning experiences.
- Well be successful if the e-learning is developed on time and within budget. Actually, although these measures are important, quality matters. It?s critical to measure whether the training results in needed performance change and improvement. Otherwise, you really know nothing of importance.
Design:
- You need to start with the simplest concepts and tasks. Actually, the simplest concepts are often really boring. Learners prefer jumping into interesting tasks, then breaking them down into their components as it becomes understandably necessary.
- Before you can challenge learners with tasks, you need to ?teach? (read ?tell?) learners how to do them. Actually, it?s much more effective, for most of the American culture at least, to present challenges first. If learners can meet the challenge, you won?t have bored them by telling them things they already know. If learners can?t meet the challenge, they can ask for help. In asking for help, learners will value the information you give them and see its relevance immediately.
- You should give learners immediate feedback. Actually, delaying feedback as learners work through multi-step tasks is often much more effective. It entices learners to monitor their work more closely and make corrections without relying on external assessment and guidance."
Get Michael Allen?s Guide to e-Learning: Building Interactive, Fun, and Effective Learning Programs for Any Company, it is an interesting and useful guide to e-learning . Also, read this interview with Michael Allen, as he is one of the leading Gurus of e-Learning. We can all benefit from his experiences, practices, ideas and thoughts.
Friday, February 27, 2015
TEMS13 Gamified Scoring Algorithm to Decide the e Learning Super Hero of 2013! Part 2


SPONSORS
- International Medical University
- iBerry - The Academic Porthole
- WizIQ
- Listly

AWARDS
Top e-Learning Mover & Shaker of the Year (2013)
- 1st Prize = £100 (British Pounds)
- Top 3 will get free (commercial) Listly accounts for a year.
- The nominee with the most votes, wins this special award with bragging rights for one year.
- 1st Prize = £200 (British Pounds)
- Top 3 will get free (commercial) Listly accounts for a year.
- The nominee with the highest score (based on the gamified points system revealed below) wins this award, which is the most prestigious of the two awards, because it takes into account who is voting, besides the number of votes. Also, it requires the nominee to show pro-active professionalism and appreciation of the other participating nominees.

Besides that, we will announce the Top 10 for both awards based on the big Continents in the world (North-America, Europe, Asia, Africa and South-America).
Please join the fun and vote!
- CLICK HERE to know the reasons for creating this poll (Part 1), and instructions on how to vote (video tutorial).
- CLICK HERE to subscribe to the Twitter List following all the nominees (using Twitter).
- CLICK HERE to view and update the #TEMS13 Padlet Wall, which is where share something positive about the nominees.
ONLINE AWARD CEREMONY
REALITY
Lets face it, polling is really a silly way to decide on who was the Super (e-)Learning Hero of 2013. For example, in a professional learning community, would a vote (of appreciation for someones work) from your Grandmother, or 5-year old son be valued with the same respect as a vote from Stephen Downes? Of course not!GAMIFIED SCORING
Well, I still believe that polling can be used to decide the Super (e-)Learning Hero of 2013 in a fairer way. So, here is a gamified scoring algorithm I put together to filter out the wannabes from the real Super (e-)Learning Heroes. What do you think? You are most welcome to suggest improvements, or other scoring items to be included. Please use the comments section below, or tweet your idea using #TEMS13 Twitter hashtag. Thanks!Here we go:


NETWORK
Here it is:
Have fun discovering some pretty amazing educators in the #TEMS13 list!
- British Pounds
- Bragging rights for one year!
- Surely their networks will grow.
- Admiration from new fans.
- More invitations to give talks and/or facilitate workshops.
- Etc.
Wednesday, February 11, 2015
C program to print fibonacci series i e 0 1 1 2 3 5 8
#include<stdio.h>
#include<conio.h>
void main()
{
int first=0,second=1,third,i,n;
clrscr(); //to clear the screen
printf("Enter how many elements?");
scanf("%d",&n);
printf("
%d %d",first,second);
for(i=2;i<n;++i)
{
third=first+second;
printf(" %d",third);
first=second;
second=third;
}
getch(); //to stop the screen
}