User staticsan - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:25:14Z http://stackoverflow.com/feeds/user/28832 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/831849/choosing-the-right-database-mysql-vs-everything-else/846313#846313 2 Answer by staticsan for Choosing the right database: MySQL vs. Everything else staticsan 2009-05-10T23:34:39Z 2009-11-23T02:56:11Z <p>Please be a little wary of the idealistic points-of-view put forth by people who may have axes to grind. MySQL is a capable, robust and scalable solution for many problems, but this is usually not so right out-of-the-box as its defaults are extremely conservative. Like any database product, you will need to spend time tuning its installation for the desired performance. You will also need to spend some time accomodating its limitations, which is also true for any database you choose.</p> <p>MySQL's popularity is partly self-generated: a lot of hosting providers provide it, so a lot of people use it.</p> http://stackoverflow.com/questions/1765733/when-are-infinite-loops-are-useful-in-php/1767829#1767829 0 Answer by staticsan for When are infinite loops are useful in PHP? staticsan 2009-11-20T01:48:49Z 2009-11-20T01:48:49Z <p>Infinite loops are one of those tools you keep in a separate toolbox that doesn't get opened much as it is a tool of (almost) last resort.</p> <p>The best use I have found for them is with state machines or loops that are approaching state machines. This is because the exit condition is usually quite complex and cannot be put at the top or the bottom of the loop. </p> http://stackoverflow.com/questions/1760315/how-to-represent-rules-using-a-mysql-table/1760443#1760443 1 Answer by staticsan for How to Represent Rules using a MySQL Table? staticsan 2009-11-19T02:00:10Z 2009-11-19T02:00:10Z <p>Here is one approach.</p> <p>If you can break down each rule to a simple comparison, it is possible to store it like that in a way which will work for everything. What you end up with is a sequence of rule items comprising a field, a value and a comparison (e.g. equals, not equals, etc). They also need to belong to an actual rule (which you can name), which would be listed in another table.</p> <p>Now it gets complicated. Each rule item also a level. This is so you can do AND and OR comparisons as they require a heirarchy. The way I've done this before is that Even levels AND and Odd levels OR. That means two items that must be true for a rule would both be at level 0, that is, they must both validate. For a rule that has one mandatory condition and two more where either can be true, i.e. 1 AND (2 OR 3), you put the mandatory rule at level 0 and the other two at level 1. </p> <p>The advantage of this approach is that the code to assemble the SQL filters get the nesting right because it has to get the AND/OR mode right. It also makes it possible to build an editor for the rules.</p> <p>However, this solution, like all the others, still requires applying all the rules in turn to your user sets to find which rules allow the user you're interested in.</p> http://stackoverflow.com/questions/1745712/why-do-people-accept-xsd-requiring-elements-in-a-particular-order 0 Why do people accept XSD requiring elements in a particular order? staticsan 2009-11-17T00:03:46Z 2009-11-17T20:57:40Z <p>In a recent task at work, I've been building the PHP end (using SimpleXMLElement) of an XML interaction with a .NET app. I've been encountering differences in conceptual thinking with my counterparts in .NET land, specifically because they're just using the XSD/XML libraries in .NET without thinking much about that, whilst I'm finding myself having to bend over backwards because of XSD's limitations. In other words, I couldn't understand why their XML ingestor falls over if I give elements in the 'wrong' order or has ones it doesn't know about, and they don't understand why I care. (Instead my opinion of their development practices is lowered <em>because</em> they don't want to care.)</p> <p>Is blind acceptance of XSD generation the real culprit here? Why do people accept it being so fussy? </p> http://stackoverflow.com/questions/1439809/have-a-dual-timetable-system/1739579#1739579 0 Answer by staticsan for Have a dual-timetable system staticsan 2009-11-16T01:15:39Z 2009-11-16T01:15:39Z <p>This is a big project. I've done it for an educational management system where knowing what classes were on at a particular time was pervasive.</p> <p>The way we made it work was to have an object that converted between a real datetimestamp, and a 'schooltime' value that consisted of the run, the term/semester, the week, the day and the period. The run ID was so that different period layouts could be built for different school years, and also for different sections of a school. Each term also knew what the week cycle was, e.g. 1 which would mean all weeks were the same, 2 for a week 1/2 arrangement, or any other value if you wanted to get fancy. (The object code also had some fancy caching logic to save unnecessary conversions. This is also what taught me to use the the PHP date libraries <em>exclusively</em> for date manipulation: daylight-savings shifting mid-term <strong>must</strong> be handled correctly!)</p> <p>As far at the database went, items that needed to be oriented with a schooltime, rather than a real datetime, such as timetable entries, had five columns for the various elements of the schooltime object. They did not record real datetimes: only schooltimes. We also stored one entry per actual period. Although this made systematic changes harder, it meant individual changes could be more easily accomodated. We were thinking of experimenting with an override type structure, but it was a lot of work. If I got to start from scratch again, I would give it a try.</p> http://stackoverflow.com/questions/1737865/is-there-a-limit-to-mysql-queries/1739377#1739377 0 Answer by staticsan for Is there a limit to MySQL queries? staticsan 2009-11-16T00:02:27Z 2009-11-16T00:02:27Z <p>There is a packet size limit in the MySQL protocol. If your SQL statement exceeds that, it can't send it to the server. The limit was for a very long time 16Mb, but fairly recent versions have raised it higher.</p> <p>Also, check that you are enclosing each row's worth of data in it's own parentheses. </p> http://stackoverflow.com/questions/1727307/refactor-refactor-refactor-your-code-what-does-this-mean-exactly-and-why-do-it/1727405#1727405 -1 Answer by staticsan for "refactor refactor refactor your code." What does this mean exactly and why do it ? staticsan 2009-11-13T06:01:30Z 2009-11-13T06:01:30Z <p>Refactoring code generally means taking code that has been patched multiple times and re-writing it so that the needs of the later patches are taken into account. </p> http://stackoverflow.com/questions/345672/fun-programming-languages/1678468#1678468 0 Answer by staticsan for Fun programming languages staticsan 2009-11-05T05:10:16Z 2009-11-05T05:10:16Z <p>My usual recommendation for this sort of query is <a href="http://www.cs.arizona.edu/icon/" rel="nofollow">Icon</a> (or <a href="http://unicon.sourceforge.net/" rel="nofollow">Unicon</a> - this is a superset of the language that adds things like POSIX calls, ODBC and quite a few other things). The <a href="http://www.cs.arizona.edu/icon/lb3.htm" rel="nofollow">official Icon documentation</a> has an excellent tutorial in it.</p> <p>Some of the beauty of Icon/Unicon is the goal-directed evaluation, the success-failure model and the pervasive generators. If you are familiar with them in Python, you can get to see the language that inspired them!</p> http://stackoverflow.com/questions/1621360/what-is-the-best-practice-for-adding-persistence-to-an-mvc-model/1647183#1647183 1 Answer by staticsan for What is the best practice for adding persistence to an MVC model? staticsan 2009-10-29T23:32:19Z 2009-10-29T23:32:19Z <p>I think you're trying to build a framework that is too tightly tied to names and concepts. I've found the names and concepts in the Model-View-Controller idiom are not rigidly defined. I've also found that code working in that paradigm needs to be able to bend the rules sometimes.</p> <p>@duffymo has a very important point about the Model component: a Model <em>isn't</em> a Datastore, it just <em>has a</em> Datastore. If that is not clear, another way of thinking about that it is to look at what an instance of each is supposed to be. An instance of a "datastore" object represents a resource which mediates access to an arbitrary amount of data. Usually it is a database connection. An instance of a "model" object is usually a discrete identity with multiple pieces of data. Usually it represents a database row in a table, but it could be a line in a text file, or one file in a file-store.</p> <p>Applying the same quesion to the Controller and the View and you can see that the Model part is quite a different animal. Whilst only one Controller object and one View object will normally be in existence at one time, it is quite likely that several different Model objects of different types are in existence at one time. </p> <p>Unfortunately, I also know that a lot of MVC "frameworks" define a "Model" as an API layer behind which you do SQL statements. In those frameworks, a "Model" is a static class or a single instance and does nothing more than provide near-useless namespace partitioning. And a lot of programmers think this is supposed to make sense and struggle with it. <strong>This is why I recommend you <em>don't</em> use the names and concepts of the MVC idiom.</strong> </p> <p>My preferred way to write structured PHP only nods to the MVC paradigm. It has dispatcher and controller logic in the top, and HTML markup in the bottom. This works well because Controllers and Views are often tightly coupled and putting them in the same file is very PHP-ish. Yes, it does take discipline to not do controller-ish actions in view-ish code, but I'd rather have to do that myself than have the framework force me to. These pages don't stand alone, however, they include a lot of common logic and can import things like a lightweight dispatcher system, or even call whole swathes of common controller logic.</p> <p>But the main thing the common logic provides is a data-abstraction layer -- basically the Model layer as described at the top of my answer. The data-abstraction layer I wrote is basically three things: a database handler, an "object" object and a "collection" object. </p> <p>The database handler is the DataStore for all objects that live in the datbasee. It's main purpose is so that activities to the database that aren't making a query and getting a response are all in one place. Most database calls are in the object core. The database handler doesn't know anything about the object core: it just takes SQL and returns resultsets.</p> <p>The other two objects are designed to be sub-classed and will not work if instantiated themselves. Using inheritance and a special extended declaration (done by a static class method), they know how to turn database data into an object. An instance of an inherited "object" object represents one row of the declared class. It is given an ID upon instantiation, and will query the database when it needs to to retreive its one row of data. It also keeps track of changes and can do a one-row UPDATE when told to. The API it presents is completely devoid of SQL: the object has fields you ->get() and ->set(), and you can ->save() when you're done.</p> <p>The "collection" object knows how to get a filtered list of rows of a particular object and knows how to turn that into individual objects as appropriate, each of which function just like they were individually instantiated. (The collection object also supports being an object itself, but I rarely use this feature as it currently has some implementation limitations. And it's a concept I've found most programmers have trouble grasping.)</p> <p>Most objects need only the core inheritance code and the declarations for their specific table. </p> <p>The end effect is that <em>the controller code</em> gets to do obvious things like this:</p> <pre><code>$ticket = Ticket::Create($ticket_id); $ticket-&gt;set('queue', $new_queue); $ticket-&gt;set('queue_changed', date('Y-m-d H:i:s')); $ticket-&gt;save(); </code></pre> <p>... instead of something opaque like:</p> <pre><code>TicketModel::ChangeTicketQueue($ticket_id, $new_queue); </code></pre> <p>This approach also lets you code things in the Ticket object that might update other fields or other objects when the <code>queue</code> field changes, and it will always occur when you change that field, instead of having to remember to do it in every function that can change a ticket's queue. It also means you can add other methods to a Ticket: it would probably make sense for <code>$ticket-&gt;get_queue()</code> to do <code>return TicketQueue::Create($this-&gt;get('queue'));</code> for you. Object oriented programming at it's finest! :-) </p> <p>So, to finally answer your question, I would recommend <em>none</em> of the approaches in your question. Your model objects should present a unified API to the controller code and it is up to them as to how they store their data. If it is in a database, then they need to organise their own calls to do that. But a model <em>isn't</em> a datastore: however, it may well <em>have</em> one.</p> http://stackoverflow.com/questions/1634126/how-to-send-an-email-using-zendmail-sendmail-and-localhost/1634423#1634423 0 Answer by staticsan for How to send an email using Zend_Mail, sendmail, and localhost? staticsan 2009-10-28T00:02:47Z 2009-10-28T00:02:47Z <p>It sounds like you need to configure an MTA, or find one that you can send to. Ubuntu desktop should set one up by default, probably either exim or postfix, but if you haven't configured it, it will unlikely to be running.</p> http://stackoverflow.com/questions/1634324/what-is-the-best-practice-for-using-cookies-for-authentication-with-php/1634393#1634393 0 Answer by staticsan for What is the best practice for using Cookies for authentication with PHP? staticsan 2009-10-27T23:51:54Z 2009-10-27T23:51:54Z <p>Some thoughts, in no particular order:</p> <ul> <li>Separate out the various layers: persistent storage vs authentication. </li> <li>PHP sessions are quite robust and are the recommended way to maintain persistent storage.</li> <li>You can have a valid session, but not a valid login. </li> <li>Avoid multiple cookies. One is enough. PHP sessions work with one cookie. </li> <li>You can set sub-domains and paths on cookies, but there's really little point unless you set lots, which is not recommended (see above).</li> <li>Put everything you think you might want in a cookie in the session instead.</li> <li>You should have some common code that all your pages include. That is where you initialize your session. Then everything will Just Work. It can also verify the login is valid, too.</li> <li>Have one place that does the login authentication and everything associated with that.</li> <li>Don't forget a logout screen!</li> </ul> http://stackoverflow.com/questions/1575198/invalid-json-parsing-using-php/1575307#1575307 0 Answer by staticsan for Invalid JSON parsing using PHP staticsan 2009-10-15T21:51:02Z 2009-10-15T21:51:02Z <p>I'd say your best bet is to download the source of a JSON decoder (they're not huge) and fiddle with it, especially if you know what's wrong with the JSON you're trying to decode. </p> <p>The example you provided needs { } around it, too, which may help.</p> http://stackoverflow.com/questions/1563146/cannot-set-current-timestamp-or-now-with-pdo-on-mysql/1563757#1563757 2 Answer by staticsan for Cannot set current _timestamp or now() with PDO on MySQL staticsan 2009-10-14T01:00:27Z 2009-10-14T01:00:27Z <p>It sounds like your problem might be that you are trying to use a MySQL function as a parameter value in the prepared query. This fails because the process of preparing the query will turn it into a literal for the SQL statement, including things like quoting strings, which is not what you want. So for setting a field to <code>NOW()</code>, do the assignment in the query itself before you make it prepared, not in any of the parameters.</p> <p>On the other hand, using a null parameter value should work. But clearly it doesn't, which may be the bug you mentioned. Again, the solution is to do it directly in the SQL. You can still use parameters for other fields.</p> http://stackoverflow.com/questions/1528313/is-it-considered-standard-practice-to-turn-off-notices-in-the-error-log-for-php-d/1528747#1528747 0 Answer by staticsan for Is it considered standard practice to turn off notices in the error log for PHP development staticsan 2009-10-06T23:50:56Z 2009-10-06T23:50:56Z <p>The default php.ini file shipped with the official distribution is a bit schizophrenic. On the one hand, it claims to be good for development (e.g. shows errors) but then it has Notices turned off along with a note that turning them on would be good for development. (I actually filed a bug about this, but it was closed as they clearly didn't want to fix this.) <strong>IME, Most developers do not change this default because most of them don't know they can</strong>. So I see a <em>lot</em> of PHP code that generates Notices for this reason.</p> <p>If you have a choice, turn Notices on. Then go and fix code that does daft things like use unset variables and what not. Your code will be better for it.</p> http://stackoverflow.com/questions/1516773/real-world-examples-of-oop/1528714#1528714 0 Answer by staticsan for Real world examples of OOP staticsan 2009-10-06T23:42:25Z 2009-10-06T23:42:25Z <p>I have a good real-world example.</p> <p>A couple of years ago, I worked on an educational management system. Amongst many other things, it had to understand the concept of a school timetable and be able to figure out that 9:30 next Monday was Term 4, Week 2, Monday, Period 1. And vice-versa. Initial attempts at passing this around was separate parameters. This was annoying because the code had to look after half-a-dozen variables that were interlinked. Then we used an array: but this was difficult because the functions to handle conversions and shifts were separate and had to be specially called.</p> <p>So I made it an object. Now it was easy to use. You could create one from a timestamp, and then query which bit you needed. Or set values and ask it for a timestamp. All conversions were handled invisibly and efficiently (conversion calculations were cached, for instance).</p> http://stackoverflow.com/questions/1528549/php-oop-extending-class-cant-access-database-connection/1528669#1528669 0 Answer by staticsan for PHP OOP extending class can't access database connection staticsan 2009-10-06T23:32:51Z 2009-10-06T23:32:51Z <p>I think there is a fundamental problem with your class structure: You don't need a connection per object, you only need a copy of the connection resource per object. </p> <p>My preferred way out of this is to create a database handler that has a singleton call. Now it can be called anywhere and it will always return the same connection handler. This is also an excellent way to hide automatic initialization.</p> <p>The solution was borne out of the realization that a class <em>representing</em> a database row is actually quite different from a class that <em>is</em> a database connection. An app will deal with many many rows but rarely, if ever, will deal with more than one connection. Another way of putting this is the difference between the IS-A and HAS-A definitions: it doesn't make sense to say "a database row class IS-A database connection". It does make sense to say "a datbase row class HAS-A database connection".</p> http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/1522722#1522722 1 Answer by staticsan for The funniest/weirdest error message you've got from a development environment/application staticsan 2009-10-05T22:25:52Z 2009-10-05T22:25:52Z <p>I'm probably going to annoy an old friend if he ever reads this, but he had a boring day at work many years ago, whilst finishing off a simple print server. It was written in VB and was for more than one branch PC to share a serial printer. This particular day he was writing the error handler. </p> <p>Quite apart from:</p> <pre><code>This error can't happen. </code></pre> <p>... there was also:</p> <pre><code>Orange marmalade? No, paper jam! </code></pre> <p>... and:</p> <pre><code>Pieces of seven! Pieces of seven! It's a parrot-y error! </code></pre> <p>... and once coded, he promptly forgot about them.</p> <p>It was quite some months before Branch Support encountered a strange call from one branch that had received the 'parrot-y' error (turned out to be a loose cable). That's when they also discovered the 'orange marmalade' error. Branch Support were only slightly annoyed they didn't know about them before hand, but it otherwise brightened everyone's day. Fortunately, branch staff were accustomed to strange messages from IT apps, so there was no problem leaving them in. :-)</p> http://stackoverflow.com/questions/1522566/in-mysql-5-0-can-one-insert-into-a-table-with-an-autoincrement-column-without-u/1522630#1522630 1 Answer by staticsan for In MySQL 5.0, can one insert into a table with an auto_increment column without updating the auto_increment value? staticsan 2009-10-05T21:58:25Z 2009-10-05T21:58:25Z <p>MySQL 5.0 lets you insert an arbitrary value into an auto increment field, but this does alter the next value used for auto incrementing. And although you can alter the "next number" an auto increment field will use (with <code>ALTER TABLE t AUTO_INCREMENT = number</code>), this has to be greater than the maximum value currently in that column.</p> <p>So, no, it doesn't appear you can achieve what you asked.</p> http://stackoverflow.com/questions/1488267/how-to-use-a-php-includes-across-multiple-directories-sub-directories-with-relati/1489833#1489833 1 Answer by staticsan for How to use a PHP includes across multiple directories/sub directories with relative paths staticsan 2009-09-28T23:21:01Z 2009-09-28T23:21:01Z <p>Relative and absolute paths in PHP are a bit fragile because they depend not just on the current directory of the including file, but also the current working directory. </p> <p>So you need a two-part solution.</p> <p>Firstly, you need a redirector. Basically, this is an include file that serves as a single-point-of-call for all other pages. Its job is to go and include the rest of your infrastructure. All your pages call this redirector and only this redirector (but you can chain them). </p> <p>This redirector now does</p> <pre><code> include_once dirname(__FILE__).'/include/include.php'; </code></pre> <p>This lets you change your infrastructure's include file, or location and all you have to update is one file. The <code>dirname()</code> call solves all the relative and absolute problems and has it look for the next step relative to itself. And by definition this only changes when you change it, so it will always work.</p> <p>The second part is a custom includer so you can call content by name with a function and it goes and gets the right file. Burying this in your infrastructure directory is where is goes. It then becomes a black-box that the pages outside this area call without knowing and without needing to know how it works or where it is. That removes the need for path constants to include page fragments because you have one place doing it all for you.</p> http://stackoverflow.com/questions/1474411/can-i-retrieve-objects-i-have-used-before/1489801#1489801 1 Answer by staticsan for Can I retrieve objects I have used before? staticsan 2009-09-28T23:06:44Z 2009-09-28T23:06:44Z <p>Object persistence is possible, but it is not automatically provided. You either need to write it yourself, or use an object layer that does it for you. So you'll probably need a database.</p> <p>PHP is not an environment where your program responds to multiple page requests over time: instead, your program is invoked to response to a page request and terminates when it's done. </p> <p>The purpose of object oriented code in PHP is to make it possible to do a whole raft of programming algorithms and styles, and to make it easier to do an even bigger range of coding solutions. Yes, they are instantiated and destroyed within a single page call, so you have to work within that paradigm. Many codebases pass object IDs around between pages or in sessions; as soon as they need the corresponding object, it is instantiated and loaded from persistent storage using that ID. A good object layer will make this easy.</p> http://stackoverflow.com/questions/1456077/is-it-necessary-to-create-a-soap-server-instance/1457378#1457378 0 Answer by staticsan for Is it necessary to create a "SOAP server" instance? staticsan 2009-09-21T23:17:55Z 2009-09-21T23:17:55Z <p>It depends on whether you are making SOAP calls or receiving SOAP calls.</p> <p>To <em>make</em> them, you need to create the appropriate <em>client</em> instance to do the WDSL processing and assemble the XML.</p> <p>To <em>receive</em> them, you need to create the <em>server</em> instance and tell it how to dispatch the various calls.</p> <p>It is entirely reasonable for your app to only need to do one of those.</p> http://stackoverflow.com/questions/1456886/adding-time-in-php/1457356#1457356 0 Answer by staticsan for Adding time in PHP staticsan 2009-09-21T23:13:00Z 2009-09-21T23:13:00Z <p>Probably the safest way to do the compare is right in the SQL</p> <pre><code>SELECT * FROM my_table WHERE someDateTimeColumn &lt; DATE_ADD(NOW(), INTERVAL 4 hour) </code></pre> <p>And since you're assembling it in PHP, you can dynamically replace the "4 hour" bit with whatever your code needs to compare. </p> <p>(Note: putting the entire calculation on the other side of the comparison to the column allows MySQL to do the calculation once per query, rather than once per row, and also use the table's index, if that column has one.)</p> http://stackoverflow.com/questions/1441615/replace-php-sessions/1442626#1442626 1 Answer by staticsan for Replace PHP Sessions staticsan 2009-09-18T04:39:45Z 2009-09-18T04:39:45Z <p>The single best reason to store sessions in the database is so you can load-balance your website. That way it doesn't matter which server hands out the next page because they are all using the same database for storing their sessions.</p> <p>Have a look at <a href="http://www.php.net/manual/en/function.session-set-save-handler.php" rel="nofollow">PHP's set_save_handler()</a> for how to install a custom session handler. It takes about 30 lines to set one up that puts the session in the database, though that doesn't count the lines to make a decent database handler. :-) You will need to do:</p> <pre><code>ini_set('session.save_handler', 'user'); ini_set('session.auto_start', '0'); </code></pre> <p>... although <code>session.auto_start</code> will need to be in your php.ini (and set to 0).</p> <p>If the database access is going to be a bit expensive, there are some other things you can do to mitigate that. The obvious one is to have a DB server that is <em>just</em> for sessions. Another trick is to have it poke stuff into both memcache and the DB, so when it checks, if the memcache record is missing, it just falls back to the DB. You could get fancy with that, too, and split the session up so some of it is in memcache but the rest lives in the database. I think you'd need to put your own access functions on top of PHP's session API, though.</p> http://stackoverflow.com/questions/1442228/how-to-use-memcache-to-speed-up-the-php/1442606#1442606 1 Answer by staticsan for how to use Memcache to speed up the PHP? staticsan 2009-09-18T04:30:03Z 2009-09-18T04:30:03Z <p>You need to do some basic profiling of your code and the algorithms it uses. Memcache is like adding salt to a recipe: you need to add it to the right part or you don't get the benefit and instead gets in the way.</p> <p>In PHP, there are several types of caching that can improve performance of your web pages, and memcache is only one of them. If you have lots of identical queries, you can turn the query cache on in your database. If you have many pages connecting with little query traffic, you would benefit from connection pooling (this caches the TCP connection) and thread caching in the DB (this caches CPU resources on the DB).</p> <p>If you are throwing lots of data around, particularly strings and big arrays or objects, you can start thinking about references and updating your string handling that doesn't involve unnecessary re-copying (e.g. concatenating strings in a loop is expensive - add them to an array and implode it once at the end). This can be a big performance and memory improvement.</p> <p>If you have lots of queries getting the same information over and over again in one page, you need to improve your data storage layer. This will allow you to make one query to get a row and then re-use the data throughout the page instead of fetching it again. (This is usually the best reason to go from a hotch-potch of arbitrary SQL to an object persistence layer.) Note that this may involve a considerble re-architect of the app. You can add caching of object data to your object layer - this will benefit <em>everything</em> that uses that sort of object, which can be a big win. This is a good point for memcache, and the application code doesn't even have to know. Just be careful of data lifetimes and if or how it is updated early.</p> <p>If you have lots of pages making the same somewhat expensive query (even by proxy through a data-access layer), then you can cache that for a few seconds. It doesn't have to be to memcache, but that is a good choice. </p> <p>Finally, if you have lots of files that never change, you can use a separate server that only servers static files. This gives your execution environment more room to execute code and you can tune the static files servers to be good at returning files fast. This can be a big win for perception of website performance.</p> <p>IMO, caching should <em>improve</em> rather than <em>enable</em> your application.</p> http://stackoverflow.com/questions/1442463/implications-of-not-including-null-in-a-language/1442554#1442554 0 Answer by staticsan for Implications of not including NULL in a language? staticsan 2009-09-18T04:10:25Z 2009-09-18T04:10:25Z <p>Interesting discussion happening here. </p> <p>If I was building a language, I really don't know if I would have the concept of <code>null</code>. I guess it depends on how I want the language to look. Case in point: I wrote a simple templating language whose main strength is nested tokens and ease of making a token a list of values. It doesn't have the concept of null, but then it doesn't really have the concept of any types other than string.</p> <p>By comparison, the langauge it is built-in, Icon, uses null extensively. Probably the best thing the language designers for Icon did with null is make it synonymous with an uninitialized variable (i.e. you can't tell the difference between a variable that doesn't exist and one that currently holds the value null). And then created two prefix operators to check null and not-null.</p> <p>In PHP, I sometimes use null as a 'third' boolean value. This is good in "black-box" type classes (e.g. ORM core) where a state can be True, False or I Don't Know. Null is used for the third value.</p> <p>Of course, both of these languages do not have pointers in the same way C does, so null pointers do not exist.</p> http://stackoverflow.com/questions/1436422/better-to-install-mysql-32bit-or-64bit-on-my-64bit-intel-based-mac-perl-python-u/1437190#1437190 2 Answer by staticsan for Better to install MySQL 32bit or 64bit on my 64bit Intel-based Mac (Perl/Python user)? staticsan 2009-09-17T07:15:51Z 2009-09-17T07:15:51Z <p>You <strong>will</strong> need the 32vit vs 64bit of the MySQL <em>client libraries</em> to match the application you're trying to link them with. However, this not prevent you from connecting to a 64-bit install of MySQL <em>server</em>.</p> <p>In Unix, the MySQL client libraries support multiple versions of themselves lying around; you just have to make sure the application is loading the correct one. This should be true to the Mac.</p> http://stackoverflow.com/questions/1436827/adding-30-minutes-to-datetime-php-mysql/1437165#1437165 2 Answer by staticsan for adding 30 minutes to datetime php/mysql staticsan 2009-09-17T07:08:05Z 2009-09-17T07:08:05Z <p>Dominc has the right idea, but put the calculation on the other side of the expression.</p> <pre><code>SELECT * FROM my_table WHERE endTime &lt; DATE_SUB(CONVERT_TZ(NOW(), @@global.time_zone, 'GMT'), INTERVAL 30 MINUTE) </code></pre> <p>This has the advantage that you're doing the 30 minute calculation once instead of on every row. That also means MySQL can use the index on that column. Both of thse give you a speedup.</p> http://stackoverflow.com/questions/1387258/php-login-system/1387309#1387309 0 Answer by staticsan for PHP Login System staticsan 2009-09-07T02:17:14Z 2009-09-07T02:17:14Z <p>On the whole, you are definitely on the right track. I would recommend you use IDs for your users in the session rather than the username as IDs are a better unique reference inside your code. </p> <p>Also, md5 is not considered strong enough for password hashing anymore: it's is too fast to hash and you don't want that in a check that an attacker will need to run over and over again (whilst a real user only needs to do it once). I wish I could find the reference, but leading edge wisdom is to do lots of rounds of a leading edge hashing algorithm, like sha512.</p> http://stackoverflow.com/questions/1376574/what-precautions-should-i-take-when-using-0-in-php-as-a-number/1376847#1376847 1 Answer by staticsan for What precautions should I take when using '0' in PHP as a number? staticsan 2009-09-04T01:46:19Z 2009-09-04T01:46:19Z <p>There are a few places where <code>0</code> and <code>'0'</code> are treated a little bit specially. This is almost always because of automatic type co-ercion. You've already noticed where <code>0</code> evaluates to <code>false</code>. So if PHP has a reason to convert <code>'0'</code> to an integer, then that will also evaluate to false. The prime one to watch out for is the <code>empty()</code> function. This is documented, BTW. </p> <p>I rarely use <code>empty()</code> because of this very problem, in fact. It makes much more sense to check more narrowly, hence I use <code>isset()</code>, <code>is_null()</code> and <code>=== false</code> or even <code>== 0</code> (or <code>!= 0</code>). There are other checks, too. I have DB handler code that not only checks using <code>is_null()</code> but also does <code>is_numeric()</code>. </p> <p>Other places to watch out for are where you use other developer's code who aren't completely careful with how <code>0</code> works in automatic type co-ercion. If you give a function a <code>0</code> but it ends up using a <code>null</code> when it should be using a <code>0</code> then you've probably found a bug in the API and should raise it with the developer. In fact, they're probably using <code>empty()</code> when they should be using <code>isset()</code> and/or <code>is_null()</code>. :-)</p> http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/1370699#1370699 0 Answer by staticsan for Biggest performance improvement you've had with the smallest change? staticsan 2009-09-02T23:30:27Z 2009-09-02T23:30:27Z <p>Heeding the top-level question, probably the biggest improvement I've had for the smallest change would be to correctly size the settings of a MySQL server for the hardware it was on. The defaults for MySQL - even the 'huge' ones - are <em>extremely</em> conservative. In particular, several of the memory parameters (e.g. sort_buffer) can be increased a thousand times and this will give a significant boost of performance. And table_cache is often way too low. I've had it up at 1500 on some servers.</p> http://stackoverflow.com/questions/1745712/why-do-people-accept-xsd-requiring-elements-in-a-particular-order/1745740#1745740 Comment by staticsan on Why do people accept XSD requiring elements in a particular order? staticsan 2009-11-17T00:31:35Z 2009-11-17T00:31:35Z 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 <i>shouldn't matter</i> 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. http://stackoverflow.com/questions/1745712/why-do-people-accept-xsd-requiring-elements-in-a-particular-order/1745740#1745740 Comment by staticsan on Why do people accept XSD requiring elements in a particular order? staticsan 2009-11-17T00:24:44Z 2009-11-17T00:24:44Z 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. http://stackoverflow.com/questions/1745712/why-do-people-accept-xsd-requiring-elements-in-a-particular-order Comment by staticsan on Why do people accept XSD requiring elements in a particular order? staticsan 2009-11-17T00:22:43Z 2009-11-17T00:22:43Z 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. http://stackoverflow.com/questions/1745712/why-do-people-accept-xsd-requiring-elements-in-a-particular-order/1745722#1745722 Comment by staticsan on Why do people accept XSD requiring elements in a particular order? staticsan 2009-11-17T00:10:09Z 2009-11-17T00:10:09Z 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. :-) http://stackoverflow.com/questions/1727307/refactor-refactor-refactor-your-code-what-does-this-mean-exactly-and-why-do-it/1727405#1727405 Comment by staticsan on "refactor refactor refactor your code." What does this mean exactly and why do it ? staticsan 2009-11-15T23:54:34Z 2009-11-15T23:54:34Z Could you explain how this is different from &quot;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.&quot; (from Wikipedia's definition). http://stackoverflow.com/questions/1696149/handling-mysql-constraint-errors Comment by staticsan on handling mysql constraint errors staticsan 2009-11-09T01:54:40Z 2009-11-09T01:54:40Z This is why I don't usually like using constraints in MySQL. I mean, your app has to know about them, anyway. http://stackoverflow.com/questions/1678421/i-want-to-use-pre-pre-to-keep-the-format-of-input-text-but-the-displayed-tex/1678427#1678427 Comment by staticsan on 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? staticsan 2009-11-05T05:03:07Z 2009-11-05T05:03:07Z Try overflow: visible. http://stackoverflow.com/questions/1621360/what-is-the-best-practice-for-adding-persistence-to-an-mvc-model/1647183#1647183 Comment by staticsan on What is the best practice for adding persistence to an MVC model? staticsan 2009-11-04T00:54:24Z 2009-11-04T00:54:24Z 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. http://stackoverflow.com/questions/1646812/php-stop-a-form-from-being-accidentally-reprocessed-when-back-is-pressed Comment by staticsan on PHP: Stop a Form from being accidentally reprocessed when Back is pressed staticsan 2009-10-29T23:40:41Z 2009-10-29T23:40:41Z Why do you want to implement this without sessions? You will probably need <i>some</i> kind of server-side storage to detect the duplicate post. http://stackoverflow.com/questions/1632945/how-to-preserve-hyperlink-when-submitting-via-php-form-into-mysql/1632967#1632967 Comment by staticsan on How to preserve hyperlink when submitting via php form into MySQL staticsan 2009-10-28T00:09:30Z 2009-10-28T00:09:30Z Whilst that works, the <i>real</i> solution is to turn off magice_quotes_gpc in your php.ini. http://stackoverflow.com/questions/1634292/can-php-5-do-request-handling-similar-to-tomcat-or-gae/1634373#1634373 Comment by staticsan on Can PHP 5 do request handling similar to Tomcat or GAE? staticsan 2009-10-27T23:53:34Z 2009-10-27T23:53:34Z This is about the maximum amount of mod_rewrite rules you want. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1485602#1485602 Comment by staticsan on What is your best programmer joke? staticsan 2009-10-19T00:26:37Z 2009-10-19T00:26:37Z Ouch. And I still use my Newton, too... http://stackoverflow.com/questions/1528549/php-oop-extending-class-cant-access-database-connection/1528669#1528669 Comment by staticsan on PHP OOP extending class can't access database connection staticsan 2009-10-07T23:18:19Z 2009-10-07T23:18:19Z 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. http://stackoverflow.com/questions/1528313/is-it-considered-standard-practice-to-turn-off-notices-in-the-error-log-for-php-d Comment by staticsan on Is it considered standard practice to turn off notices in the error log for PHP development staticsan 2009-10-06T23:44:11Z 2009-10-06T23:44:11Z No, that turns Notices off. It is the default in most distro's php.ini files and explicitly says so. http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/1522545#1522545 Comment by staticsan on The funniest/weirdest error message you've got from a development environment/application staticsan 2009-10-05T22:12:22Z 2009-10-05T22:12:22Z That Amiga one is priceless!