Older blog entries for movement (starting at number 262)

Dear Everyone

If you have a blog, and you ask questions in blog entries, have some way to leave comments, won't you?

Syndicated 2009-02-21 00:14:00 (Updated 2009-02-21 00:15:48) from John Levon

Things I discovered yesterday

  1. Installing Firefox in an OpenVZ container can make you lose /dev/null
  2. OpenSolaris sleep(1) needs the network to be up
  3. People are injecting foreskins into their face
  4. Dubai is really screwed

Syndicated 2009-02-18 18:43:00 (Updated 2009-02-18 20:08:44) from John Levon

Audacity is frustrating

You might think that recording and then splitting it into separate audio files based on silences
between each track would be easy to do - sadly not.

Aside from crashing a few times and failing to recover properly, I've been hit by these
enormous frustrations:

- despite claims to the contrary, even 1.3.7 does not correctly alter labels when you modify the
audio. That means there's no way to Truncate Silence without re-doing all your labels!
- you can't split into tracks (or, apparently, make selections) based on labels added by the silence finder, so you can't remove inter-track silences that way either
- the labels dialog has a fun bug where it removes all your labels that don't have names (as
none of them do by default). This gets frustrating fast.
- there's no way to start a recording on the current track - I have to have a new one, it seems. This was fine until I discovered that Mix and Render completely screwed up the merging of all the tracks.

Seriously, how do people actually use this thing?

Syndicated 2009-02-18 02:01:00 (Updated 2009-02-18 02:12:22) from John Levon

openpty() and forkpty(): avoid

After dealing with more code that gets it wrong I was reminded of the numerous reasons why openpty() is such a broken API. The prototype of this "convenience" function is this:


int openpty(int *amaster, int *aslave, char *name, struct termios *termp, struct winsize *winp);

Now, sin number one should be obvious: the interface isn't const-correct. You're passing in the winp values, but there's no indication of that. Worse, you're doing the same with termp. Why worse? Well, think about how you use this API. Typically, you want to create the master/slave pair of the pseudo-terminal, then change the terminal settings of the slave. (Let's leave the master out of this for now - but the settings are not always symmetrical.)

But where do we get the terminal settings from? We don't have an open slave to base them on yet! So you find code doing a cfmakeraw() on stack junk and passing that in, because the API almost insists you do the wrong thing.

Indeed, doing it right, namely with a tcgetattr()/cfmakeraw()/tcsetattr() stanza, you'd expect term to be an out parameter, that you could then use - precisely opposite to how it actually works, and what const correctness suggests to the user. You can see some other amusing examples of how people worked around the API though.

I'm sure you will have spotted by now that the name parameter is outgoing, but has no len. It's therefore impossible to use without the risk of buffer overflow.

This API is not going to score well on the Rusty scale. What's worst of all about openpty(), though, is that it's non-standard, so almost every piece of code out there keeps its own private copy of this broken, pointless interface. Yay!

Syndicated 2009-02-13 01:56:00 (Updated 2009-02-13 02:51:18) from John Levon

Review board review

I was bored so played around with Review Board a little more, including installing it myself.

Things seem to have got easier to install, at least to some degree. You can use easy_install, though at least
for CentOS 5.2, you'll need to install a newer version of setuptools first. It's also far from automated, missing
out basic dependencies like pysqlite2, patchutils, and even patch itself. Discovering these can be, and in my case was, rather tedious work.

After that it's pretty easy to install, for the sqlite version anyway. The documentation isn't exactly clear on
what permissions changes you need to make: you need to chown all of db/ to the apache user as well for anything to work. Expect to set up a virtual host for the installation, like I did above.

Don't forget to enable logging in the admin interface whilst you're messing around.

Sadly, the Mercurial support seems some way behind. For example, it doesn't pick up changeset comments.

The diff parser (how is this not in a library by now?) can't handle git diffs, and the failure mode is horrible (basically, silent failure, with no debugging messages). This is because hg git diffs don't contain the revisions being diffed, so Review Board can't pull the files from the repo. Undoubtedly a Mercurial misfeature, but it does make Review Board near useless for my purposes unfortunately.

It can handle ssh repositories (which is all opensolaris.org provides), but there's a horrible work around needed: you have to set up a correct known_hosts file in the apache user's home directory. Yuck.

As for the main interface, it's generally pretty slick. I can imagine it getting cumbersome quickly with large code reviews though. Compare and contrast Review Board's diff viewer with webrev. The latter to me at least, is much more scalable, even though the actual diff mechanism is less smart. In particular, I can review each file with webrev in a separate tab, whereas Review Board insists on one big (very big!) screen. I'd still give my right arm for a webrev-based Review Board :)

Another thing I'd like to see is more integration with the repository, so I can click on a file and it will take me off to the repo browser for looking through history.

Syndicated 2009-02-11 05:09:00 (Updated 2009-02-11 14:27:27) from John Levon

Pride And Prejudice And Zombies


I haven't read it, but I'm guessing this does exactly what it says on the tin.

Syndicated 2009-01-31 18:04:00 (Updated 2009-01-31 18:05:31) from John Levon

XML-RPC

I've only just read the XML-RPC spec. I knew it was simple, but I didn't know it was stupid. Seriously, no parameter names? Only 32-bit integers? And no "NULL"? WTF?

Syndicated 2009-01-31 17:39:00 (Updated 2009-01-31 17:47:34) from John Levon

Harold Wobble Wedges





















Talk about unnecessary. JUST USE SOME NEWSPAPER. Sheesh.

Syndicated 2009-01-28 19:16:00 (Updated 2009-01-28 19:19:08) from John Levon

253 older entries...

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!