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

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

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

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
:23 AM, André Warnier a...@ice-sa.com 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 it is that apache 2.2 revamped the auth system requiring

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

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 Richard Stallman documents etc

Re: Authentication using https

2004-11-10 Thread Skylos
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, Michael [EMAIL PROTECTED] wrote: All, I'm about to replace

Re: REPOST: Virtual Hosts and shared Modules

2004-03-18 Thread Skylos the Doggie
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 within each Virtual Host. Example: /home

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 single

Re: Apache::Session vs CGI:Session?

2003-10-20 Thread Skylos the Doggie
, 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::Session vs CGI:Session?

2003-10-20 Thread Skylos the Doggie
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 comment on some advantages/disadvantages? Does opening a new browser causes a new session in either

Re: Apache bandwidth calculating

2003-10-07 Thread Skylos the Doggie
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/10/07 08:36:38 ask Exp