views:

75

answers:

3

Google Code provides a barcode like this:

Sample Bar Code

When you download software. What is its purpose (I assume it is related to the SHA1 checksum, but if so, how is it used)?

Edit: Now that I know its name, I found this article. Thanks!

+4  A: 

This is a QR code, frequently used for entering URLs into mobile phones. It can be helpful if someone posts software that could be installed, say, on an Android phone; instead of manually entering the URL on the phone keyboard, you can just use an app like Barcode Scanner from the open source ZXing project to easily scan it in.

If you're not trying to download something directly onto your phone, it's probably not all that useful.

Brian Campbell
A: 

It's a 2-Dimensional Barcode. There's software out there that can scan it.

Andrew
+3  A: 

It's a QR code and encodes a small amount of data - typically a URL. You can scan them for example using a phone and then visit the URL.

[Update: it's a URL for downloading msysGit.]

Richard Fearn