Re: [OT] Better Linux server platform: Redhat or SuSe?

2002-07-08 Thread Owen Scott Medd

On Mon, 8 Jul 2002, Ganesan M wrote:
> > Schoolmaster.net, 167,000 lines of Perl code, another 30,000 lines of C.
> > 
> > Rich.
> > 
> How do you run 'C' code from Apache/mod_perl?

Using the perl XS interface usually... that's how we access our text 
analysis routines which are in C.

Owen
-- 
USMail:   InterGuide Communications, 230 Lyn Anne Court, Ann Arbor, MI 48103
phone:+1 734 997-0922   fax:+1 734 661-0324
mailto:[EMAIL PROTECTED]   http://www.interguide.com/~osm/

[ Sometimes wrong.  Never in doubt. ]




Re: [OT] Better Linux server platform: Redhat or SuSe?

2002-07-05 Thread Owen Scott Medd

I think the point is that you have complete non-trivial applications being 
written in Perl.

Success is measured in application adoption, not in elegance.   I've 
worked many places that produced very elegant code, however all of those 
places no longer exist.  You need more than "cool" code to mark something 
as a success.

Owen

On Thu, 4 Jul 2002, Nick Tonkin wrote:
> I'm confused. Since when did bloat surpass elegance as a measure of
> success in Perl programming?
> 
> - nick
> 
>    
> Nick Tonkin   {|8^)>
> 
> 
> On Thu, 4 Jul 2002 [EMAIL PROTECTED] wrote:
> 
> > On Wed, Jul 03, 2002 at 02:41:38PM +0100, Peter Haworth wrote:
> > > On Wed, 3 Jul 2002 11:40:44 +0100, Jean-Michel Hiver wrote:
> > > > > perl: Any iussues with perl/modperl? Besides modperl I will be running a
> > > > > perl application with a few hundred thousend lines of code...
> > > >
> > > > Wow. For reference last time I looked at slashcode it was about 25.000
> > > > lines I think. I wonder what kind of application would require more than
> > > > that amount of Perl code :-)
> > > 
> > > I'm sure someone else will post a bigger number, but my application (IOP
> > > Electronic Journals) has 55000 lines of code (including the odd blank line
> > > and comment, of course). And we're always adding new stuff, so it only ever
> > > gets bigger.
> > 
> > Schoolmaster.net, 167,000 lines of Perl code, another 30,000 lines of C.
> > 
> > Rich.
> > 
> > -- 
> > [EMAIL PROTECTED] | Is your school part of http://www.schoolmaster.net ?
> > BiblioTech Ltd, Unit 2 Piper Centre, 50 Carnwath Road, London, SW6 3EG.
> > +44 20 7384 6917 | Free software: http://freshmeat.net/users/rwmj
> > Copyright © 2002 Richard Jones | GnuPG/PGP key from www.annexia.org
> > 
> 
> 

-- 
USMail:   InterGuide Communications, 230 Lyn Anne Court, Ann Arbor, MI 48103
phone:+1 734 997-0922   fax:+1 734 661-0324
mailto:[EMAIL PROTECTED]   http://www.interguide.com/~osm/

[ Sometimes wrong.  Never in doubt. ]




Re: [OT] Better Linux server platform: Redhat or SuSe?

2002-07-03 Thread Owen Scott Medd

We wrote our own templating system (back when modperl was still just a 
puppy) as we have over 200 sites running off the same code instance 
distributed across the server farm.

Everybody wants their submit buttons to say something slightly different,
we were forced early on to remove all hardcoded html from the code.

The reason for all that code is that there is just a lot of functionality
there (text analysis, vectorspace matching, billing, customer management,
message system).  Much of it has been migrating into our java-based
backend system (I'm sure a year ago the number of lines of code would have
been substantially higher) as we retire all the business logic that was
embedded in the modperl frontend and maintain only the java version which
runs in the backend.

Owen

On Wed, 3 Jul 2002, Peter Bi wrote:
> Maybe that depends on the project. We have a powerful BBS system, which
> contains: read/post messages, public and member sign ups,  messages cached
> to disk or memory, email notification, fast sorting of message threads and
> follow-ups, and a number of other features. It consists of 5 modules and
> each module has only 100 - 300 lines. Well, we use HTML::Template that helps
> to separate the HTML codes from the modules. Having HTML in perl programs
> makes a big difference.
> 
> Peter Bi
> 
> - Original Message -
> From: "Owen Scott Medd" <[EMAIL PROTECTED]>
> To: "Peter Haworth" <[EMAIL PROTECTED]>
> Cc: "Jean-Michel Hiver" <[EMAIL PROTECTED]>; "Gerd Knops" <[EMAIL PROTECTED]>;
> <[EMAIL PROTECTED]>
> Sent: Wednesday, July 03, 2002 11:53 AM
> Subject: Re: [OT] Better Linux server platform: Redhat or SuSe?
> 
> 
> > lol... We're running a little over 175000 lines of (mod)perl code,
> > currently running on a mix of RedHat 7.1, 7.2, 7.3 and Advanced Server.
> >
> > Next?
> >
> > On Wed, 2002-07-03 at 09:41, Peter Haworth wrote:
> > > On Wed, 3 Jul 2002 11:40:44 +0100, Jean-Michel Hiver wrote:
> > > > > perl: Any iussues with perl/modperl? Besides modperl I will be
> running a
> > > > > perl application with a few hundred thousend lines of code...
> > > >
> > > > Wow. For reference last time I looked at slashcode it was about 25.000
> > > > lines I think. I wonder what kind of application would require more
> than
> > > > that amount of Perl code :-)
> > >
> > > I'm sure someone else will post a bigger number, but my application (IOP
> > > Electronic Journals) has 55000 lines of code (including the odd blank
> line
> > > and comment, of course). And we're always adding new stuff, so it only
> ever
> > > gets bigger.
> > >
> > > --
> > > Peter Haworth [EMAIL PROTECTED]
> > > "We don't care how they do it in New York."
> > >
> >
> > Owen
> > --
> > USMail:   InterGuide Communications, 230 Lyn Anne Court, Ann Arbor, MI
> > 48103
> > Phone:+1 734 997-0922 FAX: +1 734 661-0324
> > mailto:[EMAIL PROTECTED] http://www.interguide.com/~osm/
> >
> >
> 
> 

-- 
USMail:   InterGuide Communications, 230 Lyn Anne Court, Ann Arbor, MI 48103
phone:+1 734 997-0922   fax:+1 734 661-0324
mailto:[EMAIL PROTECTED]   http://www.interguide.com/~osm/

[ Sometimes wrong.  Never in doubt. ]




Re: [OT] Better Linux server platform: Redhat or SuSe?

2002-07-03 Thread Owen Scott Medd

lol... We're running a little over 175000 lines of (mod)perl code,
currently running on a mix of RedHat 7.1, 7.2, 7.3 and Advanced Server.

Next?

On Wed, 2002-07-03 at 09:41, Peter Haworth wrote:
> On Wed, 3 Jul 2002 11:40:44 +0100, Jean-Michel Hiver wrote:
> > > perl: Any iussues with perl/modperl? Besides modperl I will be running a
> > > perl application with a few hundred thousend lines of code...
> >
> > Wow. For reference last time I looked at slashcode it was about 25.000
> > lines I think. I wonder what kind of application would require more than
> > that amount of Perl code :-)
> 
> I'm sure someone else will post a bigger number, but my application (IOP
> Electronic Journals) has 55000 lines of code (including the odd blank line
> and comment, of course). And we're always adding new stuff, so it only ever
> gets bigger.
> 
> -- 
>   Peter Haworth   [EMAIL PROTECTED]
> "We don't care how they do it in New York."
> 

Owen
-- 
USMail:   InterGuide Communications, 230 Lyn Anne Court, Ann Arbor, MI
48103
Phone:+1 734 997-0922   FAX:+1 734 661-0324
mailto:[EMAIL PROTECTED]   http://www.interguide.com/~osm/