Code, Strings, and Keys

    • About Thomas Powell
    • Account
    • It’s been [0] days since [program] last updated
    • Login
    • Password Reset
    • Pianist / Accompanist / Music Director Resume
    • Reading List 2025
    • Register
    • Running Gear – Shoes, Treadmill, and Bandages
    • Site Map
Illustration of a bird flying.
  • GNUmakefile for a basic library

    GNUmakefile for a static library, testlib.a, including a single file, hello.c OBJS = hello.o CFILES := ${OBJS:.o=.c}LDFLAGS =ARFLAGS = rcv all:: testlib.a testlib.a: ${OBJS} @$(AR) ${ARFLAGS} $@ $? clean:: @$(RM) ${OBJS} testlib.a

    February 8, 2007
  • More on update-alternatives

    It appears that update-alternatives is a very handy facility in Debian derivatives for keeping track of the preferred application for specific tasks. This seems to be a much SAFER than Windows way of handling things (i.e., let the application try to set itself as the default handler–a la IE vs. Firefox, whatever audio player you…

    February 5, 2007
  • Selecting java alternatives

    As root, run the following to see which alternatives are out there, and which one is selected as default: update-alternatives –display java As root, use the following to select default. update-alternatives –config java

    January 30, 2007
←Previous Page
1 … 293 294 295 296 297 … 312
Next Page→

Code, Strings, and Keys

Proudly powered by WordPress