Skip to main content.

Fri, 27 May 2011

SpiderOak gives back

a FCGI/web-server embedded directly within GIMP

-- open source libraries released by SpiderOak.

[] permanent link and comments

Thu, 21 Oct 2010

Upgrade Virtualbox

A snippet from the VirtualBox Changelog:

VirtualBox 3.2.2 (released 2010-06-02)

This is a maintenance release. The following items were fixed and/or added:
  • ...
  • Teleportation: several fixes
  • ...

I guess I should upgrade.

[] permanent link and comments

Sat, 09 Oct 2010

Nano for natural language processing

I just saw this great post on the nano-devel list:

Owen writes:

With ansi color there is a very limited range of parts of speech that I can label (the .nanorc that I'm using is here: http://ge.aihea.net/nanorc). This feature request is for 256 color support in nano.

I have a local mirror of the nanorc, too. (The image above is a local mirror of Owen's file.)

[] permanent link and comments

Tue, 31 Aug 2010

Python and supercomputers

"In the interest of promoting weird retro computer architectures, I’ve provided the python....

[] permanent link and comments

Wed, 28 Jul 2010

Oracle updates Java. Eclipse breaks. Who's to blame?

Writes the wise Zancarius, "Let's just blame everyone and get it over with."



[] permanent link and comments

Tue, 27 Jul 2010

Unpublished proprietary emptiness

For a good time, check out the unpublished proprietary source code of AT&T, as shipped by Sun in Solaris.

It does nothing, successfully.

[] permanent link and comments

Fri, 04 Dec 2009

Behind glass

"To an engineer of the day, using valuable computer time to simply enter text in an interactive text editor was unthinkable. It was the hackers who understood that interacting with the computer, rather than treating it as a hands-off behind-glass computation resource, was the way of the future."

-- "The Culture of the Programmer".

[] permanent link and comments

Thu, 11 Dec 2008

SVG and the future

clearly SVG is the wave of the future, but current h/w is the wave of the past.

-- paul on the sugar-devel list.

[] permanent link and comments

Tue, 07 Oct 2008

Starkiller: A static compiler for Python

The real benefit of flow-insensitivity is freedom from having to care about time.

-- Starkiller, 2004.

See also notes on the presentation at PyCon.

[] permanent link and comments

Sun, 05 Oct 2008

Analog literals

A solution to a common problem:

// Consider:
 unsigned int a = 4;
// Have you ever felt that integer literals like "4" don't convey the true size of the value they denote? If so, use an analog integer literal instead:
 unsigned int b = I---------I;
 assert( a == b );


[] permanent link and comments