User joelhardi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T11:05:51Zhttp://stackoverflow.com/feeds/user/11438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70392/is-there-a-distributed-vcs-that-can-manage-large-files2Is there a distributed VCS that can manage large files?joelhardi2008-09-16T08:35:24Z2009-07-20T12:21:26Z
<p>Is there a distributed version control system (git, bazaar, mercurial, darcs etc.) that can handle files larger than available RAM?</p>
<p>I need to be able to commit large binary files (i.e. datasets, source video/images, archives), but I don't need to be able to diff them, just be able to commit and then update when the file changes.</p>
<p>I last looked at this about a year ago, and none of the obvious candidates allowed this, since they're all designed to diff in memory for speed. That left me with a VCS for managing code and something else ("asset management" software or just rsync and scripts) for large files, which is pretty ugly when the directory structures of the two overlap.</p>
http://stackoverflow.com/questions/62618/what-is-the-best-way-to-merge-mp3-files/574439#5744390Answer by joelhardi for What is the best way to merge mp3 files?joelhardi2009-02-22T06:02:58Z2009-02-22T06:02:58Z<p>As David says, <a href="http://mp3wrap.sourceforge.net/" rel="nofollow">mp3wrap</a> is the way to go. However, I found that it didn't fix the audio length header, so iTunes refused to play the whole file even though all the data was there. (I merged three 7-minute files, but it only saw up to the first 7 minutes.)</p>
<p>I dug up <a href="http://lyncd.com/2009/02/how-to-merge-mp3-files/" rel="nofollow">this blog post</a>, which explains how to fix this and also how to copy the ID3 tags over from the original files (on its own, mp3wrap deletes your ID3 tags). Or to just copy the tags (using id3cp from <a href="http://id3lib.sourceforge.net/" rel="nofollow">id3lib</a>), do:</p>
<pre><code>id3cp original.mp3 new.mp3
</code></pre>
http://stackoverflow.com/questions/258625/how-evil-is-request-and-what-are-some-acceptable-band-aid-countermeasures3How evil is $_REQUEST and what are some acceptable Band-Aid countermeasures?joelhardi2008-11-03T13:32:11Z2008-11-03T17:16:15Z
<p>I've come across a couple of popular PHP-related answers recently that suggested using the superglobal <code>$_REQUEST</code>, which I think of as code smell, because it reminds me of <code>register_globals</code>.</p>
<p>Can you provide a good explanation/evidence of why <code>$_REQUEST</code> is bad practice? I'll throw out a couple of examples I've dug up, and would love more information/perspective on both theoretical attack vectors and real-world exploits, as well as suggestions of reasonable steps the sysadmin can take to reduce risk (short of rewriting the app ... or, do we <em>need</em> to go to management and insist on a rewrite?).</p>
<p><strong>Example vulnerabilities:</strong> Default 'GPC' array_merge order means that COOKIE values override GET and POST, so REQUEST can be used for XSS and HTTP attacks. PHP lets cookie vars overwrite the superglobal arrays. First 10 slides of <a href="http://www.slideshare.net/ZendCon/lesser-known-security-problems-in-php-applications-presentation" rel="nofollow">this talk</a> give examples (whole talk is great). <a href="http://www.hardened-php.net/advisory_072006.130.html" rel="nofollow">phpMyAdmin exploit</a> example of CSRF attack.</p>
<p><strong>Example countermeasures:</strong> Reconfigure REQUEST array_merge order from 'GPC' to 'CGP' so GET/POST overwrite COOKIE, not the other way around. Use <a href="http://www.hardened-php.net/suhosin/" rel="nofollow">Suhosin</a> to block overwrite of superglobals.</p>
<p>(Also, wouldn't be asking if I thought my question was a dupe, but happily the overwhelming SO answer to <a href="http://stackoverflow.com/questions/107683/when-and-why-should-request-be-used-instead-of-get-post-cookie">"When and why should $_REQUEST be used instead of $_GET / $_POST / $_COOKIE?"</a> was "Never.")</p>
http://stackoverflow.com/questions/256811/how-do-you-create-non-scrolling-div-at-the-top-of-an-html-page-without-two-sets-o/258404#2584040Answer by joelhardi for How do you create non scrolling div at the top of an HTML page without two sets of scroll barsjoelhardi2008-11-03T11:40:11Z2008-11-03T11:40:11Z<p>Belugabob has the right idea that what you are trying to do is fixed positioning, which IE 6 does not support.</p>
<p>I modified an example from the bottom of <a href="http://www.howtocreate.co.uk/fixedPosition.html" rel="nofollow">this tutorial</a> which should do what you want and support IE 6+ in addition to all the good browsers. It works because IE lets you put Javascript in style declarations:</p>
<pre><code><style type="text/css">
div#fixme {
width: 100%; /* For all browsers */
}
body > div#fixme {
position: fixed; /* For good browsers */
}
</style>
<!--[if gte IE 5.5]>
<![if lt IE 7]>
<style type="text/css">
div#fixme {
/* IE5.5+/Win - this is more specific than the IE 5.0 version */
right: auto; bottom: auto;
left: expression( ( 0 - fixme.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
top: expression( ( 0 - fixme.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}
</style>
<![endif]>
<![endif]-->
<body>
<div id="fixme"> ...
</code></pre>
http://stackoverflow.com/questions/247318/php-simplexmladdchild-with-empty-string-redundant-node/258352#2583521Answer by joelhardi for PHP SimpleXML::addChild with empty string - redundant nodejoelhardi2008-11-03T11:10:16Z2008-11-03T11:10:16Z<p>I think I figured out what is going on. Given code like this:</p>
<pre><code>$xml = new SimpleXMLElement('<xml></xml>');
$xml->addChild('node','value');
print_r($xml);
$xml = new SimpleXMLElement('<xml></xml>');
$xml->addChild('node','');
print_r($xml);
$xml = new SimpleXMLElement('<xml></xml>');
$xml->addChild('node');
print_r($xml);
</code></pre>
<p>The output is this:</p>
<pre><code>SimpleXMLElement Object
(
[node] => value
)
SimpleXMLElement Object
(
[node] => SimpleXMLElement Object
(
[0] =>
)
)
SimpleXMLElement Object
(
[node] => SimpleXMLElement Object
(
)
)
</code></pre>
<p>So, to make it so that in case #2 the empty element isn't created (i.e. if you don't know if the second argument is going to be an empty string or not), you could just do something like this:</p>
<pre><code>$mystery_string = '';
$xml = new SimpleXMLElement('<xml></xml>');
if (preg_match('#\S#', $mystery_string)) // Checks for non-whitespace character
$xml->addChild('node', $mystery_string);
else
$xml->addChild('node');
print_r($xml);
echo "\nOr in JSON:\n";
echo json_encode($xml);
</code></pre>
<p>To output:</p>
<pre><code>SimpleXMLElement Object
(
[node] => SimpleXMLElement Object
(
)
)
Or in JSON:
{"node":{}}
</code></pre>
<p>Is that what you want?</p>
<p>Personally, I never use SimpleXML, and not only because of this sort of weird behavior -- it is still under major development and in PHP5 is missing like 2/3 of the methods you need to do DOM manipulation (like deleteChild, replaceChild etc).</p>
<p>I use DOMDocument (which is standardized, fast and feature-complete, since it's an interface to libxml2).</p>
http://stackoverflow.com/questions/224065/is-there-a-entity-attribute-value-eav-framework-out-there-for-php-mysql/253123#2531230Answer by joelhardi for Is there a Entity Attribute Value (EAV) framework out there for PHP/MySQL?joelhardi2008-10-31T10:43:32Z2008-10-31T10:43:32Z<p>I don't know of any.</p>
<p>With that said, the <a href="http://ez.no/" rel="nofollow">eZ Publish ECMS</a> (which is FOSS) uses an EAV-style, heavily normalized data model. Both definitions of types of structured content (<a href="http://ez.no/doc/ez_publish/technical_manual/4_0/concepts_and_basics/content_management/the_content_class" rel="nofollow">"content classes"</a>) and actual instances of content (articles, user accounts, comments, products, anything really) are defined and stored in single database tables.</p>
<p>This way, arbitrary combinations of datatypes can be dynamically combined through the web interface to make a new content type (a "simplearticle" might consist of a "Textline" for headline, "Datetime" for publish date and "XML field" for body text). In EAV, "simplearticle" is the entity, "headline" an attribute name and "Textline" its value, while the length and validation rules comprising the "Textline" datatype are metadata in the EAV context.</p>
<p>As expected with any EAV architecture, this flexibility comes at the cost of reduced performance, since any lookup requires multiple self-joins, one for each column in the pivoted result set.</p>
<p>Unfortunately, this stack hasn't make it into eZ's related <a href="http://ez.no/ezcomponents" rel="nofollow">eZ Components</a> library (which has database and data access object/ORM components, but of the standard relational variety), so using it would mean either dealing with the whole eZ Publish enchilada or ripping the required class libraries out yourself.</p>
http://stackoverflow.com/questions/252865/no-indexes-on-small-tables/252904#25290414Answer by joelhardi for No indexes on small tables?joelhardi2008-10-31T08:51:52Z2008-10-31T08:51:52Z<p>The value of indexes is in speeding reads. For instance, if you are doing lots of SELECTs based on a range of dates in a date column, it makes sense to put an index on that column. And of course, generally you add indexes on any column you're going to be JOINing on with any significant frequency. The efficiency gain is also related to the ratio of the size of your typical recordsets to the number of records (i.e. grabbing 20/2000 records benefits more from indexing than grabbing 90/100 records). A lookup on an unindexed column is essentially a linear search.</p>
<p>The cost of indexes comes on writes, because every INSERT also requires an internal insert to each column index.</p>
<p>So, the answer depends entirely on your application -- if it's something like a dynamic website where the number of reads can be 100x or 1000x the writes, and you're doing frequent, disparate lookups based on data columns, indexing may well be beneficial. But if writes greatly outnumber reads, then your tuning should focus on speeding those queries.</p>
<p>It takes very little time to identify and benchmark a handful of your app's most frequent operations both with and without indexes on the JOIN/WHERE columns, I suggest you do that. It's also smart to monitor your production app and identify the most expensive, and most frequent queries, and focus your optimization efforts on the intersection of those two sets of queries (which could mean indexes or something totally different, like allocating more or less memory for query or join caches).</p>
http://stackoverflow.com/questions/249200/what-is-the-fastest-webserver-solution-with-the-lowest-memory-footprint/249275#2492751Answer by joelhardi for What is the fastest webserver solution with the lowest memory footprint?joelhardi2008-10-30T04:27:10Z2008-10-30T04:27:10Z<p>Since you mentioned Python, you might want to take a look at <a href="http://webpy.org/" rel="nofollow">web.py</a>, for a very simple way to listen on port 80 and map URLs to actions.</p>
<p>It'll also run via your favorite CGI if you want to pair with a standard webserver (i.e. behind Nginx/FastCGI) -- and I'll second the recs of Nginx for massive concurrency on static files. (They used it with Lighttpd at Reddit.)</p>
<p><a href="http://www.acme.com/software/thttpd/" rel="nofollow">thttpd</a> is the other webserver I'd look at, especially if memory is extremely scarce, like on an embedded system.</p>
http://stackoverflow.com/questions/249103/ie7-and-the-css-table-cell-property/249121#2491212Answer by joelhardi for IE7 and the CSS table-cell propertyjoelhardi2008-10-30T02:24:21Z2008-10-30T02:24:21Z<p>Well, <a href="http://www.quirksmode.org/css/display.html" rel="nofollow">IE7 does not have <code>display: table(-cell/-row)</code></a> so you will have to figure something else out or do browser targeting (which I agree, is bad hack). As a quick fix (I don't know what you're trying to achieve, appearance-wise) you could try <code>display: inline-block</code> and see what it looks like.</p>
<p>Maybe figure out a way to do <code>display: block</code> and solve the problem of "Firefox rendering it weird" instead? Can you describe what you mean by the weird rendering exactly?</p>
http://stackoverflow.com/questions/248219/mysql-import-sql-via-cli-from-remote-server/248329#2483293Answer by joelhardi for mysql import sql via cli from remote serverjoelhardi2008-10-29T20:39:43Z2008-10-29T20:39:43Z<p>You didn't say what network access you have to the remote server.</p>
<p>Assuming you have SSH access to the remote server, you could pipe the results of a remote mysqldump to the mysql command. I just tested this, and it works fine:</p>
<pre><code>ssh remote.com "mysqldump remotedb" | mysql localdb
</code></pre>
<p>I put stuff like user, password, host into <code>.my.cnf</code> so I'm not constantly typing them -- annoying and bad for security on multiuser systems, you are putting passwords in cleartext into your bash_history! But you can easily add the <code>-u -p -h</code> stuff back in on both ends if you need it:</p>
<pre><code>ssh remote.com "mysqldump -u remoteuser -p remotepass remotedb" | mysql -u localuser -p localpass localdb
</code></pre>
<p>Finally, you can pipe through <code>gzip</code> to compress the data over the network:</p>
<pre><code>ssh remote.com "mysqldump remotedb | gzip" | gzip -d | mysql localdb
</code></pre>
http://stackoverflow.com/questions/237786/is-there-a-better-way-to-change-a-domelement-tagname-property-in-php/246436#2464361Answer by joelhardi for Is there a better way to change a DOMElement->tagName property in php?joelhardi2008-10-29T11:13:34Z2008-10-29T11:13:34Z<p>Yes, this how you have to do it -- the reason is that you're not just changing the value of a single attribute (<code>tagName</code>), you're actually changing the entire element from one type to another. Properties such as <code>tagName</code> (or <code>nodeName</code>) and <code>nodeType</code> are read-only in the DOM and set when you create the element.</p>
<p>So, creating a new element and moving in place of the old one exactly as you're doing, with <code>DOMNode::replaceChild</code>, is the correct operation.</p>
<p>I'm not sure what you mean by "unwanted side effect of nulling all the logic behind the control" -- if you clarify I might be able to give you guidance there.</p>
<p>It sounds like you might not want to have ServerTag inherit from DOMElement and instead you may want to link these two objects through some other pattern, such as composition (i.e. so a ServerTag "has a" DOMElement instead of "is a" DOMElement) so that you're merely replacing the DOMElement object associated with your ServerTag Textbox object.</p>
<p>Or a longer-shot guess is you might be running into issues just copying the attributes (i.e. <code>textarea</code> has required attributes, like <code>rows</code> and <code>cols</code>, that <code>input</code> does not).</p>
http://stackoverflow.com/questions/246227/how-do-you-change-server-tag-for-nginx/246294#2462941Answer by joelhardi for How do you change server tag for nginx?joelhardi2008-10-29T10:04:42Z2008-10-29T10:04:42Z<p>Like Apache, this is a quick edit to the source and recompile. From <a href="https://calomel.org/nginx.html" rel="nofollow">Calomel.org</a>:</p>
<blockquote>
<p>The Server: string is the header which
is sent back to the client to tell
them what type of http server you are
running and possibly what version.
This string is used by places like
Alexia and Netcraft to collect
statistics about how many and of what
type of web server are live on the
Internet. To support the author and
statistics for Nginx we recommend
keeping this string as is. But, for
security you may not want people to
know what you are running and you can
change this in the source code. Edit
the source file
<code>src/http/ngx_http_header_filter_module.c</code>
at look at lines 48 and 49. You can
change the String to anything you
want.</p>
</blockquote>
<pre><code>## vi src/http/ngx_http_header_filter_module.c (lines 48 and 49)
static char ngx_http_server_string[] = "Server: MyDomain.com" CRLF;
static char ngx_http_server_full_string[] = "Server: MyDomain.com" CRLF;
</code></pre>
http://stackoverflow.com/questions/242066/how-can-i-validate-large-numbers-of-files-with-search-and-replace/242377#2423770Answer by joelhardi for How can I validate large numbers of files with search and replace?joelhardi2008-10-28T06:16:18Z2008-10-28T06:16:18Z<p>See questions I asked in comment at top.</p>
<p>Assuming you're using GNU sed, and that you're trying to <strong>add</strong> the trailing <code>/</code> to your tags to make XML-compliant <code><img /></code> and <code><input /></code>, then replace the sed expression in your command with this one, and it should do the trick: <code>'1h;1!H;${;g;s/\(img\|input\)\( [^>]*[^/]\)>/\1\2\/>/g;p;}'</code></p>
<p>Here it is on a simple test file (SO's colorizer doing wacky things):</p>
<pre><code>$ cat test.html
This is an <img tag> without closing slash.
Here is an <img tag /> with closing slash.
This is an <input tag > without closing slash.
And here one <input attrib="1"
> that spans multiple lines.
Finally one <input
attrib="1" /> with closing slash.
$ sed -n '1h;1!H;${;g;s/\(img\|input\)\( [^>]*[^/]\)>/\1\2\/>/g;p;}' test.html
This is an <img tag/> without closing slash.
Here is an <img tag /> with closing slash.
This is an <input tag /> without closing slash.
And here one <input attrib="1"
/> that spans multiple lines.
Finally one <input
attrib="1" /> with closing slash.
</code></pre>
<p>Here's <a href="http://www.gnu.org/software/sed/manual/sed.html#Regular-Expressions" rel="nofollow">GNU sed regex syntax</a> and <a href="http://www.ilfilosofo.com/blog/2008/04/26/sed-multi-line-search-and-replace/" rel="nofollow">how the buffering works to do multiline search/replace</a>.</p>
<p>Alternately you could use something like <a href="http://tidy.sourceforge.net/" rel="nofollow">Tidy</a> that's designed for sanitizing bad HTML -- that's what I'd do if I were doing anything more complicated than a couple of simple search/replaces. Tidy's options get complicated fast, so it's usually better to write a script in your scripting language of choice (Python, Perl) that calls <code>libtidy</code> and sets whatever options you need.</p>
http://stackoverflow.com/questions/242276/how-to-embed-an-unobtrusive-flash/242308#2423086Answer by joelhardi for How to embed an unobtrusive flash?joelhardi2008-10-28T05:24:17Z2008-10-28T05:24:17Z<p>The problem is that in your document, the <code>object</code>/<code>embed</code> that contains the Flash animation is on top of the elements you need to access. You need to put these elements on top of the Flash animation instead of the other way around.</p>
<p>The way to do this is to set the object's <code>wmode</code> to opaque, and use the CSS <code>z-index</code> property to set it to a <code>z-index</code> lower than the <code>z-index</code> of whatever elements you want to float over it -- you can do this in CSS or just with inline <code>style=""</code> attributes.</p>
<p>Here's <a href="http://www.pipwerks.com/lab/swfobject/z-index/2.0/index.html" rel="nofollow">an example using SWFObject</a> to create the <code>object</code>/<code>embed</code> tags, but the same principle applies if you are just hardcoding these into your HTML.</p>
http://stackoverflow.com/questions/239171/whats-the-cleanest-way-to-convert-a-5-7-digit-number-into-xxx-xxx-xxx-format-in/239218#2392181Answer by joelhardi for Whats the cleanest way to convert a 5-7 digit number into xxx/xxx/xxx format in php?joelhardi2008-10-27T06:41:16Z2008-10-27T06:41:16Z<p>OK, people are throwing stuff out, so I will too!</p>
<p><code>number_format</code> would be great, because it accepts a thousands separator, but it doesn't do padding zeroes like <code>sprintf</code> and the like. So here's what I came up with for a one-liner:</p>
<pre><code>function fmt($x) {
return substr(number_format($x+1000000000, 0, ".", "/"), 2);
}
</code></pre>
http://stackoverflow.com/questions/238996/wrapping-a-label-element-within-a-legend-element/239190#2391904Answer by joelhardi for Wrapping a label element within a legend elementjoelhardi2008-10-27T06:05:00Z2008-10-27T06:05:00Z<p>Where is your <code></fieldset></code>?</p>
<p>Semantically, <a href="http://www.w3.org/TR/html401/interact/forms.html#h-17.10" rel="nofollow"><code>legend</code> describes a <code>fieldset</code></a>, just as <code>label</code> describes a single field.</p>
<p>Fieldsets are supposed to be used to group together semantically related fields (for instance, an "address" fieldset might have input fields for street, city and country).</p>
<p>Assuming you have more than one field in the fieldset, then doing what you suggest doesn't semantically make sense -- you need to create separate legend text that describes the fieldset, then a label for each field.</p>
<p>If you only have one field, then you don't need fieldset or legend at all.</p>
<p>So, basically, you shouldn't do what you're doing.</p>
<p>If you're doing it to have extra elements to attach CSS rules or Javascript events to, you're better off using generic elements like <code>div</code> and <code>span</code> that won't confuse text-to-speech and other non-visual user agents.</p>
<p>i.e., putting in a <code>div</code> or <code>span</code> is effectively neutral in terms of accessibility/semantics (it implies nothing) versus misusing a semantic element (even if only slightly, as in this case), which is potentially misleading. Imagine even the <em>best-case</em> scenario for your layout in a text-to-speech browser: The text is read aloud twice, once as legend and once as label -- why would someone want the phrase "I would like information on" read aloud twice to them? Especially as it only makes sense in the context of the choices in the <code>select</code> control.</p>
http://stackoverflow.com/questions/236630/printing-scrolled-divs/236862#2368621Answer by joelhardi for Printing Scrolled Divsjoelhardi2008-10-25T19:14:02Z2008-10-25T19:14:02Z<p>You can't do this in plain CSS -- you will have to reimplement the scrolling using your Javascript UI library of choice to get what you want.</p>
<p>The user state of the scrollbar isn't used when printing (think about it, if you're scrolled 3 screens down a page and hit "print" does it make sense for the browser to only print the part of the document that's in your window at the time?). However, if you use JS, which actually manipulates the DOM (i.e. sets the x-position offset to -293 if the person has scrolled right 293 pixels, just like <code>style="left: -293px; overflow: hidden;"</code> in CSS), then it will show up as such in printed documents.</p>
<p>My suggestion is, unless the graphs are <em>very</em> wide, just skip all of this nonsense and use a printer stylesheet with <code>width: 100%</code> for the graph's <code><div></code> so the graph just shrinks to page width.</p>
http://stackoverflow.com/questions/235558/how-do-i-stop-bots-from-incrementing-my-file-download-counter-in-php/235609#2356092Answer by joelhardi for How do I stop bots from incrementing my file download counter in PHP?joelhardi2008-10-24T23:37:59Z2008-10-24T23:37:59Z<p>Godeke is right, robots.txt is the first thing to do to keep the bots from downloading.</p>
<p>Regarding the counting, this is really a web analytics problem. Are you not keeping your www access logs and running them through an analytics program like <a href="http://www.webalizer.com/" rel="nofollow">Webalizer</a> or <a href="http://awstats.sourceforge.net/" rel="nofollow">AWStats</a> (or fancy alternatives like Webtrends or Urchin)? To me that's the way to go for collecting this sort of info, because it's easy and there's no PHP, redirect or other performance hit when the user's downloading the file. You're just using the Apache logs that you're keeping anyway. (And <code>grep -c</code> will give you the quick 'n' dirty count on a particular file or wildcard pattern.)</p>
<p>You can configure your stats software to ignore hits by bots, or specific user agents and other criteria (and if you change your criteria later on, you just reprocess the old log data). Of course, this does require you have all your old logs, so if you've been tossing them with something like <code>logrotate</code> you'll have to start out without any historical data.</p>
http://stackoverflow.com/questions/235504/validating-crontab-entries-w-php/235569#2355694Answer by joelhardi for Validating Crontab Entries w/ PHPjoelhardi2008-10-24T23:12:57Z2008-10-24T23:12:57Z<p>Hmmm, interesting problem.</p>
<p>If you're going to really validate it, regex isn't going to be enough, you'll have to actually parse the entry and validate each of the scheduling bits. That's because each bit can be a number, a month/day of the week string, a range (2-7), a set (3, 4, Saturday), a Vixie cron-style shortcut (60/5) or any combination of the above -- any single regex approach is going to get very hairy, fast.</p>
<p>Just using the <code>crontab</code> program of Vixie cron to validate isn't sufficient, because it actually doesn't validate completely! I can get <code>crontab</code> to accept all sorts of illegal things.</p>
<p>Dave Taylor's Wicked Cool Shell Scripts (<a href="http://books.google.com/books?id=Df7P1WyG87sC&pg=PA147&lpg=PA147&source=web&ots=duLswqHFGM&sig=CIGfV56qkKVAGnz17zF76JmFhgQ&hl=en&sa=X&oi=book_result&resnum=1&ct=result#PPA147" rel="nofollow">Google books link</a>) has a sh script that does partial validation, I found the discussion interesting. You might also use or adapt the code.</p>
<p>I also turned up links to two PHP classes that do what you say (whose quality I haven't evaluated):</p>
<ul>
<li><a href="http://www.phpclasses.org/browse/package/1189.html" rel="nofollow">http://www.phpclasses.org/browse/package/1189.html</a></li>
<li><a href="http://www.phpclasses.org/browse/package/1985.html" rel="nofollow">http://www.phpclasses.org/browse/package/1985.html</a></li>
</ul>
<p>Another approach (depending on what your app needs to do) might be to have PHP construct the crontab entry programatically and insert it, so you know it's always valid, rather than try to validate an untrusted string. Then you would just need to make a "build a crontab entry" UI, which could be simple if you don't need really complicated scheduling combinations.</p>
http://stackoverflow.com/questions/232409/learning-experiences-for-young-developers/232653#2326530Answer by joelhardi for Learning experiences for young developersjoelhardi2008-10-24T06:35:05Z2008-10-24T06:35:05Z<p>Internships are mostly for gathering work experience and recommendations so you can get your first "real" job.</p>
<p>It's a huge plus if you love the internship and learn a lot. But, the real point is just showing up on time, working hard, finishing your tasks on deadline, showing you can work well in a team, and getting the recs/references to show it. It's almost better if your internship isn't perfect, because you can show you can focus on finishing projects and the company's goals even when they don't totally float your boat.</p>
<p>Leaving a job after just a few months isn't necessarily the worst black mark on your resume (sometimes things just don't fit), but leaving an <em>internship</em> early would be a pretty big red flag if I were the hiring manager. To me, that suggests you can't handle adversity or work with others, or hold some ubernerdy principle (they say they're doing AOP but they aren't really doing AOP!) above actual business goals like shipping product. Honestly, only something totally out of bounds really explains leaving a <6-month internship early, like a personal/family emergency or your boss sexually harassing you. Chances are that every place you work will do zillions of things wrong (even places like Google aren't all they're cracked up to be), it's important to think positive and focus on achieving goals.</p>
<p>The great thing about an internship is it <em>does</em> end after a few months, even if the experience totally sucks, you can make the most of it and know you'll be outta there soon enough and part on good terms. And I wouldn't worry about having your neural pathways somehow tainted by bad methodologies, if you've got a critical mind you'll recognize things like that and move on. There's always something to learn, even if it's just a bunch of counter-examples of bad practice you can use in your next job to argue your way out of doing something stupid <em>again</em>.</p>
<p>Get the best internship your qualifications/connections can get you and move up from there.</p>
http://stackoverflow.com/questions/231478/ajax-subdomains-and-ssl/231706#2317067Answer by joelhardi for AJAX, Subdomains, and SSLjoelhardi2008-10-23T21:57:06Z2008-10-23T23:13:06Z<p>With plain-http AJAX: You are talking about doing cross-domain XMLHttpRequest, which is not permitted by browsers. There's a <a href="https://wiki.mozilla.org/Cross_Site_XMLHttpRequest" rel="nofollow">W3C proposal pending</a> to implement this in a secure way in the future (partially implemented by IE8, IIRC), but it's definitely not possible at present.</p>
<p>There are, however, workarounds for doing it securely: <a href="http://www2007.org/program/paper.php?id=801" rel="nofollow">Subspace</a> (which uses iframes and <code>document.domain</code>), the <a href="http://softwareas.com/cross-domain-communication-with-iframes" rel="nofollow">fragment identifier technique</a> (again, uses iframes) and <a href="http://www.sitepen.com/blog/2008/07/22/windowname-transport/" rel="nofollow"><code>window.name</code> technique</a> (again, iframes!).</p>
<p>As far as SSL goes, you can buy separate certificates for the domain and subdomain, or a single wildcard (*.foo.com) cert that covers them both (naturally, the wildcard cert will be more expensive).</p>
<p>If you have an HTTPS page that requests items from other domains, all will be well as long as everything is HTTPS. That means that if you use one of the iframe workarounds, you have to specify an <code>https://</code> scheme URL in the <code>src</code> attribute of the iframe.</p>
<p>A final, less efficient, workaround is to have a script on <code>https://foo.com</code> that proxies requests to insecure <code>http://bar.foo.com</code>. (This also solves the XHR cross-domain problem, so you can ignore the other workarounds.) Of course, that means you're sending the XHR request to <code>https://foo.com/someurl</code>, it's then hitting <code>http://bar.foo.com/someurl</code>, receiving the response and sending it back to the browser, so performance-wise you're much better off just moving the server-side functionality of bar.foo.com onto foo.com, if you have that option. But if you can't move the server script, then proxying is the way to go.</p>
<p><strong>EDIT:</strong> I changed the last 3 grafs after doing some extra testing and getting an iframe AJAX workaround (the #fragmentidentifier one) to work across different HTTPS domains. You <em>can</em> do SSL cross-domain AJAX using iframes as long as everything is <code>https</code> and the <code>https</code> scheme is used in the iframe <code>src</code>. Summarizing:</p>
<ol>
<li>Short answer: no, true cross-domain XHR not allowed</li>
<li>Workaround with
iframes: more efficient, need 2 SSL
certs (or wildcard cert), somewhat
complicated</li>
<li>Workaround with proxy:
less efficient, can do with 1 or 2
SSL certs (1 with backend request to bar.foo.com via http), somewhat complicated</li>
</ol>
http://stackoverflow.com/questions/215297/how-to-define-content-management/215494#2154948Answer by joelhardi for How to define Content Managementjoelhardi2008-10-18T19:44:15Z2008-10-18T19:44:15Z<p>Panos has already given a good definition. You can check out <a href="http://www.cmswatch.com/ECM/Report/Vendors/" rel="nofollow">CMSWatch's current reports</a> to get a sense of what kinds of products are considered ECMSes. Open source examples would be things like <a href="http://www.alfresco.com/" rel="nofollow">Alfresco</a>, <a href="http://www.bricolage.cc/" rel="nofollow">Bricolage</a> and <a href="http://www.opencms.org/" rel="nofollow">OpenCMS</a>, which you can take a look at to get a feel for what this space does.</p>
<p>We are talking about "real" traditional CMSes, like Documentum, Vignette, Filenet etc. The "E" in ECMS really came about because all sorts of low-end portal-ware/intranet applications like Drupal or Sharepoint (which you mentioned) started calling themselves CMSes, so the big original CMS companies needed to come up with another name for their products. (Aside: OK, I know Microsoft discontinued its Content Management Server product and made Sharepoint into more of a "real" ECMS, but it's still more intranet/collaborationware than ECMS to me).</p>
<p>The difference between something like Drupal and an ECMS is that Drupal has lots of "websitey" features (it is its own front-end web application, it has a search function, it allows users to register and comment) that an ECMS does not, while it lacks robust content-management features like structured content, workflow, versioning, asset/document management and metadata. (Drupal does have simplistic versions of most of these features, for instance structured content via CCK, but real ECMS is in another league.) An ECMS is almost never a front-end web application that public site visitors connect to (instead, it publishes to a separate web server) -- but an ECMS vendor might have other products, like a portal product, search product, user registration manager, ad manager that you would use for these features on a website, so if that's your goal it often makes sense to buy several of these products from one company.</p>
<p>For intance your fancy ECMS might run on Windows Server, be written in .NET (you can't touch the core code but you can write scripts and plugins in VB/C#), and use an Oracle database, but publish a mixture of HTML and PHP pages to a cluster of Linux/Apache web servers, while you have a Google appliance or Lenya or some other product handle search.</p>
<p>An example of an ECMS would be the editorial system for a newspaper. Lots of writers, editors, photo editors, page designers, ad designers, ad reps who take classified ads over the phone can log in and edit stories, work on photos and pages, and everything is versioned and flows from person to person with workflow rules and changes tracked. Wire service copy and photos flow in automatically through a connector. Reporters and editors' notes and all sorts of other metadata are integrated and everything lives happily in a database. You may have hundreds or thousands of employees and they all need to be able to log in and do "their" work easily, with security and workflow rules so they only see the things they work on and the system is customized to each user's needs. One output vector (possibly the most important one) is to publish to a website using all sorts of automated rules, but it doesn't have to be one or the only one.</p>
<p>Of course there are different products and some of them focus more on web publishing (or document/asset management, or intranet/collaboration à la Notes or Sharepoint) than others -- think of my description as sort of a generalization focused on content-publishing-centric companies.</p>
http://stackoverflow.com/questions/211243/how-to-build-large-mysql-insert-query-in-php-without-wasting-memory/214794#2147942Answer by joelhardi for How to build large MySQL INSERT query in PHP without wasting memoryjoelhardi2008-10-18T09:06:43Z2008-10-18T09:13:05Z<p>You have two issues here:</p>
<p>#1, there are several different ways you can compute the MD5 hash:</p>
<ul>
<li>Do as you do and load into PHP as a string and use PHP's <code>md5()</code></li>
<li>Use PHP's <code>md5_file()</code></li>
<li>As of PHP 5.1+ you can use PHP's streams API with either of <code>md5</code> or <code>md5_file</code> to avoid loading entirely into memory</li>
<li>Use <code>exec()</code> to call the system's <code>md5sum</code> command</li>
<li>Use MySQL's <code>MD5()</code> function to compute the hash</li>
</ul>
<p>Since these are all trivial to implement it would be easy for you to implement and benchmark them all for memory usage and speed. Here are <a href="http://www.php.net/manual/en/function.md5-file.php#81751" rel="nofollow">some benchmarks</a> showing system md5 via <code>exec</code> to be a lot faster than PHP's <code>md5_file</code> as file size increases. Doing it your way is definitely the worst way as far as memory usage is concerned.</p>
<p>#2, <code>mysql_real_escape_string</code> performs a database query, so you're actually transmitting your blob data to the database, getting it back as a string, and transmitting it again(!) with the INSERT query. So it's traveling to/from the DB server 3x instead of 1x and using 2x the memory in PHP.</p>
<p>It's going to be more efficient to use <a href="http://devzone.zend.com/node/view/id/686#Heading11" rel="nofollow">PHP5 prepared statements</a> and only send this data to the database once. Read the linked article section, you'll see it mentions that when you are binding parameters, you can use the blob type to stream blob data to the DB in chunks. The <a href="http://www.php.net/manual/en/mysqli-stmt.send-long-data.php" rel="nofollow">PHP docs for <code>mysqli_stmt::send_long_data</code></a> have a great simple example of this that INSERTs a file into a blob column just like you are.</p>
<p>By doing that, and by using either the streams API, <code>md5_file</code> or <code>exec</code> with the system md5 command, you can do your entire INSERT without ever loading the entire file into memory, which means memory usage for your series of operations can be as low as you want!</p>
http://stackoverflow.com/questions/203543/is-it-necessary-in-any-circumstance-to-modify-wordpress-other-than-writing-plugin/203662#2036624Answer by joelhardi for Is it necessary in any circumstance to modify Wordpress other than writing plugins and themes?joelhardi2008-10-15T03:43:30Z2008-10-15T03:43:30Z<p>Well, it is a bad idea only in that it means you are now responsible for maintaining an internal defacto fork ... every time WordPress releases an update, you have to do a three-way diff to merge your changes into the new "real" WordPress. (Three-way diff means you do a diff between your fork of the old version and the standard old version to build a patch set, then apply that patch set to the new version.) You should also be using a VCS yourself to keep yourself sane.</p>
<p>If you aren't up to this then you aren't up to it, there's nothing wrong with following the KISS principle and not mucking up the application code.</p>
<p>If you can write a plugin that does the same thing and does it just as efficiently, then you should do that so you don't have to maintain your own fork.</p>
<p>However, there are a lot of things WordPress is terrible at (efficiency, security) that you can ameliorate (sometimes without much work, just by disabling code you don't need) only by hacking the application code. WordPress is dirty legacy spaghetti code originally written by people with virtually zero knowledge of software or database design, and it does a lot of tremendously stupid things like querying the database <em>on every request</em> to see what it's own <code>siteurl</code> is, when this never changes -- there's nothing wrong with taking 5 minutes to change 2 lines of code so it doesn't do this any more.</p>
<p>I worked as tech lead on a then-top-20 Technorati-ranked blog and did a lot of work to scale WordPress on a single server and then onto a cluster (with separate servers for admin vs. public access). We had upstream reverse proxies (i.e. Varnish or Squid) acting as HTTP accelerators and an internal object/page fragment cache system that plugged into memcached with failover to filesystem caching using PEAR::Cache_Lite. We had to modify WordPress to do things like send sane, cache-friendly HTTP headers, to disable a lot of unnecessary SQL and processing.</p>
<p>I modified WP to run using MySQL's memory-only NDB cluster storage engine, which meant specifying indexes in a lot of queries (in the end we opted for a replicated cluster instead, however). In modifying it to run with separate servers for admin vs. public access, we locked down the public-side version so it ran with much reduced MySQL privileges allowing only reads (a third MySQL user got commenting privileges).</p>
<p>If you have a serious comment spam problem (i.e. 10K/hour), then you <em>have</em> to do something beyond plugins. Spam will DOS you because WordPress just initializing its core is something like half a second on a standalone P4 with no concurrency, and since WP is a code hairball there's no way to do anything without initializing the core first.</p>
<p>"WP-Cron" is braindead and should be disabled if you have access to an actual crontab to perform these functions. Not hard to do.</p>
<p>In short, I could go on forever listing reasons why you might want to make modifications.</p>
<p>Throughout this it was of course a goal for maintainability reasons to keep these modifications to a minimum and document them as clearly as possible, and we implemented many as plugins when it made sense.</p>
http://stackoverflow.com/questions/181898/apache-lighttpd-front-proxy-concept/185631#1856315Answer by joelhardi for apache + lighttpd front-proxy conceptjoelhardi2008-10-09T01:48:01Z2008-10-09T01:48:01Z<p>Running Lighttpd <em>behind</em> Apache to serve static files certainly seems braindead to me. Apache still has to unpack the HTTP packets and parse the request through its parse tree, send proxy requests, and then Lighttpd has to re-unpack, hit the filesystem and send the files back through Apache. I've never heard of anyone using a setup like this in production.</p>
<p>What you will see, is people using a lightweight webserver like <a href="http://nginx.net/" rel="nofollow">Nginx</a> as a <em>frontend</em> server to serve static files and proxy dynamic URLs to Apache. Or, you can run <a href="http://varnish.projects.linpro.no/" rel="nofollow">Varnish</a> or <a href="http://www.squid-cache.org/" rel="nofollow">Squid</a> as a caching reverse proxy frontend, so that all your high-traffic static files (i.e. images, CSS etc. <em>and</em> any dynamic pages you're willing to send cache-friendly headers for) are served out of memory.</p>
<p>Apache can also be optimized to serve static files -- so often when I hear people complain about Apache, they really don't know how to configure it. They've only ever used the prefork MPM (vs. threaded or worker) and have all sorts of modules enabled (usually they're running from a Linux distribution's kitchen-sink Apache package that builds everything as modules and defaults to enabling 10-20 modules or more). Tune Apache by turning off unneeded modules/stupid features like support for .htaccess (which makes Apache scan the filesystem on every request!) first. (You can also run two instances of Apache, with a "light" Apache as frontend that proxies to a "heavy" Apache for dynamic requests ... maybe your frontend is threaded but your backend is prefork because you have to run thread-unsafe external modules like mod_php.)</p>
<p>Re:</p>
<blockquote>
<p>Since you still have an apache process
spawned for every request that comes
in, how does this positively impact
the load? From what I can see the size
of the Apache process proxying its
request through lighttpd is as large
as it would be if it were serving the
file itself.</p>
</blockquote>
<p>If you're spawning processes on every request, then that means you're using the prefork MPM. Keep in mind that when the OS reports memory usage for each of these processes, not all that memory is wired, a lot of those processes are idle. And when you're talking about speed, you're concerned more with request parsing and internal code branches for a given request (how much processing is the server doing?) than with memory usage reported by the OS.</p>
<p>For example, if you enable something like mod_php, then each of those worker processes is going to instantly go up by about 20-40M (depending on what's enabled in your PHP interpreter), but that doesn't mean Apache is using that memory on static requests. Of course if you're optimizing your server for maximum concurrency on small static files, then enabling mod_php would still be very bad, you're not going to be able to fit nearly as many prefork processes into RAM.</p>
<p>I probably could come up with a "nightmare configuration" for Apache that <em>would</em> make it actually slower serving static files than proxying those requests to a backend Lighttpd, but it would involve enabling expensive features like .htaccess in Apache that are disabled in Lighttpd, so it wouldn't really be fair.</p>
http://stackoverflow.com/questions/176013/what-do-you-recommend-for-setting-up-a-shared-server-with-php/182185#1821855Answer by joelhardi for What do you recommend for setting up a shared server with phpjoelhardi2008-10-08T11:11:16Z2008-10-08T11:17:12Z<p>Personally, while Lighttpd is OK, I would go with Nginx + FastCGI if you end up going with a lightweight webserver + FastCGI solution. I've run benchmarks and read all the code, and Nginx is an order of magnitude faster/more stable under load -- it's very good.</p>
<p>But, that's not what you asked. Essentially, I would say there's a spectrum of security/scaleability vs. speed tradeoffs in the three options you list, and you just need to decide where you want to be. If you're a shared hosting provider with untrusted users installing god-knows-what PHP apps you'll lean more toward security, if this is shared amongst more trusted users you might lean toward performance. Here are my thoughts:</p>
<p><strong>CGI + suexec:</strong> This is by far the most secure, and most efficient/scaleable for you in terms of numbers of users/sites in a shared hosting environment. Processes are spawned and memory used only as requests come in. Of course, the CGI-spawning makes this the slowest for execution time of individual scripts. How much slower? Well you would have to benchmark, but generally if people are running long-running apps (i.e. something like WordPress which takes 0.25-0.5 seconds just to load its libs and initialize on each request), then the CGI-spawning penalty starts to look pretty negligible in context.</p>
<p><strong>FastCGI:</strong> The issue here (and it doesn't matter if your webserver is Apache, Lighttpd or Nginx) is figuring out how many FCGI child processes you let each user leave running, because each process eats memory equal to the size of the PHP interpreter (in Linux not all of it is wired of course, but I digress). And, unlike mod_php, these processes aren't shared among users so you have to limit per user. For instance, Dreamhost caps this at 3 for their customers -- now, for a customer running a website that gets bursts of more than 2-5 page views a second, that's actually pretty bad because those requests just stack up and the site hangs. Now, I like FastCGI with a lightweight webserver when I'm running apps on a <em>dedicated</em> server/cluster, when I can give the app hundreds of FCGI children (all with webserver privs of course, à la Apache/prefork + mod_php). But, I don't think it makes sense for shared hosting where you have to allocate/cap the FCGI children per user.</p>
<p><strong>Apache + mod_php:</strong> Least secure since everything running with webserver privs, but your pool of live PHP processes is shared so it's best on the performance end. From a developer perspective, I can't tolerate php_safe mode, and from a sysadmin perspective it's really only an illusion of security (it mitigates against stupid users but doesn't protect from an actual attack) so I would actually rather have CGI if my other option has to include safe_mode.</p>
<p>Dreamhost does sort of a hybrid, they do Apache CGI + suexec by default, but let the (small) percentage of their more users who are sophisticated elect to do FCGI if they want to, subject to a cap and their own monitoring of memory usage. That saves a ton of memory resources versus enabling FCGI for everyone by default.</p>
<p>Another issue if you're talking about standard commercial shared hosting is, Apache is full-featured, has modules for just about anything (including stuff like mod_security you might want), and your users will like it because all their .htaccess configs will work etc. -- you will run into support headaches with anything else when they go to install Drupal or WordPress or whatever (a lot less of an issue if we're talking internal users).</p>
<p>Personally I would recommend just keeping it simple to start and going with CGI + suexec for best security and scaleability. If your users want FCGI or mod_php and you have a good channel open for suggestions/communication with them, they'll ask for it, but either of these are a much bigger headache for you with only marginal performance improvements for them, so my suggestion would be to not do either of them initially but be responsive if they clamor for it.</p>
<p>I do sympathize with the desire to do something "interesting" like Lighttpd + FCGI instead of the standard Apache + CGI + suexec, but I deep down I really can't recommend it.</p>
<p>If you're running multiple servers, you could end up putting CGI on some and something else for the power users on the others. And be sure to have cron grep all the www dirs for things like old-ass versions of phpBB!</p>
http://stackoverflow.com/questions/171044/creating-a-stage-environment-on-network-with-port-80-blocked/171185#1711851Answer by joelhardi for Creating a stage environment on network with port 80 blockedjoelhardi2008-10-04T23:29:49Z2008-10-04T23:29:49Z<blockquote>
<p>What I'd like is for the costumer to
type
<a href="http://myaddress.com/hello/there?a=1&b=2" rel="nofollow">http://myaddress.com/hello/there?a=1&b=2</a>
and it get translated to
<a href="http://mylocalserver.com:8080/hello/there?a=1&b=2" rel="nofollow">http://mylocalserver.com:8080/hello/there?a=1&b=2</a>
and back again to the costumer on a
transparent way.</p>
</blockquote>
<p>I believe this is the Apache RewriteRule you're looking for to redirect any URL:</p>
<pre><code>RewriteRule ^(.*)$ http://mylocalserver.com:8080$1 [R]
</code></pre>
<p>From then on the customer will be browsing <code>mylocalserver.com:8080</code> and that's what they'll see in the address bar. If what you mean by "and back again" is that they still think they're browsing <code>myaddress.com</code>, then what you're talking about is a rewriting proxy server.</p>
<p>By this, I mean you would have to rewrite all URLs not only in HTTP headers but in your HTML content as well (i.e. do a regex search/replace on the HTML), and decode, rewrite and resend all GET, POST, PUT data, too. I once wrote such a proxy, and let me tell you it's not a trivial exercise, although the principle may seem simple.</p>
<p>I would say, just be happy if you can get the redirect to work and let them browse <code>mylocalserver.com:8080</code> from that point on.</p>
http://stackoverflow.com/questions/170152/prevent-users-from-starting-multiple-accounts/170209#1702099Answer by joelhardi for Prevent users from starting multiple accounts?joelhardi2008-10-04T12:03:04Z2008-10-04T12:03:04Z<p>I'm assuming you're talking about a free service? I can't think of any ways that don't either have serious drawbacks or would be trivial to defeat. Things like setting a cookie, requiring a unique e-mail address are easy to defeat.</p>
<p>Requiring a unique IP address is not foolproof but might work to some degree, up to the point that you have lots of users and get complaints from people behind proxies.</p>
<p>The best ways are to charge money or require people provide some kind of personal information, like real name/phone/address that you verify, or a CC number, but that's invasive (then again maybe you only want serious users who are willing to provide this sort of info).</p>
<p>I guess I would turn the question around and ask "Why don't you want to let people have multiple accounts?"</p>
<p>There may be some other ways of mitigating whatever your underlying reason is, i.e. if you're worried about lots of orphaned blogs you could scan for a period of inactivity and disable them or at least schedule them to be looked at by a human. If you're worried about spam blogs you could periodically scan all blog content for spammy stuff. If you're worried about bots and are using some generic software like WordPress, change the names of the form variables and otherwise protect your forms from bots.</p>
<p>Definitely think of other ways of dealing with the problem, because you are not going to be able to block people from registering multiple accounts if it's a typical free service like Blogger.</p>
<p>As for detecting multiple accounts by one person, the first thing you need to do is have a log file store complete data on every user login (username, timestamp, IP, user-agent etc.), that you can then analyze later. I'll list a few things to look out for, but just by poring over the log file you will likely discover other patterns. Some ideas of things to look for are:</p>
<ul>
<li>Set a tracking cookie (i.e. random hash) and log its value on login, look for multiple logins from the same cookie value</li>
<li>Logins from same IP address/user-agent combination</li>
<li>Logins from same IP address only (less reliable than the previous two bullets)</li>
<li>Accounts with email addresses from free webmail services (Gmail etc.)</li>
<li>Accounts with same password</li>
</ul>
<p>If you're worried about spam blogs, you could try doing some analysis of blog content, i.e. extract all the <code><a href></code>s and look for correlations between blogs. You could run the blog content itself though something like SpamAssassin or otherwise filter for spammy words like "viagra" and "rolex."</p>
http://stackoverflow.com/questions/161994/is-there-any-way-to-determine-the-amount-of-time-a-client-spends-on-a-web-page/162136#1621360Answer by joelhardi for Is there any way to determine the amount of time a client spends on a web pagejoelhardi2008-10-02T13:02:49Z2008-10-02T13:02:49Z<p>This kind of metric was actually pretty popular several years ago, before PCs got more powerful and tabbed browsers became popular, and it became harder to measure as accurately. The standard way to do it in the past was to assume people are usually just loading one page at a time, and just use server log data to determine the time between page views. Your standard analytics vendors like Omniture and Urchin (now Google Analytics) calculate this.</p>
<p>Normally, you set a tracking cookie to be able to identify a specific person/browser over time, but in the short term you can just use an IP address/user-agent combo.</p>
<p>So, basically you just crunch the log data and count the delta between to page views as how long the person was on the page. You set some rules (or your analytics vendor does this behind the curtain) like discarding/truncating times beyond some cutoff (say 10 minutes) where you assume the person wasn't actually reading but left the page open in a window/tab.</p>
<p>Is this data perfect? Obviously not. But you just need enough "good enough" data to do statistical analysis and draw some conclusions.</p>
<p>It's still useful for longitudinal analysis (readers' habits over time) and qualitative comparison between different pages on your site. (i.e. between two 700-word articles, if one has a mean reading time twice as long as the other, then more people are actually reading the first article.) Of course, your site has to be busy enough to have enough data points for statistically sound analysis after you throw out all the "bad" outlier data points.</p>
<p>Yes, you could use Javascript to send keep-alives to improve the data. You could just poll at given intervals after document.onload or set mouseover events on sections of your pages.</p>
<p>Another technique is to use Javascript to add an onclick event to every <code><a href></code> that hits your server. Not only do you then know when someone clicks a link to take them off your site, really sophisticated "hotspot" analysis looks at the fact that if someone clicked a link 6 paragraphs down a page, then they must have read that far.</p>
http://stackoverflow.com/questions/160376/why-move-your-javascript-files-to-a-different-main-domain-that-you-also-own/160538#16053819Answer by joelhardi for Why move your Javascript files to a different main domain that you also own?joelhardi2008-10-02T01:53:33Z2008-10-02T01:59:48Z<p>Your follow-up question is essentially: Assuming a popular website is using a CDN, why would they use their own TLD like imwx.com instead of a subdomain (static.weather.com) or the CDN's domain?</p>
<p>Well, the reason for using a domain they control versus the CDN's domain is that they retain control -- they could potentially even change CDNs entirely and only have to change a DNS record, versus having to update links in 1000s of pages/applications.</p>
<p>So, why use nonsense domain names? Well, a big thing with helper files like .js and .css is that you want them to be cached downstream by proxies and people's browsers as much as possible. If a person hits gmail.com and all the .js is loaded out of their browser cache, the site appears much snappier to them, and it also saves bandwidth on the server end (everybody wins). The problem is that once you send HTTP headers for really aggressive caching (i.e. cache me for a week or a year or forever), these files aren't ever reliably loaded from the server any more and you can't make changes/fixes to them because things will break in people's browsers.</p>
<p>So, what companies have to do is stage these changes and actually change the URLs of all of these files to force people's browsers to reload them. Cycling through domains like "a.imwx.com", "b.imwx.com" etc. is how this gets done.</p>
<p>By using a nonsense domain name, the Javascript developers and their Javascript sysadmin/CDN liaison counterparts can have their own domain name/DNS that they're pushing these changes through, that they're accountable/autonomous for.</p>
<p>Then, if any sort of cookie-blocking or script-blocking starts happening on the TLD, they just change from one nonsense TLD to kyxmlek.com or whatever. They don't have to worry about accidentally doing something evil that has countermeasure side effects on all of *.google.com.</p>
http://stackoverflow.com/questions/224065/is-there-a-entity-attribute-value-eav-framework-out-there-for-php-mysql/253123#253123Comment by joelhardi on Is there a Entity Attribute Value (EAV) framework out there for PHP/MySQL?joelhardi2009-03-28T01:50:28Z2009-03-28T01:50:28ZIt <i>is</i> horrible for performance. eZ Publish does several levels of caching to make this workable (the "content classes" and content itself are only reread/joined from the db when they've changed) but it's still slower than either a relational structure or native object store like BigTable.http://stackoverflow.com/questions/258397/php-automatically-get-variables/258405#258405Comment by joelhardi on PHP Automatically "GET" Variablesjoelhardi2008-11-03T12:06:17Z2008-11-03T12:06:17Z@Alnitak, OK, I dug up a talk that explains all sorts of $_REQUEST attacks more eloquently than I. :) <a href="http://www.slideshare.net/ZendCon/lesser-known-security-problems-in-php-applications-presentation" rel="nofollow">slideshare.net/ZendCon/…</a>http://stackoverflow.com/questions/258397/php-automatically-get-variables/258405#258405Comment by joelhardi on PHP Automatically "GET" Variablesjoelhardi2008-11-03T11:54:40Z2008-11-03T11:54:40Z@zuk1, it was enabled by default in PHP4, and lots of (bad) apps depended on it being turned on. PHP5 changed to off by default, but some hosts turn it back on for compatibility with the (bad) apps. Easier for them to do that than deal with customers like you asking them why my apps stopped working.http://stackoverflow.com/questions/258397/php-automatically-get-variables/258405#258405Comment by joelhardi on PHP Automatically "GET" Variablesjoelhardi2008-11-03T11:50:16Z2008-11-03T11:50:16ZTo be more specific than "bad smell" (hate SO comment character limit), $_REQUEST is subject to XSS attacks, since cookies can be set client-side.http://stackoverflow.com/questions/258397/php-automatically-get-variables/258405#258405Comment by joelhardi on PHP Automatically "GET" Variablesjoelhardi2008-11-03T11:46:39Z2008-11-03T11:46:39ZIt is better to use $_GET and not $_REQUEST ... $_REQUEST isn't as bad as register_globals but it still gives a bad smell. He knows he's using a URL var and presumably doesn't want cookies or POST parameters changing his view mode, so he should use $_GET, not $_REQUEST.http://stackoverflow.com/questions/254791/so-tags-dash-camel-back-or-underscore-singular-or-allowing-plural/254800#254800Comment by joelhardi on SO Tags: dash, camel back or underscore, singular or allowing plural?joelhardi2008-10-31T20:35:28Z2008-10-31T20:35:28ZAnd I'd suggest that beyond SO, in the whole blogosphere/folksonomy world of "tagging," the convention is for tags to be caseless (i.e. lowercase). Because we should also strive for some level of interoperability with tag aggregators like Technorati, and therefore with bloggers' standards.http://stackoverflow.com/questions/253075/how-to-find-files-with-m-from-linux-using-cshComment by joelhardi on How to find files with ^M from linux using cshjoelhardi2008-10-31T10:51:47Z2008-10-31T10:51:47ZIf you want to easily remove all of these DOS carriage returns, just run "dos2unix" on a file or wildcard.http://stackoverflow.com/questions/252865/no-indexes-on-small-tables/252904#252904Comment by joelhardi on No indexes on small tables?joelhardi2008-10-31T09:45:01Z2008-10-31T09:45:01ZThat makes sense ... row data is stored in leaf nodes of the clustered index, so SQL is searching over the same pages with an index lookup or table scan (roughly speaking). I was answering more generally -- nonclustered indexes on non-PK columns that enable a b-tree lookup in place of a linear scan.http://stackoverflow.com/questions/249103/ie7-and-the-css-table-cell-property/249121#249121Comment by joelhardi on IE7 and the CSS table-cell propertyjoelhardi2008-10-30T02:30:31Z2008-10-30T02:30:31ZIf you are doing block-level elements of some kind, you could set them to float "float: left" so in Firefox they will stack up next to each other instead of in rows. Or "display: inline-block" might work here, but in IE7 it can only be used on elements that would normally be inline, like a or em.http://stackoverflow.com/questions/249103/ie7-and-the-css-table-cell-property/249121#249121Comment by joelhardi on IE7 and the CSS table-cell propertyjoelhardi2008-10-30T02:27:50Z2008-10-30T02:27:50ZCool, what does the markup look like?http://stackoverflow.com/questions/242066/how-can-i-validate-large-numbers-of-files-with-search-and-replaceComment by joelhardi on How can I validate large numbers of files with search and replace?joelhardi2008-10-28T05:42:03Z2008-10-28T05:42:03ZQuestions ... Are you using GNU sed or some other sed, like BSD? (You can do "man sed" to see which one is on your system.) Are you trying to validate as HTML, i.e. <img ... >, or XHTML, i.e. <img ... /> ?http://stackoverflow.com/questions/241976/can-i-register-more-than-one-shutdown-function-in-php/241979#241979Comment by joelhardi on Can I Register more than one shutdown function in PHP?joelhardi2008-10-28T02:36:00Z2008-10-28T02:36:00ZFYI, someone figured out the order they are executed at shutdown (as well as the order of any __destruct methods defined), if that interests you: <a href="http://www.php.net/manual/en/language.oop5.decon.php#76710" rel="nofollow">php.net/manual/en/…</a>http://stackoverflow.com/questions/238996/wrapping-a-label-element-within-a-legend-element/239190#239190Comment by joelhardi on Wrapping a label element within a legend elementjoelhardi2008-10-27T19:03:17Z2008-10-27T19:03:17ZCool, glad it was helpful ... I just wasn't sure without the </fieldset> if there were any more fields or not. I, too, find myself tempted to abuse HTML elements from time to time. :)http://stackoverflow.com/questions/239171/whats-the-cleanest-way-to-convert-a-5-7-digit-number-into-xxx-xxx-xxx-format-in/239218#239218Comment by joelhardi on Whats the cleanest way to convert a 5-7 digit number into xxx/xxx/xxx format in php?joelhardi2008-10-27T09:18:04Z2008-10-27T09:18:04ZWell, I didn't claim it was one command! It computes an integer sum, uses number_format() to insert '/' as thousands separator, and strips the leading 2 characters. Readable except for number_format() having obscure syntax, and very little computation ... Adam's version is faster though.http://stackoverflow.com/questions/231862/how-can-i-have-mysql-write-outfiles-as-a-different-user/232022#232022Comment by joelhardi on How can I have MySQL write outfiles as a different user?joelhardi2008-10-24T03:20:38Z2008-10-24T03:20:38ZI <i>think</i> what Bill is getting at is that you have to have write permission on the containing dir to be able to delete a file in UNIX (b/c it updates the dir listing). So "chgrp mysql" the dir and "chmod ug+rwX" it to give your mysql-group user write perms on the dir.