Re: serverless programming

2017-12-30 Thread Skylos
The structure around it, and the amount of management you personally have to do to handle the infrastructure, deployment, and scaling. If you look at 'a mod perl handler' as a separate thing from 'the instance of the web server and its configuration that triggers that handler within the expected e

Re: Bad rap

2016-06-14 Thread Skylos
I think you might consider HTTP/2 as a method that could deliver faster because yes, you can have multiple threads processing for data return per socket simultaneously. On Tue, Jun 14, 2016 at 2:35 AM, André Warnier wrote: > On 13.06.2016 14:09, John Dunlap wrote: > >> We use Amazon Cloudfront

Re: Hello

2015-11-28 Thread Skylos
GET are/you/there HTTP/1.0 Accept: text/plain 200 OK Content-Type: text/plain; charset=utf-8 Content-Length: 3 Yes On Sat, Nov 28, 2015 at 11:51 AM, Kevin A. McGrail wrote: > I am just coming out of my carb and turkey coma... > Regards, > KAM > > On November 28, 2015 11:38:17 AM EST, Davit

Bug? Conflict between JSON and Apache2::compat, Apache2::Status, and Apache2::Reload

2014-04-21 Thread Skylos
So this weekend I had a dickens of the time figuring out why: use JSON; to_json({field=>JSON::true}); Would throw an exception stating that there were blessed values in it - which is true, in a way, but not really - because the blessed value is something like bless(do{\$o=1},JSON::XS::Boolean) IS

Re: Apache 2.2 and Authorization Providers under mod_perl

2014-04-01 Thread Skylos
014 6:23 AM, "André Warnier" wrote: > Skylos wrote: > >> Trying to migrate an application to mod_perl under apache 2.2 but my >> custom >> auth handlers are blowing up on failure to understand '$r->requires' >> method. The best I can make of i

Apache 2.2 and Authorization Providers under mod_perl

2014-03-31 Thread Skylos
Trying to migrate an application to mod_perl under apache 2.2 but my custom auth handlers are blowing up on failure to understand '$r->requires' method. The best I can make of it is that apache 2.2 revamped the auth system requiring the definition of providers (like 'group' allowing the 'Require g

Re: [BENCHMARK] Server Resources

2005-01-14 Thread Skylos
sentations you're handling. Skylos On Fri, 14 Jan 2005 14:42:05 -0700 (MST), [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Thanks for the suggestions. We are planning on migrating to Apache 2.0, > but I need to read up on the implications to the various sites first. > > Do

Re: [BENCHMARK] Server Resources

2005-01-14 Thread Skylos
or this volume, it should be filesystem cached static files that update on change. We're working on that. one project at a time. :) Skylos On Fri, 14 Jan 2005 16:16:30 -0500, Michael Peters <[EMAIL PROTECTED]> wrote: > > Skylos wrote: > > > Also, to compare,

Re: [BENCHMARK] Server Resources

2005-01-14 Thread Skylos
y, I defer to any other more expert perl ghods on the list who may have more intelligent comments. :) Skylos On Fri, 14 Jan 2005 13:43:44 -0700 (MST), [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > First let me apologize if this is not the appropriate forum for my question. > I thoug

Re: Free Software as a "Security Hole"

2005-01-12 Thread Skylos
It makes me wonder how they guarantee that the software they paid for doesn't have back doors in it. Skylos On Wed, 12 Jan 2005 09:34:12 -0800, Goehring, Chuck, RCI - San Diego <[EMAIL PROTECTED]> wrote: > > I was looking for something authoratative like FSF, ASF or

Re: Authentication using https

2004-11-10 Thread Skylos
querystring to a setting-cookies script that reads the hash out of the query string, verifies it, then sets the cookie, THEN redirects the user to the actual content. Implimentation is left as an excersize to the questioner. Or a later question. ;) Skylos On Wed, 10 Nov 2004 13:28:07 -0800, M

Re: REPOST: Virtual Hosts and shared Modules

2004-03-18 Thread Skylos the Doggie
amples and further explanations. I don't know enough to do that myself off the cuff. (I just pass everything) Skylos On Thu, 18 Mar 2004, Marc Brooks wrote: > Hello ALL, > > Not sure if this is possible.. So here I go.. > > I have a set of .pm's and .cgi scripts that are wi

Re: [DBI] Virtual hosts running startup scripts with same name

2004-03-10 Thread Skylos the Doggie
On Thu, 11 Mar 2004, Perrin Harkins wrote: > Skylos was guessing you had closure problems from doing this. However, > if these are always globals, you will not get closures from this. What > you need to look for is some place where you are either using $dbstr and > friends as

Re: [DBI] Virtual hosts running startup scripts with same name

2004-03-10 Thread Skylos the Doggie
On Thu, 11 Mar 2004, Brett Randall wrote: > On 11 Mar 2004, Skylos the Doggie wrote: > > My solution to this problem is to pass EVERYTHING. I don't rely on > > any subroutine to know Any data that isn't passed to it *explicitly*. > > Using global or even local or

Re: [DBI] Virtual hosts running startup scripts with same name

2004-03-10 Thread Skylos the Doggie
ed that, you'd be using windows IIS and activestate, wouldn'tcha? :P Skylos On Thu, 11 Mar 2004, Brett Randall wrote: > Hi everyone > > I have a problem that I can't figure. I've got two virtual hosts on > one server. They both point to different directories as th

Re: BBS/forum software

2004-03-08 Thread Skylos the Doggie
How about IkonBoard? Skylos On Mon, 8 Mar 2004, Perrin Harkins wrote: > Does anyone have any recommendations for BBS/forum software (aka message > boards) that runs well on mod_perl? I was looking at YABB, which is > very pretty and full-featured but the code seems really ugly (not a

Re: Shared SSL Custom Log Parsing

2004-02-25 Thread Skylos the Doggie
virtualhost mechanism. So... why don't you just set the log directive in the vhost, like you would for any vhost? Then everything that maps to that virtualhost will use that logging directive. Seems... so simple that I'm worried I not understanding your problem. Skylos On Wed, 25 Feb

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread Skylos the Doggie
o, and would be surprized if it wasn't. It would, however, be possible to program things within the browser so that it would not be so. Just make sure you do the new process, instead of just the new window in same process. Skylos > thanks > > > On Mon, 20 Oct 2003 [EMAIL PROTECT

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread Skylos the Doggie
ing. I do believe that both the libraries you inquired about utilize a normal, non-persistant cookie for session tracking. As to what the browsers do with it, depends on the browser. Skylos > -thanks > > > On Mon, 20 Oct 2003 [EMAIL PROTECTED] wrote: > > > >> Can someone

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread Skylos the Doggie
hich the session state is based, they will be in the same session. :) Skylos - [EMAIL PROTECTED] - The best part about the internet is nobody knows you're a dog. (Peter Stiener, The New Yorker, July 5, 1993) - Dogs like... TRUCKS! (Nissan commercial, 1996) - PGP key: http://dogpawz.com/skylos/mykey.asc

Re: Apache bandwidth calculating

2003-10-07 Thread Skylos the Doggie
k if you hvae any questions, and please let me know of any suggestions for improvements! With intrepidation, here is the code. Skylos --- package Apache::ActivityLogDBI; use Apache (); use Apache::Constants qw( OK SERVER_ERROR ); use DBI (); use strict; # $Id: ActivityLogDBI.pm,v 0.01 2003/1