|
|
|
|
|
by yuvipanda
3819 days ago
|
|
> The Taco Bell answer? xargs and wget. In the rare case that you saturate the network connection, add some split and rsync. A "distributed crawler" is really only like 10 lines of shell script. As someone who has had to cleanup the messes of people who started with this and built many hundred line dense bash scripts... please do not do this. > I made most of a SOAP server using static files and Apache's mod_rewrite. I could have done the whole thing Taco Bell style if I had only manned up and broken out sed, but I pussied out and wrote some Python. I feel sad for whoever inherited this person's systems. "Write code as if whoever inherits it is a psychopath with an axe who knows where you live" is something I heard pretty early on in life and it's been pretty useful. |
|
Of course. But that's with any language that's many hundred lines of dense code.
His point is if something can be done simply with built-in proven tools, use them until you need something more.