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

Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
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
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
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
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
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 ...
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
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
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
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
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 

P&O3 session 1