[CODE4LIB] Local search index with Alma and Primo

2015-09-17 Thread Jason Stirnaman
x27;s UI? Apologies if this is a rehash, but I've only found this 2013 thread on the same topic: http://serials.infomotions.com/code4lib/archive/2013/201312/4587.html Contact me off list if you prefer. Thanks, Jason Jason Stirnaman Galter Health Sciences Library, Northwestern University

Re: [CODE4LIB] API to retrieve scholarly publications by author

2015-05-25 Thread Jason Stirnaman
..@u-gakugei.ac.jp) @wonox http://orcid.org/-0002-6398-9317  東京学芸大学附属図書館(教育研究支援部学術情報課)  Tel: 042-329-7217 Fax: 042-323-5994 2015-05-20 23:16 GMT+09:00 Jason Stirnaman : > Hi again. > Here are some examples implementing the ORCID API: > > using jQuery with the ORCID Public API

Re: [CODE4LIB] API to retrieve scholarly publications by author

2015-05-20 Thread Jason Stirnaman
/orcid_client.rb Jason Jason Stirnaman, MLS Application Development, Library and Information Services, IR University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On May 20, 2015, at 9:06 AM, Jason Stirnaman wrote: > Hi, Alex. > re: ORCID, available author info depends on wh

Re: [CODE4LIB] API to retrieve scholarly publications by author

2015-05-20 Thread Jason Stirnaman
to manage a local bibliography, then try Zotero and their API: https://www.zotero.org/support/dev/web_api/v3/start Jason Jason Stirnaman, MLS Application Development, Library and Information Services, IR University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On May 20, 2015, at 5

Re: [CODE4LIB] Anyone analyzed SirsiDynix Symphony transaction logs?

2015-03-22 Thread Jason Stirnaman
Symphony transaction logs? On 3/19/15 3:53 PM, Jason Stirnaman wrote: > I've been using the ELK (elastic + logstash(1) + kibana)(2) stack for EZProxy > log analysis. > Yes, the index can grow really fast with log data, so I have to be selective > about what I store. I&#

Re: [CODE4LIB] Anyone analyzed SirsiDynix Symphony transaction logs?

2015-03-19 Thread Jason Stirnaman
n get department and user-type stats. 1. http://logstash.net/ 2. https://www.elastic.co/downloads Jason Jason Stirnaman, MLS Application Development, Library and Information Services, IR University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Mar 19, 2015, at 2:15 PM, Cary Gordon

[CODE4LIB] Assignment planner-calculator use

2015-01-23 Thread Jason Stirnaman
2. if there are worthy alternatives (free or fee)? Contact me directly if you prefer. Thanks, Jason Jason Stirnaman, MLS Application Development, Library and Information Services, IR University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319

Re: [CODE4LIB] Structured help platform recommendations?

2015-01-14 Thread Jason Stirnaman
html. I agree about Drupal. It seems like that type of thing would be fairly easy to accomplish. There's the Books module, https://www.drupal.org/documentation/modules/book, for structured content. Not sure how to wire that up with issue/ticket-tracking though. Jason Jason Stirnaman, ML

Re: [CODE4LIB] Past Conference T-Shirts?

2014-11-06 Thread Jason Stirnaman
No, I just mean on the item title in the store. Not the images. Screenshot: https://drive.google.com/file/d/0B8kSuOT6j0a9QmhKcHplT2I0QUU/view?usp=sharing Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Nov 6, 2014

Re: [CODE4LIB] Past Conference T-Shirts?

2014-11-06 Thread Jason Stirnaman
Riley, Could you fix the spelling on "More then just books" in the store? Should be "More than just books" Thanks, Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Nov 6, 2014, at 1:04 PM,

Re: [CODE4LIB] Stack Overflow

2014-11-04 Thread Jason Stirnaman
you're going to know is to scratch your itch, experiment, and see if anyone else joins in. Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Nov 4, 2014, at 9:34 AM, Schulkins, Joe wrote: > To be honest I absolut

Re: [CODE4LIB] ruby-marc: how to sort fields after append?

2014-09-12 Thread Jason Stirnaman
t re-sorting at all, but it just looks so wrong, even if I am busting any field order "magic" in the process. Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Sep 12, 2014, at 12:11 PM, Terry Reese wrote:

Re: [CODE4LIB] ruby-marc: how to sort fields after append?

2014-09-12 Thread Jason Stirnaman
Thanks, Steve! Thought I had tried that, but it's exactly what I was looking for. Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Sep 12, 2014, at 8:06 AM, Steve Meyer wrote: > Since the fields property o

[CODE4LIB] ruby-marc: how to sort fields after append?

2014-09-11 Thread Jason Stirnaman
copy them to a new record. ### sortedrecord = MARC::Record.new sortedrecord.leader = newrecord.leader newrecord.sort_by{|f| f.tag}.each {|tag| sortedrecord.append(tag)} writer.write(sortedrecord) end Thanks, Jason Jason Stirnaman Lead, Library Technology Services Unive

[CODE4LIB] OpenRefine survey results: Librarians are largest percentage of OR user base

2014-09-02 Thread Jason Stirnaman
e requests, etc. I know they'd appreciate any feedback. They're also wanting to validate possible business models, e.g. OR in the cloud. Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319

Re: [CODE4LIB] Anybody know a way to add a MARC tag on-mass to a file of MARC records

2014-08-28 Thread Jason Stirnaman
MARCEdit can also be invoked on the command-line: http://blog.reeset.net/archives/1078 Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Aug 28, 2014, at 1:44 PM, John Mignault wrote: > You don't need to

Re: [CODE4LIB] Anybody know a way to add a MARC tag on-mass to a file of MARC records

2014-08-28 Thread Jason Stirnaman
Ray, There are also good MARC libraries for Ruby, Python, Perl... Here's an example implementing ruby-marc within a pipeline-able command-line script: https://github.com/jstirnaman/ebook_bibs Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center js

Re: [CODE4LIB] Creating a Linked Data Service

2014-08-07 Thread Jason Stirnaman
o eventually serving LD. And, you may find that it's enough for now. 1. http://www.xprogramming.com/Practices/PracSimplest.html Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Aug 6, 2014, at 1:45 PM, Michael B

Re: [CODE4LIB] Recommendations for IT Department Management Resouces

2014-07-03 Thread Jason Stirnaman
I'm a big fan of Johanna Rothman: http://www.jrothman.com/ Most of her writing centers on teams, project management, and hiring in technology. It doesn't always translate easily to our glacial, resource-strapped academic environments though. Jason Jason Stirnaman Lead, Library

Re: [CODE4LIB] orcid

2014-06-10 Thread Jason Stirnaman
http://orcid.org/faq-page#n110 Jason Jason Stirnaman Lead, Library Technology Services University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 On Jun 10, 2014, at 3:04 PM, Eric Lease Morgan wrote: > Is ORCID an acronym, and if it is then what does it stand for? —ELM

Re: [CODE4LIB] Anyone working with iPython?

2013-12-19 Thread Jason Stirnaman
Yes, I just started playing with it, too, and would like to hear ideas. The notebook model is really cool and, I think, would at least be helpful for teaching others to code. There's also an iRuby port. Jason -- Original message -- From: Roy Tennant Date: 12/19/2013 11:54 AM To: CO

Re: [CODE4LIB] Code4Lib Conference Registration

2013-11-21 Thread Jason Stirnaman
> This > list has added about 30-40+ mails per > day to my inbox This list and IRC are in a sense the veins and arteries that keep the community running. If you don't find much value there then you may not find the gatherings all that valuable either. Jason -- Original message -- Fr

Re: [CODE4LIB] rdf triplestores

2013-11-11 Thread Jason Stirnaman
Eric, We just did a workshop at C4LMidwest on getting up and running with Fuseki and RDF/XML. Here's the 3-part tutorial (for OS X, but translates easily to Linux): http://jstirnaman.wordpress.com/2013/10/11/installing-fuseki-with-jena-and-tdb-on-os-x/ Jason -Original Message- From: Code

Re: [CODE4LIB] Faculty publication database

2013-10-28 Thread Jason Stirnaman
make a big difference. We're just getting ready to push our verified publication data to ORCID profiles for our researchers. Cornell has done some work on author-name disambiguation: http://www.youtube.com/watch?v=44PVULsDk24 Jason Stirnaman, MLS Biomedical Librarian, Digital Projects and Resea

Re: [CODE4LIB] Ruby on Windows

2013-10-02 Thread Jason Stirnaman
Josh, If you're wanting to deploy a Ruby app to Windows desktops then you might look at Shoes or jRuby (as others suggested): http://www.slideshare.net/anisniit/jruby-15867973 For web apps.

[CODE4LIB] Discovery services (Summon, EDS) at medical centers

2013-08-28 Thread Jason Stirnaman
ty, or API integration with VuFind or Blacklight are appreciated. Thanks, Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319

Re: [CODE4LIB] Python and Ruby

2013-07-30 Thread Jason Stirnaman
As of Ruby 1.9, I would dispute the "Ruby is slower than everything" case. There's lots of evidence to the contrary, e.g. http://www.unlimitednovelty.com/2012/06/ruby-is-faster-than-python-php-and-perl.html Jason -Original Message- From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.ED

Re: [CODE4LIB] Python and Ruby

2013-07-30 Thread Jason Stirnaman
I recommend going through http://pragprog.com/book/btlang/seven-languages-in-seven-weeks No, of course it's not exhaustive, but it offers an appreciation of some modern languages, their differences, and the roots they derived from. Every coder [their] language. Every language its coder :) Jaso

Re: [CODE4LIB] StackExchange reboot?

2013-07-11 Thread Jason Stirnaman
There's also http://discourse.org, created by Jeff Atwood, the StackExchange guy. RubyRogues has an interesting discussion with him: http://rubyrogues.com/106-rr-discourse-with-jeff-atwood/ Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical C

Re: [CODE4LIB] Anyone have access to well-disambiguated sets of publication data?

2013-07-09 Thread Jason Stirnaman
Paul, Not a huge set, but I will offer up our BibApp data, http://experts.kumc.edu/faq. It should mostly meet your requirements and is already in VIVO form (and other flavors) for you. Contact me off-list of you have questions. Jason Stirnaman 913-588-7319 -- Original message

Re: [CODE4LIB] Visualizing (public) library statistics

2013-06-05 Thread Jason Stirnaman
docid=1JRSvdVxym2lKiM2cnfB7vmY735l58GSxD5O7-g0 Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319 From: Code for Libraries [CODE4LIB@LISTSERV.ND.EDU] on behalf of Francis Kayiwa [kay...@uic.edu] Sent: Wednesday, June 05,

Re: [CODE4LIB] GitHub Myths (was thanks and poetry)

2013-02-20 Thread Jason Stirnaman
our platform dependence could go badly. Luckily, the risk is mitigated by gits distributed and portable nature. - Tom On Wed, Feb 20, 2013 at 10:20 AM, Jason Stirnaman wrote: > Another option might be to set it up like the Planet. Where individuals > just post their poetry to their own blo

Re: [CODE4LIB] GitHub Myths (was thanks and poetry)

2013-02-20 Thread Jason Stirnaman
there for someone just wanting to submit a poem. Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319 From: Code for Libraries [CODE4LIB@LISTSERV.ND.EDU] on behalf of Karen Coyle [li

Re: [CODE4LIB] Getting started with Ruby and library-ish data (was RE: [CODE4LIB] You *are* a coder. So what am I?)

2013-02-18 Thread Jason Stirnaman
ntly about your work and about this thing you're hunched over for 8 hours a day". Sure, those lessons focus heavily on spreadsheet functions, but that's a familiar way to introduce the concepts. I think it could also be adapted to Ruby, Python, whatever. Jason Jason Stirnaman Digit

Re: [CODE4LIB] Getting started with Ruby and library-ish data (was RE: [CODE4LIB] You *are* a coder. So what am I?)

2013-02-18 Thread Jason Stirnaman
n the catalog and check the link", etc. 1. http://www.google.com/edu/computational-thinking/ Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319 From: Code for Libraries [CODE4LIB@LISTSERV.

[CODE4LIB] Getting started with Ruby and library-ish data (was RE: [CODE4LIB] You *are* a coder. So what am I?)

2013-02-18 Thread Jason Stirnaman
rdf.rubyforge.org/ Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319 From: Code for Libraries [CODE4LIB@LISTSERV.ND.EDU] on behalf of Joe Hourcle [onei...@grace.nascom.nasa.gov] Sent: Sun

Re: [CODE4LIB] Rdio playlist

2013-02-06 Thread Jason Stirnaman
++ I was bummed not to find any Big Black in rdio. Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319 From: Code for Libraries [CODE4LIB@LISTSERV.ND.EDU] on behalf of Gabriel Farrell [gsf

Re: [CODE4LIB] Group Decision Making (was Zoia)

2013-01-25 Thread Jason Stirnaman
Ian +1 I like that direction and I'll sign it. I think it would be good to offer an occasional reminder in C4L channels (e.g. link in the IRC greeting, mail list signup, etc.) that this is the sort of *community* you're entering and here's what you should expect. Jason

Re: [CODE4LIB] Anyone have a SUSHI client?

2013-01-24 Thread Jason Stirnaman
It looks like the Metridoc project might have one: https://code.google.com/p/metridoc/source/search?q=sushi&origq=sushi&btnG=Search+Trunk No idea if it's working, but I'd be really interested in hearing an update on Metridoc - if Thomas or anyone else involved is listening

Re: [CODE4LIB] Library CDNs

2013-01-04 Thread Jason Stirnaman
Tom, We use Rackspace's Cloud Files for Cloud Server backup, not CDN, but it is built for that. You can use it with Akamai to serve content. It has versioning and mobile UIs: http://www.rackspace.com/cloud/public/files/technology/ Jason Jason Stirnaman Digital Projects Librarian A.R.

Re: [CODE4LIB] Help with WordPress for Code4Lib Journal

2012-12-04 Thread Jason Stirnaman
It might be worth considering the Annotum theme for Wordpress, meant to do just that. http://wordpress.org/extend/themes/annotum-base Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319

Re: [CODE4LIB] OpenURL linking but from the content provider's point of view

2012-11-21 Thread Jason Stirnaman
Sorry. I guess I misunderstood. I thought David meant resolving OpenURLs pointed at his content. Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319 From: Code for Libraries [CODE4LIB

Re: [CODE4LIB] COinS

2012-11-20 Thread Jason Stirnaman
http://microformats.org/wiki/book-info-examples, but I don't think there are yet standard microformats for citations, books, journals, or articles. Jason Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588

Re: [CODE4LIB] OpenURL linking but from the content provider's point of view

2012-11-20 Thread Jason Stirnaman
/java/org/dspace/app/xmlui/cocoon/OpenURLReader.java Jason Stirnaman Digital Projects Librarian A.R. Dykes Library University of Kansas Medical Center 913-588-7319 From: Code for Libraries [CODE4LIB@LISTSERV.ND.EDU] on behalf of David Lawrence [david.

Re: [CODE4LIB] Transcription/dictation software?

2012-02-27 Thread Jason Stirnaman
That's what I hear, too. You might also look at http://support.google.com/youtube/bin/answer.py?hl=en&answer=100076 Jason >>> On 2/27/2012 at 12:56 PM, in message , Sean >>> Hannan wrote: Mechanical Turk it. (I hear that's what all the hipsters do while they watch Downton Abbey.) -Sean

Re: [CODE4LIB] Get Lamp showing at cod4libcon

2012-01-10 Thread Jason Stirnaman
/me waves dongle I have a Mac mini displayport to DVI adaptor Jason >>> On 1/9/2012 at 04:01 PM, in message >>> , >>> "Michael B. Klein" wrote: DVD ordered! Do we know what kind of large-screen viewing/projector device we'll have in the hospitality/hostility suite? I can currently handle V

Re: [CODE4LIB] Data Mining / Business Analytics in libraries

2011-12-15 Thread Jason Stirnaman
Cindy, I asked this same question a few months ago[1]. We've been working with our campus Enterprise Analytics group to help us prioritize what we to measure and develop a BI strategy. They use QlikView http://www.qlikview.com/ as their analysis tool of choice. I like the idea of possibly usi

Re: [CODE4LIB] formatting citations question

2011-12-14 Thread Jason Stirnaman
Hi, Tim. BibApp uses Citeproc-rb to parse the citations stored in the database to various styles. You might also look at how BibApp handles batch citation imports from RIS, Medline, etc. https://github.com/BibApp/BibApp/tree/master/vendor/plugins Jason Jason Stirnaman Biomedical

Re: [CODE4LIB] Automatic Content Classification recommendations?

2011-11-28 Thread Jason Stirnaman
osed to the end-user as search results facet. It's all driven by MS SQL Server and exposed as web services. We've used it here to map medical school lectures to the licensing exam outlines and have experimented a little with autoclassifying the same lecture content by MeSH. Jason J

Re: [CODE4LIB] Code4Lib 2012 Registration Cost?

2011-11-15 Thread Jason Stirnaman
You have no idea Whenever I make it, some of this is coming with me http://www.kickstarter.com/projects/1693254250/wilderness-brewing-co Jason Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319

Re: [CODE4LIB] Code4Lib 2012 Registration Cost?

2011-11-10 Thread Jason Stirnaman
ttles of KC's finest for next year and hope some newcomer replaces me in the registration rush. Jason Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 11/10/2011 at 11:01 AM, in me

Re: [CODE4LIB] Code4Lib 2012 Registration Cost?

2011-11-08 Thread Jason Stirnaman
Second that. It was mentioned earlier on the list that cost would be $150. Are the pre-conference sessions extra? Jason Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 11/8/2011

Re: [CODE4LIB] Usage and financial data aggregation

2011-09-14 Thread Jason Stirnaman
I'll try to update a few more. You can adjust the starttime parameter (in seconds) in the URL accordingly for each talk. Of course, you have to watch to figure out where they start. Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical C

Re: [CODE4LIB] Usage and financial data aggregation

2011-09-14 Thread Jason Stirnaman
Correction: Thomas Barker. Sorry. PS, Here's the link for jumping to Thomas Browning's Metridoc talk: http://www.indiana.edu/~video/stream/launchflash.html?format=MP4&folder=vic&filename=C4L2011_session_2_20110208.mp4&starttime=3600 Jason Stirnaman Biomedical Librarian

Re: [CODE4LIB] Usage and financial data aggregation

2011-09-14 Thread Jason Stirnaman
PS, Here's the link for jumping to Thomas Browning's Metridoc talk: http://www.indiana.edu/~video/stream/launchflash.html?format=MP4&folder=vic&filename=C4L2011_session_2_20110208.mp4&starttime=3600 Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library

Re: [CODE4LIB] Usage and financial data aggregation

2011-09-14 Thread Jason Stirnaman
Thanks, Jonathan. I vaguely recall the presentation. Looks like their code is available at http://code.google.com/p/metridoc/ and active. Definitely worth trying. Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu

Re: [CODE4LIB] Usage and financial data aggregation

2011-09-14 Thread Jason Stirnaman
pretty cool for Rails projects, but maybe a bit stale. Jason Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 9/13/2011 at 04:37 PM, in message <4E6FCD17.CF3 : 5 : 2

Re: [CODE4LIB] Usage and financial data aggregation

2011-09-13 Thread Jason Stirnaman
the project is in heavy transition right now and we still had to do a fair amount of work ourselves just to get a few data sources into it. Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>

[CODE4LIB] Usage and financial data aggregation

2011-09-13 Thread Jason Stirnaman
aggregators, etc. Does anyone have any cool homegrown examples or ideas they've cooked up for this? Pie in the sky? Jason Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319

Re: [CODE4LIB] Survey on Uses of Cloud Computing and Virtualization in Libraries

2011-08-26 Thread Jason Stirnaman
tion what value and how accurate my response would be. It's just not as clear-cut as the survey assumes. Regards, Jason Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 8/25

Re: [CODE4LIB] Do you enjoy the Code4Lib conference? Why not sponsor it?

2011-01-07 Thread Jason Stirnaman
Kevin, Marketing genius to send this out the morning of payday! Thanks for running with it! Jason Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 1/7/2011 at 09:38 AM, i

Re: [CODE4LIB] Pidgin, Digsby and others?

2011-01-04 Thread Jason Stirnaman
#x27;m not sure what kinds of stats you can get from it. Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 1/3/2011 at 10:01 AM, in message >>> , Rebecca >>> Holz wro

Re: [CODE4LIB] Hotel reservations

2010-12-13 Thread Jason Stirnaman
Me too when confirming, after it shows the list of rooms available. Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 12/13/2010 at 11:54 AM, in message >>> , "Mark A

[CODE4LIB] Job posting: Applications Administrator, University of Kansas Medical Center

2010-11-29 Thread Jason Stirnaman
Information Technology, Application Administrator, position #J0184705 Regards, Jason Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319

[CODE4LIB] Job Posting: Web Developer / Designer

2010-07-19 Thread Jason Stirnaman
, bibliographic databases, and search engines. Visit https://jobs.kumc.edu/applicants/jsp/shared/position/JobDetails_css.jsp?postingId=371769 for a complete description and application Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical

[CODE4LIB] Job Posting: Web Developer / Designer

2010-05-19 Thread Jason Stirnaman
Web Developer / Designer A.R. Dykes Library/Internet Development University of Kansas Medical Center, Kansas City, KS See the full posting at https://jobs.kumc.edu/applicants/jsp/shared/position/JobDetails_css.jsp?postingId=371066 Position Summary: This person will work closely with Dykes Librar

Re: [CODE4LIB] PHP bashing (was: newbie)

2010-03-26 Thread Jason Stirnaman
Those things cost a (relative) fortune. You can find cheaper versions at Amazon. Oh, and please never use duck tape for stage applications like taping extension cords and mic cables to the floor. Gaff tape is tougher and leaves no sticky residue. Jason Jason Stirnaman Biomedical Librarian

Re: [CODE4LIB] Code4Lib Midwest?

2010-03-06 Thread Jason Stirnaman
this. I'm a drummer too, BTW...in the event of a C4L11 Battle of the Bands. Jason -- Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 3/5/2010 at 9:37 AM, in message , Bill D

[CODE4LIB] open spot in Brews Cruise

2010-02-23 Thread Jason Stirnaman
I'm regretably excusing myself from the Brews Cruise this evening. Sean Chen is on deck in the waiting list. Jason

Re: [CODE4LIB] exercising at code4libcon next week

2010-02-19 Thread Jason Stirnaman
NM. Just saw the previous message -- Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 2/18/2010 at 5:08 PM, in message <17c28acc1002181508w52810797m1a2daa5b5a9ef...@mail.gmai

Re: [CODE4LIB] exercising at code4libcon next week

2010-02-19 Thread Jason Stirnaman
Cary, Where are you renting from? jason -- Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 2/18/2010 at 5:08 PM, in message <17c28acc1002181508w52810797m1a2daa5b5a9ef...@ma

Re: [CODE4LIB] C4L10 Social Activities

2010-02-05 Thread Jason Stirnaman
Wow, that worked -- Jason Stirnaman Biomedical Librarian, Digital Projects A.R. Dykes Library, University of Kansas Medical Center jstirna...@kumc.edu 913-588-7319 >>> On 2/4/2010 at 1:56 PM, in message <22dbc4ae1002041156q5dfd59c4qbf6e9f2277003...@mail.gmail.com>, "Micha

Re: [CODE4LIB] preconference proposals - solr

2009-11-13 Thread Jason Stirnaman
+1 I'd never leave the dojo. > Agreed on morning and afternoon black belt sessions for all those who > desire dark Solr. -- Jason Stirnaman >>> On 11/13/2009 at 11:01 AM, in message <20091113170101.gd4...@manheim.library.drexel.edu>, Gabriel Farrell wrote: >

Re: [CODE4LIB] preconference proposals

2009-11-10 Thread Jason Stirnaman
one of the problem children (Windows users), I think that pretty much derailed the VuFind session last year. Jason Jason Stirnaman >>> Bess Sadler 11/10/2009 8:41 AM >>> +1 from me on this, no surprise. :) What if we did a next gen catalog day thing? We could spend the

Re: [CODE4LIB] Library Website Redesign Info and Project Plans

2009-09-16 Thread Jason Stirnaman
I just came across this yesterday: http://johncrenshaw.net/blog/web-development-project-process-workflow/ Very high-level and usual systems design approach, but with some good web-specific tips thrown in. >>> Sean Hannan 09/16/09 10:20 AM >>> We're currently in the middle of a library website re

Re: [CODE4LIB] openphi and/or healthlibrarian

2009-07-10 Thread Jason Stirnaman
Thanks, Eric. I hadn't heard of these. We'll check it out. Another interesting one is Mednar (who named this thing?) - a medical open access federated search engine launched by fed search veterans Deep Web. http://mednar.com/mednar/ Jason -- >>> On 7/9/2009 at 6:18 PM, in message , Eric Lease

Re: [CODE4LIB] Digital imaging questions

2009-06-19 Thread Jason Stirnaman
> and then write a parser (in Python or Ruby) that > will read the values from that spreadsheet and produce a dublin_core.xml Sai, That work has already been done in PHP: http://tds.terkko.helsinki.fi/utils/ I just used it for a small project. I tweaked it a tiny bit and tried to clarify the do

Re: [CODE4LIB] Serials Solutions Summon

2009-04-21 Thread Jason Stirnaman
Agree. When you step outside libraryland and into corporate/enterprise IT (thinking Autonomy, FAST, etc.) then "federated search" is often used to refer to aggregated local indexing of distinct databases. Jason -- Jason Stirnaman Digital Projects Librarian/School of Medicine Support

Re: [CODE4LIB] Solr for Internal Searching

2008-08-06 Thread Jason Stirnaman
I haven't used it, but there is an AJAX extension for GSA and Mini that does faceting - they refer to it as "parametric" search: http://code.google.com/p/parametric/ We use the Mini on our university web site, but not for intranet (yet). Jason -- Jason Stirnaman Digital Pro

Re: [CODE4LIB] Digital Collections management software

2008-07-17 Thread Jason Stirnaman
Harish, OpenCollection (http://www.opencollection.org/ ) is open source. It was mentioned at JASIG. I'm hoping to install and try it out here soon. Jason -- Jason Stirnaman Digital Projects Librarian/School of Medicine Support A.R. Dykes Library, University of Kansas Medical Center [

Re: [CODE4LIB] Enterprise Search and library collection

2008-07-11 Thread Jason Stirnaman
to the Google appliance. Of course, it also add $40K or more to the total price. http://wire.jstirnaman.com/2008/05/23/federated-search-for-google-search-appliance/ Jason -- Jason Stirnaman Digital Projects Librarian/School of Medicine Support A.R. Dykes Library, University of Kansas Medical

Re: [CODE4LIB] Enterprise Search and library collection [SEC=UNCLASSIFIED]

2008-07-08 Thread Jason Stirnaman
s. I would be happy to share our RFI and some of our evaluation results with you off list. Jason -- Jason Stirnaman Digital Projects Librarian/School of Medicine Support A.R. Dykes Library, University of Kansas Medical Center [EMAIL PROTECTED] 913-588-7319 >>> On 7/8/2008 at 1:11

Re: [CODE4LIB] Exporting RSS Source from a Blog

2008-05-06 Thread Jason Stirnaman
shes out a package of XML. You could use XSLT to convert to RSS: http://www.ejlife.net/blogs/john/2006/04/25/1146023865263.html Jason -- Jason Stirnaman OME/Biomedical & Digital Projects Librarian A.R. Dykes Library The University of Kansas Medical Center Kansas City, Kansas Work: 913-588-7319

[CODE4LIB] Serials Solutions 360 API - classes?

2008-04-02 Thread Jason Stirnaman
Or .NET classes for the same? -- Jason Stirnaman OME/Biomedical & Digital Projects Librarian A.R. Dykes Library The University of Kansas Medical Center Kansas City, Kansas Work: 913-588-7319 Email: [EMAIL PROTECTED] >>> On 4/2/2008 at 12:39 PM, in message <[EMAIL PROTECTE

[CODE4LIB] Distributed Models & the Library (was: Re: [CODE4LIB] RFC 5005 ATOM extension and OAI)

2007-10-25 Thread Jason Stirnaman
s as “Microsoft’s in-built and oft-overlooked WebDAV option.” http://blog.jonudell.net/2007/03/16/art-rhynos-science-project/ Jason -- Jason Stirnaman OME/Biomedical & Digital Projects Librarian A.R. Dykes Library The University of Kansas Medical Center Kansas City, Kansas Work: 913-588-73