SSTTR Java Libraries 1.1
Grok Headline matches for SSTTR Java Libraries 1.1
SSTTR Java Libraries 1.0.1
SSTTR Java Libraries 1.0.1
12/14/2003 04:07 PMMiscellaneous Java libraries for XML, crypto, and other things.
Java Atomic Libraries
Java Atomic Libraries
09/10/2004 05:05 PMFirst checkin!
Nuclear Simulation Java Class Libraries
1.2
Nuclear Simulation Java Class Libraries
1.2
12/09/2003 01:22 PMInfrastructure for creating simulations of nuclear physics
experiments.
The amount of office space that
corporations allocate to their libraries
has fallen by 8.36% over the past five
years, according to a new survey of
corporate libraries "Corporate Library
Benchmarks, 2004-05 Edition" ISBN:
1-57440-069-X.
The amount of office space that
corporations allocate to their libraries
has fallen by 8.36% over the past five
years, according to a new survey of
corporate libraries "Corporate Library
Benchmarks, 2004-05 Edition" ISBN:
1-57440-069-X.
09/03/2004 02:51 AMReports on results of a major survey of corporate and other business
libraries. Gives extensive data on management policies and practices
and details on spending trends for salaries, electronic and print
materials, and library services. [PRWEB Sep 3, 2004]
Merge old iPhoto libraries on CD with
iPhoto 5 libraries
Merge old iPhoto libraries on CD with
iPhoto 5 libraries
03/19/2005 02:40 AMI had several iPhoto libraries burned to CD backups from iPhoto 3 or 4
that I wanted to merge with my nearly complete iPhoto 5 library.
However, because I burned the libraries directly to CD from the Finder
or Toast, and not ...
Luxor Beta 5 released - GPL'ed Java XUL
toolkit (Java Lobby)
Luxor Beta 5 released - GPL'ed Java XUL
toolkit (Java Lobby)
07/03/2002 08:16 PMApple offers Java 3D and Java Advanced
Imaging Update
Apple offers Java 3D and Java Advanced
Imaging Update
12/18/2003 10:36 AMApple has posted
Java 3D
and Java Advanced Imaging Update, a software update aimed at users
of Mac OS X v10.3.1 and Java 1.4.1 or higher. The new update is
available as a 9.5MB download from Apple's Web site.
Apple releases Java 3D, Java Advanced
Imaging update
Apple releases Java 3D, Java Advanced
Imaging update
12/18/2003 10:39 AMApple has released a Java 3D and Java Advanced Imaging update, which
contains support for the two technologies...
Critical Java Bug Targets Java Virtual
Machine
Critical Java Bug Targets Java Virtual
Machine
01/06/2005 12:02 PMSun renamed Java 1.5 to Java 2 Platform
Standard Edition 5.0
Sun renamed Java 1.5 to Java 2 Platform
Standard Edition 5.0
06/28/2004 07:54 PMAcross the street,
Sun renamed Java 1.5 to Java 2 Platform Standard Edition
5.0. Who comes up with this stuff?
Book review: Java & XML Data Binding
(Java Pro)
Book review: Java & XML Data Binding
(Java Pro)
08/26/2002 08:32 AMQuest For "Unbreakable Java" Unites ABAP
& Java
Quest For "Unbreakable Java" Unites ABAP
& Java
01/03/2005 12:11 PMBlackJack for Java: A Java/Swing Oddessy
BlackJack for Java: A Java/Swing Oddessy
04/30/2004 06:19 AMTexas Holdem
Java 3D and Java Advanced Imaging Update
1.0
Java 3D and Java Advanced Imaging Update
1.0
12/17/2003 09:38 PMExtends the Java platform, providing additional capabilities for
running three-dimensional graphics and more.
Java 3D and Java Advanced Imaging Update
Java 3D and Java Advanced Imaging Update
12/18/2003 05:48 AM
Apple has also released Java 3D and Java Advanced Imaging Update.
This update contains support for Java3D and Java Advanced Imaging.
Java 3D ext...
Java 1.4.2 Update Removes Java SDK
Java 1.4.2 Update Removes Java SDK
02/10/2004 02:49 AM
If you previously had Java 1.4.1 and the Java SDK installed, the new
Java 1.4.2 update from apple will upgrade the Java runtime to 1.4.2,
but will remove the previous 1.4.1 Java runtime and
SDK without upgrading the JDK. To build Java packages in Fink
you will need to go to
connect.apple.com and download the Java 1.4.2 SDK (free
registration required).
java.util.concurrent for Java 1.4
java.util.concurrent for Java 1.4
12/19/2004 03:06 PM
One of the shiniest new feature of Java 5.0 (aka Java 1.5) is a
rich set of concurrent
programming classes in java.util.concurrent (aka JSR 166),
much of which is a
direct port of Doug Lea's Concurrent
Programming in Java library. Since I don't have the
luxury of using Java
5.0 yet, I've resorted to using Doug's original library which is,
for the most part,
functionally equivalent to java.util.concurrent but not close
enough for comfort,
particularly since concurrency code tend to be very sensitive to
minor changes.
The good news is that Dawid Kurzyniec
backported
java.util.concurrent package to run under Java 1.4 and made it
available as open
source. Apparently Sun is letting this happen because it's
own code is based
on Doug's open source library.
There are some shortcomings but nothing much to cry over. My
only complaint
is that it doesn't use the java.util.concurrent package name which
means I'll have
to update the package names later (simple but still change
nonetheless). But
that I can see the technical and legal issues preventing that from
happening.
I am just glad someone did this.

2D Graphics Libraries
2D Graphics Libraries
05/05/2004 07:45 PM
While platforms these days have fairly good 2D graphics support
like Quartz on OSX,
GDI+ on XP, and , and Gnome Canvas, developers like me often have
to use third-party
libraries for whatever reasons. On Win32, for example, GDI+
support is missing
in legacy platforms which means either giving up on fancy
graphics, redistributing
GDI+ binaries, use a third party library, or writing one
yourself. Writing one
yourself is fun (I have done it a couple of times over 20 years)
but, unless it offers
some unique features, you'll always end up migrating to a third
party library.
BTW, Flash has an excellent 2D graphics engine but it's lacks an
API so it's like
a sports car without a driving wheel. Yes, you can embed the
Flash ActiveX and
generate SWF on-the-fly but it's unwieldy for dynamic interaction
and even handling
gets tricky. Embedding Adobe SVG ActiveX is just as unwieldy
if not more.
While there are proprietary 2D engines out there, typically written
by a few guys
at a small company, they tend to disappear within a couple of
years, either bought
by companies (i.e. Apple, Adobe, Macromind, and Microsoft), or
abandoned out
of lack of interest or workable revenue model. Besides, they
charge fairly steep
fees so I tend to avoid them.
Out of all the freely available 2D libraries out there, Libart stands
out in features and quality. It offers fast
anti-aliased rendering
and it's use in Gnome Canvas over the years means most of the bugs
have already been
stepped on. Libart is also used to drive librsvg,
a SVG engine, and Java 2D, Java's graphics API, although Sun made
extensive changes
to tap hardware acceleration. While Libart can and has been
used cross-platform,
it's not exactly cakewalk to use in non-Linix platofrms. Cairo has
some interesting features and rising interest could mean it will
replace Libart someday,
but it's still in development.
Third-party 2D graphics library I really like these days is Anti-Grain
Geometry (AGG) which, although dormant for the last two years,
has been rejuvenated
with the released of version 2.1. AGG is written in C++ and
uses templates extensively
like ATL does. AGG is lightweight, very fast, flexible, and
full of features.
It even comes with a partial implementation of SVG
viewer as an example. AGG supports Win32, X11, and SDL as
is. It doesn't
yet support features variable stroke effects like Creature House's
Expression
3 engine and Fractal Design's Painter support but then
it's just me being
unreasonable. :-)
I should note that subpixel graphics was first done 20 years
ago in Word
Handler to display 70 columns of hi-res text on Apple
II.Silicon
Valley Systems, the company that published Word Handler, was
based just 5 minutes
from where I live now and I enjoy fond memories of working there
every time I pass
by the old office on El Camino. I guess everybody remembers
their first job.
LCD screens were just starting to replace LED on calculators at the
time, so Steve
Gibson and Microsoft ClearType can claim to be the first to use
subpixel graphics
on LCD screen. Lenny Elekman, where are you now?

slack-get 0.3 (Libraries)
slack-get 0.3 (Libraries)
05/26/2004 10:49 PMA tool like 'apt-get' for Slackware.
Libraries and the Internet
Libraries and the Internet
12/19/2004 03:00 PM
Kudos to Google and its new university allies -- including my alma
mater, the University of Michigan, as well as Harvard, Stanford, and
Oxford -- for their exciting project to
open the stacks (Wall Street
Journal, via
Paul
Kedrosky). It's a great day for the dissemination of knowledge!
Bloggers from these institutions are relaying the emails received from
their administrators:
...Essential in Libraries?
Essential in Libraries?
04/27/2004 10:48 PMSMS an
Essential Communication Tool
"The Mobile Data Association (MDA) reports that 2.1 billion text
messages were sent in March 2004 in the U.K which is a 25% rise on the
total from the same month last year.At present, on average, around 69
million text messages are sent each day in the UK.This article from
the BBC states.'It is evident that in the last five years texting has
grown from a popular craze among teenagers to an essential
communication tool.'
Text
messaging reaches new high" [Smart Mobs]
Merlin Libraries
Merlin Libraries
06/06/2004 05:02 AMMerlin Libraries v0.1.103 (unstable) Released
Echidna Libraries
Echidna Libraries
07/15/2004 07:16 AMAdded 8Bit Targa Support
slack-get 0.2 (Libraries)
slack-get 0.2 (Libraries)
05/04/2004 04:41 PMA tool like 'apt-get' for Slackware.
Salon in Libraries?
Salon in Libraries?
03/19/2003 10:45 PMLast year I said I thought Salon should look into licensing
content to libraries, and now they're finally doing something about
it. Adrienne Crew, their Content Licensing Manager, sent me the
following:
"Thought you'd like to know that Salon's Premium Institutional
Subscription program for libraries is finally up and running....
Currently we are offering a one year subscription in the $300-400
range and feeds all access to the articles on the site via an IP
authentication system or a single password."
More details as I get them.
'UK libraries out of use by 2020'
'UK libraries out of use by 2020'
04/26/2004 09:46 PMThe public will stop using libraries if visitor numbers and book loans
continue to fall, according to a new report.
New IM Record in Libraries
New IM Record in Libraries
03/14/2005 06:23 PMI've been so short on time lately that I've been trying to avoid
using what little blogging time I do have to simply repost what other
library bloggers are already putting up. This one, however, was just
too good to pass up.
when was the
last time you had this kind of response to a new library
service?
"Brian didn’t give me permission to publish a portion of
his email, but I’m so excited about it I’m going to throw caution
into the wind. He wrote [emphasis mine]:
'Rule number 1: Don’t send out IM reference fliers to
every middle school and jr. high classroom on the same day!
Had to have been at least 100 IMs in the first 2 hours after the
kiddies got home. For a while, I had about 20 IM windows up at once.'
"
Someone recently observed that there are a lot of Eeyo
res in the library community, but I think we can officially
declare IM reference a Martha-Stewart-good-thing for (at least) public
libraries and move it to Pooh status.
Cost of purchasing the AIM software: $0.
Cost of staff time to "man" the AIM service during those two hours:
already paid for.
Satisfaction of having 100 kids respond positively and view the
library in a new light: PRICELESS.
"http://p2p.libraries.psu.edu/"
"http://p2p.libraries.psu.edu/"
11/18/2003 03:32 AMNB Parser Libraries
NB Parser Libraries
06/11/2004 09:55 AMProject started
Libraries 8, Amazon 0
Libraries 8, Amazon 0
12/09/2003 12:13 PMHave You
Ever Wondered....
"Have you ever wondered if the library were like Amazon.com?"
[The J-Walk
Blog]
England Libraries May All Get Wi-Fi
England Libraries May All Get Wi-Fi
12/04/2003 01:07 PMThe majority of libraries in England already have broadband access but
now the government is working on adding Wi-Fi: Most of the libraries
in King County, outside of Seattle, have Wi-Fi. It's a great, low-cost
way for libraries to offer Internet access without having to provide
computers for everyone. My library always has a line of people waiting
to get on its computers so perhaps with Wi-Fi some people could come
in with their own computers to use the Internet. But I wonder how many
of the people I see waiting in line there actually have laptops that
they could bring with them instead....
It’s the Libraries, Stupid
It’s the Libraries, Stupid
06/09/2004 11:39 PMVia Jeff Dillon,
some insightful words on programming in Java and
in the C#/.NET/Mono ecosystem. I hadn’t thought about it that way.
PlanetaMessenger.org Libraries
PlanetaMessenger.org Libraries
11/01/2003 10:43 AMJMML 0.4 released
YSL Coding Libraries
YSL Coding Libraries
12/11/2003 06:12 PMTransfer of CVS repository in progress
Libraries and culture, from a trench
Libraries and culture, from a trench
07/02/2004 01:28 PMToday (July 1, 2004) marks a new chapter for many libraries across the
US of A. Today is the first day of mandatory Internet filtering, if
your library accepts federal telecommunications funds. Mine does.
How NOT to Market WiFi in Libraries
How NOT to Market WiFi in Libraries
12/12/2003 10:21 AMMarketing
Wireless in Libraries
"Someone on Web4Lib asked about posting symbols or signage to
identify wireless access in libraries. This is a slightly revised
version of my reply on the list, sent after several folks referred the
original poster to the wireless warchalking
symbols popular among the digerati.
Essentially, this is basic library marketing 101. If you're
planning to market wireless services not only to the folks who will
seek it, but to folks who would either find a way to use it if they
knew what it was or may never even use it but will mentally file this
service under 'what a great library this is,' then integrate the fancy
symbols with very plainspoken, large, plain-lettered wording. Go to a
site that offers wireless for its customers and see how they peddle
it. (Remember, that's what you're doing: selling a service.)
Make the language achingly clear. 'Wireless hotspot' comes to
mind... but maybe something else makes more sense locally. Assuming
you have a bookmark or brochure advertising this service, repeat the
logo and the phrase throughout the materials. I know that libraries
offer things for free anyway, but why not push that as well?
Wireless--FREE!...
Or you could practice another kind of library marketing, and either
put up one tiny, very obscure sign, or make it very large and then
title it 'Bibligraphic WEP-enabled 802.11* Access.' And in your
assessment of the service, observe that very few people use it. ;)
" [Free Range
Librarian]
I just had to blog Karen's response because it's so true it's
tragically funny.
Building Testing Libraries
Building Testing Libraries
05/07/2004 07:22 PMSave time, test more, and use what the CPAN has made available to
enhance your development. Casey West demonstrates examples of good
techniques when testing Perl-based software.
Webl0gs: Do They Belong in Libraries?
Webl0gs: Do They Belong in Libraries?
08/01/2004 06:44 AMWeblogs: Do They Belong in Libraries?htt
p://www.ariadne.ac.uk/area-dna-155ue40/public-libraries/Penny Garrod takes a look at weblogs and weblogging
activities in libraries and considers some of the ways they can be
used to support public library users.
Adobe Source Libraries
Adobe Source Libraries
04/02/2005 02:34 AMVersion 1.0.2 Released
Grok Description matches for SSTTR Java Libraries 1.1
GrokA matches for SSTTR Java Libraries 1.1
SSTTR Java Libraries 1.1