Re: High-volume mod_perl based ecommerce sites?

2000-06-01 Thread Ask Bjoern Hansen
On Thu, 25 May 2000, Michael Nachbaur wrote: [...] This site will have major traffic, will need to be extended and changed (a lot), and needs to scale very well. My experience with Perl (as well as what I've heard from other developers) is that Perl turns to spaghetti rapidly once you hit

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Matt Sergeant
On Thu, 25 May 2000, Jason Bodnar wrote: Definitely read the perltoot (Tom's OO Tutorial). I've heard alot of good things about Damian Conway's OO Perl book but I haven't read it myself. Damian's book is the book to end all perl books in my opinion - I wouldn't dream of hiring anyone who

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread David Hodgkinson
Jason Bodnar [EMAIL PROTECTED] writes: Definitely read the perltoot (Tom's OO Tutorial). I've heard alot of good things about Damian Conway's OO Perl book but I haven't read it myself. The advanced perl programming book has a nice section on OO. But, learning OO in a Java or C++ context

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Drew Taylor
Jason Bodnar wrote: Probably the best way to learn good OO Perl is to learn Java or C++. As Gunther said, other languages are much more strict so they force you to write good OO stuff. I had been programming with Perl 4 before Java came out and had never done any OO stuff. I actually argued

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Randal L. Schwartz
"Jason" == Jason Bodnar [EMAIL PROTECTED] writes: Jason Definitely read the perltoot (Tom's OO Tutorial). And don't forget "perlboot" in the 5.6 distribution, aimed more at the "I know some Perl but nothing about OO crowd". The approach I took in perlboot is the one that Damian would have

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Randal L. Schwartz
"Jason" == Jason Bodnar [EMAIL PROTECTED] writes: Jason Probably the best way to learn good OO Perl is to learn Java or C++. No. Gawd no. Java and C++ are "hybrid" OO languages, with some "real" objects and some "primitive" non-objects. You learn evil habits that way. (Of course, Perl is

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Gunther Birznieks
At 09:50 AM 5/26/00 -0400, Drew Taylor wrote: Jason Bodnar wrote: Probably the best way to learn good OO Perl is to learn Java or C++. As Gunther said, other languages are much more strict so they force you to write good OO stuff. I had been programming with Perl 4 before Java came out

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Marc Spitzer
25, 2000 11:28 PM Subject: Re: High-volume mod_perl based ecommerce sites? I'm probably a novice programmer, at least by the standards of most of the people on this list. I'm 16, and since I haven't taken Computer Science at university yet, I'm a bit lacking in 'formal programming education

Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Adriano Nagelschmidt Rodrigues
Randal L. Schwartz writes: [snip] Or, I hesitate to say this here, but it's accurate: try Python. Decent object model... just an overly verbose syntax and that horrific "you must indent your code the way Guido wanted or Guido will make a visit to your house" indenting style. What about

Books, was Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Adriano Nagelschmidt Rodrigues
Neil Conway writes: I'm probably a novice programmer, at least by the standards of most of the people on this list. I'm 16, and since I haven't taken Computer Science at university yet, I'm a bit lacking in 'formal programming education'. I'd rather not form bad habits - is there any advice

Re: Books, was Re: High-volume mod_perl based ecommerce sites?

2000-05-26 Thread Gunther Birznieks
At 02:24 PM 5/26/00 -0300, you wrote: Neil Conway writes: I'm probably a novice programmer, at least by the standards of most of the people on this list. I'm 16, and since I haven't taken Computer Science at university yet, I'm a bit lacking in 'formal programming education'. I'd rather

High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Michael Nachbaur
I'm in the process of designing an ecommerce system, and have several options on the table. Since I love perl/mod_perl/apache, my knee-jerk reaction is to write it in perl. However, in the best interest of the project, I need to look at other possibilities, and take an objective look at the

RE: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Matt Sergeant
On Thu, 25 May 2000, Jason Bodnar wrote: Could someone also give me a quick list (or a link to where I can find a list) of some high-profile sites that use Perl, and pull it off? http://www.slashdot.org Careful with this - it's a high traffic site, yes. But it doesn't exactly pull off

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread JoshNarins
The United Nation's IMIS Project definitely exceeded 100,000 lines of Perl. If you throw in all the utilites and admin stuff, the total probably tops 200,000. The design was decent enough that it was rare that any particular module was completlely overhauled or found to be unncessary. IMIS

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread morpheus
eToys.com On Thu, 25 May 2000, Michael Nachbaur wrote: I'm in the process of designing an ecommerce system, and have several options on the table. Since I love perl/mod_perl/apache, my knee-jerk reaction is to write it in perl. However, in the best interest of the project, I need to look

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Barry Robison
You may want to check out http://www.opensales.org/html/source.shtml, rather than starting from scratch .. I haven't used it, but it's a Perl based GPL commerce solution. -- Barry Robison - [EMAIL PROTECTED] The bite of conscience. The bite of conscience, like the bite of a dog into a

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Perrin Harkins
On Thu, 25 May 2000, Barry Robison wrote: You may want to check out http://www.opensales.org/html/source.shtml, rather than starting from scratch .. I haven't used it, but it's a Perl based GPL commerce solution. Or you may not. It doesn't support mod_perl. I'd suggest looking at Tallyman

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Drew Taylor
Perrin Harkins wrote: On Thu, 25 May 2000, Barry Robison wrote: You may want to check out http://www.opensales.org/html/source.shtml, rather than starting from scratch .. I haven't used it, but it's a Perl based GPL commerce solution. Or you may not. It doesn't support mod_perl. I'd

RE: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Gunther Birznieks
At 10:51 AM 5/25/00 -0500, Jason Bodnar wrote: On 25-May-2000 Michael Nachbaur wrote: This site will have major traffic, will need to be extended and changed (a lot), and needs to scale very well. My experience with Perl (as well as what I've heard from other developers) is that Perl

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Neil Conway
On Fri, May 26, 2000 at 09:20:35AM +0800, Gunther Birznieks wrote: Well, yeah, C and Java can suffer the same problems as Perl, but because Java is so constrained as a language, the design of the language has a built in constraint. With Perl you can literally do ANYTHING, and to program

books (was High-volume mod_perl based ecommerce sites?)

2000-05-25 Thread Perrin Harkins
On Thu, 25 May 2000, Neil Conway wrote: I'm probably a novice programmer, at least by the standards of most of the people on this list. I'm 16, and since I haven't taken Computer Science at university yet, I'm a bit lacking in 'formal programming education'. I'd rather not form bad habits -

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Jim Winstead
On May 25, Barry Robison wrote: You may want to check out http://www.opensales.org/html/source.shtml, rather than starting from scratch .. I haven't used it, but it's a Perl based GPL commerce solution. Every time I look at this code, my brain hurts. Especially crap like this: ##

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Jason Bodnar
I'm probably a novice programmer, at least by the standards of most of the people on this list. I'm 16, and since I haven't taken Computer Science at university yet, I'm a bit lacking in 'formal programming education'. I'd rather not form bad habits - is there any advice anyone can give me on how

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread John BEPPU
[ date ] 2000/05/25 | Thursday | 10:28 PM [ author ] Jason Bodnar [EMAIL PROTECTED] Probably the best way to learn good OO Perl is to learn Java or C++. As Gunther said, other languages are much more strict so they force you to write good OO stuff. I'd hesitate to push C++ on a beginner,