User porneL - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T17:07:27Zhttp://stackoverflow.com/feeds/user/27009http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1722500/can-the-behaviour-of-new-html5-form-types-be-overridden/1914616#19146160Answer by porneL for Can the behaviour of new HTML5 form types be overridden? porneL2009-12-16T13:19:29Z2009-12-16T13:19:29Z<p><code>input type=date</code> without datepicker is almost the same as <code>input type=text</code>. If you want to keep validation, then you might use <code>pattern</code> attribute instead.</p>
<p>There's no way to customize look'n'feel of the standard date picker. There are no events for the picker. Spec doesn't define any UI for pickers. Consider how wildly different pickers can be – compare one you get on desktop with picker on the iPhone.</p>
<p>In the future CSS might get pseudo-classes for some customizations of date picker (and file picker), but currently it's all-or-nothing. </p>
http://stackoverflow.com/questions/1914367/how-to-create-embeddable-gadget-with-javascript-and-php/1914546#19145461Answer by porneL for How to create embeddable gadget with Javascript and PHP?porneL2009-12-16T13:04:10Z2009-12-16T13:04:10Z<p>The easiest way, which is also best performance- and security-wise, is to use <code><iframe></code>. Just create small version of your page for embedding.</p>
<p><code><script></code> is loaded synchronously and gets access to site's cookies, so it's not a good solution for embedding.</p>
<p>If you just ask your users to embed <code><script></code> in place where they want the gadget to be, you'll be able to generate markup with <code>document.write</code> (easy, works in HTML only).</p>
<p>A better way is to ask users to invoke function from your script that inserts code into selected DOM node (using W3C DOM). This allows smarter webmasters to load script asynchronously. SWFObject is designed like that.</p>
http://stackoverflow.com/questions/368858/hidden-features-of-mysql/1024698#10246983Answer by porneL for Hidden Features of MySQLporneL2009-06-21T20:35:03Z2009-12-15T13:45:56Z<p>I love <a href="http://dev.mysql.com/doc/refman/5.1/en/insert-on-duplicate.html" rel="nofollow"><code>on duplicate key</code></a> (AKA upsert, merge) for all kinds of counters created lazily:</p>
<pre><code>insert into occurances(word,count) values('foo',1),('bar',1)
on duplicate key cnt=cnt+1
</code></pre>
<p>You can insert many rows in one query, and immediately handle duplicate index for each of the rows.</p>
http://stackoverflow.com/questions/1577918/blocking-comment-spam-without-using-captcha/1901172#19011720Answer by porneL for Blocking comment spam without using captchaporneL2009-12-14T14:16:27Z2009-12-14T14:16:27Z<p><a href="http://code.google.com/p/sblam/" rel="nofollow">Sblam!</a> is an open-source filter similar to Akismet. </p>
<p>It uses naive bayesian filtering, checks sender's IP and links in multiple distributed blacklists, checks correctness of HTTP requests, and uses presence of JS as a hint (but not requirement).</p>
http://stackoverflow.com/questions/1897367/alt-text-showing-in-ie-and-firefox-but-not-in-safari/1897369#18973691Answer by porneL for Alt text showing in IE and firefox but not in safari?porneL2009-12-13T19:02:38Z2009-12-13T19:02:38Z<p>The code is fine. Safari simply doesn't support <code>alt</code> (I find it baffling).</p>
http://stackoverflow.com/questions/1897300/php-pregmatch-problem/1897322#18973224Answer by porneL for php preg_match problemporneL2009-12-13T18:47:50Z2009-12-13T18:47:50Z<pre><code>DOMDocument::loadHTML("<$input>")->getElementsByTagName('input')
->item(0)->getAttribute('value');
</code></pre>
http://stackoverflow.com/questions/1894407/showing-percentage-complete-of-php-script/1894418#18944187Answer by porneL for Showing percentage complete of PHP scriptporneL2009-12-12T19:16:13Z2009-12-12T23:36:21Z<p>You can <code>echo</code> and <code>flush()</code> output, but that's suboptimal and rather fragile solution.</p>
<p>For long operations it might be good idea to launch script in the background and store/updte script status in shared location.</p>
<p>e.g. you could lanuch script using <code>fopen('http://…</code> call, <code>proc_open</code> PHP CLI process or even just openg long-running script in an <code><iframe></code>.</p>
<p>You could store status in the database or in shared memory (using <code>apc_store()</code>).</p>
<p>This will let user to check status of the script at any time (by refreshing page, or using AJAX) and user won't lose track of the script if browser's connection times out. </p>
<p>It also lets you avoid starting same long script twice.</p>
http://stackoverflow.com/questions/1894299/php-remote-file-streaming-with-resume-support/1894445#18944450Answer by porneL for PHP Remote file streaming with Resume SupportporneL2009-12-12T19:30:16Z2009-12-12T19:30:16Z<p>If you're using PHP to serve the file, you have to implement all resuming logic yourself.</p>
<p>You'll have to send <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.5" rel="nofollow">Accept-Ranges</a> and <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.16" rel="nofollow">respond appropriately</a> to <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.12" rel="nofollow">Ranges</a>.</p>
<p>That's a chunk of work. It might be easier to use <code>mod_proxy</code>.</p>
http://stackoverflow.com/questions/1873992/how-to-display-an-email-address-for-users-but-hide-from-robot-is-there-a-simply/1874011#18740111Answer by porneL for How to display an email address for users but hide from robot? Is there a simply way to do it using PHP, Javascript or Jquery?porneL2009-12-09T13:47:28Z2009-12-09T21:08:56Z<p>Obfuscation using trickiest possible HTML entities and urlencode, implemented in PHP:
<a href="http://hcard.geekhood.net/encode/" rel="nofollow">http://hcard.geekhood.net/encode/</a></p>
<p>Source:
<a href="http://code.google.com/p/hcardvalidator/source/browse/trunk/encode/index.php" rel="nofollow">http://code.google.com/p/hcardvalidator/source/browse/trunk/encode/index.php</a></p>
<p>Another approach I use is:</p>
<pre><code><a href="mailto:me@myserver.removethis.com">
<script>[…] a.href = a.href.replace(/removethis\./,'');</script>
</code></pre>
<p>It's worth noting that both techniques give users perfectly accessible, clickable link.</p>
http://stackoverflow.com/questions/1873983/what-does-the-leading-semicolon-in-javascript-libraries-do/1873999#187399910Answer by porneL for What does the leading semicolon in JavaScript libraries do?porneL2009-12-09T13:45:07Z2009-12-09T13:45:07Z<p>It allows you to safely concatenate several JS files into one, to serve it quicker as one HTTP request.</p>
http://stackoverflow.com/questions/1636877/how-can-i-store-and-retrieve-images-from-a-mysql-database-using-php/1843947#18439470Answer by porneL for How can I store and retrieve images from a MySQL database using PHP?porneL2009-12-03T23:54:38Z2009-12-03T23:54:38Z<p>Be aware that serving images from DB is usually much, much <em>much</em> slower than serving them from disk. </p>
<p>You'll be starting PHP process, creating db connections, having DB use the same disk and RAM for cache as filesystem would, transfering it over few sockets and buffers and then pushing out via PHP, which by default makes it non-cacheable and adds overhead of chunked HTTP encoding.</p>
<p>OTOH modern web servers can serve images with just few optimized kernel calls (memory-mapped file and that memory area passed to TCP stack), so that they don't even copy memory around and there's almost no overhead.</p>
<p>That's difference between serving 20 or 2000 images in parallel on average machine.</p>
<p><strong>So don't do it</strong> unless you absolutely need transactional integrity (and actually even that can be done with just image metadata in DB and filesystem cleanup routines) and know how to improve PHP's handling of HTTP to be suitable for images.</p>
http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-code11Strategy for developing namespaced and non-namespaced versions of same PHP codeporneL2009-12-02T22:41:35Z2009-12-03T23:39:43Z
<p>I'm maintaining library written for PHP 5.2 and I'd like to create PHP 5.3-namespaced version of it. However, I'd also keep non-namespaced version up to date until PHP 5.3 becomes so old, that even Debian stable ships it ;)</p>
<p>I've got rather clean code, about 80 classes following <code>Project_Directory_Filename</code> naming scheme (I'd change them to <code>\Project\Directory\Filename</code> of course) and only few functions and constants (also prefixed with project name).</p>
<p>Question is: what's the best way to develop namespaced and non-namespaced versions in parallel?</p>
<ul>
<li><p>Should I just create fork in repository and keep merging changes between branches? Are there cases where backslash-sprinkled code becomes hard to merge?</p></li>
<li><p>Should I write script that converts 5.2 version to 5.3 or vice-versa? Should I use PHP tokenizer? <code>sed</code>? C preprocessor?</p></li>
<li><p>Is there a better way to use namespaces where available and keep backwards compatibility with older PHP?</p></li>
</ul>
http://stackoverflow.com/questions/1811100/how-to-declare-a-two-dimensional-array-most-easily-in-php/1811133#18111333Answer by porneL for How to declare a two dimensional array most easily in PHP?porneL2009-11-28T00:34:41Z2009-11-28T00:34:41Z<p>Just declare? You don't have to. Just make sure variable exists:</p>
<pre><code>$d = array();
</code></pre>
<p>Arrays are resized dynamically, and attempt to write anything to non-exsistant element creates it (and creates entire array if needed)</p>
<pre><code>$d[1][2] = 3;
</code></pre>
<p>This is valid for any number of dimensions without prior declarations.</p>
http://stackoverflow.com/questions/1049001/get-notification-when-nsoperationqueue-finishes-all-tasks1Get notification when NSOperationQueue finishes all tasksporneL2009-06-26T13:00:14Z2009-11-27T08:49:53Z
<p><code>NSOperationQueue</code> has <code>waitUntilAllOperationsAreFinished</code>, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes.</p>
<p>What's the best way to accomplish this?</p>
<p>I can't send notifications from my <code>NSOperation</code>s, because I don't know which one is going to be last, and <code>[queue operations]</code> might not be empty yet (or worse - repopulated) when notification is received.</p>
http://stackoverflow.com/questions/1802066/problems-with-decodeuri-with-characters/1803530#18035300Answer by porneL for problems with decodeURI with %^ charactersporneL2009-11-26T12:56:55Z2009-11-26T12:56:55Z<p>That is not a valid URI. URIs aren't allowed to contain unencoded non-ASCII characters. You can't use literal <code>%</code>, it has to be encoded as <code>%25</code>.</p>
<pre><code> var uri**="%25%5Emy test**.asp?name=st%C3%A5le&car=saab";
</code></pre>
http://stackoverflow.com/questions/71328/what-are-the-best-practices-for-avoid-xss-attacks-in-a-php-site/209743#2097431Answer by porneL for What are the best practices for avoid xss attacks in a PHP siteporneL2008-10-16T18:39:29Z2009-11-25T21:07:32Z<p>I rely on <a href="http://phptal.motion-twin.com/" rel="nofollow">PHPTAL</a> for that.</p>
<p>Unlike Smarty and plain PHP, it escapes all output by default. This is a big win for security, because your site won't become vurnelable if you forget <code>htmlspecialchars()</code> or <code>|escape</code> somewhere.</p>
<p>XSS is HTML-specific attack, so HTML output is the right place to prevent it. You should not try pre-filtering data in the database, because you could need to output data to another medium which doesn't accept HTML, but has its own risks.</p>
http://stackoverflow.com/questions/1786363/php-regex-negation/1786430#17864301Answer by porneL for PHP Regex negationporneL2009-11-23T22:14:06Z2009-11-23T22:14:06Z<p>Don't waste your time on regexes. Use <a href="http://php.net/dom" rel="nofollow">DOM</a> and XPath.</p>
<pre><code> DOMDocument::loadHTML($html)->getElementsByTagName('a')
</code></pre>
http://stackoverflow.com/questions/1724739/back-button-handle-a-dynamic-form/1767268#17672683Answer by porneL for Back Button Handle A Dynamic FormporneL2009-11-19T23:16:24Z2009-11-21T00:17:25Z<p>In good browsers you can have it working perfectly simply by <em>not breaking it</em>.</p>
<blockquote>
<p>Firefox 1.5 uses in-memory caching for entire Web pages, including their JavaScript states, for a single browser session. Going backward and forward between visited pages requires no page loading and the JavaScript states are preserved. <a href="https://developer.mozilla.org/en/using%5Ffirefox%5F1.5%5Fcaching" rel="nofollow">source</a></p>
</blockquote>
<p>This is supported in <a href="http://www.opera.com/support/kb/view/827/" rel="nofollow">Opera</a> and <a href="http://webkit.org/blog/427/webkit-page-cache-i-the-basics/" rel="nofollow">WebKit</a> too. However DOM cache is only possible in you stick to the rules:</p>
<ol>
<li>Don't use <code>onunload</code>, <code>onbeforeunload</code>.</li>
<li><p>Don't use <code>Cache-control: no-store</code> or <code>must-revalidate</code>.<br>
In PHP you must change <code>session.cache_limiter</code> from <code>patently_ridiculous</code> (I think they spell it <code>nocache</code>) to <code>none</code>. </p>
<pre><code>session_cache_limiter('none');
</code></pre></li>
<li>Unfortunately HTTPS is also out.</li>
</ol>
<p>If you don't force browsers to reload the page, they won't. They'll keep the DOM and its values unchanged, exactly as <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.13" rel="nofollow">RFC 2616 suggests</a>.</p>
<p><hr></p>
<p><strong>However</strong>, if you're looking for place to stash the data, there's incredibly clever hack – <a href="http://www.thomasfrank.se/sessionvars.html" rel="nofollow">window.name can store megabytes of data</a>. It's not sent to server, and it isn't shared between windows.</p>
<p>There are also Flash cookies and HTML 5 <code>localStorage</code> is implemented in IE8 and Safari 4.</p>
http://stackoverflow.com/questions/1759651/add-shadow-recessed-text-effect-to-cocoa-label-without-degrading-text-rendering4Add shadow (recessed text effect) to Cocoa label without degrading text rendering qualityporneL2009-11-18T22:35:53Z2009-11-19T08:08:17Z
<p>I'd like to create statusbar with text effect like in Safari or iTunes, i.e. recessed text. </p>
<p><img src="http://imgur.com/fh3CT.png" alt="example"></p>
<p>However, if I simply add shadow in Interface Builder using Core Animation panel, OS X's worst text rendering kicks in:</p>
<p><img src="http://imgur.com/0eTeX.png" alt="wheres my subpixel"></p>
<p>What's the trick to get recessed text on a label <em>and</em> keep proper subpixel rendering?</p>
http://stackoverflow.com/questions/1572362/ie-cannot-find-the-w3c-xhtml-dtd-error-2146697204/1760106#17601060Answer by porneL for IE cannot find the W3C XHTML DTD (Error 2146697204)porneL2009-11-19T00:25:17Z2009-11-19T00:25:17Z<p>IE simply doesn't support XHTML.</p>
<p>It should have that DTD in its DTD catalog. Browsers are not supposed to actually download DTD (for practical reasons, the spec <a href="http://hsivonen.iki.fi/no-dtd/" rel="nofollow">foolishly</a> allows that).</p>
http://stackoverflow.com/questions/1757618/best-practice-for-html-escaping-user-supplied-data-with-php-and-zf/1759929#17599293Answer by porneL for Best practice for HTML escaping user-supplied data with PHP (and ZF)porneL2009-11-18T23:44:41Z2009-11-18T23:44:41Z<ol>
<li><p><strong>Filter</strong> as soon as possible. You should ensure that all text input is proper UTF-8, to make your text manipulation functions work predictably. </p>
<p>But don't try to filter out "dangerous" characters or fragments! That doesn't work. Only fix or reject incorrect data on input. There's nothing incorrect in <code><</code> or <code>'</code> characters.</p></li>
<li><p><strong>Escape</strong> as late as possible. Add SQL escaping in your SQL query function (or better – use prepared statements). HTML-escape in your HTML templates. Quoted-Printable-escape in your e-mail generation functions, shell-escape when running CLI commands, etc. </p>
<p>Don't let escaped data spread all over your application, because the longer escaped data lives, the bigger chance you'll mix it up with unescaped data or break escaping during processing.</p></li>
</ol>
http://stackoverflow.com/questions/1660845/xss-and-applet-param-html-keywords/1759860#17598600Answer by porneL for XSS and Applet/Param HTML KeywordsporneL2009-11-18T23:28:02Z2009-11-18T23:28:02Z<p>How did that text get there? If via unescaped <code>value</code>, then attacker could probably close the tag and add any other script.</p>
<p>There are also other handlers, like <code>onload</code> and <code>onerror</code>.</p>
<p>It's quite simple to protect against XSS like this, just change:</p>
<ul>
<li><code>&</code> to <code>&amp;</code></li>
<li><code><</code> to <code>&lt;</code>,</li>
<li><code>'</code> to <code>&x39;</code> </li>
<li>and <code>"</code> to <code>&quot;</code>.</li>
</ul>
<p>and you won't have to worry what bad things could happen with hijacked <code><param></code>.</p>
http://stackoverflow.com/questions/1758270/displaying-xhtml-content-in-a-jsp-page/1759144#17591440Answer by porneL for Displaying xhtml content in a jsp pageporneL2009-11-18T21:17:06Z2009-11-18T21:17:06Z<p>You probably have code like this:</p>
<pre><code><script type="text/javascript"> if (a && b) </script>
</code></pre>
<p>which is <em>forbidden</em> in XHTML mode, but <em>required</em> in <code>text/html</code> mode. You'll find explanation of this problem in <a href="http://hixie.ch/advocacy/xhtml" rel="nofollow">Sending XHTML as text/html Considered Harmful</a>.</p>
<p>And code like:</p>
<pre><code><a href="foo?bar&baz">
</code></pre>
<p>is not allowed in any version of HTML or XHTML. It must always be written as:</p>
<pre><code><a href="foo?bar&amp;baz">
</code></pre>
<p>Apparently you're not generating page using XML serializer (it wouldn't let you create invalid entities or improperly encoded characters), therefore I suggest that you use HTML 4 Strict or HTML5-as- <code>text/html</code> instead, which are more appropriate for hand-coded markup.</p>
http://stackoverflow.com/questions/724935/how-to-tell-apart-simplexml-objects-representing-element-and-attribute1How to tell apart SimpleXML objects representing element and attribute?porneL2009-04-07T10:12:36Z2009-11-15T04:49:56Z
<p>I need to print <em>arbitrary</em> SimpleXML objects in a specific manner, with special handling of attribute nodes.</p>
<p>The problem is that SimpleXML elements and attributes seem to use exactly the same class, attribute node even pretends to support <code>attributes()</code> method, and SimpleXML hides its internals, so there doesn't seem to be any way to tell type of node (short of generating XML and reparsing it).</p>
<p>Both give <em>identical</em> result:</p>
<pre><code>$element = new SimpleXMLElement('<foo>test</foo>');
echo $element;
print_r($element);
$element = new SimpleXMLElement('<foo attr="test" />');
echo $element['attr'];
print_r($element['attr']);
</code></pre>
<p>Is there a hidden property/method that allows identifying type of node in SimpleXML? Equivalent of DOM's <code>$node->nodeType</code> or <code>$node instanceof DOMAttr</code>? (I can't use DOM instead, support for SimpleXML is core requirement).</p>
http://stackoverflow.com/questions/1732288/css-problem-with-unordinary-layout/1732578#17325781Answer by porneL for CSS problem with unordinary layoutporneL2009-11-13T23:39:27Z2009-11-13T23:39:27Z<p>Like this:</p>
<pre><code>#page {
position:relative;
overflow:hidden;
}
#page .images {
position:absolute; bottom:0; left: 0; width: $width-of-sidebar;
}
#sidebar {
padding-bottom: $height-of-the-image;
float:left;
}
</code></pre>
<p>To get background in the sidebar you'll need faux columns technique.</p>
http://stackoverflow.com/questions/1726302/removing-spaces-from-a-string-in-c/1726390#17263900Answer by porneL for Removing Spaces from a String in C?porneL2009-11-13T00:30:31Z2009-11-13T01:59:11Z<p>Braces are unnecessary:</p>
<pre><code>do while(isspace(*s)) s++; while(*d++ = *s++);
</code></pre>
<p>The above should be perfectly safe.</p>
<p>But, if you can risk some undefined behavior, and never have empty strings, you can get rid of the body:</p>
<pre><code>while(*(d+=!isspace(*s++)) = *s);
</code></pre>
<p>Heck, if by space you mean just space character, so much "bloat" can be removed:</p>
<pre><code>while(*(d+=*s++!=' ')=*s);
</code></pre>
<p>Don't use that in production :)</p>
http://stackoverflow.com/questions/1601610/difference-in-jquery-with-xml-namespace-and-xhr-responsexml-between-opera-and-fir/1698587#16985872Answer by porneL for Difference in jQuery with XML namespace and xhr.responseXML between Opera and FirefoxporneL2009-11-09T00:57:02Z2009-11-09T00:57:02Z<p>It's not a bug in Opera. It's <a href="http://www.w3.org/TR/css3-selectors/#type-selectors" rel="nofollow">the correct behavior</a>:</p>
<blockquote>
<p>In a namespace-aware client, the name part of element type selectors (the part after the namespace separator, if it is present) will only match against the local part of the element's qualified name. </p>
</blockquote>
<p>In your case local name is <code>x</code>, and <code>atom:x</code> <a href="http://www.w3.org/TR/REC-xml-names/#NT-PrefixedName" rel="nofollow">isn't even a legal local name in XML</a>. </p>
<p>Moreover, <a href="http://www.w3.org/TR/css3-selectors/#typenmsp" rel="nofollow">namespace-prefixed type selector</a> in CSS has different syntax that doesn't use colon at all:</p>
<pre><code>@namespace atom url(http://www.w3.org/2005/Atom);
atom|x { color: blue }
</code></pre>
<p>Your syntax seems to rely on a quirk introduced by HTML parsers in namespace-unaware user-agents. </p>
<p>HTML parser "eats" the colon as part of tag name and you get <code>atom:x</code> element in default namespace, which would match <code>atom\:x</code> selector, but in XML that you get <code>x</code> element in <code>http://www.w3.org/2005/Atom</code> namespace.</p>
http://stackoverflow.com/questions/1691531/php-how-to-remove-first-link-from-string/1691582#16915821Answer by porneL for PHP: How to remove first link from string?porneL2009-11-07T01:30:40Z2009-11-07T01:30:40Z<pre><code>$doc = DOMDocument::loadHTML($html);
$link = $doc->getElementsByTagName('a')->item(0);
$link->parentNode->removeChild($link);
$html = $doc->saveHTML();
</code></pre>
http://stackoverflow.com/questions/310572/regex-in-php-to-match-that-arent-html-entities/311904#3119041Answer by porneL for regex (in PHP) to match & that aren't HTML entitiesporneL2008-11-22T23:34:16Z2009-11-04T12:25:33Z<p>PHP's <code>htmlentities()</code> has <code>double_encode</code> argument for this.</p>
<p>If you want to do things like that in regular expressions, then negative assertions come useful:</p>
<pre><code>preg_replace('/&(?![a-z#]+;)/i','&amp;',$txt);
</code></pre>
http://stackoverflow.com/questions/1655625/how-css-and-dom-is-implemented-in-the-browser/1655649#16556495Answer by porneL for How CSS and DOM is implemented in the browser?porneL2009-10-31T21:13:33Z2009-10-31T21:13:33Z<p>Matching answers question "which selectors match given node", not "which nodes match a selector". This lets you simply evaluate each part of a selector against current node (compare node name/ID/class). Decendant combinator and inheritance are done through scanning of parent nodes.</p>
<p>If you're interested what happens next, WebKit blog had nice series: <a href="http://webkit.org/blog/114/webcore-rendering-i-the-basics/" rel="nofollow">WebCore rendering basics</a></p>
http://stackoverflow.com/questions/1897367/alt-text-showing-in-ie-and-firefox-but-not-in-safari/1897369#1897369Comment by porneL on Alt text showing in IE and firefox but not in safari?porneL2009-12-13T19:07:51Z2009-12-13T19:07:51ZAFAIK there's no way to enable proper <code>alt</code> support (you'd have to hack it with scripts, which probably isn't worth the hassle). Safari doesn't have user-accessible option to disable images. You could add <code>title</code>, which will let users figure out what is what via tooltips.http://stackoverflow.com/questions/1894407/showing-percentage-complete-of-php-script/1894418#1894418Comment by porneL on Showing percentage complete of PHP scriptporneL2009-12-13T02:49:56Z2009-12-13T02:49:56ZLong-lived PHP tasks have to execute <code>set_time_limit(0)</code> and <code>ignore_user_abort(true)</code> to avoid being killed, and then it doesn't matter if they're launched by user or via <code>fopen('http://…)</code>.http://stackoverflow.com/questions/1776197/is-there-a-way-to-use-a-different-image-for-each-side-of-a-css3-border-image/1890415#1890415Comment by porneL on Is there a way to use a different image for each side of a CSS3 border-image?porneL2009-12-12T23:49:46Z2009-12-12T23:49:46ZIE? Seriously? :)http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-code/1840185#1840185Comment by porneL on Strategy for developing namespaced and non-namespaced versions of same PHP codeporneL2009-12-04T16:31:18Z2009-12-04T16:31:18ZCould you provide more complete example? `use \Exception as Exception;
use Foo\Bar\Exception as Foo_Bar_Exception;
class Foo_Bar_Exception extends Exception {}` gives "Fatal error: Cannot declare class Foo_Bar_Exception because the name is already in use"
http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-codeComment by porneL on Strategy for developing namespaced and non-namespaced versions of same PHP codeporneL2009-12-04T12:29:16Z2009-12-04T12:29:16Z@Kevin: For me, yes. Classes with super-long prefixes are annoying to work with, and I'm planning to maintain this code for a long time.http://stackoverflow.com/questions/1734960/which-are-unsolvable-problems-in-programming-world/1734978#1734978Comment by porneL on Which are unsolvable problems in programming world?porneL2009-12-04T00:07:52Z2009-12-04T00:07:52ZIt's not solvable in <i>all</i> cases, but it <i>is</i> solvable in many cases. I can tell that <code>while(1);</code> doesn't halt, and <code>while(0);</code> halts. Take it from there and you've got static analyzer.http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-code/1840185#1840185Comment by porneL on Strategy for developing namespaced and non-namespaced versions of same PHP codeporneL2009-12-03T23:39:02Z2009-12-03T23:39:02ZThat's not sufficient. global classes and functions need to be prefixed with backslash, e.g. <code>Exception extends \Exception</code>. http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-codeComment by porneL on Strategy for developing namespaced and non-namespaced versions of same PHP codeporneL2009-12-02T23:52:18Z2009-12-02T23:52:18Z@Byron Whitlock: I don't want to do 2× work, which is why I'm asking! I'd like to get competetive advantage by jumping to 5.3 early, but I don't want to abandon existing users.http://stackoverflow.com/questions/404776/why-isnt-postgresql-as-widespread-as-mysql/1328205#1328205Comment by porneL on Why isn't PostgreSQL as widespread as MySQL?porneL2009-11-27T15:18:52Z2009-11-27T15:18:52ZIndeed, multi-row upsert is what keeps my application locked to mysql :(http://stackoverflow.com/questions/1756862/url-decoding-in-php/1756925#1756925Comment by porneL on URL Decoding in PHPporneL2009-11-26T12:58:30Z2009-11-26T12:58:30Zonly if page declared <code>ISO-8859-1</code> encoding.http://stackoverflow.com/questions/1724739/back-button-handle-a-dynamic-form/1767268#1767268Comment by porneL on Back Button Handle A Dynamic FormporneL2009-11-20T21:49:46Z2009-11-20T21:49:46ZjQuery uses onunload to plug IE memory leaks, and onunload breaks caching: <a href="http://groups.google.com/group/jquery-dev/browse_thread/thread/67abd50cd3ef0fc8" rel="nofollow">groups.google.com/group/jquery-dev/…</a>http://stackoverflow.com/questions/1757965/adding-form-elements-with-javascript-they-wont-submit/1758004#1758004Comment by porneL on adding form elements with javascript - they won't submitporneL2009-11-19T02:13:26Z2009-11-19T02:13:26Zactually, this API is buggy in IE, and type/name will be ignored. IE has to get innerHTML.http://stackoverflow.com/questions/1757618/best-practice-for-html-escaping-user-supplied-data-with-php-and-zf/1757702#1757702Comment by porneL on Best practice for HTML escaping user-supplied data with PHP (and ZF)porneL2009-11-18T23:35:58Z2009-11-18T23:35:58ZIMHO <code>$variable</code> alone should be the "raw" marker. <code>"SELECT " + escape($username)</code>, or better: <code>prepared_query("SELECT ?", $username)</code>http://stackoverflow.com/questions/1759651/add-shadow-recessed-text-effect-to-cocoa-label-without-degrading-text-rendering/1759670#1759670Comment by porneL on Add shadow (recessed text effect) to Cocoa label without degrading text rendering qualityporneL2009-11-18T23:03:13Z2009-11-18T23:03:13ZIsn't there a better solution though? One of the numerous OS X text APIs must do it properly...
I don't want to add another label, as this will be harder maintain and will probably be annoying for Voice Over users.http://stackoverflow.com/questions/1758270/displaying-xhtml-content-in-a-jsp-page/1758350#1758350Comment by porneL on Displaying xhtml content in a jsp pageporneL2009-11-18T21:05:16Z2009-11-18T21:05:16Z<meta> with charset is ignored in XHTML by design. It's only for HTML (and HTML-pretending-to-be-XML in IE).