[CODE4LIB] Job: Library Support Assistant (part-time/term-time) at University of Nottingham

2014-11-02 Thread jobs
Library Support Assistant (part-time/term-time) University of Nottingham Nottingham **University of Nottingham - Customer Services** Salary: Not specified Brought to you by code4lib jobs: http://jobs.code4lib.org/job/17969/ To post a new job please visit http://jobs.code4lib.org/

[CODE4LIB] Job: Deputy District Director (Fort Vancouver Regional Library, Washington) at Fort Vancouver Regional Library District

2014-11-02 Thread jobs
Deputy District Director (Fort Vancouver Regional Library, Washington) Fort Vancouver Regional Library District Vancouver, Washington Deputy District Director (Fort Vancouver Regional Library, Washington) Fort Vancouver Regional Library District is seeking an experienced, energetic and innovative

[CODE4LIB] Job: Instructor or Assistant Professor - Web Services/Digital Content Librarian (Queensborough Community College, New York) at Queensborough Community College

2014-11-02 Thread jobs
Instructor or Assistant Professor - Web Services/Digital Content Librarian (Queensborough Community College, New York) Queensborough Community College New York City Instructor or Assistant Professor - Web Services/Digital Content Librarian (Queensborough Community College, New York) Job Title:In

[CODE4LIB] Job: Instructor or Assistant Professor - Electronic Resources Librarian (Queensborough Community College, New York) at Queensborough Community College

2014-11-02 Thread jobs
Instructor or Assistant Professor - Electronic Resources Librarian (Queensborough Community College, New York) Queensborough Community College New York City Instructor or Assistant Professor - Electronic Resources Librarian (Queensborough Community College, New York) Job Title: Instructor or Ass

[CODE4LIB] Job: Data Curator | Virginia Tech at Virginia Tech

2014-11-02 Thread jobs
Data Curator | Virginia Tech Virginia Tech Blacksburg US - VA - Blacksburg, Required: Master's degree or Bachelor's degree and significant experience equivalent to an advanced degree. Relevant experience in working with data and metadata for the purposes of resear Brought to you by code4lib job

Re: [CODE4LIB] Terrible Drupal vulnerability

2014-11-02 Thread Hickner, Andrew
I'd be curious to hear how others are proceeding. We had already planned to migrate our D7 sites to a centralized Drupal instance offered here at Yale and this has just accelerated the timetable. I imagine there are a lot of libraries running Drupal though who don't have this kind of option an

Re: [CODE4LIB] Terrible Drupal vulnerability

2014-11-02 Thread Cary Gordon
If you can migrate to a maintained service, you could use feeds or migrate to move your content. You could also take that approach on your own new site. Obviously, none of your entities — nodes, menus, users, blocks, taxonomies, etc. — should contain executable code. I suggest that you do not migr

Re: [CODE4LIB] Q: Summon API Service?

2014-11-02 Thread Sara Amato
Has anyone constructed Summon API queries in javascript? (assuming that they can be constructed to use jsonp and avoid cross domain problems …???) Subject: Re: Q: Summon API Service? From: Doug Chestnut Reply-To: Code for Libraries Date: Wed, 27 Oct

[CODE4LIB] MARC reporting engine

2014-11-02 Thread Stuart Yeates
I have ~800,000 MARC records from an indexing service (http://natlib.govt.nz/about-us/open-data/innz-metadata CC-BY). I am trying to generate: (a) a list of person authorities (and sundry metadata), sorted by how many times they're referenced, in wikimedia syntax (b) a view of a person authori

Re: [CODE4LIB] MARC reporting engine

2014-11-02 Thread Jonathan Rochkind
If you are, can become, or know, a programmer, that would be relatively straightforward in any programming language using the open source MARC processing library for that language. (ruby marc, pymarc, perl marc, whatever). Although you might find more trouble than you expect around authoritie

Re: [CODE4LIB] MARC reporting engine

2014-11-02 Thread Miles Fidelman
It looks like the dataset is available in XML format. Perhaps you can import it into an XML database (eXist - exist-db.org comes to mind), and then generate a report via its query capabilities. Miles Fidelman Jonathan Rochkind wrote: If you are, can become, or know, a programmer, that would

Re: [CODE4LIB] MARC reporting engine

2014-11-02 Thread Stuart Yeates
Do any of these have built-in indexing? 800k records isn't going to fit in memory and if building my own MARC indexer is 'relatively straightforward' then you're a better coder than I am. cheers stuart -- I have a new phone number: 04 463 5692 From: Co

[CODE4LIB] MARC reporting engine

2014-11-02 Thread Cary Gordon
You don't have to build your own indexer. You might use the pymarc parser to pull the records into a flat database like Mongo, then pull reports from there. It really depends on what the service is delivering. This would be much less insanity inducing than regexes in vi. I do agree with Jonathan.