Today, the vacuum tube turns 100.
The vacuum tube made possible everything from amplifiers to control circuits and early computers.
Today, the vacuum tube turns 100.
The vacuum tube made possible everything from amplifiers to control circuits and early computers.
Well, I suppose it’s about time to sell my PowerBook G4. It was the first piece of Apple hardware I ever owned. It’s nice, but I have a faster laptop now and I rarely use it anymore, so time to put it on the auction block.
A couple of days ago, I wrote about considering a move from Postfix to Exim. I have just made that move on the main server. It took about three hours and was successful. Here’s what I learned.
Continue reading Exim Transition Successful
I’m in the market for a small laptop. A very small laptop. And it has to be rugged.
The first one to make it to the top of my list was the iBook. Small, rugged, and good Linux support.
But then I noticed the Actius MM20. Only 2 pounds and 3/4″ thick. Wow. I’d buy it right away if it weren’t for the 20GB HDD. I’m hoping they’ll update that line soon.
This is a cool idea: an operating system written in Haskell. Symbolics anyone?
I’ve got a new Haskell library out there called MissingH. It’s got things like FTP client, logging infrastructure, various list utilities, string joining/splitting, IO utilities, etc. It’s also been accepted into Debian sid.
Apparently, somebody bought a widescreen TV that emitted an aviation distress signal and attracted some rather surprised feds.
I’ve lately been working with OCaml and Haskell. Both are functional languages, and I’ve enjoyed functional languages for some time. that’s one reason I used Python for so long — while imperitive, it has a number of features commonly found in functional languages, such as anonymous functions and certain types of list manipulations.
OCaml and Haskell are both appealing to me. OCaml can be compiled to byte code, native code, or interpreted. It is a blindingly fast language, often beating C++ for performance, and occasionally even beating straight C code. This is quite a feat for a functional language, and helped get me interested in OCaml to start with.
OCaml has a marvelous type system. It is strongly statically typed, but has type inference and polymorphism. In short, this means that the type system stays out of your way (unlike Java) while still catching type problems in advance (unlike Python or Perl).
OCaml also has an OOP system, which is powerful though a bit odd.
One annoying thing about OCaml is that you have different operators for integers than for floats, and for lists than for strings, and the list operators are more powerful.
Haskell is a lazy, pure language. Its typing system looks very similar to OCaml’s, but it extends it in several significant ways. One way is with the use of typeclasses, a great way around OCaml’s problem with different operators.
Haskell also has a nicer module hierarchy system, and has a stronger standard library in most respects.
Haskell is not as fast as OCaml, especially relating to string manipulation. On the other hand, it’s no slower than Python, and has some powerful ways to exploit its lazy lists. (Haskell lists are the same as OCaml queues, but are also used for strings.)
One thing OCaml has that Haskell seems to lack is camlp4. Haskell has template Haskell, but it doesn’t seem as versatile. Haskell also lacks overt OOP implementations, but the OOHaskell people would want you to believe otherwise. (I’m learning about that now.)
It just hit the front page of Slashdot — the Slashdot review is here.
Two takes on programmers:
The Evolution of a Haskell Programmer
I found these on the Haskell Humor page.