RE: any recommended web-hosting?

2003-09-09 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of James Campbell > Sent: 08 September 2003 18:32 > To: [EMAIL PROTECTED] > Subject: any recommended web-hosting? > > > Hi everybody > > I'm looking for a company to host a business website. Has > an

RE: Programming Email Filters

2003-09-02 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Dave Cross > Sent: 01 September 2003 22:10 > To: [EMAIL PROTECTED] > Subject: Programming Email Filters > > Like (I guess) many people round here I'm getting Too Much > Email that I don't want to re

RE: [OT] SQL woes

2003-08-22 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Dave Cross > Sent: 22 August 2003 14:21 > To: [EMAIL PROTECTED] > Subject: Re: [OT] SQL woes > > > MySQL is just a file-based storage system with a pseudo-SQL > interface. It doesn't support many o

RE: [OT] Bananas

2003-08-14 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of David Hodgkinson > Sent: 13 August 2003 15:02 > To: [EMAIL PROTECTED] > Subject: [OT] Bananas > > > You lot know I have an alter ego as Deep Purple's web slave, > and one or > two of > you even kn

RE: Messing with spammers

2003-08-14 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Earle Martin > Sent: 07 August 2003 01:08 > To: [EMAIL PROTECTED] > Subject: Re: Messing with spammers > > > On Tue, Aug 05, 2003 at 03:08:16AM -0700, Toby Corkindale wrote: > > Now do it again, wit

RE: Messing with spammers

2003-08-10 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Leon Brocard > Sent: 07 August 2003 09:49 > To: [EMAIL PROTECTED] > Subject: Re: Messing with spammers > > > Peter Sergeant sent the following bits through the ether: > > > http://grou.ch/bounce.tx

RE: Messing with spammers

2003-08-07 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Alex McLintock > Sent: 07 August 2003 09:15 > To: [EMAIL PROTECTED] > Subject: RE: Messing with spammers > > > At 08:21 07/08/03, you wrote: > >I think I'm going to have to do this automagically to

RE: HTML::Parser

2003-08-04 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Dave Cross > Sent: 04 August 2003 16:06 > To: [EMAIL PROTECTED] > Subject: Re: HTML::Parser > > > > Whilst "Data Munging with Perl" is, of course, a fine book, > in this case you'll be better off

RE: HTML::Parser

2003-08-04 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Dave Cross > Sent: 04 August 2003 14:34 > To: [EMAIL PROTECTED] > Subject: Re: HTML::Parser > > And secondly, if you're trying to build a tree based on the > HTML elements, then you might be far bet

RE: HTML::Parser

2003-08-04 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Dave Cross > Sent: 04 August 2003 14:34 > To: [EMAIL PROTECTED] > Subject: Re: HTML::Parser > > Well firstly, you're using the very old (and nasty) > HTML::Parser syntax. It all got a lot nicer (and

HTML::Parser

2003-08-04 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I need to parse an HTML file [0] and pull out all the form elements and put them into a data structure. What I can't seem to do is when I have found a tag is then parse the associated tags! So far I have the following... use strict; use Data::Dumper; while () { $p->parse($_); } $p->eo

RE: Calling subroutines.

2003-08-01 Thread Andy Williams \(IMAP HILLWAY\)
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Matt Lawrence > Sent: 01 August 2003 16:20 > To: [EMAIL PROTECTED] > Subject: Re: Calling subroutines. > A nice simple way of doing that would be to have a hash of > valid values > for $method. > >

Calling subroutines.

2003-08-01 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I want to be able to do something like the following: my $method = shift(@ARGV); my @vars = @ARGV; eval { &$method(@vars); }; if ($@) { die "Method doesn't exist"; } sub METH1 { my @passed_vars = @_; print "Welcome to method 1"; } package MyPgk; sub METH2

ADSL Hardware

2003-06-20 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I need to get a adsl[1] router with a 4 port 10/100 switch. I only have about £100 to spend and have been looking at the D-LINK 504. I currently have the ISDN version of this (DL 304) and am very happy with it. Any one have any horror stories about these or recommend something better? Thanks

Re: URL wierdness...

2003-06-03 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Jody Belka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 02, 2003 2:29 PM Subject: Re: URL wierdness... > IMAP HILLWAY\ said: > > > > Now... this works fine for almost every URL I can think of apart from 2: > > http://www.acxiom.co.uk & http

Re: URL wierdness...

2003-05-30 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Roger Burton West" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 30, 2003 9:24 AM Subject: Re: URL wierdness... > On Fri, May 30, 2003 at 09:16:25AM +0100, Andy Williams (IMAP HILLWAY) wrote: > > >Now... this

URL wierdness...

2003-05-30 Thread Andy Williams \(IMAP HILLWAY\)
Hi, A bit of a strange one (unless I'm having a really bad day and missed something really stupid!). This is the code: #!/usr/bin/perl -w use strict; use LWP::UserAgent; use HTTP::Request; use Data::Dumper; my $browser; my $ua = new LWP::UserAgent; $ua->agent('Mozilla/5.0'); $ua->timeout(15); m

[OT] ADSL

2003-04-01 Thread Andy Williams \(IMAP HILLWAY\)
Hi, BT have finally seen fit to upgrade my local exchange so soon I will have the benefit [0] of a broadband connection at home. The thing is I know NOTHING at all about broadband and I was hoping that someone can give me some pointers. I have a network at home with various operating systems on t

Re: [OT] Wierd HTML/Table/Image problem with IE6

2003-03-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Jon Reades" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 20, 2003 1:16 PM Subject: Re: [OT] Wierd HTML/Table/Image problem with IE6 > > A few things I noticed: > > 1. Extraneous table at the top > > 2. Main table combines absolute (pix

Re: [OT] Wierd HTML/Table/Image problem with IE6

2003-03-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Jon Reades" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 20, 2003 10:30 AM Subject: Re: [OT] Wierd HTML/Table/Image problem with IE6 > > Can you give us a URL? These are some images from every time I refresh locally if it helps! (Ab

Re: [OT] Wierd HTML/Table/Image problem with IE6

2003-03-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Paul Mison" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 20, 2003 10:56 AM Subject: Re: [OT] Wierd HTML/Table/Image problem with IE6 > > Were the images created in Photoshop 7? It embeds XML colour profile > information that IE6 (most usua

Re: [OT] Wierd HTML/Table/Image problem with IE6

2003-03-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Jon Reades" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 20, 2003 10:30 AM Subject: Re: [OT] Wierd HTML/Table/Image problem with IE6 > > Can you give us a URL? > http://generator.mx00.com/campaign_library.html Although I have noticed tha

Re: [OT] Wierd HTML/Table/Image problem with IE6

2003-03-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Mark Fowler" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 20, 2003 9:30 AM Subject: Re: [OT] Wierd HTML/Table/Image problem with IE6 > On Thu, 20 Mar 2003, Andy Williams (IMAP HILLWAY) wrote: > > > Ha

[OT] Wierd HTML/Table/Image problem with IE6

2003-03-20 Thread Andy Williams \(IMAP HILLWAY\)
Hi guys, Sorry about this as it's way of topic... I've done (well a designer did anyway) some html that does some VERY weird things. When it initially loads some of the images apear to be missing. I hit refresh and some of them appear I hit refresh again and some more appear... on the fou

Re: [OT] PDA recommendation.

2003-03-17 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Dave Cross" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 1:11 PM Subject: RE: [OT] PDA recommendation. > > From: "Andy Williams \(IMAP HILLWAY\)" Date: 3/17/03 11:45:53 > AM > > >

[OT] PDA recommendation.

2003-03-17 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I've decided to enter the 21st century and buy a PDA. Does anyone have any recommendations? As a minimum I'll need the follwoing: 1) Get at my email using my mobile phone as the modem. I guess Bluetooth is the best way of doing this. 2) Read Word and Excel docs that people keep sending m

Re: TT type question (well maybe not)

2003-03-06 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "darren chamberlain" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 06, 2003 3:33 PM Subject: Re: TT type question (well maybe not) > * Andy Williams (IMAP HILLWAY) [2003-03-06 10:12]: > > Actually went for a

Re: TT type question (well maybe not)

2003-03-06 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "darren chamberlain" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 06, 2003 2:42 PM Subject: Re: TT type question (well maybe not) > * Andy Williams (IMAP HILLWAY) [2003-03-06 09:05]: > > I've got a tex

TT type question (well maybe not)

2003-03-06 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I've got a text file that contains a whole load of TT tags. What I need to do is get all of these tags into an array. E.g. [% FORENAME %] [% SURNAME %] You Account number is [% ACCT_NO %] Should give me @array = qw( FORENAME SURNAME ACCT_NO); I have read the file into a scalar variable (h

MIME::Lite - no data in this part

2003-02-10 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I am having a "bang my head against the desk" moment! I am trying to add text and html parts to a multipart/alternative message but keep getting - "no data in this part" errors! Here's the code: my $msg = MIME::Lite->new( From =>$from, To

Re: Open Source E-commerce

2003-01-31 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Andy Wardley" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 31, 2003 12:51 PM Subject: Re: Open Source E-commerce > > http://mark.stosberg.com/Tech/interchange/review.html > > Doesn't look too promising... > Interesting read althoug

Re: Open Source E-commerce

2003-01-31 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Shevek" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 27, 2003 12:02 PM Subject: Re: Open Source E-commerce > On Mon, 27 Jan 2003, Andy Williams (IMAP HILLWAY) wrote: > > > 1) osCommerce (http://www.oscom

Open Source E-commerce

2003-01-27 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I'm looking for an Open Source online shop/catalogue, preferabley using perl and apache. I'm looking at 2 at the moment - 1) osCommerce (http://www.oscommerce.com) This looks nice but is php. 2) Interchange (http://www.icdevgroup.org) I have 2 questions really. 1) Are either of these any

Re: SOAP::Lite IP Address Validation

2003-01-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Leo Lapworth" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 20, 2003 3:16 PM Subject: Re: SOAP::Lite IP Address Validation > On Mon, Jan 20, 2003 at 12:46:53PM -0000, Andy Williams (IMAP HILLWAY) wrote: > > I

Re: SOAP::Lite IP Address Validation

2003-01-20 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Simon Wistow" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 20, 2003 1:07 PM Subject: Re: SOAP::Lite IP Address Validation > On Mon, Jan 20, 2003 at 12:46:53PM -0000, Andy Williams (IMAP HILLWAY) said: > > H

SOAP::Lite IP Address Validation

2003-01-20 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I have a SOAP server (using SOAP::Lite) that I only want to access from certain IP addresses. Is this possible? If so, how do I do it? Thanks Andy

Yet another XML problem - this time XML::Simple!

2003-01-13 Thread Andy Williams \(IMAP HILLWAY\)
Hi, I'm having an XML nightmare! First .NET SOAP servers and now this! I am trying to generate an XML configuration file to provide so inforamtion for our graphing server to produce graphs from. A correct xml file should look like this:

Re: SOAP::Lite

2003-01-12 Thread Andy Williams \(IMAP HILLWAY\)
> > *sigh* My apologies. I wrote last night's reply at a late hour when I was > about to go to sleep, and I forgot one of the stickiest points about .Net. It > lives and dies by the namespace. No problem I tought this was the case and didn't knwo quite what to do to fix it. > > The creat

Re: SOAP::Lite

2003-01-11 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Randy J. Ray" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, January 11, 2003 10:53 AM Subject: Re: SOAP::Lite > Many people do. .Net is designed in a way that makes it much harder for > non-.Net toolkits to work with it, than it truly needs to be

Re: SOAP::Lite

2003-01-11 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Randy J. Ray" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, January 11, 2003 10:53 AM Subject: Re: SOAP::Lite > > (Do I get to shill my web services book? :-) > > Randy > -- Thanks Randy, I'll give it all a try on monday, after I've bought

SOAP::Lite

2003-01-10 Thread Andy Williams \(IMAP HILLWAY\)
Hi guys, For the life of me I can't seem to figure this out. I am trying to get access to .NET soap service from perl using SOAP::Lite and have hit a brickwall This is a VALID xml request. http://www.w3.org/2001/XMLSchema-instance"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:soap=

Re: Perl CGI and PHP - with some TT thrown in

2002-12-10 Thread Andy Williams \(IMAP HILLWAY\)
- Original Message - From: "Dave Wilson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 09, 2002 6:14 PM Subject: Re: Perl CGI and PHP - with some TT thrown in > > Have all the frontend in perl -- with maybe a namespace dedicated to the > PHP backend via. mod_rewrite.

REVIEW: Web Caching

2002-11-15 Thread Andy Williams \(IMAP HILLWAY\)
Damn, this has been sat on my hard drive for a couple of months now!!! Must have forgotten to send it in. Sorry guys here it is. Thanks Andy web_caching.pod Description: Binary data

[JOB] Fw: Paris Vacancy

2002-10-14 Thread Andy Williams \(IMAP HILLWAY\)
> > Reference: TRS161 > > Technical Developer > Based in Paris > 65 days contract initially (could be extended for a further 80 days) > > Essential skills: > > Technical expertise in Web design and implementation > Script language (Perl and PL/SQL) > Knowledge of Oracle 9I under UNIX (HP or Linux)