Reflective Tape

Wanting to add some more nighttime visibility I searched for reflective tape and found this:

3M™ Scotchlite™ Flexible Reflective Graphic Film Series 680
Use this durable, flexible, enclosed-lens, retroreflective film to make permanent, multicolor commercial signs, striping, vehicle or railroad graphics. These graphics have a similar daytime and nighttime appearance. The film has positionable, pressure-activated adhesive and a total thickness of .007 to .008 inches.
This enclosed-lens, retroreflective film is intended for making permanent, durable graphics. Applications include multicolor commercial vehicle graphics, railroad graphics, commercial signs and striping. Graphics subjected to fuel vapors or occasional spills can also be made with this film, and it is ideal for large graphics and graphics applied to corrugated substrates. This flexible film has excellent angularity, retains 90 percent of its retroreflectivity when totally wet, and resists cracking in cold climates. Graphics made with this film have a similar daytime and nighttime appearance, and film 680-85 has a black daytime appearance but reflects white at night.The combined thickness of the film and its adhesive is .007 to .008 inch. The adhesive is positionable and pressure-activated, which allows it to be repositioned during installation until pressure is applied to the film’s surface. The adhesive is clear with silver underneath. The film has a 94 pound, polyethylene-coated paper liner. It applies best to flat, flat with rivets, moderate compound curves, or corrugated surfaces. Recommended substrates include aluminum, FRP and paint. This is not a removable product. Heat helps take off the top layer, but removing the adhesive requires a solvent-based remover. Refer to Instruction Bulletin 6.5 for more details about removal.When used according to written instructions, graphics made with this film are covered by the 3M™ MCS™ Warranty – the most comprehensive warranty in the industry. When used with compatible products, produced by a 3M Scotchprint® Graphics Authorized Manufacturer and applied according to written instructions, this film can be used to produce a Scotchprint® Graphic.Reference the Product Bulletin for more detailed information.

That sounds like a great product; just ordered a roll of the 1/2″ tape from Amazon.

The Sloan Digital Sky Survey

The Sloan Digital Sky Survey (SDSS) is one of the most ambitious and influential surveys in the history of astronomy. Over eight years of operations (SDSS-I, 2000-2005; SDSS-II, 2005-2008), it obtained deep, multi-color images covering more than a quarter of the sky and created 3-dimensional maps containing more than 930,000 galaxies and more than 120,000 quasars.

It is hard not to dream about exploring space when you see what Sloan has to offer.

An asynchronous web server written in Emacs LISP

Elnode is an asynchronous web server written in Emacs LISP.
Emacs has had asynchronous socket programming facilities for some time and a few years ago asynchronous TCP server sockets were introduced. I couldn’t quite believe that no one had written an asynchronous webserver with EmacsLISP before. So now I have.
When I started looking at actually doing this I intended to knock up just a silly demo. But the more I got into it the more it seemed to me that this could be an important addition to Emacs and that, sometimes, an Emacs LISP async web server could actually be useful.

(via nic)

Managing bibliography references with JabRef

JabRef is an open source bibliography reference manager. The native file format used by JabRef is BibTeX, the standard LaTeX bibliography format. JabRef runs on the Java VM (version 1.5 or newer), and should work equally well on Windows, Linux and Mac OS X.

Addendum: 2019-09-24

JabRef continues to be an excellent bibliography manager.

Using BibTeX as the master database and JabRef to populate, manage, and export from it has been really nice. The key has been letting Emacs manage the keys and sorting.

DSLs are still fun

Now the popularity of DSLs may have waned, but the fun surrounding them surely has not.
A while back James and I looked into implementing a DSL for modeling insurance products in Java that worked really nicely:

  • built on top of Java we’ve full access to all its goodies like the libraries and object system and containers
  • integrates with Eclipse to get code-completion and error-reporting and intelligent-debugging
  • open-source so we can tweak and bug-fix as needed

If that is your cup of tea, you might have a look at this super awesome tutorial on implementing a brainf*ck interpreter on top of the Racket programming language:
http://hashcollision.org/brainfudge/
Basically you get all the power of what Racket has to offer as a language, its libraries, it’s IDE, and the great users.
The article is sort of funny in that the first version of the DLS was deemed “too slow” at 37 second vs 16 second for the version running on the PyPy interpreter; so the author went about optimizing it with all sorts of tweaks that are might be inappropriate for an entry-level article, but for bragging rights… dropping its benchmark speed down to 1 second.