Paul M Foster wrote:
On Thu, Jan 28, 2010 at 02:38:52PM -0500, tedd wrote:
My point was more to the theme that we are an eclectic group of people
with a wide range of knowledge and skills. Individually we may have
trouble finding our ass, but together we can find the answer to many
things.
Robert Cummings wrote:
Paul M Foster wrote:
On Thu, Jan 28, 2010 at 02:38:52PM -0500, tedd wrote:
My point was more to the theme that we are an eclectic group of people
with a wide range of knowledge and skills. Individually we may have
trouble finding our ass, but together we can find
Ashley Sheridan wrote:
On Fri, 2010-01-29 at 20:15 +0530, Raman . wrote:
you can use Apache mod rewrite to create html pages having all programing
saved in .php pages. I have never tried generating .html pages with this but
have successfully generated .htm pages..
Hope this works..
On Tue, Ja
Ashley Sheridan wrote:
On Sat, 2010-01-30 at 19:20 +0100, Nisse Engström wrote:
On Fri, 29 Jan 2010 14:48:47 +, Ashley Sheridan wrote:
On Fri, 2010-01-29 at 20:15 +0530, Raman . wrote:
you can use Apache mod rewrite to create html pages having all programing
saved in .php pages. I have
Ashley Sheridan wrote:
On Sat, 2010-01-30 at 13:40 -0500, Robert Cummings wrote:
Ashley Sheridan wrote:
> On Sat, 2010-01-30 at 19:20 +0100, Nisse Engström wrote:
>
>> On Fri, 29 Jan 2010 14:48:47 +, Ashley Sheridan wrote:
>>
>>> On Fri, 2010-01-29 at
Cesar D. Rodas wrote:
Hello,
Have you guys checked this PHP to C++ converter from the Facebook People?
http://developers.facebook.com/news.php?blog=1&story=358
Very interesting... I heard about this a few days ago on Slashdot. Most
people figured it would be a compiler of some sort, though i
Rene Veerman wrote:
i haven't had the pleasure yet of writing for sites that generate so many
hits/sec that
they'd update the max value of any table at exactly the same time.
i usually ask for the max value about 2 milliseconds before doing the
insert.
And if the insert fails, i can auto-retry v
Rene Veerman wrote:
eh thats "randomize the timing of the retry attempt"..
On Wed, Feb 3, 2010 at 12:17 AM, Rene Veerman wrote:
and after the sleep(rand(1,3)) it might need a short loop like this;
$rnd = rand(1,9); $a=0;
for ($i=0; $i<$rnd; $i++) { $a++ }
to further randomize the retry
Rene Veerman wrote:
On Wed, Feb 3, 2010 at 12:18 AM, Ashley Sheridan
wrote:
The problem is where 2 people choose the same instant to perform an
action on your site that inserts a record into your db. The db engine
inserts them one after the other, and then responds about the max(id) to
your PH
Rene Veerman wrote:
On Wed, Feb 3, 2010 at 12:35 AM, Ashley Sheridan
wrote:
It's the reason transactions exist, to prevent things happening like this.
When you have two actions where one is dependent on the other, unless you
have a way to tie them together so that they can't be broken, you run
Phpster wrote:
Yep, love those race conditions. We have them all over the app cuz the
app ciders don't know shit!
Mmmm... apple cider... to cure what ails you or at least get you drunk
enough to not care about the horrible race conditions >:)
Cheers,
Rob.
--
http://www.interjinn.com
Applica
Rene Veerman wrote:
On Wed, Feb 3, 2010 at 12:18 AM, Ashley Sheridan
wrote:
The problem is where 2 people choose the same instant to perform an
action on your site that inserts a record into your db. The db engine
inserts them one after the other, and then responds about the max(id) to
your PH
Michael A. Peters wrote:
Robert Cummings wrote:
Rene Veerman wrote:
eh thats "randomize the timing of the retry attempt"..
On Wed, Feb 3, 2010 at 12:17 AM, Rene Veerman wrote:
and after the sleep(rand(1,3)) it might need a short loop like this;
$rnd = rand(1,9); $a=0;
for
Ryan S wrote:
Hey Guys,
Coming from a C and Java background I just loved PHP and have been programming
with it for years thanks in a large part to the kind people on this list...
present and past (Immediately the name John Holmes comes to mind.. i hope the
dude is well)
but now I have have to
Robert Cummings wrote:
Ryan S wrote:
Hey Guys,
Coming from a C and Java background I just loved PHP and have been programming
with it for years thanks in a large part to the kind people on this list...
present and past (Immediately the name John Holmes comes to mind.. i hope the
dude is
Ryan S wrote:
Thanks for the reply Michael, Robert and Jochem,
makes sense, a native windows app is going to look more in place than any of
the demos and graphics i have seen of GTK.
Was also looking at GTK-Builder, unfortunately you really have to hunt for each
scrap of new info - which
Ashley Sheridan wrote:
On Wed, 2010-02-03 at 14:02 -0500, Robert Cummings wrote:
Ryan S wrote:
Thanks for the reply Michael, Robert and Jochem,
makes sense, a native windows app is going to look more in place than any of
the demos and graphics i have seen of GTK.
Was also looking at GTK
Brian Dunning wrote:
Hey all -
Glad some of you found that sample data helpful. :-)
I use PHP/MySQL to generate RSS feeds of my podcasts. The feed is submitted as *.xml and
I use .htaccess to redirect it to my PHP document. The start of the document sets the
right header and outputs the to
Ashley Sheridan wrote:
On Thu, 2010-02-04 at 10:44 -0600, Skip Evans wrote:
Hey all,
First, let me say thanks for all the advice on Magento, and
especially to Ryan who has used the beast and gave some great
advice on skinning, links to some good docs and a book just
for my designer. We'll b
Ashley Sheridan wrote:
On Thu, 2010-02-04 at 13:44 -0500, Robert Cummings wrote:
What about signing yourself up to some newsletters to see how they do
it?
Looking at the ones I get from Facebook as an example, they use the
boundary codes you mentioned, and I can't see anything particu
Joseph Thayne wrote:
"What you maybe ought to consider is using several submit buttons, and
give each a name and a value. That way, your PHP script can check for a
specifically named variable sent from the form. That way, you keep many
people happy, and your site still works perfectly."
The p
Hi,
I am writing a simple WSDL client in php as follow:
http://staff.um.edu.mt/cabe2/supervising/undergraduate/owlseditFYP/TemperatureService.wsdl
";
$client = new SoapClient("
http://staff.um.edu.mt/cabe2/supervising/undergraduate/owlseditFYP/TemperatureService.wsdl
");
echo("\nReturning value o
Richard wrote:
Hi,
I have extended the standard exception class to send me an email
whenever an exception occurs.
I did that once. Once being the operative word... :-) Ended up with
tens of thousands of emails one morning. At first I thought... "Wow,
maybe my popularity has grown somewhat". B
Ashley Sheridan wrote:
On Tue, 2010-02-09 at 09:19 -0500, Robert Cummings wrote:
Richard wrote:
Hi,
I have extended the standard exception class to send me an email
whenever an exception occurs.
I did that once. Once being the operative word... :-) Ended up with
tens of thousands of emails
Lester Caine wrote:
James McLean wrote:
On Wed, Feb 10, 2010 at 2:26 PM, wrote:
On Thu, 04 Feb 2010 02:39:03 +0100, joc...@iamjochem.com (Jochem Maas) wrote:
as for using IE6 ... WTF ... you do realise this is essentially a web
developers mailing list right?
The interesting things in my we
Ashley Sheridan wrote:
I've not had any personal experience with the public sector, but I have
heard stories from those who have. By all accounts, it seems that most
of the public sector is still stuck in the dark ages with regards to
technology, which could go some way to explaining the abysmal
Richard Quadling wrote:
On 10 February 2010 13:02, Ashley Sheridan wrote:
I've not had any personal experience with the public sector, but I have
heard stories from those who have. By all accounts, it seems that most
of the public sector is still stuck in the dark ages with regards to
technolog
Bob McConnell wrote:
From: Robert Cummings
Lester Caine wrote:
James McLean wrote:
On Wed, Feb 10, 2010 at 2:26 PM, wrote:
On Thu, 04 Feb 2010 02:39:03 +0100, joc...@iamjochem.com (Jochem
Maas) wrote:
as for using IE6 ... WTF ... you do realise this is essentially a
web
developers
Michael A. Peters wrote:
Bob McConnell wrote:
Our SOP is to generate standards compliant pages, validate them with
Firefox and the HTML Validator add-on, then deal with the deviant
browsers. It's a lot less work than trying to do it the other way
around. There are a few minor issues, such as
Ashley Sheridan wrote:
On Wed, 2010-02-10 at 13:25 -0500, Robert Cummings wrote:
Michael A. Peters wrote:
> Bob McConnell wrote:
>
>> Our SOP is to generate standards compliant pages, validate them with
>> Firefox and the HTML Validator add-on, then deal with the deviant
&
Michael A. Peters wrote:
Robert Cummings wrote:
Just a word of thought... if you're doing styling... use classes and not
IDs. Use of IDs for styling is very often indicative of inexperience,
inability, or lack of understanding with respect to CSS.
I use ID when there will only b
Michael A. Peters wrote:
Michael A. Peters wrote:
Robert Cummings wrote:
Just a word of thought... if you're doing styling... use classes and
not IDs. Use of IDs for styling is very often indicative of
inexperience, inability, or lack of understanding with respect to CSS.
I use ID
Michael A. Peters wrote:
Robert Cummings wrote:
Many government documents have the concept of "aside" as appearing
through the document and contextually near to the information to which
the aside relates. The entire sidebar seems a bit gratuitous as an
"aside". Sure it
Michael A. Peters wrote:
Nathan Rixham wrote:
Michael A. Peters wrote:
Robert Cummings wrote:
Many government documents have the concept of "aside" as appearing
through the document and contextually near to the information to which
the aside relates. The entire sidebar seems a bit
Nathan Rixham wrote:
Robert Cummings wrote:
Michael A. Peters wrote:
Nathan Rixham wrote:
Michael A. Peters wrote:
Robert Cummings wrote:
Many government documents have the concept of "aside" as appearing
through the document and contextually near to the information to which
From the editor's draft:
"
The aside element represents a section of a page that consists of
content that is tangentially related to the content around the aside
element, and which could be considered separate from that content. Such
sections are often represented as sidebars in printed typogr
*haha* I've removed w3.org from the recipients list... so onwards to the
content below...
Jochem Maas wrote:
Op 2/10/10 9:08 PM, Robert Cummings schreef:
From the editor's draft:
"
The aside element represents a section of a page that consists of
content that is tangentially
Ashley Sheridan wrote:
On Thu, 2010-02-11 at 01:44 -0500, Robert Cummings wrote:
*haha* I've removed w3.org from the recipients list... so onwards to the
content below...
Jochem Maas wrote:
> Op 2/10/10 9:08 PM, Robert Cummings schreef:
>> From the editor's draft:
&
Michael A. Peters wrote:
If is not proper to use for this purpose, what would be?
suggests a particular type of layout.
suggests content.
is appropriate for some items in a side bar, but not all, and is
often a child of how is being used.
give no semantics.
I would like to see a tag fo
Robert Cummings wrote:
I don't know about where you are, but Canadian government has very
specific guidelines on how content should be marked up... and semantic
use of tags is a clear part of that:
"The institution respects the universal accessibility
guidelines develo
Michael A. Peters wrote:
Robert Cummings wrote:
Michael A. Peters wrote:
If is not proper to use for this purpose, what would be?
suggests a particular type of layout.
suggests content.
is appropriate for some items in a side bar, but not all, and is
often a child of how is being used
tedd wrote:
At 5:08 AM + 2/11/10, Jochem Maas wrote:
rgds,
Jochem
PS. from a semantics POV, Robert Cummings is, IMHO, spot on in his
assessment - I do enjoy
his posts, he's a sharp cookie with plenty to offer and I always
enjoy reading his
argumentation and opinion!
With the d
John Allsopp wrote:
Hi everyone
There may be blinding bits of total ignorance in this so don't ignore
the obvious.
This is a security question, but a sentence of background: I'm writing
software for a mapping/location website and I want to be able to provide
something others can plug into t
Ashley Sheridan wrote:
On Fri, 2010-02-12 at 16:12 -0500, Robert Cummings wrote:
John Allsopp wrote:
Hi everyone
There may be blinding bits of total ignorance in this so don't ignore
the obvious.
This is a security question, but a sentence of background: I'm writing
soft
Michael A. Peters wrote:
Ashley Sheridan wrote:
That last reason could be why your email is failing! HTML email is the
one place where it is actually better to code "the old way" with tables
for markup, tags, and very little (if any) CSS. If you do use any
CSS, it's best left inline as well,
John Allsopp wrote:
Robert Cummings wrote:
Ashley Sheridan wrote:
On Fri, 2010-02-12 at 16:12 -0500, Robert Cummings wrote:
John Allsopp wrote:
Hi everyone
There may be blinding bits of total ignorance in this so don't
ignore the obvious.
This is a security question, but a senten
Hi David,
Install the non-thread safe version and run it in conjunction with
FastCGI. You may also be interested in looking into WinCache for PHP.
Non-thread safe works best with FastCGI, running PHP as an ISAPI module
is NOT recommended.
Cheers,
Rob.
David Stoltz wrote:
Hi all,
I'm ins
Ben Miller wrote:
Hi,
I'm building a site for a client that has a need to allow their users to
upload large files (up to 100mb or more) and store them on the server. I've
never had a need to work with PHP's FTP functions until now and, before I go
reading the manual to learn how, I wanted to se
Rick Dwyer wrote:
Hello all.
I'm trying to learn PHP on the fly and I have a line of code that
contains syntax I can't find documented anywhere:
php echo check('element8');
In the above line, can someone tell me what "check" means?
In the above, check is a function. It is being called wi
Nathan Rixham wrote:
Angus Mann wrote:
Hi all. I know this is not strictly a PHP question but the code will be written
in PHP, and I figure the folks here will be well versed in the questions I
raise. Please feel free to contact me off the list if appropriate.
I need some assistance with data
What does it do? Force the connection to https? if so you need to
configure Apache to serve over https.
David Stoltz wrote:
Hi All,
I have a working application in PHP 5.3 under IIS6. I've created a WAMP server
(Windows, Apache, MySQL, PHP) on a dedicated server, and I'm trying to move the
Haig Davis wrote:
Hi,
I apologise if this is not strictly php related. What Open Source Shopping
cart system do you recommend between osCommerce and Zen-Cart for ease of use
and a php guy with dangerously little javascript knowledge?
This is not for a massive shopping site, simply a cart to pow
Jay Blanchard wrote:
[snip]
In certain circumstances controlled by my users, I'd like to redirect
my users to another site, a third party whom we have contracted with.
The second site uses basic authentication with a simple username and
password. Can I write my PHP code so my users do not have
Auke van Slooten wrote:
Bob McConnell wrote:
From: Auke van Slooten
In a hobby project I'm relying on the order in which the following
piece
of PHP code is executed:
$client->system->multiCall(
$client->methodOne(),
$client->methodTwo()
);
Think about it from the parser's point of v
MEM wrote:
Hello all,
If possible, I would like to ask and have your help about the methods and
procedures that should exist to accomplish the following task:
I need to grab some data from one mySQL database with some specific table
and field names, to another mySQL database with specific table
Jim Lucas wrote:
Daevid Vincent wrote:
Anyone have a function that will return an integer of the number of
dimensions an array has?
I did some quick searches and came up with nothing.
The closest was here of someone asking the same thing, but his solution
isn't right:
http://www.bigresource.c
Richard Quadling wrote:
On 15 March 2010 23:45, Daevid Vincent wrote:
Anyone have a function that will return an integer of the number of
dimensions an array has?
/**
* Get the maximum depth of an array
*
* @param array &$Data A reference to the data array
* @return int The maximum numb
Peter Lind wrote:
This is one example where references actually decrease memory usage.
The main reason is the recursive nature of the function. Try
Doh, forgot about that :)
Cheers,
Rob.
--
http://www.interjinn.com
Application and Templating Framework for PHP
--
PHP General Mailing List (htt
Peter Lind wrote:
This is one example where references actually decrease memory usage.
The main reason is the recursive nature of the function. Try
BTW, it's not the recursive nature of the function causing the problem.
It's the movement of the internal pointer within the array. When it
moves
Peter Lind wrote:
Hmm, will probably have to look inside PHP for this ... the foreach
loop will copy each element as it loops over it (without actually
copying, obviously), however there's no change happening to the
element at any point and so there's nothing to suggest to the
copy-on-write to cr
Rene Veerman wrote:
maybe you should be foreach()ing with references?
php.net : search "foreach" :
As of PHP 5, you can easily modify array's elements by preceding
$value with &. This will assign reference instead of copying the
value.
This is possible only if iterated array can be referenced
Jason Pruim wrote:
I know you are all probably thinking "What does this have to do with
PHP?" and in reality... It's probably stretching it a little bit...
BUT I am in the process of writing a blog software (Yes I'm aware of
all the open source, and paid stuff out there... I'm doing this to
John Tamm-Buckle wrote:
Hi all,
I'm storing generated data as a post in wordpress using the wp_insert_post
function, which works great. Users click a "submit" button and the things
are saved, hurrah!
However, on clicking the submit button I want to automatically navigate to
the post. This has
David McGlone wrote:
On Monday 22 March 2010 20:59:21 Daevid Vincent wrote:
That's okay Larry, YOU don't have to answer.
Sorry my post offended you Larry (and anyone else equally offended).
...and yes. I AM angry that they refuse to add functionality to the PHP
language that MANY people have
Tommy Pham wrote:
Let's go back to my 1st e-commerce example. The manufacturers list is
about 3,700. The categories is about about 2,400. The products list
is right now at 500,000 and expected to be around 750,000. The site
is only in English. The store owner wants to expand and be I18n:
Chi
Paul M Foster wrote:
On Tue, Mar 23, 2010 at 06:17:56PM -0700, Tommy Pham wrote:
Let's go back to my 1st e-commerce example. The manufacturers list is
about 3,700. The categories is about about 2,400. The products list
is right now at 500,000 and expected to be around 750,000. The site
is
Per Jessen wrote:
Rene Veerman wrote:
stop bashing the people who DO have a use for threading and other
advanced concepts eh.
I'm not bashing anyone.
just because you don't have a use for it, it shouldn't be included?!
kinda arrogant.
Feel free to think so - I never said I don't have a u
Rene Veerman wrote:
talk to me about this some other time.
atm i'm having an argument with per and his kind about their very very
annoying behaviour of determining my toolset for me.
keeping a thread on topic is also ettiquette from the mailinglist rules eh?
you might wanna consider just how mu
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 10:36 AM, Per Jessen wrote:
By advocating that thread support does not belong in PHP, I am in no way
determining what you (or anyone else) may or may not do. You are a
free individual and free to choose the programming language and
paradigm that is
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 10:47 AM, Per Jessen wrote:
Rene Veerman wrote:
popular : facebook youtube etc
Rene, I must be missing something here. That sort of size implies
millions in advertising revenue, so why are we discussing how much
performance we can squeeze out of
Rene Veerman wrote:
exactly. the knock-on problems you mentioned are well solved and well
documented.
realtime programmers using threads have to get their heads around it
on their first realtime project.
i don't like doing my code in c(++), or worse; having to interface
between c(++) and php.
i
Per Jessen wrote:
Rene Veerman wrote:
again:
a) you're determining the contents of my toolset, without it affecting
you at all. the way you want it php will degrade into a toy language.
Rene, it seems to me that you and I are advocating two opposite
positions on the topic of threading in PHP,
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 11:13 AM, Per Jessen wrote:
Rene Veerman wrote:
again:
a) you're determining the contents of my toolset, without it affecting
you at all. the way you want it php will degrade into a toy language.
Rene, it seems to me that you and I are advocating t
Rene Veerman wrote:
php is not a hammer, its a programming language.
It's hard to discuss anything with someone who doesn't comprehend a
metaphor.
one that i feel needs to stay ahead of the computing trend if it is to
be considered a language for large scale applications.
Personification
Rene Veerman wrote:
unless the actual php development team would like to weigh in on this
matter of course.
Wrong list. Subscribe to internals.
yes, i do consider it that important.
these nay-sayers usually also lobby the dev-team to such extent that
these features would actually not make
Arno Kuhl wrote:
-Original Message-
From: Rene Veerman [mailto:rene7...@gmail.com]
Sent: 24 March 2010 11:31 AM
Subject: Re: [PHP] Will PHP ever "grow up" and have threading?
thanks for opening my eyes and telling to abandon ship in time.
===
Bye, enjoy th
Tommy Pham wrote:
What I find funny is that one of opponents of PHP threads earlier
mentioned that how silly it would be to be using C in a web app. Now
I hear people mentioning C when they need "productivity" or "speed"...
PHP has excellent support for extensions. I've written several C
exte
Rene Veerman wrote:
I subscribe to this list to share tips on software designs.
Getting and keeping your respect i'm not even interested in.
I'm interested in the quality of your tips on problems i post, as tips can
lead faster to products, leads to money, leads to my personal freedom and
optio
Per Jessen wrote:
Tommy Pham wrote:
On Wed, Mar 24, 2010 at 2:58 AM, Stuart Dallas
wrote:
Give us a real example of why you think it should be
supported and I guarantee we can come up with a way to get you what
you want without requiring massive changes to the core of your chosen
tool. And if
Tommy Pham wrote:
On Wed, Mar 24, 2010 at 3:52 AM, Lester Caine wrote:
Tommy Pham wrote:
How exactly will threading in PHP help with the size of the database?
That makes no sense to me, please help me understand how you think threading
will help in this scenario.
Looking at my example, not ju
Rene Veerman wrote:
well i have this very strong gut feeling that at least some php apps
stand to gain so much efficiency per box with threading and shared
memory that they'll save not only their operators a lot of headaches,
but also significant money and energy. that in turn benefits those
outs
Rene Veerman wrote:
popular : facebook youtube etc
I doubt very much you're popular like facebook. Nothing is as popular as
facebook.
http://www.fastcompany.com/1584920/facebook-now-more-popular-than-google-let-the-ad-wars-begin
Unless you're actually a facebook developer... which I doubt.
Richard Quadling wrote:
Hi.
I have a scenario where I would _like_ to have multiple constructors
for a class.
Each constructor has a greater number of parameters than the previous one.
e.g.
Factory method is probably the cleanest and simplest solution. Just pass
an ID as the first paramete
Robert Cummings wrote:
Richard Quadling wrote:
Hi.
I have a scenario where I would _like_ to have multiple constructors
for a class.
Each constructor has a greater number of parameters than the previous one.
e.g.
Factory method is probably the cleanest and simplest solution. Just pass
an
Robert Cummings wrote:
Robert Cummings wrote:
Richard Quadling wrote:
Hi.
I have a scenario where I would _like_ to have multiple constructors
for a class.
Each constructor has a greater number of parameters than the previous one.
e.g.
Factory method is probably the cleanest and simplest
() function ...
Yeah, I know... I threw caution to the wind in this quick example. But
for the sake of archives and newbies reading them, I shouldn't have :)
Cheers,
Rob.
On 24 March 2010 15:22, Robert Cummings wrote:
Robert Cummings wrote:
Richard Quadling wrote:
Hi.
I have
Peter Lind wrote:
On 24 March 2010 15:33, Robert Cummings wrote:
Peter Lind wrote:
One of the main points of the OP was that you can document the code
properly. Your example doesn't allow for nice docblocks in any way, as
you'll either have to param points or a whole lot of noise
Peter Lind wrote:
On 24 March 2010 16:09, Robert Cummings wrote:
Peter Lind wrote:
On 24 March 2010 15:33, Robert Cummings wrote:
Peter Lind wrote:
One of the main points of the OP was that you can document the code
properly. Your example doesn't allow for nice docblocks in any wa
Richard Quadling wrote:
The following code (which cannot currently work as PHP does not allow
for method overloading) would be perfect for me.
__construct(registry::RetrieveViaKey(__CLASS__, $Key));
}
/**
* Constructor : Partial
*
* This constructor wi
Peter Lind wrote:
The ,... is a supported syntax. Then I'd add the appropriate docblock for
the alternate constructors.
It might be but in effect the documentation you're left with is vague
and has double the amount of documentation lookups, to find out which
parameters you can pass. Using a sep
Richard Quadling wrote:
On 24 March 2010 15:27, Robert Cummings wrote:
Are you asking a question? I'm not sure what you want here :) Does the
technique I sent provide you with a solution to this problem or not?
I can certainly see how your suggestion works.
And in my own code, I
Peter Lind wrote:
On 24 March 2010 16:48, Robert Cummings wrote:
But now Dalmation_construct1 isn't related Dog_construct1. This seems
problematic from a design perspective unless I'm missing something in your
proposal.
As for abusing class semantics ... I don't see
it.
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 3:13 PM, Robert Cummings wrote:
Rene Veerman wrote:
talk to me about this some other time.
atm i'm having an argument with per and his kind about their very very
annoying behaviour of determining my toolset for me.
keeping a thread on top
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 3:25 PM, Robert Cummings wrote:
Rene Veerman wrote:
php is not a hammer, its a programming language.
It's hard to discuss anything with someone who doesn't comprehend a
metaphor.
haha. "comprehend". you mean "accept&quo
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 3:29 PM, Robert Cummings wrote:
Rene Veerman wrote:
unless the actual php development team would like to weigh in on this
matter of course.
Wrong list. Subscribe to internals.
yes, i do consider it that important.
these nay-sayers usually also
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 9:30 PM, Robert Cummings wrote:
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 3:13 PM, Robert Cummings
wrote:
Rene Veerman wrote:
talk to me about this some other time.
atm i'm having an argument with per and his kind about their very
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 9:31 PM, Robert Cummings wrote:
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 3:25 PM, Robert Cummings
wrote:
Rene Veerman wrote:
php is not a hammer, its a programming language.
It's hard to discuss anything with someone who doesn't co
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 9:41 PM, Robert Cummings wrote:
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 9:30 PM, Robert Cummings
wrote:
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 3:13 PM, Robert Cummings
wrote:
Rene Veerman wrote:
talk to me about this some other time
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 9:45 PM, Robert Cummings wrote:
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 9:31 PM, Robert Cummings
wrote:
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 3:25 PM, Robert Cummings
wrote:
Rene Veerman wrote:
php is not a hammer, its a
Rene Veerman wrote:
On Wed, Mar 24, 2010 at 9:45 PM, la...@garfieldtech.com
wrote:
On 3/24/10 2:33 PM, Rene Veerman wrote:
It's a debate. The dev team consider proposals and weigh in on the
merits. I
was a proponent for goto support during the development of PHP 5. We now
have it. If you ar
1901 - 2000 of 5010 matches
Mail list logo