SlideShare a Scribd company logo
1 of 77
Download to read offline
PenO3
Sessie 1
Erik Duval
Sven Charleer - Jose Luis Santos - Nick Vannieuwenhoven
14.00:PenO3
Quantified Self
Quantified Learning
14.20: Raspberry Pi
14.40: Hands on
15.45: Break
16.00: Arduino
16.20: Hands on
18.00: Done
PenO
eerste keuze?
tweede keuze?
derde keuze?
vierde keuze?
vijfde keuze?
PenO 1?
Probleemoplossen en
Ontwerpen
• Ingenieursvaardigheden
• Modelleren en simuleren
• Experimenteren
• Methodische aanpak
• Teamwerk
• Integratie vakken
• Smaakmaker voor andere vakken
Over semesters
• gesloten, vak-overschrijdend probleem
• grafisch modelleren, ICT-werktuigen
• gesloten ontwerp
• modelleren en ontwerpen
• open ontwerp
• methodiek, reverse engineering
• ook: samenwerking in groepen
Tools
• Wiki: http://ariadne.cs.kuleuven.be/wiki/
• Wordpress: http://wordpress.com/
• Backlog at the wiki
•One for each group
Wiki
• Group Information (You can take a look to Peno3
last year)
• Pointers to your work (blog URL, ...)
Session report
• What did you do last session?
• What did you learn?
• How did you do it?
• Main problems?
Quantified Self
Little Brother
http://www.fitbit.com/
http://nikeplus.nike.com/plus/
http://www.withings.com/en/bodyanalyzer
http://www.moves-app.com/
http://quantifiedself.com/2013/02/qs-and-
mindfulness/#more-5798
http://memoto.com/
http://www.kickstarter.com/projects/806146824/melon-a-headband-and-mobile-app-to-
measure-your-fo
Quantified Learning
http://navi-hci.appspot.com/
http://mume11.snakeflash.com/
...-1980s
1990s
http://shop.pimoroni.com/
http://www.instructables.com/id/RaspberryPi-
Powered-Wearable-Computer/#step1
https://vimeo.com/55658574
http://theswitchtolinux.blogspot.com/2012/12/
raspberry-pi-daily-deviations-picture.html
http://www.youtube.com/watch?
v=5npkz0xY1fo#t=75
http://www.youtube.com/watch?v=5JoARkj7XMA
http://www.youtube.com/watch?v=Nfk1-XMASrk
Pi setup
Raspberry Pi Basics
login: pi
password: raspberry
config: sudo raspi-config
xwindows: startx
shutdown: sudo shutdown -h now
restart: sudo shutdown -r now
GPIO
GPIO 3.3V
GPIO 3.3V
GPIO Programming
Python
RPi.GPIO module
import'RPi.GPIO'as'GPIO'''##"Import"GPIO"library
GPIO.setmode(GPIO.BCM)''''##"Use"board"pin"numbering
GPIO Programming
Python
RPi.GPIO module
import'RPi.GPIO'as'GPIO'''##"Import"GPIO"library
GPIO.setmode(GPIO.BCM)''##"Use"board"pin"numbering
GPIO Programming
Python
RPi.GPIO module
import'RPi.GPIO'as'GPIO'''##"Import"GPIO"library
GPIO.setmode(GPIO.BCM)''''##"Use"board"pin"numbering
GPIO.setup(7,'GPIO.OUT)'''##"Setup"GPIO"Pin"7"to"OUT
GPIO.output(7,True)''"""""##"Turn"on"GPIO"pin"7
GPIO Programming
Python
RPi.GPIO module
import'RPi.GPIO'as'GPIO'''##"Import"GPIO"library
GPIO.setmode(GPIO.BCM)''''##"Use"board"pin"numbering
GPIO.setup(7,'GPIO.IN)''''##"Setup"GPIO"Pin"7"to"IN
result.='GPIO.input(7)''""##"Read"GPIO"pin"7
Hands-on!
Hello World
import'RPi.GPIO'as'GPIO'''##"Import"GPIO"library
GPIO.setmode(GPIO.BCM)''##"Use"board"pin"numbering
GPIO.setup(7,'GPIO.OUT)'''##"Setup"GPIO"Pin"7"to"OUT
GPIO.output(7,True)''"""""##"Turn"on"GPIO"pin"7
import'RPi.GPIO'as'GPIO'''##"Import"GPIO"library
GPIO.setmode(GPIO.BCM)''##"Use"board"pin"numbering
GPIO.setup(7,'GPIO.IN)''''##"Setup"GPIO"Pin"7"to"IN
result.='GPIO.input(7)''""##"Read"GPIO"pin"7
http://www.youtube.com/watch?
feature=player_embedded&v=zE5PGeh2K9k
http://www.instructables.com/id/Power-Laces-the-Auto-
lacing-shoe/
http://www.youtube.com/watch?feature=player_embedded&v=ZtNEPkwCfxA
Arduino Basics
Powered by USB
Data transfer by USB
Digital pins + Analog pins
Arduino Programming
Arduino Development Environment
Language based on C
http://arduino.cc/en/Reference/HomePage
Arduino Programming
Arduino Programming
Python?
void'setup()'{
}
void'loop()'{'''
}
Arduino Programming
void'setup()'{
'''//a'comment'in'the'setup'section'which'is'run'once
''.Serial.begin(9600);
}
void'loop()'{'''
}
Arduino Programming
void'setup()'{
'''//a'comment'in'the'setup'section'which'is'run'once
'''Serial.begin(9600);
}
void'loop()'{
'''//a'comment'in'the'loop'section,'which'is'looped'forever
'''int'sensorValue'='analogRead(A0);
'''if(sensorValue'>'0)
'''{
'''''''Serial.println(sensorValue);
'''}
'''delay(1000);
'''
}
Arduino Programming
void'setup()'{
'''//a'comment'in'the'setup'section'which'is'run'once
'''Serial.begin(9600);
}
void'loop()'{
'''//a'comment'in'the'loop'section,'which'is'looped'forever
'''int'sensorValue'='analogRead(A0);
'''if(sensorValue'>'0)
'''{
'''''''Serial.println(sensorValue);
'''}
'''delay(1000);
'''
}
Arduino Programming
void'setup()'{
'''//a'comment'in'the'setup'section'which'is'run'once
'''Serial.begin(9600);
}
void'loop()'{
'''//a'comment'in'the'loop'section,'which'is'looped'forever
'''int'sensorValue'='analogRead(A0);
'''if(sensorValue'>'0)
'''{
'''''''Serial.println(sensorValue);
'''}
'''delay(1000);
'''
}
Arduino Programming
Sensors
Hands-on!
#define'PHOTOSENSE_ANA_PIN'A0''
void'setup()'{
'''//a'comment'in'the'setup'section'which'is'run'once
'''Serial.begin(9600);
}
void'loop()'{
'''int'microphoneValue'='analogRead(PHOTOSENSE_ANA_PIN);
'''Serial.print("Sensor'Value:'");
'''Serial.println(microphoneValue);
'''delay(1000);
'''
}

More Related Content

Viewers also liked

Viewers also liked (14)

Produkty Xyngular
Produkty XyngularProdukty Xyngular
Produkty Xyngular
 
Stay and Play
Stay and PlayStay and Play
Stay and Play
 
Perdue writing presentation
Perdue writing presentationPerdue writing presentation
Perdue writing presentation
 
Sismicadita
SismicaditaSismicadita
Sismicadita
 
Tobacco - Asia
Tobacco - AsiaTobacco - Asia
Tobacco - Asia
 
соц-дем 11'11 (NashKiev.UA)
соц-дем 11'11 (NashKiev.UA)соц-дем 11'11 (NashKiev.UA)
соц-дем 11'11 (NashKiev.UA)
 
Wheelchairs africa and americas
Wheelchairs   africa and americasWheelchairs   africa and americas
Wheelchairs africa and americas
 
соц-дем_07-08'10 (NashKiev.UA)
соц-дем_07-08'10 (NashKiev.UA)соц-дем_07-08'10 (NashKiev.UA)
соц-дем_07-08'10 (NashKiev.UA)
 
Making porridge and chapatis
Making porridge and chapatisMaking porridge and chapatis
Making porridge and chapatis
 
Hotel Premier Luxury Mountain Resort , Bansko,Bulgaria
Hotel Premier Luxury Mountain Resort , Bansko,BulgariaHotel Premier Luxury Mountain Resort , Bansko,Bulgaria
Hotel Premier Luxury Mountain Resort , Bansko,Bulgaria
 
9-11
9-119-11
9-11
 
Valve markets in european countries
Valve markets in european countriesValve markets in european countries
Valve markets in european countries
 
PENO3
PENO3PENO3
PENO3
 
Ae member survey_presentation
Ae member survey_presentationAe member survey_presentation
Ae member survey_presentation
 

Similar to P&O3 session 1

Learning at a Distance Part II
Learning at a Distance Part IILearning at a Distance Part II
Learning at a Distance Part IIRDC ZP
 
Open Learning Analytics Network - Summit Europe 2014
Open Learning Analytics Network - Summit Europe 2014Open Learning Analytics Network - Summit Europe 2014
Open Learning Analytics Network - Summit Europe 2014LACE Project
 
L ders design for a teacher ld workshop (english)
L ders design for a teacher ld workshop (english)L ders design for a teacher ld workshop (english)
L ders design for a teacher ld workshop (english)lprisan
 
AmI 2015 - Course Introduction
AmI 2015 - Course IntroductionAmI 2015 - Course Introduction
AmI 2015 - Course IntroductionFulvio Corno
 
EDEN 2015 - EMMA workshop "An introduction to MOOC design"
EDEN 2015 - EMMA workshop "An introduction to MOOC design"EDEN 2015 - EMMA workshop "An introduction to MOOC design"
EDEN 2015 - EMMA workshop "An introduction to MOOC design"EUmoocs
 
Welcome speech by Symeon Retalis
Welcome speech by Symeon RetalisWelcome speech by Symeon Retalis
Welcome speech by Symeon Retalismrc12
 
Prototyping - the what, why and how at the University of Edinburgh
Prototyping - the what, why and how at the University of EdinburghPrototyping - the what, why and how at the University of Edinburgh
Prototyping - the what, why and how at the University of EdinburghNeil Allison
 
Presentation: Fab Teletransportation at Fab9 Japan
Presentation: Fab Teletransportation at Fab9 JapanPresentation: Fab Teletransportation at Fab9 Japan
Presentation: Fab Teletransportation at Fab9 JapanHeloisa Neves
 
Les 9 - Informatie Visualisatie
Les 9 - Informatie VisualisatieLes 9 - Informatie Visualisatie
Les 9 - Informatie VisualisatieJoris Klerkx
 
How to create good 21st century language learning tasks
How to create good 21st century language learning tasksHow to create good 21st century language learning tasks
How to create good 21st century language learning tasksTom Walton
 
Workbox isabel evans v9 star west2015 nztest 2015 tutorial half day
Workbox isabel evans v9 star west2015 nztest 2015 tutorial half dayWorkbox isabel evans v9 star west2015 nztest 2015 tutorial half day
Workbox isabel evans v9 star west2015 nztest 2015 tutorial half dayIsabel Evans
 
Design Thinking.pdf
Design Thinking.pdfDesign Thinking.pdf
Design Thinking.pdfHemin Hassan
 

Similar to P&O3 session 1 (20)

Lecture 13 Wikis
Lecture 13   WikisLecture 13   Wikis
Lecture 13 Wikis
 
Conole edinburgh
Conole edinburghConole edinburgh
Conole edinburgh
 
NUS PhD e-open day 2020
NUS PhD e-open day 2020NUS PhD e-open day 2020
NUS PhD e-open day 2020
 
Learning at a Distance Part II
Learning at a Distance Part IILearning at a Distance Part II
Learning at a Distance Part II
 
Open Learning Analytics Network - Summit Europe 2014
Open Learning Analytics Network - Summit Europe 2014Open Learning Analytics Network - Summit Europe 2014
Open Learning Analytics Network - Summit Europe 2014
 
L ders design for a teacher ld workshop (english)
L ders design for a teacher ld workshop (english)L ders design for a teacher ld workshop (english)
L ders design for a teacher ld workshop (english)
 
Lec 01 introduction
Lec 01   introductionLec 01   introduction
Lec 01 introduction
 
AmI 2015 - Course Introduction
AmI 2015 - Course IntroductionAmI 2015 - Course Introduction
AmI 2015 - Course Introduction
 
Lak12 jlsantos-v2
Lak12 jlsantos-v2Lak12 jlsantos-v2
Lak12 jlsantos-v2
 
EDEN 2015 - EMMA workshop "An introduction to MOOC design"
EDEN 2015 - EMMA workshop "An introduction to MOOC design"EDEN 2015 - EMMA workshop "An introduction to MOOC design"
EDEN 2015 - EMMA workshop "An introduction to MOOC design"
 
Arduino.pptx
Arduino.pptxArduino.pptx
Arduino.pptx
 
Welcome speech by Symeon Retalis
Welcome speech by Symeon RetalisWelcome speech by Symeon Retalis
Welcome speech by Symeon Retalis
 
Design 'super' sprint
Design 'super' sprintDesign 'super' sprint
Design 'super' sprint
 
Prototyping - the what, why and how at the University of Edinburgh
Prototyping - the what, why and how at the University of EdinburghPrototyping - the what, why and how at the University of Edinburgh
Prototyping - the what, why and how at the University of Edinburgh
 
Presentation: Fab Teletransportation at Fab9 Japan
Presentation: Fab Teletransportation at Fab9 JapanPresentation: Fab Teletransportation at Fab9 Japan
Presentation: Fab Teletransportation at Fab9 Japan
 
How to Present Scientific Work
How to Present Scientific WorkHow to Present Scientific Work
How to Present Scientific Work
 
Les 9 - Informatie Visualisatie
Les 9 - Informatie VisualisatieLes 9 - Informatie Visualisatie
Les 9 - Informatie Visualisatie
 
How to create good 21st century language learning tasks
How to create good 21st century language learning tasksHow to create good 21st century language learning tasks
How to create good 21st century language learning tasks
 
Workbox isabel evans v9 star west2015 nztest 2015 tutorial half day
Workbox isabel evans v9 star west2015 nztest 2015 tutorial half dayWorkbox isabel evans v9 star west2015 nztest 2015 tutorial half day
Workbox isabel evans v9 star west2015 nztest 2015 tutorial half day
 
Design Thinking.pdf
Design Thinking.pdfDesign Thinking.pdf
Design Thinking.pdf
 

More from Sven Charleer

Game UX Summit - Designing for the Audience
Game UX Summit - Designing for the AudienceGame UX Summit - Designing for the Audience
Game UX Summit - Designing for the AudienceSven Charleer
 
Don't Let the Data Do the Talking: Better Data Visualisation through UX Design
Don't Let the Data Do the Talking: Better Data Visualisation through UX DesignDon't Let the Data Do the Talking: Better Data Visualisation through UX Design
Don't Let the Data Do the Talking: Better Data Visualisation through UX DesignSven Charleer
 
Data driven dialogue through collaborative dashboards
Data driven dialogue through collaborative dashboardsData driven dialogue through collaborative dashboards
Data driven dialogue through collaborative dashboardsSven Charleer
 
Real-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
Real-time dashboards to support eSports spectators - CHI PLAY '18 MelbourneReal-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
Real-time dashboards to support eSports spectators - CHI PLAY '18 MelbourneSven Charleer
 
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...Sven Charleer
 
Preliminary PhD Defence - Student-facing Dashboards
Preliminary PhD Defence - Student-facing DashboardsPreliminary PhD Defence - Student-facing Dashboards
Preliminary PhD Defence - Student-facing DashboardsSven Charleer
 
Studie Traject Begeleiding, Learning Dashboards
Studie Traject Begeleiding, Learning DashboardsStudie Traject Begeleiding, Learning Dashboards
Studie Traject Begeleiding, Learning DashboardsSven Charleer
 
Creating Effective Learning Analytics Dashboards: 
Lessons Learnt
Creating Effective Learning Analytics Dashboards: 
Lessons LearntCreating Effective Learning Analytics Dashboards: 
Lessons Learnt
Creating Effective Learning Analytics Dashboards: 
Lessons LearntSven Charleer
 
Faceted Search on Coordinated Tablets and Tabletop: a Comparison
Faceted Search on Coordinated Tablets and Tabletop: a ComparisonFaceted Search on Coordinated Tablets and Tabletop: a Comparison
Faceted Search on Coordinated Tablets and Tabletop: a ComparisonSven Charleer
 
Intro to Learning Analytics
Intro to Learning AnalyticsIntro to Learning Analytics
Intro to Learning AnalyticsSven Charleer
 
PoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
PoPI: Glyph Designs for Collaborative Filtering on Interactive TabletopsPoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
PoPI: Glyph Designs for Collaborative Filtering on Interactive TabletopsSven Charleer
 
Exploring Inquiry-Based Learning Analytics through Interactive Surfaces
Exploring Inquiry-Based Learning Analytics through Interactive SurfacesExploring Inquiry-Based Learning Analytics through Interactive Surfaces
Exploring Inquiry-Based Learning Analytics through Interactive SurfacesSven Charleer
 
Leren, Doceren en Technologie: Visual Learning Analytics Workshop
Leren, Doceren en Technologie: Visual Learning Analytics WorkshopLeren, Doceren en Technologie: Visual Learning Analytics Workshop
Leren, Doceren en Technologie: Visual Learning Analytics WorkshopSven Charleer
 
PenO 3 2014 sessie 2
PenO 3 2014 sessie 2PenO 3 2014 sessie 2
PenO 3 2014 sessie 2Sven Charleer
 
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)Sven Charleer
 
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ HarvardLearning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ HarvardSven Charleer
 

More from Sven Charleer (20)

Game UX Summit - Designing for the Audience
Game UX Summit - Designing for the AudienceGame UX Summit - Designing for the Audience
Game UX Summit - Designing for the Audience
 
Don't Let the Data Do the Talking: Better Data Visualisation through UX Design
Don't Let the Data Do the Talking: Better Data Visualisation through UX DesignDon't Let the Data Do the Talking: Better Data Visualisation through UX Design
Don't Let the Data Do the Talking: Better Data Visualisation through UX Design
 
Data driven dialogue through collaborative dashboards
Data driven dialogue through collaborative dashboardsData driven dialogue through collaborative dashboards
Data driven dialogue through collaborative dashboards
 
Real-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
Real-time dashboards to support eSports spectators - CHI PLAY '18 MelbourneReal-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
Real-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
 
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
 
Preliminary PhD Defence - Student-facing Dashboards
Preliminary PhD Defence - Student-facing DashboardsPreliminary PhD Defence - Student-facing Dashboards
Preliminary PhD Defence - Student-facing Dashboards
 
Studie Traject Begeleiding, Learning Dashboards
Studie Traject Begeleiding, Learning DashboardsStudie Traject Begeleiding, Learning Dashboards
Studie Traject Begeleiding, Learning Dashboards
 
Creating Effective Learning Analytics Dashboards: 
Lessons Learnt
Creating Effective Learning Analytics Dashboards: 
Lessons LearntCreating Effective Learning Analytics Dashboards: 
Lessons Learnt
Creating Effective Learning Analytics Dashboards: 
Lessons Learnt
 
Faceted Search on Coordinated Tablets and Tabletop: a Comparison
Faceted Search on Coordinated Tablets and Tabletop: a ComparisonFaceted Search on Coordinated Tablets and Tabletop: a Comparison
Faceted Search on Coordinated Tablets and Tabletop: a Comparison
 
Peno3server
Peno3serverPeno3server
Peno3server
 
Intro to Learning Analytics
Intro to Learning AnalyticsIntro to Learning Analytics
Intro to Learning Analytics
 
PoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
PoPI: Glyph Designs for Collaborative Filtering on Interactive TabletopsPoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
PoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
 
Exploring Inquiry-Based Learning Analytics through Interactive Surfaces
Exploring Inquiry-Based Learning Analytics through Interactive SurfacesExploring Inquiry-Based Learning Analytics through Interactive Surfaces
Exploring Inquiry-Based Learning Analytics through Interactive Surfaces
 
Leren, Doceren en Technologie: Visual Learning Analytics Workshop
Leren, Doceren en Technologie: Visual Learning Analytics WorkshopLeren, Doceren en Technologie: Visual Learning Analytics Workshop
Leren, Doceren en Technologie: Visual Learning Analytics Workshop
 
PenO 3 2014 sessie 2
PenO 3 2014 sessie 2PenO 3 2014 sessie 2
PenO 3 2014 sessie 2
 
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
 
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ HarvardLearning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
 
Learning Dashboards
Learning DashboardsLearning Dashboards
Learning Dashboards
 
Learning Dashboards
Learning DashboardsLearning Dashboards
Learning Dashboards
 
LARA.emo #mume13
LARA.emo #mume13LARA.emo #mume13
LARA.emo #mume13
 

Recently uploaded

Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 

Recently uploaded (20)

Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 

P&O3 session 1