SlideShare una empresa de Scribd logo
1 de 93
Descargar para leer sin conexión
edupsych theoryedupsych theory
for python hackersfor python hackers
v.2.0v.2.0
(mel chua, pycon toronto 2013)(mel chua, pycon toronto 2013)
follow along at bit.ly/pycon-toronto-edupsychfollow along at bit.ly/pycon-toronto-edupsych
MEL CHUA
academic
hacker
academic
WAT
ure
doin
it
rite
ure
doin
it
riteCC-BY-SAfromhttp://www.flickr.com/photos/ykjc9/4143179870
3 big ideas
1. learning is designable like code
2. our brains are snowflakes
3. we do not function standalone
1Design your learning
the same way
you design your code
Design your learning
the same way
you design your code
think-pair-share
Which comes first?
A. (vague) specification
B. (occasionally-functional) prototype
C. (rough) test(s)
Example: test-driven development
def factorial(n):
"""Return the factorial of n, an exact integer >= 0.
>>> [factorial(n) for n in range(6)]
[1, 1, 2, 6, 24, 120]"""
result = 1
factor = 2
while factor <= n: (shamelessly stolen from
result *= factor http://docs.python.org/2/library/doctest.html)
factor += 1
return result
Example: test-driven development
def factorial(n):
"""Return the factorial of n, an exact integer >= 0.
>>> [factorial(n) for n in range(6)]
[1, 1, 2, 6, 24, 120]"""
result = 1
factor = 2
while factor <= n: (shamelessly stolen from
result *= factor http://docs.python.org/2/library/doctest.html)
factor += 1
return result
what should it do?
how will I know if it works?
ok, now how do I make it work?
Example: test-driven development
def learn_tdd(student):
"""Students should be able to analyze the relationship between
a doctest, thefunction under test, and the test output.
>>> [learn_tdd(student) for student in class]
[True, True, True, True, True]"""
fun_activity_thing()
student.doctestability = True
return student.doctestability
Example: test-driven development
def learn_tdd(student):
"""Students should be able to analyze the relationship between
a doctest, thefunction under test, and the test output.
>>> [learn_tdd(student) for student in class]
[True, True, True, True, True]"""
fun_activity_thing()
student.doctestability = True
return student.doctestability
content (goal)
assessment
pedagogy (activity)
Further reading: Understanding By Design
dependency:
articulate clear
and assessible goals
Example: test-driven development
def curriculum(student):
"""Students should be able to analyze the relationship between
a doctest, thefunction under test, and the test output.
>>> [curriculum(student) for student in class]
[True, True, True, True, True]"""
fun_activity_thing()
student.doctestability = True
return student.doctestability
Bloom's taxonomy
Bloom's Taxonomy
Cognitive Affective
create
evaluate
analyze
apply
understand
remember
characterize
organize
value
respond
receive
Example: test-driven development
def curriculum(student):
"""Students should be able to analyze the relationship between
a doctest, thefunction under test, and the test output.
>>> [curriculum(student) for student in class]
[True, True, True, True, True]"""
fun_activity_thing()
student.doctestability = True
return student.doctestability
behaviorism
bostonpythonworkshop.com
CC-BYhttp://www.flickr.com/photos/katrzyna/69324073
assessmentassessment
Formative: cookingFormative: cooking
Summative: servingSummative: serving
bit.ly/pycon-eduhistorybit.ly/pycon-eduhistory
Cognitive
ure
doin
it
rite
ure
doin
it
riteCC-BY-SAfromhttp://www.flickr.com/photos/ykjc9/4143179870
3 big ideas
1. learning is designable like code
2. our brains are snowflakes
3. we do not function standalone
2
Our brains are
like snowflakes.
Everyone learns
differently.
think-pair-share
ACTIVE
SENSING
VISUAL
SEQUENTIAL
REFLECTIVE
INTUITIVE
VERBAL
GLOBAL
ACTIVE: Let's try it out!ACTIVE: Let's try it out!
REFLECTIVE: Let's think it through!REFLECTIVE: Let's think it through!
Example: test-driven development
def factorial(n):
"""Return the factorial of n, an exact integer >= 0.
>>> [factorial(n) for n in range(6)]
[1, 1, 2, 6, 24, 120]"""
result = 1
factor = 2
while factor <= n: (shamelessly stolen from
result *= factor http://docs.python.org/2/library/doctest.html)
factor += 1
return result
This sucks.This sucks.
This sucks.This sucks.
ACTIVE: explainey-groups!ACTIVE: explainey-groups!
REFLECTIVE: claim your pauses.REFLECTIVE: claim your pauses.
think-pair-share
ACTIVE
SENSING
VISUAL
SEQUENTIAL
REFLECTIVE
INTUITIVE
VERBAL
GLOBAL
SENSING
INTUITIVE
(details)
(concepts)
(established methods)
(new shiny techniques)
(speed up)
(slow down)
How does this connect
with the world I know?
How can this
abstract more generally?
think-pair-share
ACTIVE
SENSING
VISUAL
SEQUENTIAL
REFLECTIVE
INTUITIVE
VERBAL
GLOBAL
bit.ly/pycon-eduhistorybit.ly/pycon-eduhistory
VISUALVISUAL
bit.ly/pycon-eduparadigmsbit.ly/pycon-eduparadigms
VERBALVERBAL
cc-by http://larjona.files.wordpress.com/2011/09/eclipse-pydev.png
environments matterenvironments matter
think-pair-share
ACTIVE
SENSING
VISUAL
SEQUENTIAL
REFLECTIVE
INTUITIVE
VERBAL
GLOBAL
newcoder.io/dataviz
learnpythonthehardway.org/book
think-pair-share
ACTIVE
SENSING
VISUAL
SEQUENTIAL
REFLECTIVE
INTUITIVE
VERBAL
GLOBAL
We teach the way we learn.
more: bit.ly/hackerschool-learningstylestories
(Felder & Silverman)
the world is socially constructed
the world is socially constructed
(of course it is)
Watch those assumptions.
If it's hard, something's wrong with me
Watch those assumptions.
If it's hard, something's wrong with the
learning strategy I'm using
(I can fix that!)
Motivation
Motivation (Deci, Ryan)
1. amotivation
2. external regulation
3. identified regulation
4. intrinsic motivation
autonomy
relatedness
competence
(thanks to Jon Stolk, Rob Martello, Mark Somerville, and the Olin College I2E2 crew)
Attribution theory (Dweck)
Fixed vs Growth mindsets
aka
Nature vs Nurture
Self-efficacy (Bandura)
1. doing it
2. seeing people (like me) do it
3. social persuasion
4. your own body
(Bandura also did social learning, which is a lot of fun – look it up!)
Learning Over Time (Fullan)
Piaget In One Slide
assimilation: adding another module
accommodation: REFACTOR EVERYTHING
assimilation
------------accommodation------------------------------------------------
assimilation
Situative
ure
doin
it
rite
ure
doin
it
riteCC-BY-SAfromhttp://www.flickr.com/photos/ykjc9/4143179870
3 big ideas
1. learning is designable like code
2. our brains are snowflakes
3. we do not function standalone
3
We do not learn
standalone.
Importing is
important.
WARNING:
POLYSYLLABIC
WORDS
IMMINENT
accidental learning in cognitive
apprenticeships within authentic
communities of practice with
metacognition models and
formative feedback to develop
self-efficacy and self-
determination
Accidental
learning.
Cognitive apprenticeship.
modelmodel
coachcoach
scaffoldscaffold
fadefade bit.ly/pycon-cogapp
Dreyfus Model of Skill
Acquisition
expert
proficient
competent
advanced beginner
novice
CC-BY-SAbywoodleywonderworks(http://www.flickr.com/photos/wwworks/2985216277/)
context?context?
CC-BY-SAbyeschipul(http://www.flickr.com/photos/eschipul/278768722/)
context!context!
clarityclarity constraintconstraint
freedomfreedom frustrationfrustration
CC-BY-SAbyginnerobot (http://www.flickr.com/photos/ginnerobot/4487647471/)
CC-BYbyNatalieMaynor(http://www.flickr.com/photos/nataliemaynor/2539937014/)
Community of practice.Community of practice.
domaindomain
communitycommunity
practicepractice
In a cognitive apprenticeship within a
community of practice...
zone of proximal development
legitimate peripheral participation
Zone of proximal development:
learning to bike
1. watching
2. somebody pushes you
3. wheeeeeeeeeeeeeeeeeeeeeeee
Zone of proximal development:
learning to program
1. watching
2. somebody pushes you
3. wheeeeeeeeeeeeeeeeeeeeeeee
Zone of proximal development:
learning to program
1. watching
2. pair programming, code review, etc...
3. wheeeeeeeeeeeeeeeeeeeeeeee
MYTHS:
not skilled enoughnot skilled enough
not technical enoughnot technical enough
(perhaps later but surely not now)(perhaps later but surely not now)
Legitimate Peripheral
Participation Task Criteria
1. mission critical
3. nobody really cares
Legitimate Peripheral
Participation Task Criteria
1. mission critical
2. we have no time
3. nobody really cares
accidental learning in cognitive
apprenticeships within authentic
communities of practice with
metacognition models and
formative feedback to develop
self-efficacy and self-
determination
Why? Because this.
''...thefirst steps on this journey do not feel like progress....thefirst steps onthis journey do not feel like progress. TheThe
voice diminishes in volume; it lacks... even the derived authorityvoice diminishes in volume; it lacks... even the derived authority
of thosewho... can assume as theyparrot... they speak theofthosewho... can assume as theyparrot... they speak the
truth... The inner voice turns critical; it tells themtheir ideastruth... The inner voice turns critical; it tells themtheir ideas
may be stupid.Women at this position think before they speak;may be stupid.Women at this position think before they speak;
and, becausetheir ideas must measure up to certain objectiveand, becausetheir ideas must measure up to certain objective
standards, they speak in measured tones.standards, they speak in measured tones.
Often, theydo not speak at all.Often, theydo not speak at all.
But this is not a passive silence; on the other sideof this silence,But this is not a passive silence; on the other sideof this silence,
reason is stirringreason is stirring.' --Women's Ways ofKnowing.' --Women's Ways ofKnowing
'...confirmation and community are prerequisites rather than'...confirmation and community are prerequisites rather than
consequences ofdevelopment.'consequences ofdevelopment.'
--Women's Ways of Knowing--Women's Ways of Knowing
ure
doin
it
rite
ure
doin
it
riteCC-BY-SAfromhttp://www.flickr.com/photos/ykjc9/4143179870
1. learning is designable like code
2. our brains are snowflakes
3. we do not function standalone
3 big ideas
1. learning is designable like code
2. our brains are snowflakes
3. we do not function standalone
process
empathy
vocabulary
3 big ideas
that's all, folks. questions?that's all, folks. questions?
this talkthis talk
myworkmywork
bit.ly/pycon-toronto-edupsychbit.ly/pycon-toronto-edupsych
melchua.com/contactmelchua.com/contact

Más contenido relacionado

Similar a PyCon Toronto 2013: EduPsych Theory for Python Hackers 2.0

What is decentralised teaching?
What is decentralised teaching?What is decentralised teaching?
What is decentralised teaching?paul walsh
 
Stephen Downes on Personal Learning
Stephen Downes on Personal LearningStephen Downes on Personal Learning
Stephen Downes on Personal LearningAlec Couros
 
Dublin2016 reflection
Dublin2016 reflectionDublin2016 reflection
Dublin2016 reflectionHelen Barrett
 
Webquest
WebquestWebquest
Webquesttrevas
 
Hilda taba’s inductive thinking model
Hilda taba’s inductive thinking modelHilda taba’s inductive thinking model
Hilda taba’s inductive thinking modelsudha pandeya/pathak
 
Characteristics of learning organization
Characteristics of learning organizationCharacteristics of learning organization
Characteristics of learning organizationlalitsukhija1
 
Story Centered Curriculum
Story Centered CurriculumStory Centered Curriculum
Story Centered Curriculumjkmarlatt
 
Week 10 data collection and analysis
Week 10 data collection and analysisWeek 10 data collection and analysis
Week 10 data collection and analysislisyaseloni
 
Making your class better.
Making your class better.Making your class better.
Making your class better.MsAudra
 
Copy of module 2 discussion
Copy of module 2 discussionCopy of module 2 discussion
Copy of module 2 discussionwalden_pwk
 
Assessment innovations that reduce cheating and enhance learning
Assessment innovations that reduce cheating and enhance learningAssessment innovations that reduce cheating and enhance learning
Assessment innovations that reduce cheating and enhance learningVirginia Tech
 
Learntheory Engl
Learntheory EnglLearntheory Engl
Learntheory EnglKai Pata
 
Learntheory Engl
Learntheory EnglLearntheory Engl
Learntheory Englguest159ec4
 
Foundations And Framework Of Instructional Technology
Foundations And Framework Of Instructional TechnologyFoundations And Framework Of Instructional Technology
Foundations And Framework Of Instructional Technologybradfodj5820
 
Active learning & classroom applications.pdf
Active learning & classroom applications.pdfActive learning & classroom applications.pdf
Active learning & classroom applications.pdfMekuriaMekonnen
 
What every teacher should know about cognitive research
What every teacher should know about cognitive researchWhat every teacher should know about cognitive research
What every teacher should know about cognitive researchStephanie Chasteen
 

Similar a PyCon Toronto 2013: EduPsych Theory for Python Hackers 2.0 (20)

What is decentralised teaching?
What is decentralised teaching?What is decentralised teaching?
What is decentralised teaching?
 
Instructional objectives
Instructional objectivesInstructional objectives
Instructional objectives
 
Stephen Downes on Personal Learning
Stephen Downes on Personal LearningStephen Downes on Personal Learning
Stephen Downes on Personal Learning
 
Dublin2016 reflection
Dublin2016 reflectionDublin2016 reflection
Dublin2016 reflection
 
Online Learning
Online LearningOnline Learning
Online Learning
 
Webquest
WebquestWebquest
Webquest
 
Hilda taba’s inductive thinking model
Hilda taba’s inductive thinking modelHilda taba’s inductive thinking model
Hilda taba’s inductive thinking model
 
Characteristics of learning organization
Characteristics of learning organizationCharacteristics of learning organization
Characteristics of learning organization
 
Story Centered Curriculum
Story Centered CurriculumStory Centered Curriculum
Story Centered Curriculum
 
Week 10 data collection and analysis
Week 10 data collection and analysisWeek 10 data collection and analysis
Week 10 data collection and analysis
 
Making your class better.
Making your class better.Making your class better.
Making your class better.
 
Psychometrics 2 introduction
Psychometrics 2 introductionPsychometrics 2 introduction
Psychometrics 2 introduction
 
Copy of module 2 discussion
Copy of module 2 discussionCopy of module 2 discussion
Copy of module 2 discussion
 
Assessment innovations that reduce cheating and enhance learning
Assessment innovations that reduce cheating and enhance learningAssessment innovations that reduce cheating and enhance learning
Assessment innovations that reduce cheating and enhance learning
 
Learntheory Engl
Learntheory EnglLearntheory Engl
Learntheory Engl
 
Learntheory Engl
Learntheory EnglLearntheory Engl
Learntheory Engl
 
Webquest assingment
Webquest assingmentWebquest assingment
Webquest assingment
 
Foundations And Framework Of Instructional Technology
Foundations And Framework Of Instructional TechnologyFoundations And Framework Of Instructional Technology
Foundations And Framework Of Instructional Technology
 
Active learning & classroom applications.pdf
Active learning & classroom applications.pdfActive learning & classroom applications.pdf
Active learning & classroom applications.pdf
 
What every teacher should know about cognitive research
What every teacher should know about cognitive researchWhat every teacher should know about cognitive research
What every teacher should know about cognitive research
 

Más de Mel Chua

Digital signal processing through speech, hearing, and Python
Digital signal processing through speech, hearing, and PythonDigital signal processing through speech, hearing, and Python
Digital signal processing through speech, hearing, and PythonMel Chua
 
Productively Lost For Great Justice
Productively Lost For Great JusticeProductively Lost For Great Justice
Productively Lost For Great JusticeMel Chua
 
Level-up Main Talk
Level-up Main TalkLevel-up Main Talk
Level-up Main TalkMel Chua
 
Take the A Train
Take the A TrainTake the A Train
Take the A TrainMel Chua
 
The Language Game
The Language GameThe Language Game
The Language GameMel Chua
 
The Fitness Game
The Fitness GameThe Fitness Game
The Fitness GameMel Chua
 
The Music Game
The Music GameThe Music Game
The Music GameMel Chua
 
The Invisible Traceback
The Invisible TracebackThe Invisible Traceback
The Invisible TracebackMel Chua
 

Más de Mel Chua (8)

Digital signal processing through speech, hearing, and Python
Digital signal processing through speech, hearing, and PythonDigital signal processing through speech, hearing, and Python
Digital signal processing through speech, hearing, and Python
 
Productively Lost For Great Justice
Productively Lost For Great JusticeProductively Lost For Great Justice
Productively Lost For Great Justice
 
Level-up Main Talk
Level-up Main TalkLevel-up Main Talk
Level-up Main Talk
 
Take the A Train
Take the A TrainTake the A Train
Take the A Train
 
The Language Game
The Language GameThe Language Game
The Language Game
 
The Fitness Game
The Fitness GameThe Fitness Game
The Fitness Game
 
The Music Game
The Music GameThe Music Game
The Music Game
 
The Invisible Traceback
The Invisible TracebackThe Invisible Traceback
The Invisible Traceback
 

Último

How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEaurabinda banchhor
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operationalssuser3e220a
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxElton John Embodo
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxruthvilladarez
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 

Último (20)

LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Dust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSEDust Of Snow By Robert Frost Class-X English CBSE
Dust Of Snow By Robert Frost Class-X English CBSE
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operational
 
EMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docxEMBODO Lesson Plan Grade 9 Law of Sines.docx
EMBODO Lesson Plan Grade 9 Law of Sines.docx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
TEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docxTEACHER REFLECTION FORM (NEW SET........).docx
TEACHER REFLECTION FORM (NEW SET........).docx
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 

PyCon Toronto 2013: EduPsych Theory for Python Hackers 2.0