SlideShare ist ein Scribd-Unternehmen logo
1 von 54
Libsys 7 to Koha
Data Migration , Customization & Implementation
of Open Source ILMS
CHAITANYA PRATAP
SINGH
MASTER OF COMPUTER
APPLICATIONS,
SOUTH ASIAN UNIVERSITY, NEW
DELHI
ABOUT THE ORGANIZATION
 National Institute of Science Communication and
Information Resources (NISCAIR),  located  at New 
Delhi, India,  is  one  of  the  premier  information  science 
institutes  in  India  under the umbrella  of  CSIR  (Council of 
Scientific  and  Industrial  Research)  that  comprise  38  other 
labs/institutes  of  different  disciplines  spread  across  the 
country.
 NISCAIR came into existence on 30 September 2002 with 
the  merger  of  National Institute of Science
Communication (NISCOM)  and  Indian National
Scientific Documentation  Centre  (INSDOC).  Both 
NISCOM  and  INSDOC,  the  two  premier  institutes  of  the 
Council of Scientific and Industrial Research (CSIR), were 
devoted  to  dissemination  and  documentation  of  S&T 
information, respectively.
PROJECT STRUCTURE
CSIR has proposed to develop a CSIR wide knowledge gateway that 
will have the following modules
CSIR-Cloud
 Capacity and Capability Building: CSIR Open Source Cloud Computing
Infrastructure and Open Source Software Technology Solution Cell
CSIR-Cat
 CSIR Distributed Library/Virtualized Union OPAC of CSIR Holdings,
using Z39.50 protocol & Open Source Integrated Library Management
Software
CSIR-Trend
 Multi-dimensional Analysis System (MDAS) - Extended information
access for enabling excellence
 
OBJECTIVE OF CSIR-CAT
 To Implement Open Source Integrated Library System 
software Koha  at the place of proprietary software 
which are already in use.
  To do federated search in Koha for distributed libraries 
i.e. 39 National Libraries of India.
NEED OF KOHA
 The open source software solutions are very cost effective as 
compared to proprietary software solutions this initiative will 
also boost-up the movement of open source in India and thus 
the millions of Rupees can be saved on software.
 Libsys-  Rs. 4,50,000
 They charge Rs. 10,000 on each arrival.
 You have to purchase different modules otherwise it will not 
work.
CSIR-CAT
Things to be done in CSIR-CAT
 Koha Customization & Implementation
 Migration of data from Libsys 7.0 to Koha
 OPAC Customization
WHY CSIR-CAT?
1. Reduction of cost of ownership of ILMS 
2. Networking of CSIR KRCs
3. Implementation of uniform & international standard across all CSIR 
KRCs like MARC 21, Z39.50 so that data can be migrated to any 
other format
4. Avoid vendor locking for ILMS by using open source software
5. Increase in efficiency for Information Scientists due to reduced 
classification efforts of knowledge managers/ information scientists 
by importing/sharing catalogues from each other or from other 
online sources like library of congress
6. Optimum utilization/sharing of  information resources through 
ILL available  in KRCs
7. Avoid duplication of resources  like books, monographs, reports, 
thesis, standards, patents, etc among CSIR  KRC
SYSTEM ARCHITECTURE
CSIR-CAT
Data Migration Federated Search
SYSTEM OVERVIEW
DATA MIGRATION
PROCESS
ISSUES WITH LIBSYS  
1. There is no support from LibSys as it paid service
2. All modules are not purchased
3. Export / import module is not working
4. Libsys 7.0 stores data  in RDBMS but NPL library do not 
have access to database management system which is placed in 
IT Division
5. Only information available is terms of reports which are 
available in text files
6. In text files, regional language data is not directly readable
7. No information is available in public how it has been stored
8. OPAC module is not operational
HOW DATA HAS BEEN MIGRATED
FROM LIBSYS7 TO KOHA?
1. Generated  multiple  text  report  files  with  different  filelds. 
Accession  number  is  printed  in  all  the  files  to  join  them 
latter on. It took three days because connection was too slow
2. Converted these text files to excel
3. Removed headers, footers and blank rows through macro
4. Converted these files in RDBMS tables
CONT…
5. Processed records through program to make proper rows 
(data got printed in multiple rows so it was concatenated)
6. joined all the processed tables
7. converted back to excel
8. koha need .mrc files therefore “MarcEdit tool” was used 
which took excel file generated at step 7  as input 
DATA COLLECTION MODEL
1. Bibliographic Record
2. Authority Record
3. Patron Record
4. Serial Record
5. Acquisition Record
6. Circulation Record
PROBLEM AND SOLUTION WHILE
FETCHING THE DATA OF LIBSYS 7.0
 As the existing software does not provide import/export
feature, but it does provide report generation to a file.
During this process we took the output as a text file covering
all the fields in the catalogue such as,
 Title;
 authors;
 edition;
 place of publication;
 publisher name;
 year;
 pagination;
 ISBN;
 class number;
 book number;
 accession number;
DATA CLEANING
 Generated multiple reports with different
columns,
 Trimmed the extra space between the words,
 Deleted all blank lines
 Wrote a program to bring multi-line text to single
line,
 If title was distributed in 3 lines then we
converted that multi-line to single line
FORMATTING OF THE TEXT FILE
 Figure 1. Original text file (accession number, title and author
field).
Figure 2: Original text file (accession number, edition, publisher
location,
publisher name and year of publishing).
PROBLEM IN TEXT FILE
N-Number of blank lines are present, data shown is having slash to
distinguish author and title but in some records we don’t have slash also
CONT…
TEXT IN HINDI
IMPORTING TEXT INTO EXCEL
SOLUTION :
In order to solve this we wrote macro’s for
1. Deleting blank lines
2. Deleting page numbers
3. Bringing the record in a Single Line with
correct Access number
MACRO FOR DELETING BLANK
ROWS
 Sub DeleteBlankRows()
 ' This macro deletes all rows on the active worksheet
 ' that have no value in column D.
 Dim iRow As Long
 Dim LastRow As Long
 LastRow = ActiveSheet.UsedRange.Rows.Count +
ActiveSheet.UsedRange.Row - 1
 For iRow = LastRow To 1 Step -1
 If Cells(iRow, 1) = "" And Cells(iRow, 2) = "" And Cells(iRow, 3) = "" And
Cells(iRow, 4) = "" And Cells(iRow, 5) = "" Then Rows(iRow).Delete
 If Cells(iRow, 1) <> "" And Cells(iRow, 2) = "" And Cells(iRow, 3) = "" And
Cells(iRow, 4) = "" And Cells(iRow, 5) = "" Then Rows(iRow).Delete
 Next iRow
 End Sub
MERGING INTO EXCEL
Figure 3: Multiple spreadsheets merged to form a single spreadsheet
(control number, accession number/barcode, title, author, isbn,
publishing location, class number, publisher name and
pagination).
CONVERTING FROM EXCEL FORMAT
INTO .MRK FORMAT
You will be prompted for mapping the fields to
recognize the fields by standard marc format.
Suppose for Field 0 that is first column I
entered Map to: 008 (control number) and then
click on Apply.
MAPPING OF FIELDS TO MARC TAGS
ADDITION OF DELETION OF ANY
FIELD
.MRK FILE
MRK STRUCTURE FOR SINGLE
RECORD
=LDR 00421nam a2200193Ia 45e0
=001 1
=003 CSIR-NISTADS
=008
130228s9999xx0000undd
=040 $aCSIR-NISTADS$cCSIR-NISTADS
=100 $aBrown, Michael Barratt
=245 $aEconomics of Imperialism
=260 $aLondon
=260 $bPenguin
=300 $a380
=500 $a1
=850 $aCSIR-NISTADS
=902 $a335.412, BRO
=942 $cBK
=952 $p1
CONVERT .MRK FILE TO .MRC
 Convert .mrk file into raw Marc format that can
be directly imported into Koha.
 For this again open MarcEdit and Select MARC
Tools.
 Next Select MarcMaker to convert .mrk file
into .mrc format.
 Locate your input file and name your output file.
Then Click Execute.
CONVERTING .MRK FILE TO .MRC
.MRC FILE
ABOUT KOHA
 Koha is an integrated library system (ILS) 
 It was the first open source ILS. 
 Koha was created in 1999 by Katipo Communications for 
the Horowhenua Library Trust in New Zealand. 
 The first installation went live in January of 2000.
KOHA SCRIPT
 We have made a script to install koha on CentOS, which 
makes it easy to install and saves time and effort.
LOGIN PAGE
CUSTOMIZED KOHA MAIN PAGE
IMPORTING RECORDS IN KOHA
CATALOGING
ADVANCE SEARCH PAGE
Z39.50 SEARCH
OPAC CUSTOMIZATION
ADMINISTRAION
OPAC CONFIGURATION
 Decide how you want your OPAC to look and
what content you want on the main page.
 Create a library branded stylesheet using CSS.
 Create a custom XSLT stylesheet to change the
way search results and bibliographic records
appear in the OPAC.
 Define OPAC system preferences.
 Set up your cron jobs.
OPAC SEARCH PAGE
OPAC SEARCH
PROBLEM WITH Z39.50
1. Implementation not easy
2. Does not scale well (if nodes > 100)
3. Network bandwidth
4. Z39.50 implementation at client
(“Origin’) end
5. Time Consuming
6. Slow Processing
7. All Servers should be on.
ARCHITECTURE
DESIGN
LEVEL 0 DFD OF KOHA
LEVEL 1 DFD
Flowchart of Koha
CONCLUSION & FUTURE
WORK
 Data from proprietary software migrated to Koha.
 Barcode Scanner will be attached.
 Now Union catalogue for distributed libraries will be
made by using oai-pmh protocol and harvester for
federated searching.
 Using harvester, data can be converted back to marc
for implementing Z39.50 protocol in koha for
importing records from distributed libraries.
THANK YOU


Weitere ähnliche Inhalte

Was ist angesagt? (20)

Introduction to koha
Introduction to kohaIntroduction to koha
Introduction to koha
 
INIS.pptx
INIS.pptxINIS.pptx
INIS.pptx
 
Presentation on Koha
Presentation on KohaPresentation on Koha
Presentation on Koha
 
Uniterm indexing
Uniterm indexing Uniterm indexing
Uniterm indexing
 
Koha presentation2010
Koha presentation2010Koha presentation2010
Koha presentation2010
 
Library Automation sofrwere
Library Automation sofrwereLibrary Automation sofrwere
Library Automation sofrwere
 
Dspace software
Dspace softwareDspace software
Dspace software
 
DELNET.pptx
DELNET.pptxDELNET.pptx
DELNET.pptx
 
Inis ppt
Inis pptInis ppt
Inis ppt
 
DESIDOC
DESIDOC DESIDOC
DESIDOC
 
Information Analysis Consolidation and Repackaging (IACR): an overview
Information Analysis Consolidation and Repackaging (IACR): an overviewInformation Analysis Consolidation and Repackaging (IACR): an overview
Information Analysis Consolidation and Repackaging (IACR): an overview
 
Library Automation in Circulation
Library Automation in Circulation Library Automation in Circulation
Library Automation in Circulation
 
Code of Ethics for a Librarian.pptx
Code of Ethics for a Librarian.pptxCode of Ethics for a Librarian.pptx
Code of Ethics for a Librarian.pptx
 
Koha cataloguing module
Koha cataloguing moduleKoha cataloguing module
Koha cataloguing module
 
Library automation
Library automationLibrary automation
Library automation
 
Web OPAC
Web OPAC Web OPAC
Web OPAC
 
ISBD
ISBDISBD
ISBD
 
Institutional Repositories
Institutional RepositoriesInstitutional Repositories
Institutional Repositories
 
Digital Library Software
Digital Library SoftwareDigital Library Software
Digital Library Software
 
PPT ON LIBRARY AND INFORMATION CENTER SERVICES IN THE COLLEGE
PPT ON LIBRARY AND INFORMATION CENTER  SERVICES IN THE COLLEGEPPT ON LIBRARY AND INFORMATION CENTER  SERVICES IN THE COLLEGE
PPT ON LIBRARY AND INFORMATION CENTER SERVICES IN THE COLLEGE
 

Ähnlich wie Libsys 7 to koha

Big Data Everywhere Chicago: Apache Spark Plus Many Other Frameworks -- How S...
Big Data Everywhere Chicago: Apache Spark Plus Many Other Frameworks -- How S...Big Data Everywhere Chicago: Apache Spark Plus Many Other Frameworks -- How S...
Big Data Everywhere Chicago: Apache Spark Plus Many Other Frameworks -- How S...BigDataEverywhere
 
What's new in spark 2.0?
What's new in spark 2.0?What's new in spark 2.0?
What's new in spark 2.0?Örjan Lundberg
 
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...Bill Buchan
 
Jump Start into Apache® Spark™ and Databricks
Jump Start into Apache® Spark™ and DatabricksJump Start into Apache® Spark™ and Databricks
Jump Start into Apache® Spark™ and DatabricksDatabricks
 
Strata NYC 2015 - What's coming for the Spark community
Strata NYC 2015 - What's coming for the Spark communityStrata NYC 2015 - What's coming for the Spark community
Strata NYC 2015 - What's coming for the Spark communityDatabricks
 
Azure Synapse Analytics Overview (r1)
Azure Synapse Analytics Overview (r1)Azure Synapse Analytics Overview (r1)
Azure Synapse Analytics Overview (r1)James Serra
 
Assignment # 2PreliminariesImportant Points· Evidence of acad.docx
Assignment  # 2PreliminariesImportant Points· Evidence of acad.docxAssignment  # 2PreliminariesImportant Points· Evidence of acad.docx
Assignment # 2PreliminariesImportant Points· Evidence of acad.docxjane3dyson92312
 
OAP: Optimized Analytics Package for Spark Platform with Daoyuan Wang and Yua...
OAP: Optimized Analytics Package for Spark Platform with Daoyuan Wang and Yua...OAP: Optimized Analytics Package for Spark Platform with Daoyuan Wang and Yua...
OAP: Optimized Analytics Package for Spark Platform with Daoyuan Wang and Yua...Databricks
 
Apache Spark Tutorial
Apache Spark TutorialApache Spark Tutorial
Apache Spark TutorialAhmet Bulut
 
Big data analysis using spark r published
Big data analysis using spark r publishedBig data analysis using spark r published
Big data analysis using spark r publishedDipendra Kusi
 
Cis 555 Week 4 Assignment 2 Automated Teller Machine (Atm)...
Cis 555 Week 4 Assignment 2 Automated Teller Machine (Atm)...Cis 555 Week 4 Assignment 2 Automated Teller Machine (Atm)...
Cis 555 Week 4 Assignment 2 Automated Teller Machine (Atm)...Karen Thompson
 
Big Data Processing with .NET and Spark (SQLBits 2020)
Big Data Processing with .NET and Spark (SQLBits 2020)Big Data Processing with .NET and Spark (SQLBits 2020)
Big Data Processing with .NET and Spark (SQLBits 2020)Michael Rys
 
cPanel now supports MySQL 8.0 - My Top Seven Features
cPanel now supports MySQL 8.0 - My Top Seven FeaturescPanel now supports MySQL 8.0 - My Top Seven Features
cPanel now supports MySQL 8.0 - My Top Seven FeaturesDave Stokes
 
A full Machine learning pipeline in Scikit-learn vs in scala-Spark: pros and ...
A full Machine learning pipeline in Scikit-learn vs in scala-Spark: pros and ...A full Machine learning pipeline in Scikit-learn vs in scala-Spark: pros and ...
A full Machine learning pipeline in Scikit-learn vs in scala-Spark: pros and ...Jose Quesada (hiring)
 
Composable Parallel Processing in Apache Spark and Weld
Composable Parallel Processing in Apache Spark and WeldComposable Parallel Processing in Apache Spark and Weld
Composable Parallel Processing in Apache Spark and WeldDatabricks
 
Data Engineering A Deep Dive into Databricks
Data Engineering A Deep Dive into DatabricksData Engineering A Deep Dive into Databricks
Data Engineering A Deep Dive into DatabricksKnoldus Inc.
 

Ähnlich wie Libsys 7 to koha (20)

Big Data Everywhere Chicago: Apache Spark Plus Many Other Frameworks -- How S...
Big Data Everywhere Chicago: Apache Spark Plus Many Other Frameworks -- How S...Big Data Everywhere Chicago: Apache Spark Plus Many Other Frameworks -- How S...
Big Data Everywhere Chicago: Apache Spark Plus Many Other Frameworks -- How S...
 
What's new in spark 2.0?
What's new in spark 2.0?What's new in spark 2.0?
What's new in spark 2.0?
 
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...
Lotusphere 2007 AD507 Leveraging the Power of Object Oriented Programming in ...
 
Jump Start into Apache® Spark™ and Databricks
Jump Start into Apache® Spark™ and DatabricksJump Start into Apache® Spark™ and Databricks
Jump Start into Apache® Spark™ and Databricks
 
Ad507
Ad507Ad507
Ad507
 
Strata NYC 2015 - What's coming for the Spark community
Strata NYC 2015 - What's coming for the Spark communityStrata NYC 2015 - What's coming for the Spark community
Strata NYC 2015 - What's coming for the Spark community
 
notes
notesnotes
notes
 
Azure Synapse Analytics Overview (r1)
Azure Synapse Analytics Overview (r1)Azure Synapse Analytics Overview (r1)
Azure Synapse Analytics Overview (r1)
 
Assignment # 2PreliminariesImportant Points· Evidence of acad.docx
Assignment  # 2PreliminariesImportant Points· Evidence of acad.docxAssignment  # 2PreliminariesImportant Points· Evidence of acad.docx
Assignment # 2PreliminariesImportant Points· Evidence of acad.docx
 
OAP: Optimized Analytics Package for Spark Platform with Daoyuan Wang and Yua...
OAP: Optimized Analytics Package for Spark Platform with Daoyuan Wang and Yua...OAP: Optimized Analytics Package for Spark Platform with Daoyuan Wang and Yua...
OAP: Optimized Analytics Package for Spark Platform with Daoyuan Wang and Yua...
 
Apache Spark Tutorial
Apache Spark TutorialApache Spark Tutorial
Apache Spark Tutorial
 
Big data analysis using spark r published
Big data analysis using spark r publishedBig data analysis using spark r published
Big data analysis using spark r published
 
Cis 555 Week 4 Assignment 2 Automated Teller Machine (Atm)...
Cis 555 Week 4 Assignment 2 Automated Teller Machine (Atm)...Cis 555 Week 4 Assignment 2 Automated Teller Machine (Atm)...
Cis 555 Week 4 Assignment 2 Automated Teller Machine (Atm)...
 
Big data apache spark + scala
Big data   apache spark + scalaBig data   apache spark + scala
Big data apache spark + scala
 
Big Data Processing with .NET and Spark (SQLBits 2020)
Big Data Processing with .NET and Spark (SQLBits 2020)Big Data Processing with .NET and Spark (SQLBits 2020)
Big Data Processing with .NET and Spark (SQLBits 2020)
 
cPanel now supports MySQL 8.0 - My Top Seven Features
cPanel now supports MySQL 8.0 - My Top Seven FeaturescPanel now supports MySQL 8.0 - My Top Seven Features
cPanel now supports MySQL 8.0 - My Top Seven Features
 
User Group3009
User Group3009User Group3009
User Group3009
 
A full Machine learning pipeline in Scikit-learn vs in scala-Spark: pros and ...
A full Machine learning pipeline in Scikit-learn vs in scala-Spark: pros and ...A full Machine learning pipeline in Scikit-learn vs in scala-Spark: pros and ...
A full Machine learning pipeline in Scikit-learn vs in scala-Spark: pros and ...
 
Composable Parallel Processing in Apache Spark and Weld
Composable Parallel Processing in Apache Spark and WeldComposable Parallel Processing in Apache Spark and Weld
Composable Parallel Processing in Apache Spark and Weld
 
Data Engineering A Deep Dive into Databricks
Data Engineering A Deep Dive into DatabricksData Engineering A Deep Dive into Databricks
Data Engineering A Deep Dive into Databricks
 

Mehr von Chandan Thakur

Quality improvement paradigm (QIP)
Quality improvement paradigm (QIP)Quality improvement paradigm (QIP)
Quality improvement paradigm (QIP)Chandan Thakur
 
Chord- A Scalable Peer-to-Peer Lookup Service for Internet Applications
Chord- A Scalable Peer-to-Peer Lookup Service for Internet ApplicationsChord- A Scalable Peer-to-Peer Lookup Service for Internet Applications
Chord- A Scalable Peer-to-Peer Lookup Service for Internet ApplicationsChandan Thakur
 
A maximum residual multicast protocol for large scale mobile ad hoc networks
A maximum residual multicast protocol for large scale mobile ad hoc networksA maximum residual multicast protocol for large scale mobile ad hoc networks
A maximum residual multicast protocol for large scale mobile ad hoc networksChandan Thakur
 
Presentation on component based software engineering(cbse)
Presentation on component based software engineering(cbse)Presentation on component based software engineering(cbse)
Presentation on component based software engineering(cbse)Chandan Thakur
 

Mehr von Chandan Thakur (7)

Quality improvement paradigm (QIP)
Quality improvement paradigm (QIP)Quality improvement paradigm (QIP)
Quality improvement paradigm (QIP)
 
Chord Node Join
Chord Node JoinChord Node Join
Chord Node Join
 
Chord- A Scalable Peer-to-Peer Lookup Service for Internet Applications
Chord- A Scalable Peer-to-Peer Lookup Service for Internet ApplicationsChord- A Scalable Peer-to-Peer Lookup Service for Internet Applications
Chord- A Scalable Peer-to-Peer Lookup Service for Internet Applications
 
A maximum residual multicast protocol for large scale mobile ad hoc networks
A maximum residual multicast protocol for large scale mobile ad hoc networksA maximum residual multicast protocol for large scale mobile ad hoc networks
A maximum residual multicast protocol for large scale mobile ad hoc networks
 
Shayri
ShayriShayri
Shayri
 
Nirmal baba
Nirmal babaNirmal baba
Nirmal baba
 
Presentation on component based software engineering(cbse)
Presentation on component based software engineering(cbse)Presentation on component based software engineering(cbse)
Presentation on component based software engineering(cbse)
 

Kürzlich hochgeladen

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 

Kürzlich hochgeladen (20)

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 

Libsys 7 to koha

Hinweis der Redaktion

  1. Give them those things in a clear, easily understandable way…