Search Results

13
votes

Mercurial: Named Branches vs Multiple Repositories

The biggest difference is how the branch names are recorded in the history. With named branches the branch name is embedded in each changeset and will thus become an immutable part of the …
0
votes

Best practices in LaTeX

For inserting source code with syntax highlighing, I find the listings package to be very good. It has some very nice options for controlling the column alignment too. For typesetting a language li …
0
votes

Migrating from python 2.4 to python 2.6

I guess you have already found them, but reference and for others, here are the lists of new features in those two versions: …
0
votes

Mercurial practices: use with IDEs and scalability

You raise some good points! How practical is it to do lot of clones, in the context of IDEs and such? You're right that it can be diffi …
5
votes

Most elegant way to deal with singles/plurals?

Please use the ngettext function for things like this. It allows you to deal correctly with plurals in Engli …
0
votes

How do you deal with NUL?

Sort of related: Slashdot recently had a story on the comp.lang.c FAQ section on null pointers, which I found quite interesting. …
10
votes

Python: encryption as means to prevent data tampering

As a general principle, you don't want to use encryption to protect against tampering, instead you want to use a digital signature. Encryption gives you confidentiality, but you ar …