SlideShare a Scribd company logo
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


More Related Content

What's hot

Library automation history Anandraj.L
Library automation history Anandraj.LLibrary automation history Anandraj.L
Library automation history Anandraj.Lanujessy
 
Structure of subject lit ppt
Structure of subject lit pptStructure of subject lit ppt
Dds
Dds Dds
Dds drrst
 
Collection development
Collection developmentCollection development
Collection development
Shwethanaik31
 
Marc 21
Marc 21Marc 21
A comparative analysis of library classification systems
A comparative analysis of library classification systemsA comparative analysis of library classification systems
A comparative analysis of library classification systems
Ali Hassan Maken
 
Library Automation A - Z Guide: A Hands on Module
Library Automation A - Z Guide: A Hands on ModuleLibrary Automation A - Z Guide: A Hands on Module
Library Automation A - Z Guide: A Hands on Module
Ashok Kumar Satapathy
 
Cataloguing
CataloguingCataloguing
Cataloguing
Sarika Sawant
 
Greenstone Digital Library
Greenstone Digital LibraryGreenstone Digital Library
Greenstone Digital Library
Imran Mansuri
 
Evaluating A Dictionary
Evaluating A DictionaryEvaluating A Dictionary
Evaluating A Dictionary
Khaleel Al Bataineh
 
Digital Library Software
Digital Library SoftwareDigital Library Software
Library and information policy at national and international 1
Library and information policy at national and international 1Library and information policy at national and international 1
Library and information policy at national and international 1
saurabh kaushik
 
Anglo-American Cataloguing Rules AACR 2 ppt
Anglo-American Cataloguing Rules AACR 2 pptAnglo-American Cataloguing Rules AACR 2 ppt
Anglo-American Cataloguing Rules AACR 2 ppt
University of Delhi
 
Z39.50: Information Retrieval protocol ppt
Z39.50: Information Retrieval protocol pptZ39.50: Information Retrieval protocol ppt
Z39.50: Information Retrieval protocol ppt
SUNILKUMARSINGH
 
KOHA - Open Source Library Management Software
KOHA - Open Source Library Management SoftwareKOHA - Open Source Library Management Software
KOHA - Open Source Library Management Software
rajivkumarmca
 
Why do you consider to adopt Koha Open Source Integrated Library System for y...
Why do you consider to adopt Koha Open Source Integrated Library System for y...Why do you consider to adopt Koha Open Source Integrated Library System for y...
Why do you consider to adopt Koha Open Source Integrated Library System for y...
Md. Zahid Hossain Shoeb
 
Collection development
Collection developmentCollection development
Collection development
Ali Hassan Maken
 

What's hot (20)

Library automation history Anandraj.L
Library automation history Anandraj.LLibrary automation history Anandraj.L
Library automation history Anandraj.L
 
Structure of subject lit ppt
Structure of subject lit pptStructure of subject lit ppt
Structure of subject lit ppt
 
Soul
Soul Soul
Soul
 
Dds
Dds Dds
Dds
 
Collection development
Collection developmentCollection development
Collection development
 
Marc 21
Marc 21Marc 21
Marc 21
 
A comparative analysis of library classification systems
A comparative analysis of library classification systemsA comparative analysis of library classification systems
A comparative analysis of library classification systems
 
Library Automation A - Z Guide: A Hands on Module
Library Automation A - Z Guide: A Hands on ModuleLibrary Automation A - Z Guide: A Hands on Module
Library Automation A - Z Guide: A Hands on Module
 
Cataloguing
CataloguingCataloguing
Cataloguing
 
Greenstone Digital Library
Greenstone Digital LibraryGreenstone Digital Library
Greenstone Digital Library
 
Koha ppt
Koha pptKoha ppt
Koha ppt
 
Evaluating A Dictionary
Evaluating A DictionaryEvaluating A Dictionary
Evaluating A Dictionary
 
Digital Library Software
Digital Library SoftwareDigital Library Software
Digital Library Software
 
Library and information policy at national and international 1
Library and information policy at national and international 1Library and information policy at national and international 1
Library and information policy at national and international 1
 
Anglo-American Cataloguing Rules AACR 2 ppt
Anglo-American Cataloguing Rules AACR 2 pptAnglo-American Cataloguing Rules AACR 2 ppt
Anglo-American Cataloguing Rules AACR 2 ppt
 
Z39.50: Information Retrieval protocol ppt
Z39.50: Information Retrieval protocol pptZ39.50: Information Retrieval protocol ppt
Z39.50: Information Retrieval protocol ppt
 
KOHA - Open Source Library Management Software
KOHA - Open Source Library Management SoftwareKOHA - Open Source Library Management Software
KOHA - Open Source Library Management Software
 
Why do you consider to adopt Koha Open Source Integrated Library System for y...
Why do you consider to adopt Koha Open Source Integrated Library System for y...Why do you consider to adopt Koha Open Source Integrated Library System for y...
Why do you consider to adopt Koha Open Source Integrated Library System for y...
 
Library Classification ppt Arun Joseph MPhil
Library Classification ppt Arun Joseph MPhilLibrary Classification ppt Arun Joseph MPhil
Library Classification ppt Arun Joseph MPhil
 
Collection development
Collection developmentCollection development
Collection development
 

Similar to 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 Databricks
Databricks
 
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
Databricks
 
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.docx
jane3dyson92312
 
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 Tutorial
Ahmet 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 published
Dipendra 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 apache spark + scala
Big data   apache spark + scalaBig data   apache spark + scala
Big data apache spark + scala
Juantomás García Molina
 
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 Features
Dave 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 Weld
Databricks
 
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
Knoldus Inc.
 

Similar to 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
 

More from 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
 
Nirmal baba
Nirmal babaNirmal baba
Nirmal baba
Chandan 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
 

More from 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)
 

Recently uploaded

De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 

Recently uploaded (20)

De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 

Libsys 7 to koha

Editor's Notes

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