User orlandu63 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T17:44:54Zhttp://stackoverflow.com/feeds/user/23107http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1925818/what-is-the-mysql-equivalent-of-a-postgresql-schema/1925863#19258630Answer by orlandu63 for What is the MySQL equivalent of a PostgreSQL 'schema'?orlandu632009-12-18T02:12:02Z2009-12-18T02:12:02Z<p>Prefixing table names is what's done with most MySQL-driven apps.</p>
http://stackoverflow.com/questions/1696751/what-does-the-infix-operator-do-in-haskell1What does the : infix operator do in Haskell?orlandu632009-11-08T14:45:59Z2009-11-11T23:42:52Z
<p>I'm reading <a href="http://www.haskell.org/tutorial/index.html" rel="nofollow">A Gentle Introduction to Haskell</a> (which is not so gentle) and it repeatedly uses the <code>:</code> operator without directly explaining what it does.</p>
<p>So, what exactly does it do?</p>
http://stackoverflow.com/questions/1712329/django-recommended-placement-of-template-files0Django: Recommended placement of template files?orlandu632009-11-11T00:58:40Z2009-11-11T01:12:57Z
<p>It seems that Django doesn't have a convention on the placement of template files. What would be the most logical, preferred placement?</p>
<p>(Since Django stresses the interoperability of apps, I assume that the "best" placement would be somewhere under <code>/app/</code>; maybe <code>/app/templates/</code>?)</p>
http://stackoverflow.com/questions/1685362/is-there-a-better-more-standard-way-to-perform-sql-queries-in-php-without-usin/1685446#16854460Answer by orlandu63 for Is there a better, more "Standard" way to perform SQL queries in PHP without using a framework?orlandu632009-11-06T04:37:15Z2009-11-06T04:37:15Z<p><a href="http://www.doctrine-project.org/" rel="nofollow">Doctrine</a> is an <a href="http://en.wikipedia.org/wiki/Object-relational%5Fmapping" rel="nofollow">ORM</a> wrapped around <a href="http://php.net/manual/en/book.pdo.php" rel="nofollow">PDO</a>.</p>
http://stackoverflow.com/questions/1661631/how-to-add-4-hours-to-time-in-php-mysql/1661666#166166613Answer by orlandu63 for How to add 4 hours to time in PHP/MySQLorlandu632009-11-02T14:38:00Z2009-11-02T14:38:00Z<pre><code>date($format, strtotime("$date + 4 hours"));
</code></pre>
http://stackoverflow.com/questions/1375647/get-root-dns-entry-from-php-server-get-domain-name-without-www-ect/1375707#13757070Answer by orlandu63 for Get root DNS entry from php server; get domain name without www, ect...orlandu632009-09-03T20:18:26Z2009-09-03T20:18:26Z<pre><code>/[^\.]+\.[escaped|list|of|domains]$/
</code></pre>
<p>I think that should work.</p>
http://stackoverflow.com/questions/1367454/what-do-operators-in-php-mean/1367473#136747313Answer by orlandu63 for what do "=&" / "&=" operators in php mean?orlandu632009-09-02T12:42:43Z2009-09-02T12:42:43Z<p><code>$a &= $b</code> is short for <code>$a = $a & $b</code> which is the bitwise-and operator.</p>
<p><code>$a =& $b</code> assigns $a as a reference to $b.</p>
<p>For more information, consult Google.</p>
http://stackoverflow.com/questions/1344807/how-to-convert-a-mysql-datetime-in-php-to-m-d-y-format/1344836#13448363Answer by orlandu63 for How to convert a mysql datetime in PHP to m/d/y format?orlandu632009-08-28T03:09:35Z2009-08-28T03:09:35Z<p>SQL:</p>
<pre><code>SELECT whatever, UNIX_TIMESTAMP(date) date FROM table WHERE whatever
</code></pre>
<p>PHP:</p>
<pre><code>date('m/d/Y', $result['date']);
</code></pre>
http://stackoverflow.com/questions/1332229/exection-time-of-php-script/1332278#13322780Answer by orlandu63 for Exection time of php scriptorlandu632009-08-26T04:12:56Z2009-08-26T04:12:56Z<p>Or, if you use <a href="http://xdebug.org/" rel="nofollow">xdebug</a> (which I recommend), <code>xdebug_time_index()</code></p>
http://stackoverflow.com/questions/809620/utf8-or-utf-82UTF8 or UTF-8?orlandu632009-04-30T23:47:17Z2009-08-15T21:13:24Z
<p>Which of the two is correct terminology?</p>
http://stackoverflow.com/questions/1262327/which-is-the-best-php-framework-to-use-for-large-scale-web-applications/1262565#12625651Answer by orlandu63 for which is the best PHP framework to use for large scale web applicationsorlandu632009-08-11T19:58:53Z2009-08-11T19:58:53Z<p>Whichever one you like most. Don't worry about the speed of them; once the DB is populated its queries will overshadow almost every factor of page speed.</p>
http://stackoverflow.com/questions/1242078/preventing-one-hours-one-minutes-one-days/1242180#12421804Answer by orlandu63 for Preventing "One Hours" "One MInutes" "One Days"orlandu632009-08-07T00:00:38Z2009-08-07T00:00:38Z<p>If your app is international and using the gettext extension, you can do something like this:</p>
<pre><code>sprintf(ngettext('%d minute', '%d minutes', $amount), $amount);
</code></pre>
<p>You can create a wrapper function to it:</p>
<pre><code>function pluralize($singular, $plural, $num) {
return sprintf(ngettext($singular, $plural, $num), $num);
}
</code></pre>
<p>This is the best way imo.</p>
http://stackoverflow.com/questions/1219542/in-where-shall-i-use-isset-and-empty/1219561#12195610Answer by orlandu63 for In where shall I use isset() and !empty()orlandu632009-08-02T19:06:47Z2009-08-02T19:06:47Z<pre><code>isset($variable) === (@$variable !== null)
empty($variable) === (@$variable == false)
</code></pre>
http://stackoverflow.com/questions/1215420/setters-getters-in-one-method/1215440#12154402Answer by orlandu63 for setters/getters in one methodorlandu632009-08-01T00:13:10Z2009-08-01T00:13:10Z<p>It can be done using the __call() magic method.</p>
<pre><code>class Test {
public function __call($name, array $args) {
$variable =& $this->$name;
if(!empty($args)) {
$variable = $args[0];
}
return $variable;
}
}
</code></pre>
http://stackoverflow.com/questions/1121444/in-php-is-printf-more-efficient-than-variable-interpolation/1121601#11216012Answer by orlandu63 for In PHP, is printf more efficient than variable interpolation?orlandu632009-07-13T19:34:42Z2009-07-13T19:34:42Z<p>The argument among variable interpolation, string concatenation, multiple-parameter passing, and s?printf is, for a lack of a better word, stupid. Don't worry about this trivial micro-optimization until it becomes the memory/speed bottleneck, which it will never become. So effectively just use whatever you want, factoring in readability, discernibility and plain preference.</p>
http://stackoverflow.com/questions/1114702/speed-up-this-code-php-sql-short-code-but-takes-incredibly-long-at-the-moment/1114876#11148760Answer by orlandu63 for Speed up this code - PHP/SQL - Short Code but takes incredibly long at the momentorlandu632009-07-11T23:02:11Z2009-07-12T18:24:32Z<p>This is exactly the scenario for which <a href="http://us3.php.net/manual/en/pdo.prepared-statements.php" rel="nofollow">prepared statements</a> were made:</p>
<pre><code>$prepared_statement =
$DB->prepare('INSERT INTO table(column, column) VALUES(?, ?)');
loop {
$prepared_statement->execute(array('value1', 'value2');
}
</code></pre>
<p>It's implemented in the MySQLi and PDO wrappers. It only compiles the query once and automagically sanitizes the given data, saving time (both developmental and executional) and headache.</p>
http://stackoverflow.com/questions/1114027/why-does-this-mysql-statement-throw-a-syntax-error/1114036#11140364Answer by orlandu63 for Why does this MySQL statement throw a syntax error?orlandu632009-07-11T16:15:46Z2009-07-11T16:15:46Z<p>Fix backticks (`) around order to fix this.</p>
http://stackoverflow.com/questions/1103642/recursively-build-xml-from-psql-result-set-using-php/1103711#11037111Answer by orlandu63 for Recursively build XML from PSQL Result Set (using PHP)orlandu632009-07-09T12:58:45Z2009-07-09T12:58:45Z<pre><code>$current = $root;
foreach($row as $fieldname => $fieldvalue) {
$next = $current->append(new xmlElement($fieldname));
$current->write($fieldvalue);
$current = $next;
}
</code></pre>
<p>I have a feeling that object-reference reassignment will mess this up; if it doesn't work let me know.</p>
http://stackoverflow.com/questions/1098927/php-classes-error/1098976#10989760Answer by orlandu63 for PHP classes errororlandu632009-07-08T15:54:23Z2009-07-08T15:54:23Z<p>On line 33 you are initializing the db class without satisfying its last three parameters. The error is pretty straightforward...</p>
http://stackoverflow.com/questions/1097808/are-primitive-data-types-in-php-passed-by-reference/1097837#10978371Answer by orlandu63 for Are primitive data types in PHP passed by reference?orlandu632009-07-08T12:45:55Z2009-07-08T12:45:55Z<p>Passing by reference is actually slower than passing by value in PHP. I can't find the correct citation for this claim; it's somewhere in the "References" section of the PHP manual.</p>
http://stackoverflow.com/questions/1095860/is-there-any-way-to-show-or-throw-a-php-warning/1095872#10958724Answer by orlandu63 for Is there any way to show, or throw, a PHP warning?orlandu632009-07-08T02:32:07Z2009-07-08T02:32:07Z<p>You're going the object-oriented approach, so I suggest a look into <a href="http://php.net/manual/en/language.exceptions.php" rel="nofollow">exceptions.</a></p>
http://stackoverflow.com/questions/1095801/fluxbb-vs-punbb/1095857#10958572Answer by orlandu63 for FluxBB vs PunBBorlandu632009-07-08T02:25:53Z2009-07-08T02:25:53Z<ul>
<li>PunBB 1.2 and FluxBB 1.2 branches are essentially identical.</li>
<li>FluxBB 1.3 shouldn't be used because development on it has stopped.</li>
<li>FluxBB 1.4 is a crazy extension of FluxBB 1.2 and is not well-tested and conditioned. Do not use.</li>
</ul>
<p>I recommend the 1.2 branch of either version, as they are identical, mature and well-tested. Your decision should be based on the activity of the two websites. However keep in mind that in the later versions of the 1.2 branch the bugs were posted on the FluxBB forum, and PunBB incorporated them into their branch.</p>
http://stackoverflow.com/questions/1009840/syntax-of-http-status-headers0Syntax of HTTP-status headersorlandu632009-06-17T22:31:43Z2009-06-26T12:24:49Z
<p>There're many ways to write an HTTP-status header:</p>
<pre><code>HTTP/1.1 404 Not Found
Status: 404
Status: 404 Not Found
</code></pre>
<p>but which is the semantically-correct and spec-compliant way?</p>
<p>Edit: By status headers I mean <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow">this</a>, using a function such as PHP's <code>header()</code>.</p>
http://stackoverflow.com/questions/1009840/syntax-of-http-status-headers/1048862#10488620Answer by orlandu63 for Syntax of HTTP-status headersorlandu632009-06-26T12:24:49Z2009-06-26T12:24:49Z<p>The closest thing I've found to an answer is the <a href="http://www.fastcgi.com/devkit/doc/fcgi-spec.html#S6.1" rel="nofollow">Fast CGI spec</a>, which states to set status codes through Status and Location headers.</p>
http://stackoverflow.com/questions/998592/difference-between-acronym-and-abbr0Difference between <acronym> and <abbr>?orlandu632009-06-15T21:53:02Z2009-06-17T21:28:55Z
<p>Definitionally they seem the same, yet they are deemed dissimilar enough by the W3C to have separate tag definitions. What is the semantic difference between <code><acronym></code> and <code><abbr></code> in terms of linguistics, the HTML spec and interpretation.</p>
http://stackoverflow.com/questions/963282/how-do-i-create-a-list-or-an-array-of-objects-in-php/963288#9632884Answer by orlandu63 for How do I create a list or an array of objects in PHP?orlandu632009-06-08T02:54:21Z2009-06-08T02:54:21Z<pre><code>$items = array();
while($row = mysql_fetch_array($result, MYSQL_BOTH)) {
$items[] = $row;
}
echo 'Count of Order Items...', count($items);
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/960345#9603458Answer by orlandu63 for Hidden Features of HTMLorlandu632009-06-06T19:24:37Z2009-06-06T20:18:35Z<p>If the <code>for</code> attribute of a <code><label></code> tag isn't specified, it is implicitly set as the first child <code><input></code>, i.e.</p>
<pre><code><label>Alias: <input name="alias" id="alias"></label>
</code></pre>
<p>is equivalent to</p>
<pre><code><label for="alias">Alias:</label> <input name="alias" id="alias">
</code></pre>
http://stackoverflow.com/questions/924057/whats-a-good-temporal-distance-to-no-longer-display-relative-dates0What's a good temporal distance to no longer display relative dates?orlandu632009-05-29T01:50:49Z2009-05-29T02:02:11Z
<p>Relative dates are great to display the temporal incidence of recent activity, but at what distance is it an inconvenience for the user to see a relative date rather than an absolute one?</p>
<p>Let's assume the context is a forum.</p>
http://stackoverflow.com/questions/791660/css-positioning-and-display-order1CSS Positioning and Display Orderorlandu632009-04-26T21:43:17Z2009-05-24T14:17:54Z
<p>I have a block of HTML:</p>
<pre><code><ul>
<li>a</li>
<li>b</li>
<li class="nav">c</li>
<li class="nav">d</li>
</ul>
</code></pre>
<p>and a CSS ruleset:</p>
<pre><code>ul li {
display: inline;
}
li.nav {
float: right;
}
</code></pre>
<p>which are not behaving to my intentions: I want it displayed like so:</p>
<pre><code>ab cd
</code></pre>
<p>but instead it's</p>
<pre><code>ab dc
</code></pre>
<p>the difference being the displayed order of elements. How do I have the list items of class "nav" be displayed in their syntactical order?</p>
http://stackoverflow.com/questions/791660/css-positioning-and-display-order/903849#9038490Answer by orlandu63 for CSS Positioning and Display Orderorlandu632009-05-24T14:17:54Z2009-05-24T14:17:54Z<p>I fixed this issue by separating the list into two and <code>float</code>ing them to their respective positions. I wrapped the two lists with a <code>div</code> and applied <a href="http://www.quirksmode.org/css/clearing.html" rel="nofollow"><code>overflow: auto</code></a> to it. My final CSS code looked like this:</p>
<pre><code>ul li {
display: inline
}
div.post-info-wrap {
overflow: auto
}
ul.post-info {
float: left
}
ul.nav {
float: right
}
</code></pre>
<p>and my markup like:</p>
<pre><code><div class="post-info-wrap">
<ul class="post-info">
<li/>
</ul>
<ul class="nav">
<li/>
</ul>
</div>
</code></pre>
http://stackoverflow.com/questions/160971/what-are-your-language-hangups/161089#161089Comment by orlandu63 on What are your language "hangups"?orlandu632009-12-01T23:59:28Z2009-12-01T23:59:28ZThe latter is doable in php 5.3http://stackoverflow.com/questions/1696751/what-does-the-infix-operator-do-in-haskell/1697645#1697645Comment by orlandu63 on What does the : infix operator do in Haskell?orlandu632009-11-09T01:22:09Z2009-11-09T01:22:09ZYou're totally right. +1http://stackoverflow.com/questions/1546555/php-i-cant-trim-off-the-last-character-which-is-a-spaceComment by orlandu63 on PHP - I can't trim off the last character which is a spaceorlandu632009-10-09T23:40:33Z2009-10-09T23:40:33Zvague, vague, vaguehttp://stackoverflow.com/questions/1283725/advise-on-db-table-and-index-pleaseComment by orlandu63 on Advise on DB table and index pleaseorlandu632009-10-07T02:18:56Z2009-10-07T02:18:56Zadvise -> advicehttp://stackoverflow.com/questions/1528385/massive-dynamic-form-in-php-the-best-approachComment by orlandu63 on Massive dynamic form in PHP: The best approach?orlandu632009-10-06T22:47:19Z2009-10-06T22:47:19ZOO is not the answer. Stop thinking that OO can solve any problem.http://stackoverflow.com/questions/1508825/is-it-a-bad-idea-to-send-the-hash-of-a-password-instead-of-the-unhashed-passwordComment by orlandu63 on Is it a bad idea to send the hash of a password instead of the unhashed password?orlandu632009-10-02T11:08:13Z2009-10-02T11:08:13ZCan someone proficient in English please reword this?http://stackoverflow.com/questions/1474753/sql-query-like-trying-to-find-titles-with-and/1474770#1474770Comment by orlandu63 on SQL Query (Like) Trying to find Titles with ANDorlandu632009-09-24T23:58:46Z2009-09-24T23:58:46Zthis will include "brand " and "andean"http://stackoverflow.com/questions/820493/can-an-seo-friendly-url-contain-a-unique-idComment by orlandu63 on Can an "SEO Friendly" url contain a unique ID?orlandu632009-09-18T01:07:46Z2009-09-18T01:07:46ZYour question assumes that SEO is measurably beneficial, which it is not.http://stackoverflow.com/questions/1141603/mysql-help/1141607#1141607Comment by orlandu63 on MySQL Helporlandu632009-09-05T18:15:57Z2009-09-05T18:15:57ZWhy would linking something easily searchable persuade you to upvote? http://stackoverflow.com/questions/1375647/get-root-dns-entry-from-php-server-get-domain-name-without-www-ect/1375707#1375707Comment by orlandu63 on Get root DNS entry from php server; get domain name without www, ect...orlandu632009-09-03T20:37:03Z2009-09-03T20:37:03ZThen create a tree or whatever they're called.http://stackoverflow.com/questions/1372235/shift-elements-in-string-array-to-left-to-fill-holes/1372418#1372418Comment by orlandu63 on Shift elements in string array to left to fill 'holes'orlandu632009-09-03T20:34:06Z2009-09-03T20:34:06ZGood thing I don't work with you: what is i and j? Why are you inlining a self-incrementing operator within an value declaration? It doesn't make things faster, if that's what you thought.http://stackoverflow.com/questions/1284782/how-to-correct-the-user-input-kind-of-google-did-you-meanComment by orlandu63 on How to correct the user input (Kind of google "did you mean?")orlandu632009-09-01T02:41:08Z2009-09-01T02:41:08Zgrammatical nitpick: among -> throughhttp://stackoverflow.com/questions/1331899/php-string-word-processing-question/1331992#1331992Comment by orlandu63 on PHP string/word processing questionorlandu632009-08-26T03:03:51Z2009-08-26T03:03:51Zwhat is this nonsense?http://stackoverflow.com/questions/1331899/php-string-word-processing-questionComment by orlandu63 on PHP string/word processing questionorlandu632009-08-26T03:03:03Z2009-08-26T03:03:03ZThe example was contrived, obviouslyhttp://stackoverflow.com/questions/1272444/how-do-you-determine-what-should-be-a-primary-key/1272486#1272486Comment by orlandu63 on How do you determine what should be a primary key?orlandu632009-08-13T15:34:09Z2009-08-13T15:34:09Z@joe not to mention string primary keys use up a ton of space in InnoDB.