[CODE4LIB] Job: Internship/Resident at Cooper-Hewitt, National Design Museum

2013-01-02 Thread jobs
The Cooper-Hewitt is looking for interns/residents for 2013. Work with a team that is rethinking/remaking how the museum's collections are made part of the Web, while the physical buiding is closed for renovation. For more context see Seb Chan's personal [blog post

[CODE4LIB] Tickets for Craft Beer Night

2013-01-02 Thread Francis Kayiwa
For those registered for the Code4lib 2013 Conference who enjoy craft beers. Instead of having a beer exchange this year, Chicago has managed to talk Goose Island Brewery into taking over all the drafts at a bar and cover a hefty amount of the Shuttle from the conference hotel to the

Re: [CODE4LIB] ulrich's api?

2013-01-02 Thread Van Mil, James (vanmiljf)
I just checked the SS Support Center and it is included with a sub to Ulrichsweb. I had confused this with the XML data service (which *does* cost extra), so I never followed up. Thanks for mentioning! -James -Original Message- From: Code for Libraries

[CODE4LIB] Drupal in Libraries Barcamp at Code4LibCon

2013-01-02 Thread Cary Gordon
Cross-posting apologies... Code4LibCon is offering a Drupal in Libraries Barcamp as a full-day Code4Lib pre-conference on Monday, February 11th. It will take place at the University or Illinois, Chicago Forum. Drupal uber-ninja Larry Garfield will be stopping by to impart words of wisdom and

Re: [CODE4LIB] Tickets for Craft Beer Night

2013-01-02 Thread Tania Fersenheim
Francis, Sounds like a fun event. What does the $25 registration fee cover? Tania On Wed, Jan 2, 2013 at 9:01 AM, Francis Kayiwa kay...@uic.edu wrote: For those registered for the Code4lib 2013 Conference who enjoy craft beers. Instead of having a beer exchange this year, Chicago has managed

Re: [CODE4LIB] Tickets for Craft Beer Night

2013-01-02 Thread Francis Kayiwa
On Wed, Jan 02, 2013 at 11:28:01AM -0500, Tania Fersenheim wrote: Francis, Sounds like a fun event. What does the $25 registration fee cover? Will respond to this to the list to save electrons. The 25 + processing fee gets you in the door and depending on what *hard to obtain* beers they put

Re: [CODE4LIB] Tickets for Craft Beer Night

2013-01-02 Thread Salazar, Christina
So can I pay now and then if I decide not to go, give my ticket to some needy soul day of? Kudos for putting this together... Christina Salazar Systems Librarian John Spoor Broome Library California State University, Channel Islands 805/437-3198 -Original Message- From: Code for

Re: [CODE4LIB] ulrich's api?

2013-01-02 Thread Jonathan Rochkind
Ah, did you find docs in the SS Support Center that cover how to access the API and what it's functionalty is? Have any direct links to such? Yeah, last time I asked SerSol (a couple years ago), the XML data service was all that was available -- and not only does it cost extra, ti is

Re: [CODE4LIB] ulrich's api?

2013-01-02 Thread Van Mil, James (vanmiljf)
If you already have access to other SS APIs, you'll find documentation behind a password, here: http://xml.serialssolutions.com/docs/Ulrichsweb/v1.0/index.html I haven't activated this one yet, but in the past I've gotten the 360 Link and Summon API Terms of Use agreements via Ask a Question:

[CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Ron Gilmour
Greetings and Happy New Year! Just went live today with a responsive web design at Ithaca College Libraryhttp://ithacalibrary.com. Stop by and take a look. Ron Gilmour Web Services Librarian Ithaca College Library

Re: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread David Mayo
Ooooh, exciting! I think the middle layout (768px xwidth 1020px) needs some love (the right-hand box deforms pretty severely, and parts of the content of the center top box are obscured due to non-resizing form controls), but overall, nice work! If you feel like it, I'd love to hear more about

Re: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Sarah Dooley
Very cool--congratulations! In addition to Dave's questions, I'd be curious to know (can't see it since I don't have a login) how you handled directing people to databases that have mobile versions. This is something I've been wondering about for our site down the road and library sites in

[CODE4LIB] directing users to mobile DBs, was RE: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Ken Irwin
Sarah asks about how to direct users to mobile versions of databases where appropriate. The way I'm doing it is: 1. All database links are served up from a database table, so the link on our website is http://$OUR_LIBRARY/redirect?$db_id 2. The db-of-dbs knows if there is a mobile specific

Re: [CODE4LIB] directing users to mobile DBs, was RE: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Jonathan Rochkind
What method do you use to detect mobile-or-not? On 1/2/2013 3:33 PM, Ken Irwin wrote: Sarah asks about how to direct users to mobile versions of databases where appropriate. The way I'm doing it is: 1. All database links are served up from a database table, so the link on our website is

Re: [CODE4LIB] directing users to mobile DBs, was RE: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Mark Pernotto
I'd be curious to hear the response to Jonathan's question. For the longest time, I used to determine mobile displays by browser, but it just got too cluttered. Now I detect browser width to determine mobile versions. This little trick doesn't play nice with all frameworks, however, so it's

Re: [CODE4LIB] directing users to mobile DBs, was RE: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Jonathan Rochkind
Ah, but this still doesn't answer my question on your part, Mark! How do you detect browser width, especially on the server-side? If it's with Javascript... the method Ken describes, it's not clear to me how javascript logic could get in there exactly. Thus my question. On 1/2/2013 3:51 PM,

Re: [CODE4LIB] directing users to mobile DBs, was RE: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Ken Irwin
I use the PHP code from: http://detectmobilebrowsers.mobi/ (free for personal and non-profit use) Ken -Original Message- From: Jonathan Rochkind [mailto:rochk...@jhu.edu] Sent: Wednesday, January 02, 2013 3:36 PM To: Code for Libraries Cc: Ken Irwin Subject: Re: [CODE4LIB] directing

Re: [CODE4LIB] directing users to mobile DBs, was RE: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Jonathan Rochkind
I don't want to do the registration just to see how it works... but I assume it's doing user-agent detection? Have you had issues with newly invented mobile browsers not being caught, do you ever update your PHP script with a new updated copy from teh author or anything? On 1/2/2013 3:55

Re: [CODE4LIB] directing users to mobile DBs, was RE: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Ken Irwin
The code I'm using (on the server side) is based on the $_SERVER['HTTP_USER_AGENT'] variable -- the providers of the code have gone to a bunch of trouble to parse user agents and discern whether or not they count as mobile devices. It is decidedly imperfect, but it does a good job at least for

[CODE4LIB] Job: Entry Level Web Developer in Lower Mahattan, New York at Touro College

2013-01-02 Thread jobs
**JOB SUMMARY:** Reporting to the Systems Manager, the web developer will design, implement, and maintain the electronic services managed by Touro College Libraries Technical and Electronic Services (T We are a quiet office of nine professionals and clerical staff providing expert cataloging and

[CODE4LIB] FW: Digital Projects Librarian (Boston Public Library, Boston, MA)

2013-01-02 Thread Blake, Tom
Please excuse cross-postings... The Organization A leading American historian has called the Public Library of the City of Boston one of the five great libraries of the world. Well over 3.5 million people visit the Boston Public Library every year to use its collection of 8.9 million books.

Re: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Ron Gilmour
Hi Dave! Good point about the middle sizes. Trying to get content to look good at every conceivable size is the really hard part of responsive design. The site is based on Twitter Bootstraphttp://twitter.github.com/bootstrap/, and I mostly stuck with the breakpoints that they had

Re: [CODE4LIB] directing users to mobile DBs, was RE: [CODE4LIB] Responsive Web Site Live

2013-01-02 Thread Ron Gilmour
Hi Mark, Not using a CMS at this point, but I did use Twitter Bootstraphttp://twitter.github.com/bootstrap/. So there's no browser detection, just media queries on width. Ron On Wed, Jan 2, 2013 at 3:51 PM, Mark Pernotto mark.perno...@gmail.comwrote: I'd be curious to hear the response to

[CODE4LIB] Some women and computing resources

2013-01-02 Thread Karen Coyle
All, I stumbled upon the conference publication [1] from a conference at U Minn's Charles Babbage Institute on women and computing. Not only is it excellent, but it has an entire chapter on librarians and computers. In fact, I don't think that chapter got it quite right, and I'm thinking

[CODE4LIB] Introducing ExSite9: Open source tool: for metadata description (of content) + submission information package production

2013-01-02 Thread Ingrid Mason
Hi there, Apologies for broadcast. After shunting this message down various listservs to my heart's content, I thought I should pop an email out to the library coding community that might be interested in a tool we developed last year with funding from the Australian National Data