staticsan

3,209
reputation
278 views

Registered User

name staticsan
member for 1 year
seen yesterday
website
location AU
age 37
Programmer from way way back, from home computer BASIC and several different types of assembly through C, C++, Fortran, COBOL, VB1 and then more exotic stuff like SNOBOL and Icon and more recently SQL, PHP and JavaScript.
Dec
7
answered Database Normalization. To infinity and beyond?
Dec
6
awarded  Mortarboard
Dec
2
accepted How to Represent Rules using a MySQL Table?
Dec
2
comment document.getElementById() VS. getElementById()
Some older versions of FF and IE had this dilemma: it was window.getElementById in one and document.getElementById in the other.
Nov
27
answered UTF-8, PHP and XML Mysql
Nov
23
revised Choosing the right database: MySQL vs. Everything else
Improved accuracy of statements.
Nov
20
answered When are infinite loops are useful in PHP?
Nov
19
answered How to Represent Rules using a MySQL Table?
Nov
17
comment Why do people accept XSD requiring elements in a particular order?
Disadvantage of using fixed order? Nice play. :-) The generation in use betrays the hotch-potch order fields were added, which offends my sense of correctness. However, you also captured my point well: it shouldn't matter to the software -- yet by default it does. Fail. IMO, computers should not force us to accomodate them when they can just as easily accomodate us.
Nov
17
revised Why do people accept XSD requiring elements in a particular order?
Updated what I'm asking to reflect what I'm actually asking.
Nov
17
comment Why do people accept XSD requiring elements in a particular order?
A good point, but this is not a help when I'm writing SimpleXMLElement calls in PHP. I have other code that accepts an XML document from another source and just looks for elements it needs and ignores everything else. This flexibility gives us incredibly quick turnaround for changes.
Nov
17
comment Why do people accept XSD requiring elements in a particular order?
Because I'm really asking about the attitudes towards automatic XSD generation and programmers who just blindly accept what it does without looking outside their ecosystem.
Nov
17
comment Why do people accept XSD requiring elements in a particular order?
Yeah, I thought about that, but the XSD is being generated by the .NET application guys from some other part of their application. And they are showing no interest in editing the XSD. Besides, that's not really what I'm asking. :-)
Nov
17
asked Why do people accept XSD requiring elements in a particular order?
Nov
16
answered Have a dual-timetable system
Nov
16
answered Is there a limit to MySQL queries?
Nov
15
comment “refactor refactor refactor your code.” What does this mean exactly and why do it ?
Could you explain how this is different from "Refactoring neither fixes bugs nor adds new functionality, though it might precede either activity. Rather, it improves the understandability of the code, changes its internal structure and design, and removes dead code." (from Wikipedia's definition).
Nov
13
answered “refactor refactor refactor your code.” What does this mean exactly and why do it ?
Nov
9
comment handling mysql constraint errors
This is why I don't usually like using constraints in MySQL. I mean, your app has to know about them, anyway.
Nov
5
answered Fun programming languages
Nov
5
comment I want to use <pre></pre> to keep the format of input text, but the displayed text crosses the boundary of its parental tag<div></div>. How to solve this problem?
Try overflow: visible.
Nov
4
comment What is the best practice for adding persistence to an MVC model?
Yes, that would be a good description. However, be careful of what you mean by 'business logic': most code I've seen that would qualify as 'business logic' belongs in the controller, not the model.
Oct
29
comment PHP: Stop a Form from being accidentally reprocessed when Back is pressed
Why do you want to implement this without sessions? You will probably need some kind of server-side storage to detect the duplicate post.
Oct
29
answered What is the best practice for adding persistence to an MVC model?
Oct
28
accepted How to send an email using Zend_Mail, sendmail, and localhost?
Oct
28
comment How to preserve hyperlink when submitting via php form into MySQL
Whilst that works, the real solution is to turn off magice_quotes_gpc in your php.ini.
Oct
28
answered How to send an email using Zend_Mail, sendmail, and localhost?
Oct
27
comment Can PHP 5 do request handling similar to Tomcat or GAE?
This is about the maximum amount of mod_rewrite rules you want.
Oct
27
answered What is the best practice for using Cookies for authentication with PHP?
Oct
19
comment What is your best programmer joke?
Ouch. And I still use my Newton, too...
Oct
18
awarded  Yearling
Oct
15
answered Invalid JSON parsing using PHP
Oct
14
answered Cannot set current _timestamp or now() with PDO on MySQL
Oct
8
accepted Can I retrieve objects I have used before?
Oct
7
comment PHP OOP extending class can’t access database connection
That's a great starting point. I would extend the static function slightly, however, to always make the DB connection. That way the calling code doesn't have to worry about that: it just calls the singleton function and it will always have a working connection.
Oct
7
accepted PHP OOP extending class can’t access database connection
Oct
6
answered Is it considered standard practice to turn off notices in the error log for PHP development
Oct
6
comment Is it considered standard practice to turn off notices in the error log for PHP development
No, that turns Notices off. It is the default in most distro's php.ini files and explicitly says so.
Oct
6
answered Real world examples of OOP
Oct
6
answered PHP OOP extending class can’t access database connection
Oct
5
answered The funniest/weirdest error message you’ve got from a development environment/application
Oct
5
comment The funniest/weirdest error message you’ve got from a development environment/application
That Amiga one is priceless!
Oct
5
comment The funniest/weirdest error message you’ve got from a development environment/application
They updated the online docs a few months ago to say what it was. :-)
Oct
5
comment The funniest/weirdest error message you’ve got from a development environment/application
Quotes used to be used by signwriters several decades ago as a form of emphasis.
Oct
5
answered In MySQL 5.0, can one insert into a table with an auto_increment column without updating the auto_increment value?
Sep
28
answered How to use a PHP includes across multiple directories/sub directories with relative paths
Sep
28
answered Can I retrieve objects I have used before?
Sep
23
comment Is it necessary to create a “SOAP server” instance?
SOAP is a message/RPC abstraction protocol. It seems big and heavy because of that. If you're fitting into an environment that already uses SOAP, then you really have little choice. Then, too, implementing SOAP on some other platforms is quite straightforward and therefore tends to be the obvious choice. PHP, though, takes a bit more of a bits-n-pieces approach, which does make it a bit more complex.
Sep
23
comment Adding time in PHP
See the comments to ceejayoz's answer for why I think so.
Sep
23
comment Adding time in PHP
It rather depends on the context of the original timestamp and why it is being compared to "now", neither of which we have. If it is a straightforward shift of X hours and that shift makes sense in the algorithm, then just adding seconds to the unix timestamp makes sense. Unfortunately I have seen too much code that does that even when it doesn't make sense or isn't clear and had to fix the resulting bugs.