SlideShare ist ein Scribd-Unternehmen logo
1 von 27
Downloaden Sie, um offline zu lesen
Library Carpentry
Week One: Basics
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International
License. Exceptions: logos, embeds to and from external sources and direct quotations
Schedule
Week 1: Some Basics
Week 2: Controlling Data (with the Shell)
Week 3: Versioning Data (with Git)
Week 4: Cleaning Data (with Open Refine)
@j_w_baker
Where to go for help
Stickers
Helpers
Sticky notes
github.com/LibraryCarpentry
@j_w_baker
Final admin
Same place, same time
Worksheets
Tea, coffee, snacks, food
Roam around
Wifi
@j_w_baker
Week 1: Some Basics
18:00-18:45 Jargon Busting
18:45-19:30 Foundations
19:30-20:15 Regular Expressions
@j_w_baker
Jargon Busting
Teams of 5 or 6
Write terms you want busting on stickies
Cluster (retaining duplicates)
Discuss and explain
Note resolved terms
Note unresolved terms
Report back
@j_w_baker
Foundations
The Computer is Stupid
Why automate
Keyboard shortcuts are your friend
Plain text formats are your friend
Structuring files and folders
@j_w_baker
Foundations
The Computer is Stupid
ERROR
@j_w_baker
Foundations
Why automate?
Borrow, borrow, borrow
There is no correct language
Professional development
Knowing some code ~ evaluating software
Making time to do fun stuff!
Andromeda Yelton, "Coding for Librarians: Learning by Example",
Library Technology Reports 51:3 (April 2015), doi: 10.5860/ltr.51n3
@j_w_baker
Foundations
Why automate?
Credit: Andy Kirk
@j_w_baker
Foundations
Keyboard shortcuts are your friend
Efficiency and control
@j_w_baker
Foundations
Plain text formats are your friend
Computers process them better
Platform agnostic
Display orientated files aren't your friend
Markdown
@j_w_baker
Foundations
Structuring files and folders
Consistent and predictable data structure
Semantic-data hybrid directory names
Your own system is fine
Links files and directories with names
You are the most likely person to forget
what you once did!
@j_w_baker
Regular Expressions
Match on types of character
Match patterns
Capture the parts that match your pattern
@j_w_baker
Regular Expressions
organi[sz]e
organise (match)
organize (match)
reorganise (match part so will also find)
reorganize (match part so will also find)
@j_w_baker
Regular Expressions
[ABC] matches A or B or C.
[A-Z] matches any upper case letter.
[A-Za-z0-9] matches any upper or lower
case letter or any digit.
@j_w_baker
Regular Expressions
. matches any character at all.
d matches any single digit.
w matches any part of word character.
s matches any space, tab, or newline.
b matches a word boundary.
^ defines the start of the string.
$ defines the end of the string (starting with ^
and ending with $ will effectively find lines/cells that only
contain your expression).
@j_w_baker
Regular Expressions
^[Oo]rgani.e$
@j_w_baker
Regular Expressions
* matches proceeding character any
number of times including zero.
+ matches proceeding character any
number of times excluding zero.
? matches the proceeding character one
or zero times.
{VALUE,VALUE} matches proceeding
character a defined number of times.
| simply means or.
@j_w_baker
Regular Expressions
^[Oo]rgani.ew*
@j_w_baker
Regular Expressions
[Oo]rgani.ew+$
@j_w_baker
Regular Expressions
^[Oo]rgani.ew?b
@j_w_baker
Regular Expressions
b[Oo]rgani.ew{2}b
@j_w_baker
Regular Expressions
b[Oo]rgani.eb|b[Oo]rgani.ew{1}b
@j_w_baker
Regular Expressions
Exercise
Teams of 5 or 6
Work through handout
Split into two teams and write:
- strings that need regex
- regex that need outputs
Test each other!
@j_w_baker
Next Week
Week 2: Controlling Data (with the Shell)
You will need a computer
Set-up instructions on Github
Log an issue if you have trouble
See you next week!
@j_w_baker
Library Carpentry
Week One: Basics
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International
License. Exceptions: logos, embeds to and from external sources and direct quotations
------------------------------------------------------------------------------------------------------------------------------------------------------------

Weitere ähnliche Inhalte

Ähnlich wie Library Carpentry. Week One: Basics

Hacker 102 - regexes w/Javascript, Python
Hacker 102 - regexes w/Javascript, PythonHacker 102 - regexes w/Javascript, Python
Hacker 102 - regexes w/Javascript, PythonDan Chudnov
 
Hacker102 - RegExes w/JavaScript and Python
Hacker102 - RegExes w/JavaScript and PythonHacker102 - RegExes w/JavaScript and Python
Hacker102 - RegExes w/JavaScript and PythonDan Chudnov
 
Python advanced 2. regular expression in python
Python advanced 2. regular expression in pythonPython advanced 2. regular expression in python
Python advanced 2. regular expression in pythonJohn(Qiang) Zhang
 
Don't Fear the Regex - CapitalCamp/GovDays 2014
Don't Fear the Regex - CapitalCamp/GovDays 2014Don't Fear the Regex - CapitalCamp/GovDays 2014
Don't Fear the Regex - CapitalCamp/GovDays 2014Sandy Smith
 
Regular Expressions: JavaScript And Beyond
Regular Expressions: JavaScript And BeyondRegular Expressions: JavaScript And Beyond
Regular Expressions: JavaScript And BeyondMax Shirshin
 
Tdd is Dead, Long Live TDD
Tdd is Dead, Long Live TDDTdd is Dead, Long Live TDD
Tdd is Dead, Long Live TDDJonathan Acker
 
/Regex makes me want to (weep|give up|(╯°□°)╯︵ ┻━┻)\.?/i
/Regex makes me want to (weep|give up|(╯°□°)╯︵ ┻━┻)\.?/i/Regex makes me want to (weep|give up|(╯°□°)╯︵ ┻━┻)\.?/i
/Regex makes me want to (weep|give up|(╯°□°)╯︵ ┻━┻)\.?/ibrettflorio
 
FUNDAMENTALS OF REGULAR EXPRESSION (RegEX).pdf
FUNDAMENTALS OF REGULAR EXPRESSION (RegEX).pdfFUNDAMENTALS OF REGULAR EXPRESSION (RegEX).pdf
FUNDAMENTALS OF REGULAR EXPRESSION (RegEX).pdfBryan Alejos
 
Regular expressions
Regular expressionsRegular expressions
Regular expressionsRaghu nath
 
Regular expressions
Regular expressionsRegular expressions
Regular expressionskeeyre
 
Regular Expressions and You
Regular Expressions and YouRegular Expressions and You
Regular Expressions and YouJames Armes
 
Scala in practice - 3 years later
Scala in practice - 3 years laterScala in practice - 3 years later
Scala in practice - 3 years laterpatforna
 

Ähnlich wie Library Carpentry. Week One: Basics (20)

Hacker 102 - regexes w/Javascript, Python
Hacker 102 - regexes w/Javascript, PythonHacker 102 - regexes w/Javascript, Python
Hacker 102 - regexes w/Javascript, Python
 
Hacker102 - RegExes w/JavaScript and Python
Hacker102 - RegExes w/JavaScript and PythonHacker102 - RegExes w/JavaScript and Python
Hacker102 - RegExes w/JavaScript and Python
 
Python advanced 2. regular expression in python
Python advanced 2. regular expression in pythonPython advanced 2. regular expression in python
Python advanced 2. regular expression in python
 
Don't Fear the Regex - CapitalCamp/GovDays 2014
Don't Fear the Regex - CapitalCamp/GovDays 2014Don't Fear the Regex - CapitalCamp/GovDays 2014
Don't Fear the Regex - CapitalCamp/GovDays 2014
 
2.regular expressions
2.regular expressions2.regular expressions
2.regular expressions
 
P3 2018 python_regexes
P3 2018 python_regexesP3 2018 python_regexes
P3 2018 python_regexes
 
Ruby_Basic
Ruby_BasicRuby_Basic
Ruby_Basic
 
Python - Lecture 7
Python - Lecture 7Python - Lecture 7
Python - Lecture 7
 
Regular Expressions: JavaScript And Beyond
Regular Expressions: JavaScript And BeyondRegular Expressions: JavaScript And Beyond
Regular Expressions: JavaScript And Beyond
 
Tdd is Dead, Long Live TDD
Tdd is Dead, Long Live TDDTdd is Dead, Long Live TDD
Tdd is Dead, Long Live TDD
 
Regular Expressions
Regular ExpressionsRegular Expressions
Regular Expressions
 
/Regex makes me want to (weep|give up|(╯°□°)╯︵ ┻━┻)\.?/i
/Regex makes me want to (weep|give up|(╯°□°)╯︵ ┻━┻)\.?/i/Regex makes me want to (weep|give up|(╯°□°)╯︵ ┻━┻)\.?/i
/Regex makes me want to (weep|give up|(╯°□°)╯︵ ┻━┻)\.?/i
 
Regular Expressions
Regular ExpressionsRegular Expressions
Regular Expressions
 
FUNDAMENTALS OF REGULAR EXPRESSION (RegEX).pdf
FUNDAMENTALS OF REGULAR EXPRESSION (RegEX).pdfFUNDAMENTALS OF REGULAR EXPRESSION (RegEX).pdf
FUNDAMENTALS OF REGULAR EXPRESSION (RegEX).pdf
 
Regular expressions
Regular expressionsRegular expressions
Regular expressions
 
Regular expressions
Regular expressionsRegular expressions
Regular expressions
 
Regular expressions
Regular expressionsRegular expressions
Regular expressions
 
Regular Expressions and You
Regular Expressions and YouRegular Expressions and You
Regular Expressions and You
 
Intro to Perl and Bioperl
Intro to Perl and BioperlIntro to Perl and Bioperl
Intro to Perl and Bioperl
 
Scala in practice - 3 years later
Scala in practice - 3 years laterScala in practice - 3 years later
Scala in practice - 3 years later
 

Mehr von James Baker

1.5 million words of Mary Dorothy George: a computational approach to curator...
1.5 million words of Mary Dorothy George: a computational approach to curator...1.5 million words of Mary Dorothy George: a computational approach to curator...
1.5 million words of Mary Dorothy George: a computational approach to curator...James Baker
 
Digital History in the student learning experience
Digital History in the student learning experienceDigital History in the student learning experience
Digital History in the student learning experienceJames Baker
 
Decolonial Futures for Colonial Metadata, 1838-present
Decolonial Futures for Colonial Metadata, 1838-presentDecolonial Futures for Colonial Metadata, 1838-present
Decolonial Futures for Colonial Metadata, 1838-presentJames Baker
 
The Programming Historian: Open Access, Open Source, Open Project
The Programming Historian: Open Access, Open Source, Open ProjectThe Programming Historian: Open Access, Open Source, Open Project
The Programming Historian: Open Access, Open Source, Open ProjectJames Baker
 
Outlook: Email Archives , 1990-2007
Outlook: Email Archives , 1990-2007Outlook: Email Archives , 1990-2007
Outlook: Email Archives , 1990-2007James Baker
 
Forensic Recovery from Data Storage
Forensic Recovery from Data StorageForensic Recovery from Data Storage
Forensic Recovery from Data StorageJames Baker
 
Digital History in the student learning experience
Digital History in the student learning experienceDigital History in the student learning experience
Digital History in the student learning experienceJames Baker
 
Who is the Digital Historian?
Who is the Digital Historian?Who is the Digital Historian?
Who is the Digital Historian?James Baker
 
Image Recognition with Pastec
Image Recognition with PastecImage Recognition with Pastec
Image Recognition with PastecJames Baker
 
Publication and Dissemination of Data
Publication and Dissemination of DataPublication and Dissemination of Data
Publication and Dissemination of DataJames Baker
 
Library Carpentry: software skills training for library professionals, Chart...
 Library Carpentry: software skills training for library professionals, Chart... Library Carpentry: software skills training for library professionals, Chart...
Library Carpentry: software skills training for library professionals, Chart...James Baker
 
Enabling Complex Analysis of Large-Scale Digital Collections: Humanities Rese...
Enabling Complex Analysis of Large-Scale Digital Collections: Humanities Rese...Enabling Complex Analysis of Large-Scale Digital Collections: Humanities Rese...
Enabling Complex Analysis of Large-Scale Digital Collections: Humanities Rese...James Baker
 
Hard disks as archives of everyday life
Hard disks as archives of everyday lifeHard disks as archives of everyday life
Hard disks as archives of everyday lifeJames Baker
 
Ditching the Digital
Ditching the DigitalDitching the Digital
Ditching the DigitalJames Baker
 
Complex Analysis of Large Scale Digital Collections: reflections on some oppo...
Complex Analysis of Large Scale Digital Collections: reflections on some oppo...Complex Analysis of Large Scale Digital Collections: reflections on some oppo...
Complex Analysis of Large Scale Digital Collections: reflections on some oppo...James Baker
 
The Hard Disk as the new Paper Archive: opportunities and challenges for hist...
The Hard Disk as the new Paper Archive: opportunities and challenges for hist...The Hard Disk as the new Paper Archive: opportunities and challenges for hist...
The Hard Disk as the new Paper Archive: opportunities and challenges for hist...James Baker
 
Acts of being in proxies for prints: People in the Catalogue of Political and...
Acts of being in proxies for prints: People in the Catalogue of Political and...Acts of being in proxies for prints: People in the Catalogue of Political and...
Acts of being in proxies for prints: People in the Catalogue of Political and...James Baker
 
The Hard Disk as the new Paper Archive
The Hard Disk as the new Paper ArchiveThe Hard Disk as the new Paper Archive
The Hard Disk as the new Paper ArchiveJames Baker
 
On Open Access monograph publishing for Arts, Humanities and Social Science R...
On Open Access monograph publishing for Arts, Humanities and Social Science R...On Open Access monograph publishing for Arts, Humanities and Social Science R...
On Open Access monograph publishing for Arts, Humanities and Social Science R...James Baker
 
Me in three minutes
Me in three minutesMe in three minutes
Me in three minutesJames Baker
 

Mehr von James Baker (20)

1.5 million words of Mary Dorothy George: a computational approach to curator...
1.5 million words of Mary Dorothy George: a computational approach to curator...1.5 million words of Mary Dorothy George: a computational approach to curator...
1.5 million words of Mary Dorothy George: a computational approach to curator...
 
Digital History in the student learning experience
Digital History in the student learning experienceDigital History in the student learning experience
Digital History in the student learning experience
 
Decolonial Futures for Colonial Metadata, 1838-present
Decolonial Futures for Colonial Metadata, 1838-presentDecolonial Futures for Colonial Metadata, 1838-present
Decolonial Futures for Colonial Metadata, 1838-present
 
The Programming Historian: Open Access, Open Source, Open Project
The Programming Historian: Open Access, Open Source, Open ProjectThe Programming Historian: Open Access, Open Source, Open Project
The Programming Historian: Open Access, Open Source, Open Project
 
Outlook: Email Archives , 1990-2007
Outlook: Email Archives , 1990-2007Outlook: Email Archives , 1990-2007
Outlook: Email Archives , 1990-2007
 
Forensic Recovery from Data Storage
Forensic Recovery from Data StorageForensic Recovery from Data Storage
Forensic Recovery from Data Storage
 
Digital History in the student learning experience
Digital History in the student learning experienceDigital History in the student learning experience
Digital History in the student learning experience
 
Who is the Digital Historian?
Who is the Digital Historian?Who is the Digital Historian?
Who is the Digital Historian?
 
Image Recognition with Pastec
Image Recognition with PastecImage Recognition with Pastec
Image Recognition with Pastec
 
Publication and Dissemination of Data
Publication and Dissemination of DataPublication and Dissemination of Data
Publication and Dissemination of Data
 
Library Carpentry: software skills training for library professionals, Chart...
 Library Carpentry: software skills training for library professionals, Chart... Library Carpentry: software skills training for library professionals, Chart...
Library Carpentry: software skills training for library professionals, Chart...
 
Enabling Complex Analysis of Large-Scale Digital Collections: Humanities Rese...
Enabling Complex Analysis of Large-Scale Digital Collections: Humanities Rese...Enabling Complex Analysis of Large-Scale Digital Collections: Humanities Rese...
Enabling Complex Analysis of Large-Scale Digital Collections: Humanities Rese...
 
Hard disks as archives of everyday life
Hard disks as archives of everyday lifeHard disks as archives of everyday life
Hard disks as archives of everyday life
 
Ditching the Digital
Ditching the DigitalDitching the Digital
Ditching the Digital
 
Complex Analysis of Large Scale Digital Collections: reflections on some oppo...
Complex Analysis of Large Scale Digital Collections: reflections on some oppo...Complex Analysis of Large Scale Digital Collections: reflections on some oppo...
Complex Analysis of Large Scale Digital Collections: reflections on some oppo...
 
The Hard Disk as the new Paper Archive: opportunities and challenges for hist...
The Hard Disk as the new Paper Archive: opportunities and challenges for hist...The Hard Disk as the new Paper Archive: opportunities and challenges for hist...
The Hard Disk as the new Paper Archive: opportunities and challenges for hist...
 
Acts of being in proxies for prints: People in the Catalogue of Political and...
Acts of being in proxies for prints: People in the Catalogue of Political and...Acts of being in proxies for prints: People in the Catalogue of Political and...
Acts of being in proxies for prints: People in the Catalogue of Political and...
 
The Hard Disk as the new Paper Archive
The Hard Disk as the new Paper ArchiveThe Hard Disk as the new Paper Archive
The Hard Disk as the new Paper Archive
 
On Open Access monograph publishing for Arts, Humanities and Social Science R...
On Open Access monograph publishing for Arts, Humanities and Social Science R...On Open Access monograph publishing for Arts, Humanities and Social Science R...
On Open Access monograph publishing for Arts, Humanities and Social Science R...
 
Me in three minutes
Me in three minutesMe in three minutes
Me in three minutes
 

Kürzlich hochgeladen

DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
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
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
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
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
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
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
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
 

Kürzlich hochgeladen (20)

DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
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 🔝✔️✔️
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
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🔝
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
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
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.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
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
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
 

Library Carpentry. Week One: Basics