Re: [PHP] Re: Friday's Post

2010-10-02 Thread Per Jessen
Peter Lind wrote: > On 1 October 2010 20:21, Per Jessen wrote: >> Peter Lind wrote: >> >>> C# has by now exceeded Java by quite a bit - >> >> I've been away from the Java "scene" since 2002 (when I worked for >> BEA deploying J2EE on Linux/390), but assuming you're talking >> about "deployed line

Re: [PHP] Re: Friday's Post

2010-10-02 Thread Peter Lind
On 2 October 2010 11:05, Per Jessen wrote: > Peter Lind wrote: > >> On 1 October 2010 20:21, Per Jessen wrote: >>> Peter Lind wrote: >>> C# has by now exceeded Java by quite a bit - >>> >>> I've been away from the Java "scene" since 2002 (when I worked for >>> BEA deploying J2EE on Linux/390

Re: [PHP] Re: Friday's Post

2010-10-02 Thread Ashley Sheridan
On Fri, 2010-10-01 at 23:42 +0100, Nathan Rixham wrote: > tedd wrote: > > Hi gang: > > > > What do you people think of the .NET framework? > > > > Please provide your thoughts as to cost, maintenance, benefit, and > > whatever else you think important. > > .NET is loaded up with patents and pr

Re: [PHP] Little Parsing help...

2010-10-02 Thread chris h
Don, How far along are you? To get started something like this may work for you... preg_match_all('/[A-G]{1}#?/', $line, $matches); That SHOULD return each note of the line (you can retrieve them via the $matches array), given that there are no other upper-case characters that are not notes. Al

[PHP] Scraping Multiple sites

2010-10-02 Thread Russell Dias
I'm currently stuck on a little problem. I'm using cURL in conjunction with DOMDocument and Xpath to scrape data from a couple of websites. Please note that is only for personal and educational purposes. Right now I have 5 independent scripts (that traverse through 5 websites) that run via a cron

Re: [PHP] Scraping Multiple sites

2010-10-02 Thread chris h
On Sat, Oct 2, 2010 at 9:03 PM, Russell Dias wrote: > I'm currently stuck on a little problem. I'm using cURL in conjunction > with DOMDocument and Xpath to scrape data from a couple of websites. > Please note that is only for personal and educational purposes. > > Right now I have 5 independent