Planet Larry

May 09, 2008

Dan Ballard

Note for C developers on Ubuntu

Right, so when doing C development on Ubuntu I suddenly noticed something was missing in the pan pages department. Like all the C api.

apt-get install manpages-dev

ah that's better. Someone might want to make it part of the 'build-essentials' package.

May 09, 2008 07:57 PM :: British Columbia, Canada  

Jürgen Geuter

Things that some people forget about Python dictionaries

Lists and listy things like tuples and dictionaries are the work horses of Python. You use them to store collections of data and usually when you look at some Python library that you use, they either rely on the built-in listy types, too, or at least implement the interface so the custom data structures work as they are supposed to.

Dictionaries are of course especially useful, they offer functionality that is called "associative array" in PHP and hash table in other languages.

Now you will probably have written code at some point that tried to get some key from a dictionary and in case if failed use a default value, that is a common use case (especially for example with the request.session instance in a Django context).

If you try to access a key in a dictionary that does not exist it raises a KeyError exception to notify you of that so you often see code like this:
try: data = dictionary['key'] except KeyError,e: data = "DEFAULT_VALUE"

This code works but is somewhat cumbersome to write, that must be easier, right? It is.

Every dictionary has a method get() that has two parameters: The first one is the key you want to access, the second one (which defaults to "None") gives the default value you want to get in return if the requested key does not exist.

>>> data={'key':'value'} >>> print(data.get('not_key','DEFAULT') DEFAULT

This makes the handling of those cases a lot more simple and elegant. But there is even another option, the collections module of the standard library.

In this module you find the class defaultdict which is a subclass of the default dictionary with a modified __init__ that accepts a new optional parameter default_factory. If default_factory is unset (therefore None) access to a non-existing key raises a KeyError as expected, but if default_factory is a callable the return of that is given in case the key does not exist.

A short example:
>>> import collections >>> defdic = collections.defaultdict(lambda: "DEFAULT") >>> # defdic is empty >>> defdic['test'] DEFAULT

Instead if that simple lambda function that just returns a fixed string you can of course give any other function that does logging to databases or whatever. Very flexible, very elegant and something that too many programmers ignore.

If you didn't know it before I hope this will allow you to write better Python in the future :-)

May 09, 2008 11:58 AM :: Germany  

Jason Jones

friends

Sometimes it doesnt seem like i have anyfriends at alll cause i always get ditched and ignored at school wen megan isnt there cause desie always seems to wanna hang wit the other ppl in our class then me cause she says me and megan are alot closer then me and her which is true but still.and i wish she could come stay wit me this weekend cause of my dad.im scared of my dad and megan is the only person who helps me out wen i have to face my dad cause i call her or have her come stay wit me and one time she stayed wit me and my dad went to slap me in my face megan went and took a lamp and bashed it over his head it was really funny but scary 2 cause we were scared after that and went and locked our selfs in my room and didnt come out for the rest of the nite and im lucky megan still comes and stays with me after that happened.she said shell always be there 4 me and she wasnt lien when she said that and she knows ill always be there 4 her and she knows that cause of what happened one time wen we where hanging out at the square after that day is wen we became really close but i cant say wat happened at the square megan can tell u if she wants even though it would be wrong cause its our businesse anyways i miss her cause i havent seen or talked 2 her in two days and its killing me here i wish she would have came today anyways i have 2 go math class is almost over and i got to get off the computer i shouldnt even be on this site cause im at school and ill get in trouble if i get caught anyways bye 4 now ppl

May 09, 2008 09:43 AM :: Utah, USA  

Sean Potter

School's Out

The Spring '08 semester has finally drawn to a close. I'm so glad I'll be able to go back to getting reasonable amounts of sleep, and not going to school for several hours a day, then working close to 40 hours a week as well. I'll be much happier being able to split my time between BIOSLEVEL.com and Buffalo Wild Wings.

For BIOSLEVEL, Sapphire recently sent us new AMD 780G chipset motherboard, Radeon HD3450, and an overclocked Radeon HD3870. Between the motherboard and Radeon HD3870, there's a pretty powerful machine just waiting to be powered. Several companies sent us additional parts for the review, which included 2GB of RAM, a quad-core Phenom CPU, and a slew of heatsinks. The reviews of the motherboard and videocard have been posted, and I've got several reviews lined up for the donated components as well. I'm just amazed at the piled of stuff that was shipped to us to power the motherboard.

Simply put, I'm surprised at how well the motherboard's ATI-based integrated graphics performed in Linux. This won't be a motherboard I let out of my sight anytime soon. Since my last final on Wednesday, I've completed an entire two reviews in a single 24-hour period. It's so ridiculously nice to have time away from school again.

Maybe this'll finally be that summer I do something truly productive (and profitable). I've got all the ideas lined up, but do I have the time or motivation to do it? Time will tell.

May 09, 2008 07:05 AM

Brian Carper

Passwords in log files = bad

In Linux when I use SSH I usually pass the host and port and username on the command line and then type the password when prompted. (In those rare cases I don't use certificates to log in without a password.) In Windows, PuTTY makes you pick a host and port and then prompts you for the username AND password.

This leads to unpleasant results. I'm so conditioned to open SSH and type my password at the prompt and hit Enter that I often end up typing my password as my username in PuTTY. Bad.

I've sometimes opened webpages that have some stupid Javascript bullcrap that tries to auto-focus the username field in a login form. But if you're a fast typist (and mouse-ist) like I am, you can focus the field, type your username, and hit tab to get to the password field before the long-loading Javascript bloat has a time to load and run. Which can result in auto-re-focusing the username field, which if it happens at just the right instant, results in my typing the password into it and pounding Enter before I have a chance to notice what's happened. Bad bad bad.

I use a computer far too often to have time too read every prompt, which leads to bad things. Anyone who's used to flying around an interface at light-speed by instinct and repeated learned behavior has experienced this kind of thing I'm sure.

This is horrendously bad because these programs often log the usernames of login attempts in plaintext in logs that lots of potentially evil people have the ability to read. The logs don't usually log the passwords of login attempts, but if you type a password AS a username, oops, you're screwed. Thankfully I'm root on most or all of the machines I ever SSH to, and I can go into /var/log and erase my mistake from the logs before anyone can see. But that doesn't help for web pages I don't know. And I wonder how often this kind of thing happens to other people. I wonder how many people who aren't familiar with computers accidentally send their password as their username to a bunch of websites.

After all the effort we go to to try to secure computer applications, these kinds of stupid human factors can still so easily ruin everything.

May 09, 2008 03:31 AM :: Pennsylvania, USA  

May 08, 2008

Liu Qing

after emerge -C mktemp

<bigmonk> I emerge -C mktemp, and emerge world -uND then my wife
poweroff my computer.
<reisio> bigmonk: nice :)
<altaran> bigmonk, u need help with death body?
<altaran> :)
<chithead> bigmonk: boot from livecd, chroot into your install and
emerge coreutils
<mki> bigmonk, boot with init=/bin/bash, mount -o remount,rw / && ln
-s busybox /bin/mktemp, reboot
<bigmonk> thank u , let me try
<bigmonk> mki, ur method is so easy, I have succeed. thank u.
<mki> bigmonk, np.. busybox ftw!
<bigmonk> chithead, thank u . mki's method is better.

May 08, 2008 09:13 PM :: Beijing, China  

Thomas Keller

Antec Sonata III

Today, I finally got my new Antec Sonata III case for my Gentoo server. I had to move a little bit, because I needed space for my Brother MFC device; the old case was just too big… The Sonata III is a nice case, but still a little bit loud - I had to switch power [...]

May 08, 2008 04:56 PM

Jürgen Geuter

Ubuntu Hardy

Since Ars Technica has released their really great and in-depth review of Ubuntu 8.04 (Hardy), I guess I can add a few thoughts, too.

I have been using Hardy on my Thinkpad for a while now (when I got it I didn't have the time to install Gentoo cause I needed it up running fast) so I thought I'd share a few things.

The Good



A few good things about the new release.

Firefox 3 Beta



There have been a few complaints about including a beta package as the default browser but I think it was the right decision: It's stable and a lot faster than its predecessor. Some extensions might not be ported yet, but the situation has gotten better. The Speed improvements and the new location bar alone are worth it. Good decision there

Wubi



The Wubi utility that allows installing Linux into Windows is a great way for people to try Linux out without being as limited as you are when you're using a live CD.

The Bad



There are bad things about it, too.

Bootsplash



I'm not a huge fan of bootsplashes, they hide information that you really might want to see (as errors of daemons starting up) and especially on Laptops I think it's absolutely crucial to crypt your /home partition so I need to enter the passphrase upon bootup (something that I can't do while the bootsplash is there). I think it should be a setting that the installer asks you (as well as automatic drive encryption for /home).

Drive encryption



As I said in the paragraph before, the installer should encourage drive encryption for the /home partition and offer a simple way to do it as well as install the necessary packages by default.

The Ugly



There's one thing where Ubuntu dropped the ball in my opinion that pretty much makes this one of their worst releases yet for beginners.

Pulseaudio



The inclusion of pulseaudio sounded like the right thing to do when it was announced. Pulseaudio is a software sound mixer that allows very advanced sound routing (you can for example move a playing audiostream to another soundcard without the sound stopping) and it has legacy support for pretty much any other system under the sun (as detailed here) but it seems that all the Ubuntu people did was include the pulseaudio server in the default distribution.

All the supporting tools that give the user access to the advanced features (like per application volume management) are not installed by default. Plugins that integrate pulseaudio with ALSA or the nonfree flash are not installed. The setup is pretty bad overall and there are many reports of people not being able to properly watch media because of the borked pulseaudio installation.

This mistake for a long term support release is really a bad sign for the distro that they'll need to fix in a bugfix release badly.

Summary



Hardy works. Kinda. It installs easy and has a few nice things but all in all it's got many problems due to bad package decisions and only half-implemented ideas (like pulseaudio). I had expected more from the Ubuntu team, especially for their long term support release, but maybe this is a good time for other distributions to finally get some extra spot light. One person's fuckup can be another person's chance ;-)

All in all it's not really a noteable release from my point of view, if your gutsy system runs and you're not all that interested in the newer packages (well not really "new" but "less ancient") you might want to skip this one.

May 08, 2008 11:52 AM :: Germany  

Daniel de Oliveira

Fail


Fail

Source: http://flickr.com/photos/paintitblack/2439080330/

May 08, 2008 03:02 AM :: São Paulo, Brazil  

Clete Blackwell

Schedule Changes for Fall 2008

A few days ago, I spoke with John Phillips (he is a computer science professor and adviser here at Mansfield) and I found out that I had made three class-selection errors in my Fall 2008 schedule. Luckily, he was able to set me on the right track. My new schedule is linked below. Instead of Accounting II (sorry to Dave and Vinnie), Data Structures (sorry to Dan McKee), and Honors Research (sorry Sara, Andrew, and others), I will be taking Computer Organization, Finite Math, and Principles of Microeconomics.

Revised Fall 2008 Schedule (PDF).

May 08, 2008 01:48 AM

May 07, 2008

Jürgen Geuter

Sure sign that your software review/comparison is retarded

Distributed VCSs like git are all the rage right now (and for a good reason cause they are superior to their ancestors like Subversion in more ways that I can say here), so we get many reviews and comparisons. Which one is better, which one is faster, which one is easier, which one is smarter?

All those are valid questions and it's awesome how many people invest their own time to help others decide on a DVCS (Oh by the way, I wanna help you, too: Use Git) but there is always one concern. How mature is the software?

We're not talking about whether the software is bare of any easter eggs or whether the error messages are unfunny, it's about whether the software is stable and does not corrupt your data. A VCS's main task is to keep your data and all its versions intact so maturity is obviously a huge concern.

Let's come to the topic of this: Is there an easy way to see if a review is good? Well that is not an easy question. Really deciding whether a comparison/review is good is probably only possible when you already know a lot about all compared systems. But there are some hints to see whether a comparison is bad, things that are easy to spot.

The best one and the one I want to point out here is when maturity is measured by the fact whether the version number of the software is greater than 1. When a review states that softwareA-0.9.4 is less mature than softwareB-1.0.1 you instantly know that the whole thing is obviously bogus.

Version numbers are completely random and have no meaning whatsoever. If they had, KDE 4.0.X would be more mature that KDE 3.5.X which it obviously is not. scipy a very mature and advanced library of scientific algorithms for Python is at version 0.6 right now. Does that mean I shouldn't use it?

It's the simple things that often show that some review is bad, this is one of the most obvious points.

May 07, 2008 07:28 PM :: Germany  

Leif Biberg Kristensen

Ode to a dead project

I just visited Sourceforge with the intention of declaring my “Urdabrunn” project as dead. But instead, I decided to announce that the project has moved to my own domain, Solumslekt. The Exodus project is the natural heir and successor of Urdabrunn, and it seems natural to host it here.

The problem with the Urdabrunn project was that it was far too ambitious, like so many other dead projects on Sourceforge. It’s of course much easier to concoct grand plans than to do the actual work.

I did write some routines in Python for the Urdabrunn project, but the major work was the construction and migration of the database itself and the parts of the business logic that I wrote in plpgsql. That codebase has survived to the present day. When I decided to “go incremental” with my humble PHP reports, the interface took off in a totally different direction from what I had imagined at the time I wrote the “Into the Blue” article and submitted the Urdabrunn project to Sourceforge.

For my own part, I feel that Exodus gives me what I need from a genealogy software package. For my personal use, it’s stable to the extent that several months may pass between each time I do even small incremental changes to the codebase.

During the last week, however, I have been in a flurry of refactoring and adding translation strings. That’s because I finally have been engaged in a serious discussion about the project. There is a big difference between writing software for your own use, and having another person trying it out and asking intelligent questions.

May 07, 2008 12:58 PM :: Norway  

Roderick B. Greening

Kicking Windows to the Door

Ok, so you have made the leap to the world of Linux, but perhaps you still dual boot to run Adobe PhotoShop or some other program due to not knowing if there are equivalent (or near equivalent) programs available under Linux. What can you do?

Well, luckily, there are a variety of ways to kick the Windows habit.

1) Wine - Wine is a Windows compatibility layer, and it runs under Linux. It will allow you to run a variety of Windows programs under Linux. There is an application database you can search to see if your program will work with wine, and how to install it. If your program is not listed, you can still try and install it by running the install.exe (or setup program) with wine. Please submit your experience to the applications database so others may learn from your experience.

2) Linux App Finder - This site categorizes a list of common Windows programs and maps them to equivalent Linux programs. Depending on what features you require/use, the Linux alternative may provide a reasonable functional equivalent. However, for more complex Windows programs and the power user, you may need to experiment with one or more alternatives to get the right mix for you.

May 07, 2008 12:49 PM :: NL, Canada  

Christoph Bauer

Update: Finally it arrived!

After the big download, I kick-started the installer and I couldn’t believe my eyes: That service pack wants to have 1475 MB free space while installation - true, that number sounds scary, but it wasn’t better with the second service pack.

Since the machine boots again, I am looking through application changes - in other words, what does not work any more. But luckily it is only the ATI-Catalyst 8.2 having problems: screen rotation does not work any more. I have not spotted anything else acting strange by now…


Copyright © 2007
Please note that this feed is for private use only. All other usage, including the distribution or reproduction of multiple copies, performance or otherwise use in a public way of the images or text require the authorization of the author.
(digitalfingerprint: 0f46ca51d0fa4e6588e24f0bf2b80fed)

May 07, 2008 06:48 AM :: Vorarlberg, Austria  

Finally it arrived!

After one week delay, the third service pack for Microsoft Windows XP arrived. You won’t believe it: It’s even available via automatic update.

But what’s inside? First of all, it’s a huge file being 313 MB which means a rather big download and a longer installation. But what’s under the hood? Can’t tell by now. I’m just installing.


Copyright © 2007
Please note that this feed is for private use only. All other usage, including the distribution or reproduction of multiple copies, performance or otherwise use in a public way of the images or text require the authorization of the author.
(digitalfingerprint: 0f46ca51d0fa4e6588e24f0bf2b80fed)

May 07, 2008 06:15 AM :: Vorarlberg, Austria  

Brian S. Stephan

A Tour of the Worm

http://world.std.com/~franl/worm.html

A Slashdot article reminded me of one of my favorite technical articles on the Internet entitled “A Tour of the Worm", an in-depth historical and technical look at the Morris worm. The Morris worm, mistakenly unleashed in 1988, was one of the first significant worms to strike the Internet, and it caused enough damage that it arguably has done the most relative damage of any worm since then.

Check it out if you haven’t read it, or even if you have; it’s a fascinating look at the early days of the Internet. http://world.std.com/~franl/worm.html

May 07, 2008 04:07 AM :: Wisconsin, USA  

May 06, 2008

Jason Jones

07 Mustang GT Upgrade Round 2

Okay...

Those who have followed my journal / blog, know that I have a 2007 Mustang GT, which I recently upgraded with Flowmaster exhaust and a Magnaflow X-Pipe.

Well, I was expecting it tomorrow, so when my wife called me at work, right after lunch to give me the news, I was beside myself with excitement.

Delievered to our door was my new Steeda cold air intake along with the Steeda inlet elbow.  Also delivered was a SCT X3 power flash tuner for my car's computer.

Well, needless to say, I couldn't wait to get it installed, so I hopped in my car, and went back home.

about 2 hours later, I was driving back to work with a dumbfounded grin in my face.

People had told me that a tune with a cold-air intake upgrade would seriously change / improve the sound of the car, but I was way more interested in the power upgrade.  Well, I now can totally understand why people emphasize the change in sound just as much, if not more, than the increase in power.

I cannot believe the way my mustang sounds now!

It's like the whole car has been in a groggy state of being half-awake since birth, and this upgrade has basically woke it up and given it a shot of caffeine!

The sound .... well...  The best I could do to explain it to you is to record it and attach it to this entry.  So, you can click the play button top-right to hear for yourself.

The first thing I noticed was the decrease in time for the car to rev up.  It now revs much quicker than before.

There also is a noticeable *pop* along with a sucking sound when accellerating quickly.  I just love it.

I've only driven it to work so far, so, I haven't really opened it up yet, but that is sure to come.

So, if you're thinking of upgrading to a cold-air intake, or considering tuning your car's computer, with what I know so far, I highly recommend it.

I'm sure I won't be changing my opinion when I can get a few minutes to actually drive it, either.

Goooood stuff!

May 06, 2008 05:20 PM :: Utah, USA  

Jürgen Geuter

Renaming files based on EXIF data

As I mentioned before, my girlfriend and me attended some family thingy this weekend. She took a bunch of photos but when transferring the files to her computer something weird happened.

Like many cameras (if not all) hers numbers the files ascending. When reading the files from the camera you can give a prefix that all files get (it was "Taufe" in this case) which is suffixed by the number (001, 002 ...). The problem was: The files were not in order.

That is not a biggie if you use some sort of photo management tool but she was planning to send them away burned to a CD so she wanted the files to be in proper order when looking at the with a default file manager, so here's how to do that.

The first thing you need is the exif utility which should be in your package manager. Now it's pretty easy actually:

#!/bin/bash for file in *.jpg ; do mv "$file" "`exif -t 0x0132 -m "$file"| sed -e's/:/-/ig' -e's/^/Taufe /ig' - e's/$/.jpg/ig'`" ; done
Some explanations:

exif -t 0x0132 makes sure that I only read the "tag" 0x0132 which in this case is the date. You can use the exif command to get a list of all tags a file support by calling it like this: exif -l filename. The -m switch makes the output "machine readable" by cutting away all the crap you don't need.

The date that came out was in the form YYYY:mm:dd HH:MM:SS which is (because of the ":") unsuitable as a file name (Windows users need to be able to use the files) so I used sed to do a few translations:
s/:/-/ig replaces all ":" with "-", s/^/Taufe /ig' replaces the beginning of the string with "Taufe " (as in prefixing) and s/$/.jpg/ig' replaces the end of the string with ".jpg" (as in suffixing). So we have transformed the EXIF date to the new file name and we can just call mv to rename the files.

This shows us once again that expensive utilities are not necessary and the built-in unix tools (except for the exif dependency) are absolutely sufficient. So next time you wanna do some renaming based on metadata you know how to do it ;-)

Have fun.

May 06, 2008 12:01 PM :: Germany  

Martin Matusiak

why you’ll never have security with Microsoft

Here’s the thing. I hate stating the obvious. It really annoys me. On the other hand, obvious things are sometimes things that most need to be repeated. So I wrestle with myself and I finally decide that I should, because there is a shockingly large number of people out there who don’t realize how obvious this is. See if you can learn something from this mock dialog.

Vendor: Good morning, is this Harry, the CTO*, I’m speaking to?
Client: Yes, how may I help you?
Vendor: Hey Harry, this is Steve from Microsoft. I would like to talk to you about Windows Vista.
Client: What’s that?
Vendor: Why, it’s the brand new version of our Windows operating system.
Client: Oh, that.
Vendor: I was wondering if I could interest you in our product.
Client: You know what, I don’t think so, we are a very security sensitive company, and..
Vendor: But that’s precisely the reason I’m calling, I would like to tell you how you can enhance your security with Windows Vista. You see, we’ve built the operating system with security in mind and it’s the state of the art in operating systems.
Client: Hey, that sounds pretty exciting. So how does this work now, you ship us the source code and…
Vendor: No no, we don’t distribute the source code.
Client: You don’t?!?
Vendor: No, you see it’s a trade secret. (my precious etc)
Client: You’re kidding, right?
Vendor: No, really.
Client: So how do we know that it’s actually secure if we can’t see for ourselves? How do we know there isn’t anything malicious in it?
Vendor: Well you’ll just have to trust us.
*Harry hangs up*
Vendor: Hello? Harry?
*CTO - the highest placed person who makes technical decisions in a company.

How did it go? Did you get it? It was kind of a long thing, huh? Ok, stop racking your brains, I’ll give you the answer: no source code, no security.

Here’s how that works. It’s simple economics, so try to keep up. If they give you the source code, then they put their cards on the table. You can see what the code does, and if it’s doing something stupid (security hole) or nasty (like sending your data to back to the vendor), then you’ll be able to check for this. Now you may say “I don’t know how to check”, and that’s okay. But just by giving you the source code the vendor knows that you can see everything the code is doing. And if you find something nasty in there, they know you’ll never trust them again. So it doesn’t really matter if *you* don’t know how to check, because there are others who do, and sooner or later someone will find the nasty code if it’s in there. Thus, if the vendor gives you the source code, then he’ll be a lot more careful about what’s in there, because he’s risking losing your trust and your business forever. That will keep him honest.

Is there then anything surprising about finding out that Microsoft is putting in backdoors in Windows? No, because how would you know it’s there? You don’t have the source code! In case you were wondering, the words “security” and “backdoor” are mutually exclusive.

So what have we learned today? Is there somehow we could summarize all this in just one sentence? There is: If you want security, ask for the source code. If you can’t get the source code, you know that the vendor isn’t taking security seriously.

May 06, 2008 11:41 AM :: Utrecht, Netherlands  

Jürgen Geuter

Package distribution

Ruby has a distribution problem is a nice article dealing with Ruby's problems with package distribution. The problem basically is that the different ways of supplying Ruby libraries are not compatible so you cannot just say "you need ModuleX installed" but you would have to say "you have to have ModuleX installed via InstallerY".

The problem is mostly triggered by the fact that Ruby nowadays is mostly Rails. But Rails applications are usually written for one client, for one specific installation, not for widespread personal use. This means that the developer usually controls or at least knows the environment completely which makes installing required packages properly easy. It becomes a nasty problem when distribution your software on a large scale (think of wordpress scale).

The usual Ruby workaround is to bundle everything. And that approach is not just present for Ruby: Java program often come with pretty much every Java package under the sun included (mostly cause they only work with one specific version of the package used), and even I have recently packaged a whole GTK installation with some software for a client because without it the Windows version had problems over problems.

Packaging things with your application can be right: When I did it, I packaged all kinds of stuff because I knew that the target system would not have Python or anything else installed so bundling stuff would be the way to go. But Most of the time bundling libraries with your software is just a bad idea.

If you use a modern operating system with decent package management the libraries you bundle will not be updated by the normal process. Which means that security flaws or functional bugs will not be automatically corrected, making your customers/users target for all kinds of attack vectors (the binary JDK used to bundle all kinds of libs with many, many known vulnerabilities for example). In this context bundling is bad. As in really bad. On the other hand that point of view is too simplistic.

A big bunch of the operating systems used today don't have sane package management (most importantly MS Windows and Apple's OSX) so your users don't have the advantages of that anyways. Also for those platforms it's usually a big pain in the ass to install libraries and packages you need. You have to visit buttloads of websites, download and install packages just to see that your still need to get another package to fulfill all requirements. In those cases bundling working libraries might make sense.

Many languages don't offer really good ways to install extensions/modules/packages/however you wanna call them. Perl has it's famous CPAN which is pretty much the best example we have considering ease of use, functionality and quality. Python's Cheeseshop is quite good and easy but not up to Perl. Ruby, Java and other mainstream languages really have not a lot to compete in this area.

It's somewhat of a hen-and-egg problem: Since there's not decent way to manage extension modules everybody bundles stuff and since everybody bundles stuff no one creates a decent extension installing mechanism.

We're talking about a language's culture here, about a mindset. Right now both mindsets work: The install mechanism and the bundling but from a logical standpoint the bundling really should be the rare exception.

Bundling libraries or packages creates a whole new can of worms for you: You'll not only have to manage your own software but also other packages from other vendors, you have to keep track of their bugs, issues and might even have to manually patch them. Then you have to get your users to pull your updated version. All in all it's a huge pain in the ass for developers and (on systems with no sane package management) for the users that have to get used to 30 different ways to update software.

Bundling won't die easily but developer's mindset can be changed more easily. Stop thinking that packaging of your software is unimportant. Stop relying on things to work or the admin to figure the issues out. Exactly knowing your dependencies is not just important for your documentation but also for your own development. Find dependency management for your platform/language and use it so you encounter the same problems your users might have. Don't bundle stuff until you really must, your software will work better and you will get less cryptic bug reports that you just cannot seem to debug.

May 06, 2008 10:15 AM :: Germany  

Portage 2.2 and FEATURES="stricter"

Portage 2.2 is still masked but I'm using it to test it and it's already working great but there seems to be a change that makes compiling many things a lot more difficult: FEATURES="stricter" seems to be the default now.

This will show when random packages won't install anymore because of install_qa_check problems with certain ... not so helpful error messages like
  * ERROR: net-fs/nfs-utils-1.1.2-r1 failed.
 * Call stack:
 *       misc-functions.sh, line 652:  Called install_qa_check
 *       misc-functions.sh, line 360:  Called die
 * The specific snippet of code:
 *   		[[ ${abort} == "yes" ]] && hasq stricter ${FEATURES} && die "poor code kills airplanes"
 *  The die message:
 *   poor code kills airplanes


Until the packages are fixed (and there's quite a bunch of them) you can unset that new behavior by adding "-stricter" to your FEATURES in /etc/make.conf.

Just a little headsup in case you forgot you unmasked portage and have problems installing stuff.

May 06, 2008 09:50 AM :: Germany  

If you're scared of that you probably shouldn't tinker with it anyways

I stumbled on an article today called "Ubuntu Nuggets - it’s the little things that count" that rubbed me in the wrong way.

The article gave a list of a few GUI applications that the author felt made life in Ubuntu (and probably other linux distributions) easier for people and in general I have no problem with that kind of list: From time to time they even show me a nifty little application that I had not known about before which is always neat. And even if not those articles might help others so it's all good. Well not all.

Let's look at a few of the items the author presents: Under the heading "Simplifying GRUB" he gives a selection of two graphical editors for grub.conf/menu.lst (the file that tells your bootloader which kernels to load).

The grub.conf file is not really complex, it's actually really really straight forward and simple. If you are scared to touch that very simple file to get some change done you want (as in changing the default kernel which is just editing the lines # By default, boot the first entry. default 0) you probably will do even more damage with a graphical tool to mess around.

People feel very comfortable with graphical tools and checkboxes and dropdown menus, so they start fiddling around in it like they are used to with their usual applications. The problem is that they are in a place where little changes can really mess the system up and since they were to scared to edit a little number in a text file they probably don't really know what they are doing.

I can't count the times I had to rescue some Windows installation after the owner had found "Power tools" or however all those applications are called that allow you to set all kinds of internal Windows settings. Those settings often do not have a GUI because the developer didn't want you to click that checkbox and make your system unbootable. Whowouddathunk?

This is not saying that the linked article does not offer anything useful, for example the "Ink Management" part or the "Virtualization made easier" part might really help a few people. But if you're too scared to edit grub.conf or the fstab you probably should mess with them via GUI. Only click when you know what you're doing there.

Just think of thins: You're too scared to touch those files by hand but use a GUI. You don't know what it does but it changes the files somehow. It might work for a while but then you encounter problems. You post your file to the forums of your distro and the other users have to deal with the carnage that the GUI tool might have left (because even in simple files like fstab every distro seems to have their own "style" of doing things).

Better read a short howto and just do it in a text editor, especially when it comes to your boot configuration. I personally wouldn't set all those gnome gconf settings via the commandline either, but some files are better just worked on directly. Oh and while we're at it:

When you are unsure of whether your changes are right, copy the original line, comment out the old one, and modify the copy. Now add a comment above the edited line to remind you what you were trying to do and maybe even add the link to the howto you used. Will make your life (and the lives of the people that will try to help you in case things go wrong) a lot easier.

May 06, 2008 09:06 AM :: Germany  

Brian Carper

FAT

I had to undelete someone's files from a FAT partition today. My first thought was to use good ol' Windows to do so, given that Windows is the unholy ground which spawned FAT to begin with. I remember there used to be an UNDELETE command of some sort in some old version of DOS. But this doesn't seem to exist in XP any longer.

There are however lots and lots of third-party "shareware" programs which can do this kind of thing, as Google reveals. There is in fact an overwhelming number of such shareware programs. Most of these programs are total crap and cost around $30. One program required me to burn a CD and reboot my computer from the CD before I could run it. Many of the programs "intelligently" scan a partition looking for chunks of things that look like JPEGS or WMVs. I tried a few "demos" before I gave up, not having an hour to waste finding the one program that would work. Thus bringing the current score to Windows: 948, Brian: 0.

Instead I brought the drive home and plugged it into Gentoo and used this post as a guide. I dd'ed the partition to a file, fscked around with it a bit, mounted it via loopback, and had my files back. Took 10 minutes, and worked as expected. And it didn't cost me $30.

The moral of this story: I need to burn a Knoppix disk to take to work with me.

My only quibble is that I can never ever remember what Gentoo package contains fsck.vfat. Note to self, it's dosfstools. I can never think of the search terms even to locate that package. I had to google it.

May 06, 2008 01:13 AM :: Pennsylvania, USA  

Westinghouse: FAIL

My ninth call to Westinghouse today, about my Westinghouse L2410NM 24" LCD monitor which I RMA'ed back in March, revealed that they did in fact shipmy monitor, supposedly to my house, on April 4th or so. A UPS tracking number confirms it. There are are a few things wrong with this.

  1. In spite of the fact that I asked for a phone call to be updated on the status of my monitor whenever it was shipped, I received no such phone call.
  2. During the four phone calls (or was it five?) I made to Westinghouse in April, AFTER my monitor was supposedly shipped to my house, no one at the company had any record that it shipped. I was told that by multiple representatives over the past four weeks that my monitor was "in processing".
  3. I asked for my monitor to be shipped to workplace, not my house. My nice, safe, cozy workplace with human beings who can sign for large expensive packages. Not my empty house in a neighborhood full of drug addicts, in the property theft capital of the west. In addition to telling the phone representative this, I actually taped a 8.5 x 11 inch sheet of paper directly to the monitor itself (as well as the outside of the box) specifying SHIP TO: and my work address. Even such drastic measures were not enough to catch the attention of whatever magical monitor-repair fairies work at Westinghouse, apparently. Perhaps I should've carved that information directly into the monitor screen.
  4. I could possibly overlook the above, except that, as you may have surmised, at the present time, I do not, in fact, have my monitor.

After calling up UPS to ask why their driver left a $450 computer monitor, in a shiny bright blue and white box with pictures of a computer monitor all over it, sitting on my front porch while I was at work without getting my signature, I placed call number ten (yes, I've finally hit double digits!) to Westinghouse, and managed to escalate my issue to the Westinghouse corporate office. Supposedly in 7-10 business days they will send me a brand new monitor.

Oh how I wish I had any confidence that I'm ever going to see that monitor.

In the meantime, this guy was on sale at the local store, so I bought one. Time will tell whether LG brand is any better than Westinghouse. This time, I also bought the extended warranty, having learned my lesson that it can, indeed, be worth an extra $60 to save myself some pain and aggravation later. I'm also going to think twice about buying things like this over the internet in the future. There is something to be said about being able to drive 10 minutes down the road to have your property serviced or replaced by real-life human beings, rather than paying to have things shipped around the world for a month.

May 06, 2008 01:00 AM :: Pennsylvania, USA  

May 05, 2008

Dirk R. Gently

Have fingers, will post...

Hello blogosphere! Dirk has bumped into a mild setback as beasty laptop seems to have failed on him. Actually the laptop is perfectly fine but the network (both ethernet and wifi) have complete gone. Currently obligations hold me liable, obscuring a new beasty, so I reach out to the net so see if any [...]

May 05, 2008 10:15 PM :: WI, USA  

Steve Dibb

planet larry policy update

I’ve made a difficult decision that I hope doesn’t make anyone feel too bad: effective immediately I’ve removed any feeds from Planet Larry / Larry the Universe that were from developers who have retired from the Gentoo project.

I feel like ex-developers carry a lot of weight with their posts and opinions, and I created the planet feeds mainly for users, by users (speaking of which, don’t be shy, and sign up).

That’s all for now.

May 05, 2008 08:41 PM :: Utah, USA  

Jürgen Geuter

Unholy

Unholy is a project that can compile ruby scripts to python bytecode and actually turn it into python source from the bytecode later.

It's a fun idea that would finally make ruby useful ;-)

Neat little project, of course not all that useful: Python's interpreter is a lot faster that ruby's but Sun is throwing so much money a JRuby and the likes that not using the Java VM with ruby sounds rather dumb. On the other hand having Java stuff always sucks so I can understand the creator ;-)

Well, it's basically one of those projects I love: Kinda pointless but still a lot of fun.

May 05, 2008 08:35 PM :: Germany  

Intellectual property is not oil

You might not know who Mark Getty is, but you probably have heard one of his more famous quotes:
"Intellectual Property is the oil of the 21st century"


Just to save you some time reading Wikipedia and getting distracted from this post (it would be interesting to see how many people leave a blog post they are reading to check a random Wikipedia link and never come back ;-) ), Mark Getty is a member of a rich family that made its money from oil, he owns Getty Images, a commercial archive of images of various kinds.

Considering that history, his comparison is not surprising and it feels kinda right: Everyone and their mom has heard how important intellectual property is and the way that certain sectors of the content industry fight for their monopolies or at least market does somewhat compare to the oil business. Let's have a look whether the comparison of intellectual property and oil is a suitable one.

Disclaimer: Just for the sake of the argument we assume here that a thing as "intellectual property" exists. Personally I think that that concept is flawed and does not really work but that would be another blog post (if interested, I might write that one later). So, to summarize: "Intellectual property" exists for the duration of this article. So back to the argument.

Mr Getty's quote obviously hints at the importance that "intellectual property" will gain in the next few years, an importance that he thinks is comparable to the importance of oil nowadays.

Oil fuels our western economies, it allows us to drive cars, to have cheap transportation, to create various plastic crap. Oil is everywhere and we feel how important it is every day since the price of oil is raising every day. The importance of oil is only surpassed by its scarcity: There's only so much oil on this planet, it takes really long to get new oil and more and more people and other entities need oil. The reserves are running low and that process is speeding up. How does that compare to information.

"Intellectual property" is basically just the right to some piece of information, the right to say what happens with that information, who may do what with it.

Information is not what we'd call "scarce", actually we often hear people claiming that there is information overload, that people have the feeling of being bombarded with too much information. But maybe he's not really talking about information in general but about structured information: Searching Google Image search for a random word gives you buttloads of results, but are they good? Are they structured and reviewed? No. You have to find out about the license, about the quality all by yourself. So is structured information like oil? Or is the structure itself the oil?

The amount of structured information is conceivably lower than the amount of information in general but there is one, if not the most significant difference: If more people use the unstructured information we actually create more order, it might be by offering the users a way to tag and structure content or by them just putting images in more contexts (which makes it easier for automated classifications [and that is basically what a search engine does]). So in contrast to oil that gets less faster the more people use it, information actually gets better by more people using it. As do the structure that that information is embedded in. It's a resource that gets better and more plenty the more people participate. And that is why his comparison (whether he meant structured or all information) is wrong.

Information is not the oil of the 21st century.

Mr Getty is stuck in the old thought or property, where a resource that's scarce is getting more and more valuable, especially when it is important for society. But information (and therefore intellectual property) is fundamentally different: It's cheap and easy to produce, it's subjective (you cannot just put a meter in it and say whether the quality is high or not), it's getting better and richer, the more it is used and the more people participate (which in Mr. Getty's world would mean competition).

The only way to make intellectual property the oil of the 21st century is the way of the Apples, the MPAA and the RIAAs: Restrict people from participating in culture, in the creation of information. Restrict your right to say what you think, to modify and enrich culture. Block you from entering the content creation world cause you'd just create more of that precious "oil", maybe even give it away for free.

As long as there are Creative Commons, Copyleft and other free subcommunities creating content and information, it will never be new "oil". So whenever someone wants it be be like oil, you know what that person is fighting for and against: Your rights, your rights to say and think and create.

Intellectual property and information was no oil, is not oil and must never be.

May 05, 2008 07:36 PM :: Germany  

Py2exe and (Py)GTK

Just as a hint to save you the pain: Never assume that a normally installed Windows GTK works, it might cough up errors left and right with your Python and (Py)GTK that you have no clue how to debug. Rely on the hint given here and package your version of GTK (by copying the etc, share, bin and lib into your dist folder. You really save buttloads of time tracing bugs that you did not create and that waste your time.

GTK might be ABI stable, but the Windows Version is really weird sometimes.

May 05, 2008 07:15 PM :: Germany  

Brian Carper

Hello again, world

Computers are a love/hate thing for me. I love all things digital, but I desperately need to get away from it sometimes too. So I had a nice vacation away from my computer last week. I couldn't keep myself from reading some mailing lists and hitting Slashdot once a day, but I didn't write a single line of code and didn't give my websites or work projects or anything much thought.

But now my vacation is over, and it's so easy to fall back into old habits, endlessly looking at webcomics and reading articles about Common Lisp unit testing suites and cringing at the latest drama amongst Gentoo devs and minding my message board like a crusty old beat cop making his rounds. It's the life I've chosen, and I do like it, but I do like getting away sometimes too.

I fulfilled one of my dreams last week when I finally caved and ordered a solid glass mousepad. They're pretty cheap on newegg.com, depending on the color you want. I happened to want green, and it happened to be the cheapest, so all is well. It looks very nice, and it's big and hopefully the surface won't degrade over time; I tend to eat through mousepads via a slow yet inexorable process of erosion.

Unfortunately my laser mouse doesn't work on it. However, I have learned that if I upgrade my mouse's firmware, it will magically be able to work on a solid glass mousepad. Who would've thought my mouse had updateable firmware, let alone that updating the firmware would allow it to work on new surfaces? Not I.

The bad thing is that I need freaking Windows XP to upgrade the firmware on my mouse. I don't have any computer that has XP on it and I'm afraid to try anything in a virtual machine that involves something as dangerous as fiddling with the innards of connected peripherals. So I tried to install XP on my laptop, desperate times calling for desperate measures. But of course the install failed because my XP install CD is so old (pre-SP1, received free from my college 7 years ago) that it didn't recognize most of my hardware. In fact, the XP install CD blue-screened, which set a new record for how low Windows could sink in my opinion.

So I tried slipstreaming SP2 into my install CD. But it failed because, get this, the filenames of some drivers on the CD, namely usbehci.sys, ended up in lower case rather than uppercase and the CD's install program couldn't locate them. I kid you not. Since when is anything in Windows case-sensitive? Is it running Linux? I had to burn another CD after renaming all the files into uppercase. Then the CD worked, but it couldn't find my hard drive, probably due to missing SATA drivers. At that point I gave up, and plan to take my mouse to work tomorrow to upgrade the firmware on a work machine that has XP on it.

And so the score up to this point in my life is Windows: 947, Brian: 0. Windows remains undefeated.

Thanks go out to Logitech for not letting me use Vista (or, say, LINUX) to upgrade my mouse's firmware, and of course to Microsoft, for yet another gloriously broken and frustrating computing experience.

May 05, 2008 04:04 AM :: Pennsylvania, USA  

Clete Blackwell

Google SketchUp

Google’s SketchUp is an incredibly easy-to-use architectural and 3D-modeling tool. The Computer Science Club here at Mansfield has been talking about modeling the university for a 3D perspective in Google Earth, similar to what Google Earth provides for New York City and other metropolitan areas. Recently, I have been experimenting with SketchUp. A free version is available from the website and a professional version can be purchased for about $500. People enrolled in Universities can obtain the professional licenses for $50 a year. The $50 counts towards purchasing a full license, so after 10 years, it’s yours forever. Or, you can pay for the educational license for 3 years and pay the rest of the money up front.

At a first glance, SketchUp seems to be too simple to be worth anything. Upon further investigation, the simplicity seems to come from Google’s innovational perspective. Google has outdone themselves with SketchUp. It is amazingly easy to pick up and create simple objects. More complicated objects can be created with some practice. I have spent about an hour and a half working with the program. First, I watched the beginning tutorials. Then, I went straight into making objects and refining them. It’s amazingly simple. Just make a shape, pull it up to give it depth, draw other objects on it, and manipulate them. It’s amazingly simple.

In about twenty minutes, I was able to make the desk that I use here at school. Keep in mind that it isn’t 100% perfect, nor is it 100% to scale. I have never seen a program this simple. With an hour and a half of experience, I was easily able to make this (click to enlarge):

Here is the front of it:

From an angle:

From the side (notice the arches in the drawers):

And here it is next to a person:

May 05, 2008 03:39 AM

May 04, 2008

Martin Matusiak

OLPC about to self destruct?

I consider OLPC to be one of the most exciting initiatives of the last few years. When the idea was first circulated it was such an exciting call to arms to do something about the lack of education in poor regions of the world. And the project has produced what appears to be a pretty incredible product, the research of which is now recycled back into the general hardware industry, so it has brought advances that wouldn’t otherwise have happened (now).

I recall pondering the real purpose of the project, asking what is going to be achieved with these laptops. The OLPC project had a very good answer to this. They said the laptops will promote learning in areas where school books are a luxury. Furthermore, the laptop itself is completely tweakable, you press a special key and the source code of the current program pops up. This will promote learning through tweaking and experimentation, so that eventually an industry can be built on these foundations, in regions where little industry exists today and where perhaps the potential for one (in terms of natural resources) is bleak. A beautiful dream, one that could change the world in big ways.

Now Negroponte has changed his tune. Visionary that he is, he failed to convince the clients of the value of free software. So now he’s humming “forget open source, it’s all about the kids!” while preparing to run Windows on the laptop. There is a new smoke screen being constructed:

Negroponte says that the organization is working to ensure that Sugar can run smoothly on Windows.

Riiiight, running Sugar on Windows. Tell me, what exactly is the value of running Windows with an all free software stack? It’s completely useless, that’s what. The whole value of Windows is as a platform, not merely as an operating system. People buy Windows to run Windows applications, not for Windows itself. Or are we actually buying that Egyptian officials are eager to purchase Windows licenses in order to run the free software suite?

Congratulations, Negroponte, you’ve just become a licensed Windows vendor. The kids will no doubt have fun clicking on the Start menu and playing Solitaire. There is a great deal to learn from that, just nothing about the operating system or the applications, you know, actual learning.

OLPC in its original form was about empowering the users, with Windows that capability is entirely destroyed. The fact you cannot mix learning with trade secrets should be blindly obvious to anyone. Open souce is important, but it’s especially important when you want people to learn something.

Furthermore, learning doesn’t happen in isolation. It’s accelerated when it happens in a community of ideas and impulses that flow freely. Resigning OLPC president gets it when he says:

“What comes part and parcel with open source is a culture, and it’s the culture that I’m interested in,” he says. “It’s a culture of expression and critique, sharing, collaboration, appropriation.” And this culture can and should spill into classrooms, he says.

May 04, 2008 09:08 PM :: Utrecht, Netherlands  

Jan Tönjes

bash-Befehle

Mal eben zum festhalten:

Einfache Schleife
for i in `ls` ; do echo $i ; done

In Dateien suchen und ersetzen
cat filename | sed ’s/suchen/ersetzen/g’ > filename-new

Dateien umbenennen und hinten etwas wegnehmen
mv $i ${i%-new}

May 04, 2008 06:57 PM :: Lower Saxony, Germany  

Alex Bogak

Running tests on Windows.

Hi all

I need a free tool for testing a GUI application. Something in lines with Mercury's WinRunner.
Does anyone knows something like that?

Thanks

May 04, 2008 01:49 PM :: Israel  

May 03, 2008

Andreas Aronsson

Doubleclick links in terminal

For a very long while now, several years actually, I've been a bit annoyed by the behaviour of terminals under X when you doubleclick links. What the UI considers a word is selected. Selection 'starts' at the point that is doubleclicked and 'spreads' in each direction, stopping at a char it considers to be a word delimiter. A space is probably always considered a delimiter. Sometimes a '?' too, and often ',' as well. This has been very annoying for me as I spend quite alot of time in irc (irssi in a screen, its lovely in combination with bitlbee; icq, irc etcetc in the same screen.) and every now and then someone pastes an url which I want to doubleclick and then paste into my browser. Now the selection stops prematurely as it's not uncommon for a hyperlink to contain one of the characters that is in the word delimiter list. I've thought of this as a limitation to the system I use and, although annoyed, never gave it much thought. Maybe I've been to susceptible to propagandaists telling me gnu/linux is user-unfriendly.

A couple of weeks ago I started to think a little about it and the solution is rather simple. I use Eterm more or less exclusively.

In ~/.Eterm/user.cfg I've put this:

<eterm-0.9>
begin misc
cut_chars "\t\\\`\\\"\'() *,;<>[]{|}"
end misc

This might not be perfect but it's certainly served it's purpose this far as I have been able to doubleclick on the links and then middleclick in the address field (or open a new tab) in the browser. My OS is even better =)

May 03, 2008 01:06 PM :: Sweden

Michael Klier

What The Frack, Truecrypt?

Yesterday I've bought myself a new 250GB USB bus powered external hard-disk for my NSLU2. It replaces my bigger 3,5” which lives in a case and requires a separate AC adapter. I hope to safe some energy with this and get rid of the noise the bigger one made during the night.

Because the main purpose of the disk is to keep my backups and my digital audio library I went on to encrypt the disk using truecrypt, just like I did for the one before. I've never used truecrypt for anything else than mounting my old HD on my NSLU2 on which I run a self compiled 4.1 version of the software (at the time I encrypted my old disk there was no truecrypt package for the Debian arm port), so I never experienced the changes they'd made in the 5.1 version.

What should I say, IMHO the new version is a nightmare in terms of usability. It has a new Tcl/Tk GUI which should ease the management of encrypted devices. That might be the case for the Windows port but on Linux it results in just the opposite, especially on a headless machine.

If you want to use the text mode interface you have to explicitly force it on the command line by adding the -t option. Creating new encrypted devices also requires -t, if you omit it you'll get an error :-S. C'mon that really sounds like bad programming to me. The former cli interface of truecrypt was perfect IMO. I really don't know what has caused them to change it so dramatically. OK, there's a trick by putting an alias into your $shellrc to save you from future surprises and the ugly help window.

alias truecrypt='truecrypt -t'

Anyway, assuming that every user wants to use the crappy GUI by default is just plain wrong. Another example, in the old version you could mount the encrypted device without mounting its filesystem, for example if you wanted to format it with a different filesystem than FAT32 by omitting the destination mount point.

% truecrypt /dev/sdb1
Enter passwort:
% ls -1 /dev/mapper/
/dev/mapper/truecrypt0
% mkfs.ext3 /dev/mapper/truecrypt0

The new version isn't as clever. You have to omit the destination mount point and tell truecrypt not to mount it, or in other words tell it not to ask for a destination mount point because you didn't give one. Did they think: OK most users are not that smart, if they forget to provide a destination mount point we just keep asking them until we get one. Oh, and those who know what they do - well - lets add another cli switch so they can tell us that they really don't want to really mount the volume? The question about the missing destination mount point is not the only one. You're also asked for an optional key file and whether or not you like to protect the hidden volume.

To get the same effect as the above example you now have to use this easy to remember combination:

% truecrypt -t --keyfiles="" --protect-hidden=no --filesystem=none /dev/sdb1

As a side note: Since truecrypt uses FUSE now the devices don't appear in /dev/mapper anymore. You can use the following to list them.

% truecrypt -t -l
1: /dev/sdb1 /dev/loop0 - 
% mkfs.ext3 /dev/loop0

But the story doesn't end here, truecrypt now ships with another nifty gimmick.

I also wanted to create a hidden volume on the new hard-disk, the possibility to have hidden containers is what IMHO makes truecrypt a good choice for encryption. I know there are some controversial opinions on this matter, but anyway, check this out:

% truecrypt -t -c /dev/sdb1 
Volume type:
 1) Normal
 2) Hidden
Select [1]: 2
Error: The selected feature is currently not supported on your platform.

Erm what? I mean WHAT!? Are they kidding me? This worked versions ago. Although I bet this has something to do with the switch to FUSE, it seems that they decided to get the new fancy GUI version out in time (along with the added support for bootable encrypted devices on Windows) but also decided to ship the yet obviously unfinished rewrite of the Linux version.

I am sorry, but this just sucks!

Read or add comments to this article

May 03, 2008 12:13 PM :: Germany  

Muhammad Najmi Ahmad Zabidi

Random Heart

Graduate School Information Request


Your request for information has been processed.

Thank you for your interest in the University of Massachusetts Amherst.

Applications directed to addresses within the United States are mailed twice weekly with first class postage; allow 10 days for delivery. Applications directed to non-U.S. addresses are mailed weekly and sent air mail; allow at least 3 weeks for receipt. There is no charge for any of these materials.

The following materials will be sent to you here:

Department of Computer Science
KICT, IIUM
Gombak, 53100 MYS

  • CMPSC program materials

May 03, 2008 10:40 AM :: Kuala Lumpur, Malaysia  

Thomas Keller

Windows Media player doesn’t play all files

I have some strange issues recently with my windows media player - it does not play all video files any more (I have no problems on KDE with kmplayer, though). Turns out that this seems to be quite a common error…. The web-help of Microsoft points to this page, and it says something about iD3 tags [...]

May 03, 2008 07:55 AM

Zeth

Email Syntax Check in Python

Sometimes you may want to check that an email address is not syntactically invalid, i.e. it looks like a recognisable email address. I use this approach in my zetact contact form processor.

Of course, it does not mean the address actually leads anywhere, but at least you know are dealing with an email address that could exist.

This is the code I have been using, albeit I have changed it from a class method to a simple function to make this post simpler.

"""Email check using regex."""

def invalidreg(emailkey):
    """Email validation, checks for syntactically invalid email             
    courtesy of Mark Nenadov.                                               
    See http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65215"""
    import re
    emailregex = "^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3\
})(\\]?)$"
    if len(emailkey) > 7:
        if re.match(emailregex, emailkey) != None:
            return False
        return True
    else:
        return True

I decided it would be more Pythonic to try to do this using the built-in string methods, rather than importing the re module and using a monster regular expression. Here was my first attempt.

"""Email checks using string methods - simple version."""
def invalidemail(emailaddress):
    """Checks for a syntactically invalid email address."""
    try:
        emailitems = emailaddress.rsplit('@', 1)
        emailitems.extend(emailitems[1].rsplit('.', 1))
    except IndexError:
        return True

    if [x for x in emailitems if not x.replace(".","").isalnum()] \
            and emailaddress >= 7:
        return True
    else:
        return False

After a bit of testing and playing with this, a friend pointed me towards the relevant RFC on restrictions of email addresses. While the standard allows the use of many different special characters, in practice email addresses have to be much stricter if you actually want people in the real world to be able to send email to you.

For example, if we allow the email address []@commandline.org.uk, will whatever receives the output of this function be able to use it? As pointed out by Jan Goyvaerts, most software won't actually be able to handle obscure special characters.

We also don't want to water down the syntax check and allow junk for the sake of theoretical but non-existent addresses.

My compromise is to allow these special symbols -_.%+. in the local-part of the email address, and -_. in the domain name. I also do sanity checking on the top-level domain, it needs to be either a generic name or two characters long (country codes are all two letters).

So below is my current version, I added lots of comments and white space to make it easy to read.

"""Ditch nonsense email addresses."""

GENERIC_DOMAINS = "aero", "asia", "biz", "cat", "com", "coop", \
    "edu", "gov", "info", "int", "jobs", "mil", "mobi", "museum", \
    "name", "net", "org", "pro", "tel", "travel"

def invalid(emailaddress, domains = GENERIC_DOMAINS):
    """Checks for a syntactically invalid email address."""

    # Email address must be 7 characters in total. 
    if len(emailaddress) < 7:
        return True # Address too short.

    # Split up email address into parts.
    try:
        localpart, domainname = emailaddress.rsplit('@', 1)
        host, toplevel = domainname.rsplit('.', 1)
    except ValueError:
        return True # Address does not have enough parts. 
    
    # Check for Country code or Generic Domain.
    if len(toplevel) != 2 and toplevel not in domains:
        return True # Not a domain name.
    
    for i in '-_.%+.':
        localpart = localpart.replace(i, "")
    for i in '-_.':
        host = host.replace(i, "")
    
    if localpart.isalnum() and host.isalnum():
        return False # Email address is fine.
    else:
        return True # Email address has funny characters.
    
# Start the ball rolling.
if __name__ == "__main__":
    print invalid("warrior@example.com")

Discuss this post - Leave a comment

May 03, 2008 02:00 AM :: West Midlands, England  

May 01, 2008

Nicolas Trangez

Python ‘all’ odity

[update] Question solved, see bottom of post.

Since Python 2.5 the language got a new built-in method ‘all’ (and it’s nephew ‘any’). I wanted to play around with this a little, combined with generators, so I created a little testcase to test performance.

Here’s the test-case: take a list L of X random numbers in a given range [A, B], and check whether

  • all elements in L are >= A
  • all elements in L are >= (A + Z) where Z is a number in [0, (B - A)]

The first test should always result True, the second test could result to False.

Here’s the output of a test-run:

In [1]: import random, sys

In [2]: a = [random.randint(100, sys.maxint) for i in xrange(2000000)]

In [3]: len(a)
Out[3]: 2000000

In [4]: #Check whether all elements are >= 100 

In [5]: %timeit all(i >= 100 for i in a)
10 loops, best of 3: 515 ms per loop

In [6]: %timeit any(i < 100 for i in a)
10 loops, best of 3: 454 ms per loop

In [7]: def f(l):
   ...:     for i in l:
   ...:         if i < 100:
   ...:             return False
   ...:     return True
   ...: 

In [8]: %timeit f(a)
10 loops, best of 3: 292 ms per loop

In [9]: #Same thing for 100000, since now the list shouldn't be completely iterated

In [10]: %timeit all(i >= 100000 for i in a)
100 loops, best of 3: 4.73 ms per loop

In [11]: %timeit any(i < 100000 for i in a)
100 loops, best of 3: 4.29 ms per loop

In [12]: def g(l):
   ....:     for i in l:
   ....:         if i < 100000:
   ....:             return False
   ....:     return True
   ....: 

In [13]: %timeit g(a)
100 loops, best of 3: 2.82 ms per loop

In [14]: #For reference

In [15]: %timeit False in (i >= 100 for i in a)
10 loops, best of 3: 531 ms per loop

In [16]: %timeit False in (i >= 100000 for i in a)
100 loops, best of 3: 5.03 ms per loop

It’s as if ‘all’, ‘any’ or ‘in’ don’t break/return when a first occurence of False (or True, obviously) is found. Is this the desired behaviour, and if it is, why? The calculation time difference between using all/any/in or a custom-made function (which is, unlike all etc, not written in C) which breaks whenever it can, is pretty astonishing.

[update] Question solved. It’s pretty normal the function-based approach performs better, since it combines what ‘all’ and the generator provided to ‘all’ do, taking away the generator function-call overhead. Damn :-)

May 01, 2008 01:57 PM

Martin Matusiak

renaming sequentially

If you’ve been dealing with files for a while you will have noticed that there is a slight semantic gap between how humans see files and how computers do. If you’ve ever seen a file list like this you know what I mean:

Lecture10.pdf
Lecture11.pdf
Lecture12.pdf
Lecture1.pdf
Lecture2.pdf

Numbering these files was done in good faith, and a user understands what it means, but the computer doesn’t get it. Sorting in dictionary order produces the wrong order as far as the user is concerned. The reason is that the digits in these filenames are not treated and compared as integers, merely as strings. (Actually, . comes before 0 in ASCII, what’s going on here?)

While we’re not expecting our computers to wisen up about this anytime soon, there is the obvious fix:

Lecture01.pdf
Lecture02.pdf

Lecture10.pdf
Lecture11.pdf
Lecture12.pdf

You’ve probably done this by hand once or twice, while cursing.

On the upshot, this is very easy to fix with a few lines of code:

#!/usr/bin/env python
#
# Author: Martin Matusiak <numerodix@gmail.com>
# Licensed under the GNU Public License, version 3.
#
# revision 1 - support multiple digit runs in filenames
 
import os, string, glob, re, sys
 
def renseq():
    if (len(sys.argv) != 2):
        print "Usage:\\t" + sys.argv[0] + " <num_digits>"
    else:
        ren_seq_files(sys.argv[1])
 
 
def ren_seq_files(num_digits):
    files = glob.glob("*")
    for filename in files:
        m = re.search("(.*)(\\..*)", filename)
        ext = ""
        if m: (filename, ext) = m.groups()
 
        digit_runs = re.finditer("([0-9]+)", filename)
        spans = [m.span() for m in digit_runs if digit_runs]
        if spans:
            spans.reverse()
            arr = list(filename)
            for (s, e) in spans:
                arr[s:e] = string.zfill(str( int(filename[s:e]) ), int(num_digits))
            os.rename(filename+ext, "".join(arr)+ext)

 
 
if __name__ == "__main__":
    renseq()

Download this code: renseq.py

This works on all the files in the current directory. Pass an integer to renseq.py and it will change all the numbers in a filename (if there are any) to the same numbers, padded with zeros if they have fewer digits than the amount you want. So on the example

renseq.py 2

will turn the first list into the second list.

If say, there are filenames with numbers of three digits and you pass 2 to renseq.py, the numbers will be preserved (so it’s not a destructive rename), you’ll just revert to your incorrect ordering as it was in the beginning.

renseq.py will rewrite all t