Combine Split Files in Windows
I recently ran into an issue where I had about 7.5 GB of files split into 512M chunks downloaded from linux machine. The files had been generated using the split command:
split -b 512m files.tgz
This created the following files:
-rw-rw-rw- 1 user group 536870912 Mar 9 20:44 xaa
-rw-rw-rw- 1 user group 536870912 Mar 9 20:46 xab
-rw-rw-rw- 1 user group 536870912 Mar 9 20:49 xac
-rw-rw-rw- 1 user group 536870912 Mar 9 20:51 xad
-rw-rw-rw- 1 user group 536870912 Mar 9 20:53 xae
-rw-rw-rw- 1 user group 536870912 Mar 9 20:55 xaf
-rw-rw-rw- 1 user group 536870912 Mar 9 20:57 xag
-rw-rw-rw- 1 user group 536870912 Mar 9 20:59 xah
-rw-rw-rw- 1 user group 536870912 Mar 9 21:01 xai
-rw-rw-rw- 1 user group 536870912 Mar 9 21:03 xaj
-rw-rw-rw- 1 user group 536870912 Mar 9 21:05 xak
-rw-rw-rw- 1 user group 536870912 Mar 9 21:07 xal
-rw-rw-rw- 1 user group 536870912 Mar 9 21:09 xam
-rw-rw-rw- 1 user group 536870912 Mar 9 21:12 xan
-rw-rw-rw- 1 user group 222082405 Mar 9 21:13 xao
I wanted to combine them in windows and looked around for a while until I realized you can use Microsoft’s copy utility in binary mode!
copy /b xa* files.tgz /b
Now I’m all done! Hurray for built-in utilities.
Flickr Large Photo Resize Bug
This is sure a cute Flickr bug, which you can view for yourself with this 8371 x 3778 photo I took of a snake cast in iron:

I think my image is either (a) too big or (b) too strangely sized for Flickr to resize it into a thumbnail or even large size. Here’s what it would look like if Flickr didn’t have this bug:

Mint 2.0: Pirate Version
I came across the following code in a Mint installation today, and was pretty shocked. I’d never really considered that someone would want to pirate a $30 php product, but apparently I was quite wrong:
/* Code removed at the request of Shaun Inman, although technically it’s not his code anymore, just something someone (who knows who) hacked up around it… */*the usual bypass authorization by modifying the function to always validate hack*

Mint Piracy is a well-known problem to Shaun Inman, so I emailed him a potential solution to the problem of having to release his source code to users, but still needing some control. Hopefully in the future, we can work to bring piracy of Mint to a quick end.
Update: Inman isn’t a fan of the technique (which I think is perfect):
There is a simple way for you to track the origin of Mint pirate releases, and that is to add information to downloads in a way that looks normal, but actually can be later used to authenticate the source.
Person x buys mint, and you assign them id 123456. In base 2 you have 011110001001000000. So, the trick is, you now need to find 18 places in the code where you can choose one thing over another. So for every person x, you generate a unique download, choosing different adjectives in the comments in different places, etc, depending on the id you want to steganografically encrypt. The key to this is that you don’t tell anyone you’re doing it, and they probably won’t notice.
What do you think? Would this cause more grief?