Hacker News new | ask | show | jobs
by jackmaney 4223 days ago

    s/I think you may be/You are/
No single file of source code should ever be even close to 200MB, and no data file (CSV, XML, etc) of that size should be manually edited in a text editor.

Wrong tool for the wrong job.

5 comments

"no data file (CSV, XML, etc) of that size should be manually edited in a text editor"

A new law of the land!

Seriously, tools are meant to solve problems, not to dictate what problems people should solve.

Vim and Emacs are quite well-suited for textual manipulation of very large data files. Use of a macro is a very pleasant alternative to piping the file through sed/awk/etc. for a once-off transform.
I never said it was a source code file.
Indeed, 640 KB ought to be enough for anybody. :/
This sed substitution thing seems to be a cute trend to express "fixed that for you". It goes nicely with programmer's propensity to express themselves in needlessly arcane ways.