MyLibrary Home Page 2.0

I’m going to call this MyLibrary Home Page 2.0.
For a long, long time the home page of MyLibrary was on a other host. That computer is aging, and the software has matured. While things can always be improved, this is now going to be called the official, canonical home page of MyLibrary. It is complete […]

Creating and displaying terms

Here is a simple command-line program to create a term. It works much like the facets example: 1) prompt for a name, 2) prompt for a note, 3) display the facets, 4) prompt for a facet ID, and 5) commit.
#!/usr/bin/perl

# require mylibrary & practice good programming
use MyLibrary::Core;
use strict;

# scope our variables
my ( $name, $note, $id, […]