Devin Reade wrote:
--On Friday, June 17, 2011 02:27:22 PM -0400 m.roth@5-cent.us wrote:
Minkowski space?
Sure. I'll implement M-x minkowski-space-mode as soon as I get 'elsewhere' (in Minkowski terms, that is).
You're sure that's not a vim option?
mark
Kirk: Warp 5, Scotty! Scotty: We're shovelin' as fast as we can, captain!
Goddamn dnsorbs! Two bounces....
On 6/17/2011 2:02 PM, m.roth@5-cent.us wrote:
Devin Reade wrote:
--On Friday, June 17, 2011 02:27:22 PM -0400 m.roth@5-cent.us wrote:
Minkowski space?
Sure. I'll implement M-x minkowski-space-mode as soon as I get 'elsewhere' (in Minkowski terms, that is).
You're sure that's not a vim option?
No, only emacs has commands like Meta-X psychoanalyze-pinhead. Seriously - that's a real command installed on millions of computers for decades. Try it.
Les Mikesell wrote:
On 6/17/2011 2:02 PM, m.roth@5-cent.us wrote:
Devin Reade wrote:
--On Friday, June 17, 2011 02:27:22 PM -0400 m.roth@5-cent.us wrote:
Minkowski space?
Sure. I'll implement M-x minkowski-space-mode as soon as I get 'elsewhere' (in Minkowski terms, that is).
You're sure that's not a vim option?
No, only emacs has commands like Meta-X psychoanalyze-pinhead. Seriously - that's a real command installed on millions of computers for decades. Try it.
I know how to get in, and out, of emacs. Did you see yesterday's XKCD?
But... plaease don't tell me that emacs comes with eliza....
mark
On 6/17/2011 2:36 PM, m.roth@5-cent.us wrote:
Les Mikesell wrote:
On 6/17/2011 2:02 PM, m.roth@5-cent.us wrote:
Devin Reade wrote:
--On Friday, June 17, 2011 02:27:22 PM -0400 m.roth@5-cent.us wrote:
Minkowski space?
Sure. I'll implement M-x minkowski-space-mode as soon as I get 'elsewhere' (in Minkowski terms, that is).
You're sure that's not a vim option?
No, only emacs has commands like Meta-X psychoanalyze-pinhead. Seriously - that's a real command installed on millions of computers for decades. Try it.
I know how to get in, and out, of emacs. Did you see yesterday's XKCD?
No, but that is funny.
But... plaease don't tell me that emacs comes with eliza....
Yes - and then some. You need something to waste those cycles that you save by running awk instead of perl.
On Friday, June 17, 2011 04:54:09 PM Les Mikesell wrote:
Yes - and then some. You need something to waste those cycles that you save by running awk instead of perl.
Well..... I once wrote an awk script to parse a RealAudio server log to determine simultaneous listeners at a given time. This is harder than it sounds, because at the time RA server (now Helix Server) logged the listener's entry at connection close; you had to work backwards in time based on connected bitrate and the number of bytes logged in the log entry to lay out simultaneous listeners (and thus 'stream hours') for the music licensing organizations' fee calculations.
The awk script took forever (it seemed) to run, and used lots of memory. Even though it seems like you could just take a point in time and use a window on the log file to get the connections active at that time, in practice that missed 'long term' listeners (listeners that connected, and left the connection up for sometimes weeks at a time! I think our record was one listener who kept a connection up for two months. So it was really necessary to pull in many logs, and run the reports multiple times so that connected users would be counted. I got in the habit of restarting Helix whenever I needed to do an analysis run so that I could make sure all connections were accounted for.
I used an automated 'awk to perl' translator (meaning it wasn't idiomatic perl, but 'perl in awk mode' being run) to get the perl equivalent, and it was nearly a hundred times faster, and used one-tenth the memory, of the awk script. Idiomatic perl I would suspect would be faster still.
YMMV.