The files in the .zip file have 1/2007 dates.
I downloaded the .zip, it contains 4 .acv files corresponding to the blog post. These are Photoshop curve files, and their format is described here: Adobe Photoshop File Formats Specification
Pretty easy to read, it’s just a successive read of short integers with the following sequence: version, count of curves,(curve1),(curve2)… Here’s what’s in the crossprocess.acv file:
$ ./acvdecode.exe crossprocess.acv
Version: 4
Number of curves: 5
curve:0,0,0,255,255
curve:1,0,0,56,22,211,255
curve:2,0,0,56,39,208,226,255,255
curve:3,0,20,255,235
curve:4,0,0,255,255
Curve 0 is rgb, 1=red, 2=green, 3=blue, 4=alpha?, and I have the points listed in x,y order.
Note that your mileage will vary, as the spline algorithm used in the various softwares will yield slightly different slopes at given points. I put these into rawproc, and they yielded a transform similar to what the blog post shows.
Edit: here are the others:
$ ./acvdecode.exe proviaesque.acv
Version: 4
Number of curves: 5
curve:0,0,0,255,255
curve:1,0,0,59,54,202,210,255,255
curve:2,0,0,27,21,196,207,255,255
curve:3,0,0,35,25,205,227,255,255
curve:4,0,0,255,255
$ ./acvdecode.exe portraesque.acv
Version: 4
Number of curves: 5
curve:0,0,0,23,20,157,173,255,255
curve:1,0,0,69,69,213,218,255,255
curve:2,0,0,52,47,189,196,255,255
curve:3,0,0,41,46,231,228,255,255
curve:4,0,0,255,255
$ ./acvdecode.exe velviaesque.acv
Version: 4
Number of curves: 5
curve:0,0,0,128,118,221,215,255,255
curve:1,0,0,41,28,183,209,255,255
curve:2,0,0,25,21,95,102,181,208,255,255
curve:3,0,0,25,21,122,153,165,206,255,255
curve:4,0,0,255,255