Comment Re:Avoid Ubuntu (Score 2) 212
Comment Re:linux is fail (Score 1) 196
Comment Re:Python Regexps (Score 1) 592
sed -r -ie "s/(.{3})A/\1B/g" somefile
Or:
perl -pi.orig -e 's/(.{3})A/$1B/g' somefile
A trivial Perl script to wrap that if you want it programmatically is 98 characters, with proper spacing and no golfing at all.
Python:
python -c "import os,re;[open('outfile.txt','a').write(re.sub(r'(.{3})A', r'\1B', line)) for line in open('infile.txt','rb')]"
Yes, that's golfed a tad to make it convenient as a oneliner, but the "re.sub" bit is much, much shorter than your ridiculous map+join combination. Just because you don't know regular expressions doesn't mean they're not more efficient.
Comment Re:SilentPCReview has a review, got over 9hrs (Score 1) 190
Comment Re:Short memory (Score 1) 587
Yeah, what you say is probably accurate for a snip of time for intel PC programmers.
Uh, what? Microsoft wasn't a concern at the time. Ultrix, Tru64, AIX, Solaris, VMS, IRIX, MVS, Nonstop, and all the other relevant operating systems at the time used that licensing model. HPUX still does -- they ship a non-ANSI C compiler and a crippled linker. You can't compile anything without paying for a compiler or wedging GCC on there. MIPSPro was never free. suncc wasn't free, etc.
GNU was founded before the era of Microsoft dominance. I don't really like GNU (CDDL, Apache, or BSD license if you please), but OP has valid points.
Comment Re:Will this become RHEL/CentOS 6 (Score 1) 236
Comment Re:Is it live, or is it Memorex (Score 1) 321
Comment Re:Got that last one right. (Score 1) 303
Frankly, this is not aimed at your budget or what you can afford. I'd question your ability to compete on price/performance for all but the most trivial tasks also (a fully loaded Octane III is damn close to list price on the components).
Comment Re:Sure. Done. (Score 1) 303
The form factor matters not because of aesthetics, but because fast interconnects and redundant components matter for some applications. It is not a competitor to desktops.
Comment Re:Despite the prevailing skepticism here, this is (Score 1) 303
Comment Re:Woo Hoo!!! (Score 1) 173
Comment Re:I wonder (Score 1) 58
Comment Re:I wonder (Score 1) 58
They cannot, of course, run nearly as many threads in hardware, but for brute-forcing compression, it's sort of a moot point.