Re: Content management systems

2002-04-11 Thread Marc Spitzer
On Tue, 09 Apr 2002 10:17:00 -0400 Aaron Ross [EMAIL PROTECTED] wrote: For community sites, use Slash - the engine behind slashdot (http://www.slashcode.com) - there's even a book about it. You should also check out scoop (http://scoop.kuro5hin.org/), the engine that runs

Re: mod_perl vs. C for high performance Apache modules

2001-12-15 Thread Marc Spitzer
I know this sounds kind of simple minded but why not bench test the site, set everything up in the office get a good switch plug the site into 1 port and 5-10 client boxes with some load testing software and plug it in to the same switch and beat the crap out of it. After you do this for a while

Re: Upgrading mod_perl on production machine (again)

2001-01-19 Thread Marc Spitzer
make 2 directories: /opt/local1 and /opt/local/2 do an original install in /opt/local1, perl http mod_perl what ever packages you need etc. when it is time to upgrade do a new install in /opt/local2 of what you need, run the httpd on an off port, i.e. port 8765, until you get the new stuff

Re: Concurrenty access to a log file!!!

2000-12-08 Thread Marc Spitzer
I don't know if this helps but when you log something add the process ID to the log message. Then you should be able to trace what process is running what, look at : http://httpd.apache.org/docs/mod/mod_log_config.html#formats to tell you how to set up custom log formats, %p gives you the pid,

Re: Smart installing (Re: mod_perl advocacy project resurrection)

2000-12-07 Thread Marc Spitzer
to it. Now I have 2 questions for the list: 1: is this a good idea or a waste of my time 2: did I forget anything marc - Original Message - From: barries [EMAIL PROTECTED] To: Marc Spitzer [EMAIL PROTECTED] Cc: mod_perl list [EMAIL PROTECTED]; Marc Spitzer [EMAIL PROTECTED] Sent: Thursday

Re: Smart installing (Re: mod_perl advocacy project resurrection)

2000-12-07 Thread Marc Spitzer
installed the package(s) you need. marc - Original Message - From: Jimi Thompson [EMAIL PROTECTED] To: Marc Spitzer [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, 7. December 2000 13:40 Subject: Re: Smart installing (Re: mod_perl advocacy project resurrection) Marc, In order

Re: [certification]

2000-12-07 Thread Marc Spitzer
I agree with Eric, for consultants you should focus on skills and brains and for employees you should focus on BRAINS. They will be there long enough to pick up the skills and pay you back for the time you spent training them. Remember smart people learn fast so it is not that much time spent

Re: mod_perl advocacy project resurrection

2000-12-06 Thread Marc Spitzer
what about emacs? It has syntax high lighting/coloring/indenting, easy use of version control, the ability to do compile goto error line(fix) then debug, menu's that work under gui or tty and a bunch of features that I have not even learned yet. The version control is what sold me it is trival

Re: Smart installing (Re: mod_perl advocacy project resurrection)

2000-12-06 Thread Marc Spitzer
with mod_perl so I would need some noble soul to test the krap out of it. marc spitzer - Original Message - From: kevin montuori [EMAIL PROTECTED] To: Aaron E. Ross [EMAIL PROTECTED] Cc: Dave Rolsky [EMAIL PROTECTED]; brian moseley [EMAIL PROTECTED]; mod_perl list [EMAIL PROTECTED] Sent: Wednesday

Re: [ANNOUNCE] HTTP::GHTTP

2000-11-22 Thread Marc Spitzer
Simple useful things get adopted quickly, more complex useful things take more time. marc - Original Message - From: "Matt Sergeant" [EMAIL PROTECTED] To: "clayton cottingham" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, November 22, 2000 1:37 PM Subject: Re: [ANNOUNCE]

Re: Putting together the TPC mod_perl track

2000-11-01 Thread Marc Spitzer
what is AO? thanks marc - Original Message - From: "Nathan Torkington" [EMAIL PROTECTED] To: "Matt Sergeant" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, November 01, 2000 12:14 PM Subject: Re: Putting together the TPC mod_perl track Matt Sergeant writes: Since its

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Marc Spitzer
Well forcing you to write objects does not mean you know how to write good objects. With that said here is my very small cookbook: 1: know your tools, what they can and cannot do AND what they should and should not do. 2: when you get the problem try to understand it before you start the design