Thursday, 24 October 2013

Differentiation SIG Intro

My aim - to collect resources and ideas for teaching low/below pupils in Business and preparing them for their controlled assessment.

What are your viewpoints on differentiation?
Resources - edited the book.
Not publicising the fact they need extra support but allowing pupils to have the choice.
Questioning
Reflecting on realistic targets - May be not completing a task.
Emphasising the positive
Not dwelling on what they haven't done.
Helping them/more support without the pupil realising.
Dealing with being wrong/failing.
Interpretation of questions.

Definition of Differentiation:
Making a task accessible to all students whilst ensuring they are still be challenged.

Wednesday, 18 September 2013

Lessonhackers.com

Some amazing resources on this site.

Great binary poster





Systems Life Cycle



Tuesday, 6 August 2013

Teaching in the USA

Some really use tips here from TES.

The World Class Learning Group's British Schools abroad.

Image from here.

Thursday, 4 July 2013

Python Practice - Correct


Python Practice - My attempt

# Receive and Return
# Demonstrates parameters and return values

def display(message):
    print(message)

def give_me_five():
    five = 5
    return five

def ask_yes_no(question):
    """Ask a yes or no question."""
    response = None
    while response not in ("y", "n"):
        response = input(question).lower()
    return response

# main
display("Here's a message for you.\n")

number = give_me_five()
print("Here's what I got from give_me_five():", number)

answer = ask_yes_no("\nPlease enter 'y' or 'n': ")
print("Thanks for entering:", answer)

input("\n\nPress the enter key to exit.")

Via P Rymill: Photoshop Tutorials

Click here for the YouTube link.