User Ken - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T07:32:22Zhttp://stackoverflow.com/feeds/user/20074http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/370432/div-collapse-after-float-css/1770867#17708672Answer by Ken for Div collapse after float cssKen2009-11-20T14:42:30Z2009-11-20T14:42:30Z<p>Add width and overflow to your container:</p>
<pre><code>div#nav { width: 100%; overflow:auto; }
</code></pre>
http://stackoverflow.com/questions/388595/why-use-deflate-instead-of-gzip-for-text-files-served-by-apache6Why use deflate instead of gzip for text files served by Apache?Ken2008-12-23T10:40:12Z2009-10-20T17:17:04Z
<p>What advantages do either method offer for html, css and javascript files served by a LAMP server. Are there better alternatives?</p>
<p>The server provides information to a map application using Json, so a high volume of small files.</p>
<p><strong>See also <a href="http://stackoverflow.com/questions/211284/is-there-any-performance-hit-involved-in-choosing-gzip-over-deflate-for-http-co">Is there any performance hit involved in choosing gzip over deflate for http compression?</a></strong></p>
http://stackoverflow.com/questions/359099/which-implementation-of-iterator-should-i-use-in-php-and-why2Which implementation of Iterator should I use in PHP, and why?Ken2008-12-11T11:55:26Z2009-10-14T17:13:28Z
<p>I'm trying to refactor a large, old project and one thing I've noticed is a range of different Iterator implementations:</p>
<pre><code>while($iterator->moveNext()) {
$item = $iterator->current();
// do something with $item;
}
for($iterator = getIterator(), $iterator->HasNext()) {
$item = $iterator->Next();
// do something with $item
}
while($item = $iterator->fetch()) {
// do something with item
}
</code></pre>
<p>or even the <a href="http://www.php.net/~helly/php/ext/spl/" rel="nofollow">StandardPHPLibrary (SPL)</a> iterator which allows</p>
<pre><code>foreach($iterator as $item) {
// do something with $item
}
</code></pre>
<p>Having so many different Iterators (with different methods for looping over collections) seems like a strong code smell, and I'm inclined to refactor everything to SPL.
Is there a compelling advantage to any of these implementations of Iterator, or is it purely a matter of personal taste? </p>
http://stackoverflow.com/questions/308227/is-there-a-disadvantage-to-using-using-instead-of-on-in-mysql1Is there a disadvantage to using "USING" instead of "ON" in MySQL?Ken2008-11-21T08:57:41Z2009-09-29T16:25:39Z
<p>Two snippets of MySQL: </p>
<pre><code>SELECT * FROM annoyingly_long_left_hand_table
LEFT JOIN annoyingly_long_right_hand_table
ON annoyingly_long_left_hand_table.id = annoyingly_long_right_hand_table.id;
</code></pre>
<p>vs</p>
<pre><code>SELECT * FROM annoyingly_long_left_hand_table
LEFT JOIN annoyingly_long_right_hand_table
USING (id);
</code></pre>
<p>Given that both tables have an <code>id</code> field, is there any disadvantage to using the second version. It isn't just laziness - the version with USING seems far clearer to me.</p>
<p>(Please don't mention aliasing - I want to know if there is any reason to favour one conditional structure over the other)</p>
http://stackoverflow.com/questions/246215/how-can-i-list-files-with-their-absolute-path-in-linux1How can I list files with their absolute path in linux?Ken2008-10-29T09:24:03Z2009-09-15T13:15:50Z
<p>I want to generate recursive file listings with full paths </p>
<pre><code>/home/ken/foo/bar
</code></pre>
<p>but as far as I can see both ls and find only give relative path listings</p>
<pre><code>./foo/bar (from the folder ken)
</code></pre>
<p>It seems like an obvious requirement but I can't see anything in the find or ls man pages.</p>
http://stackoverflow.com/questions/337112/how-to-write-a-prototype-for-number-tofixed-in-javascript0How to write a prototype for Number.toFixed in JavaScript?Ken2008-12-03T13:33:46Z2009-09-04T15:43:06Z
<p>I need to round decimal numbers to six places using JavaScript, but I need to consider legacy browsers so I <a href="http://www.hunlock.com/blogs/The_Complete_Javascript_Number_Reference" rel="nofollow">can't rely on Number.toFixed</a> </p>
<blockquote>
<p>The big catch with toExponential, toFixed, and toPrecision is that they are fairly modern constructs not supported in Mozilla until Firefox version 1.5 (although IE supported the methods since version 5.5). While it's mostly safe to use these methods, older browsers WILL break so if you are writing a public program it's recommended you provide your own prototypes to provide functionality for these methods for older browser.</p>
</blockquote>
<p>I'm considering using something like</p>
<pre><code>Math.round(N*1000000)/1000000
</code></pre>
<p>What is the best method for providing this a prototype to older browsers?</p>
http://stackoverflow.com/questions/527526/how-to-deal-with-duplicate-code-under-linux3How to deal with duplicate code under Linux? Ken2009-02-09T09:25:50Z2009-08-23T06:25:59Z
<p>I'm looking for the best approach to dealing with duplicate code in a legacy PHP project with about 150k lines of code.</p>
<p>Is this something best approached manually or are there standalone duplicate code detectors that will ease the pain?</p>
http://stackoverflow.com/questions/205853/why-would-a-javascript-variable-start-with-a-dollar-sign6Why would a javascript variable start with a dollar sign?Ken2008-10-15T18:26:34Z2009-08-08T00:34:04Z
<p>I quite often see javascript with variables that start with a dollar sign. When/why would you choose to prefix a variable in this way?</p>
<p>(I'm not asking about $('p.foo') syntax that you see in jQuery and others, but normal variables like $name and $order)</p>
http://stackoverflow.com/questions/414034/actively-maintained-php-libraries-for-user-authentication4Actively maintained PHP libraries for user authentication?Ken2009-01-05T18:23:19Z2009-07-25T04:06:53Z
<p>I'm aware of the risks of rolling your own user authentication scripts, but I'm also wary of using packages that don't seem to be actively maintained: the <a href="http://pear.php.net/package/LiveUser/download/" rel="nofollow">current version of PEAR LiveUser</a> is almost a year old.</p>
<p>Please recommend (and argue the case for) an actively-maintained user-authentication library which can be integrated into an existing web project. It should ideally support various roles - anonymous users, registered users and administrators at various levels. </p>
http://stackoverflow.com/questions/1073111/shifting-from-windows-to-nix-programming-platform/1073219#10732191Answer by Ken for shifting from windows to *nix programming platformKen2009-07-02T08:47:08Z2009-07-02T08:47:08Z<p><a href="http://www.ubuntu.com/" rel="nofollow">Ubuntu</a> is nicely balanced, with a user friendly desktop but the potential to set up a fully functional programming environment.</p>
<p>I would advise experimenting with virtual machines - there is no reason to ditch your current setup until you've tried a few of the major distributions. <a href="http://www.vmware.com/appliances/" rel="nofollow">VMware</a> and others have a wide variety of server and desktop builds available.</p>
http://stackoverflow.com/questions/988363/how-do-you-debug-your-javascript-code/988499#9884991Answer by Ken for How do you debug your javascript code?Ken2009-06-12T19:13:02Z2009-06-12T19:13:02Z<p>My first step is always to validate the html and to check syntax with <a href="http://www.jslint.com/lint.html" rel="nofollow">JSLint</a>. If you have clean markup and valid javascript then it is time for Firebug or another debugger.</p>
http://stackoverflow.com/questions/945331/how-can-i-use-rsync-to-backup-files-changed-within-a-recent-period1How can I use rsync to backup files changed within a recent period?Ken2009-06-03T15:09:16Z2009-06-04T12:13:13Z
<p>Is it possible to specify a time range so that rsync only operates on recently changed files.</p>
<p>I'm writing a script to backup recently added files over SSH and rsync seems like an efficient solution. My problem is that my source directories contain a huge backlog of older files which I have no interest in backing up.</p>
<p>The only solution I've come across so far is doing a find with ctime to generate a --files-from file.
This works, but I have to deal with some old installations with versions of rsync that don't support --files-from.
I'm considering generating --include-from patterns in the same way but would love to find something more elegant.</p>
http://stackoverflow.com/questions/945331/how-can-i-use-rsync-to-backup-files-changed-within-a-recent-period/950062#9500622Answer by Ken for How can I use rsync to backup files changed within a recent period?Ken2009-06-04T11:55:36Z2009-06-04T11:55:36Z<p>It looks like you can specify shell commands in the arguments to rsync (see <a href="http://babel.de/art20060614a.html" rel="nofollow">Remote rsync executes arbitrary shell commands</a>)</p>
<p>so I have been able to successfully limit the files that rsync looks at by using:</p>
<pre><code>rsync -av remote_host:'$(find logs -type f -ctime -1)' local_dir
</code></pre>
<p>This looks for any files changed in the last day (-ctime -1) and then rsyncs those into local_dir.</p>
<p>I'm not sure if this feature is by design but I'm still digging into the documentation.</p>
http://stackoverflow.com/questions/871837/introducing-test-driven-development-in-php/871961#8719610Answer by Ken for Introducing Test Driven Development in PHPKen2009-05-16T08:10:48Z2009-05-16T08:10:48Z<p><a href="http://www.simpletest.org/" rel="nofollow">SimpleTest</a> - excellent documentation and explanations of testing for php</p>
http://stackoverflow.com/questions/397612/how-can-i-let-users-run-a-script-with-root-permissions4How can I let users run a script with root permissions?Ken2008-12-29T12:09:28Z2009-05-06T17:58:14Z
<p>Given the <a href="http://www.samag.com/documents/s=1149/sam0106a/0106a.htm" rel="nofollow">dangers of SUID shell scripts</a>, is there a more secure way of giving passwordless access to scripts (bash, PHP) with root permissions in Linux?</p>
<p>(Ubuntu 8.10)</p>
http://stackoverflow.com/questions/611852/how-to-avoid-magic-numbers-when-matching-an-event-keycode-in-javascript2How to avoid magic numbers when matching an event.keyCode in javascriptKen2009-03-04T18:28:46Z2009-03-05T05:33:40Z
<p>Can I avoid magic numbers when matching keypresses in javascript?</p>
<p>An example would be using <a href="http://stackoverflow.com/questions/302122/jquery-event-keypress-which-key-was-pressed">13 to match the enter key</a>.</p>
<p>I could specify my own constants, but I don't know if these values are stable enough across different platforms/browsers/locales.</p>
http://stackoverflow.com/questions/586846/cons-of-external-javascript-file-over-inline-javascript/586890#5868901Answer by Ken for Cons of external JavaScript file over inline JavaScriptKen2009-02-25T17:03:16Z2009-02-25T17:03:16Z<p>Another huge advantage to external javascript is the ability to check your syntax with <a href="http://www.jslint.com/" rel="nofollow">Jslint</a>. That, added to the ability to minify, combine and cache external scripts, makes internal javascript seem like a poor choice.</p>
http://stackoverflow.com/questions/586769/does-white-noise-really-block-distractions-and-aid-concentration0Does white noise really block distractions and aid concentration? [closed]Ken2009-02-25T16:34:29Z2009-02-25T16:55:00Z
<p>Having stumbled across mentions of white noise on <a href="http://simplynoise.com/" rel="nofollow">SimplyNoise.com</a> and <a href="http://en.wikipedia.org/wiki/White%5Fnoise" rel="nofollow">Wikipedia</a> I have to admit I'm sceptical.
Are there real benefits to listening to this stuff or would I be better off sticking to background music?</p>
http://stackoverflow.com/questions/167014/best-practice-for-creating-subversion-repositories/169924#1699241Answer by Ken for Best practice for creating subversion repositories?Ken2008-10-04T07:35:45Z2009-02-22T13:04:04Z<p>Try to keep regularly accessed material (code, scripts) separate from the <em>'write-once and commit to backup'</em> stuff. Having to checkout/update thousands of jpegs just to change a few lines of code gets dull very quickly.</p>
http://stackoverflow.com/questions/468655/javascript-decimal-point-restriction-with-regex/468847#4688471Answer by Ken for JavaScript Decimal Point Restriction With RegExKen2009-01-22T11:54:04Z2009-01-22T11:54:04Z<p>Do you really want to do this with a regex?</p>
<pre><code>function valid(f) {
if(isNaN(f)){return false;}
return 100 * f == parseInt(100*f,10);
}
</code></pre>
http://stackoverflow.com/questions/468458/getting-the-mysql-table-structure-in-php/468484#4684843Answer by Ken for Getting the MySQL table structure in PHPKen2009-01-22T09:06:16Z2009-01-22T09:06:16Z<p>To get the CREATE syntax use</p>
<pre><code>SHOW CREATE TABLE table_name;
</code></pre>
<p>Also take a look in the information_schema database. Lots of very useful information about your databases, tables, indexes, etc.</p>
<p>See: <a href="http://stackoverflow.com/questions/193780/how-to-find-all-the-tables-in-mysql-with-specific-column-names-in-them">How to find all the tables in MySQL with specific column names in them?</a></p>
http://stackoverflow.com/questions/464847/does-your-company-stimulate-physical-health-of-developers-and-if-so-how/465268#4652681Answer by Ken for Does your company stimulate physical health of developers, and if so, how?Ken2009-01-21T13:26:08Z2009-01-21T13:26:08Z<p>Software which enforces eye-breaks and suggests exercises is very beneficial. We use <a href="http://www.workrave.org/" rel="nofollow">workrave</a> but I've had good experiences with <a href="http://www.cheqsoft.com/break.html" rel="nofollow">Break Reminder</a> too.</p>
<p>The interruptions take a while to get used to but are nothing compared to the disruption of losing employees to rsi and back injuries.</p>
http://stackoverflow.com/questions/464417/how-to-use-svn-branch-tag-trunk/464429#46442916Answer by Ken for How to use SVN, Branch? Tag? Trunk?Ken2009-01-21T08:22:36Z2009-01-21T08:38:23Z<p>The <a href="http://svnbook.red-bean.com/" rel="nofollow">subversion book</a> is an excellent source of information on strategies for laying out your repository, branching and tagging.</p>
<p>See also:</p>
<p><a href="http://stackoverflow.com/questions/35646/do-you-continue-development-in-a-branch-or-in-the-trunk">Do you continue development in a branch or in the trunk</a></p>
<p><a href="http://stackoverflow.com/questions/34975/branching-strategies">Branching strategies</a></p>
http://stackoverflow.com/questions/317472/how-to-resize-a-container-div-to-the-total-height-of-its-children1How to resize a container div to the total height of its children?Ken2008-11-25T14:15:34Z2009-01-13T12:34:51Z
<p>I have a container element which I need to resize as its contents change. It contains 2 absolutely positioned divs which can both change height. If I don't specify the height of the container then anything after the container disappears under the contents. </p>
<p>At the moment I am doing the following but I'd be pleased to find a less laborious alternative:</p>
<p>(container has position:relative, #main and #sidebar are position:absolute, the contents of #sidebar have no positioning specified)</p>
<p>css:</p>
<pre><code>div#mapcontainer { position:relative; width:100%; height: 600px; }
div#main { position:absolute; top: 0; left: 10px; width: 500px; height: 400px; }
div#sidebar { position:absolute; top:10px; right:10px; width: 155px; height: 405px;}
</code></pre>
<p>html:</p>
<pre><code><div id="container">
<div id="main">variable height content here</div>
<div id="sidebar">
<div id="foo">...</div>
<div id="bar">....</div>
...
</div>
<div>
</code></pre>
<p>js:</p>
<pre><code>fixHeights = function() {
var children_height = 0;
$('#sidebar'). children().each(function(){children_height += $(this).height();});
$('#container').height(Math.max(children_height, $('#main').height()));
};
</code></pre>
http://stackoverflow.com/questions/435703/how-to-select-the-most-recent-set-of-dated-records-from-a-mysql-table1How to select the most recent set of dated records from a mysql tableKen2009-01-12T15:11:08Z2009-01-12T15:38:28Z
<p>I am storing the response to various rpc calls in a mysql table with the following fields:</p>
<pre><code>Table: rpc_responses
timestamp (date)
method (varchar)
id (varchar)
response (mediumtext)
PRIMARY KEY(timestamp,method,id)
</code></pre>
<p>What is the best method of selecting the most recent responses for all existing combinations of <code>method</code> and <code>id</code>?</p>
<ul>
<li><p>For each date there can only be one response for a given method/id.</p></li>
<li><p>Not all call combinations are necessarily present for a given date.</p></li>
<li><p>There are dozens of methods, thousands of ids and at least 356 different dates </p></li>
</ul>
<p>Sample data:</p>
<pre><code>timestamp method id response
2009-01-10 getThud 16 "....."
2009-01-10 getFoo 12 "....."
2009-01-10 getBar 12 "....."
2009-01-11 getFoo 12 "....."
2009-01-11 getBar 16 "....."
</code></pre>
<p>Desired result:</p>
<pre><code>2009-01-10 getThud 16 "....."
2009-01-10 getBar 12 "....."
2009-01-11 getFoo 12 "....."
2009-01-11 getBar 16 "....."
</code></pre>
<p>(I don't think <a href="http://stackoverflow.com/questions/189213/sql-selecting-rows-by-most-recent-date">this</a> is the same question - it won't give me the most recent <code>response</code>) </p>
http://stackoverflow.com/questions/435703/how-to-select-the-most-recent-set-of-dated-records-from-a-mysql-table/435709#4357091Answer by Ken for How to select the most recent set of dated records from a mysql tableKen2009-01-12T15:12:37Z2009-01-12T15:12:37Z<p>Self answered, but I'm not sure that it will be an efficient enough solution as the table grows:</p>
<pre><code>SELECT timestamp,method,id,response FROM rpc_responses
INNER JOIN
(SELECT max(timestamp),method,id FROM rpc_responses GROUP BY method,id) latest
USING (timestamp,method,id);
</code></pre>
http://stackoverflow.com/questions/169981/mock-testing-and-phps-magic-get-method1Mock testing and PHP's magic __get methodKen2008-10-04T08:28:23Z2008-12-20T11:47:33Z
<p>I'm having problems when trying to mock objects with __get and __set methods (using <a href="http://simpletest.org/" rel="nofollow">simpletest</a>). </p>
<p>Writing mock responses for __get doesn't smell right - the tests seem too tightly tied to implementation. Any recommendations for testing, or should I just avoid the magic methods completely ?</p>
http://stackoverflow.com/questions/201530/how-should-i-add-multiple-identical-elements-to-a-div-with-jquery3How should I add multiple identical elements to a div with jQueryKen2008-10-14T15:02:10Z2008-12-12T00:39:20Z
<p>I need to add multiple empty divs to a container element using jQuery.</p>
<p>At the moment I am generating a string containing the empty html using a loop</p>
<pre><code>divstr = '<div></div><div></div>...<div></div>';
</code></pre>
<p>and then injecting that into my container:</p>
<pre><code>$('#container').html(divstr);
</code></pre>
<p>Is there a more elegant way to insert multiple, identical elements?</p>
<p>Edit: I'm hoping to find something that wouldn't break chaining but wouldn't bring the browser to its knees. A chainable .repeat() plugin?</p>
http://stackoverflow.com/questions/350608/trouble-with-php-mysql-fetch-array-function/350671#3506711Answer by Ken for Trouble with PHP MySQL fetch array functionKen2008-12-08T19:57:07Z2008-12-08T19:57:07Z<p>By default <a href="http://it.php.net/mysql_fetch_array" rel="nofollow">mysql_fetch_array</a> returns both normal and associative arrays, so you can access the values by position ($result[0]) or by name ($result['user_name'])':</p>
<pre><code>array mysql_fetch_array ( resource $result [, int $result_type ] )
</code></pre>
<blockquote>
<p>result_type: The type of array that is
to be fetched. It's a constant and can
take the following values:
MYSQL_ASSOC, MYSQL_NUM, and the
default value of MYSQL_BOTH.</p>
</blockquote>
http://stackoverflow.com/questions/349852/best-reflection-of-extract-interface-refactoring-in-subversion/349870#3498701Answer by Ken for Best reflection of extract-interface refactoring in subversionKen2008-12-08T15:31:49Z2008-12-08T15:31:49Z<p>If you want to keep the history of the file you want to use <a href="http://svnbook.red-bean.com/en/1.1/re18.html" rel="nofollow">svn move</a> </p>
<pre><code>svn move AppProperties.java AppPropertiesImpl.Java
</code></pre>
http://stackoverflow.com/questions/1140527/design-pattern-for-building-an-object-from-a-more-complex-object/1140544#1140544Comment by Ken on Design Pattern for building an object from a more complex objectKen2009-07-16T22:18:43Z2009-07-16T22:18:43ZSo that anyone dealing with the code in the future just needs to see the word factory and understand the intent? The whole rationale behind patterns is communicating common designs with a common vocabulary.http://stackoverflow.com/questions/1073111/shifting-from-windows-to-nix-programming-platform/1073219#1073219Comment by Ken on shifting from windows to *nix programming platformKen2009-07-03T08:32:42Z2009-07-03T08:32:42ZI would strongly recommend looking at virtual machines instead of dual booting. You'll really appreciate the ability to use several operating sytems at once. And once you've made a choice you can always run various virtual windows installations under your *nix of choice.http://stackoverflow.com/questions/239340/automatically-remove-subversion-unversioned-files/239358#239358Comment by Ken on Automatically Remove Subversion Unversioned FilesKen2009-06-30T09:30:32Z2009-06-30T09:30:32Z@Craig - all this is doing is finding all the files in the working copy that haven't been added (by checking for a ? status) and deleting them. Exactly the same as doing a status and then manually deleting the files.http://stackoverflow.com/questions/945331/how-can-i-use-rsync-to-backup-files-changed-within-a-recent-period/950143#950143Comment by Ken on How can I use rsync to backup files changed within a recent period?Ken2009-06-04T12:42:23Z2009-06-04T12:42:23ZThanks I'll take a look - I looked at it previously but the CIFS compatibility issue put me off. ( <a href="http://rdiff-backup.nongnu.org/FAQ.html#cifs" rel="nofollow">rdiff-backup.nongnu.org/FAQ.html#cifs</a> )http://stackoverflow.com/questions/945331/how-can-i-use-rsync-to-backup-files-changed-within-a-recent-period/945417#945417Comment by Ken on How can I use rsync to backup files changed within a recent period?Ken2009-06-03T16:07:38Z2009-06-03T16:07:38ZI would normally agree about the risk of errors, but I'll never have any use for the older files (logs and other records which will never change). I would just take the heat but the thought of having to download and regularly reprocess several gigabytes of unwanted bloat is what prompted this question in the first place.
Reorganisation is probably the solution - I can't change the existing structure but I can set up a temporary directory as Hasturkun suggested. http://stackoverflow.com/questions/945331/how-can-i-use-rsync-to-backup-files-changed-within-a-recent-periodComment by Ken on How can I use rsync to backup files changed within a recent period?Ken2009-06-03T15:31:49Z2009-06-03T15:31:49Z@lothar - and I can't delete or rearrange the historical materialhttp://stackoverflow.com/questions/945331/how-can-i-use-rsync-to-backup-files-changed-within-a-recent-periodComment by Ken on How can I use rsync to backup files changed within a recent period?Ken2009-06-03T15:30:32Z2009-06-03T15:30:32ZThanks lothar - but my problem is that there are a huge number of historical files that I'm not interested in (but can't delete since it may be useful to other people). I'm hoping for a solution that will let me completely ignore the old material.http://stackoverflow.com/questions/586769/does-white-noise-really-block-distractions-and-aid-concentrationComment by Ken on Does white noise really block distractions and aid concentration?Ken2009-02-25T21:14:49Z2009-02-25T21:14:49ZThanks Mark, I'll take a lookhttp://stackoverflow.com/questions/537191/the-sort-r-command-doesnt-sort-lines-randomly-in-linuxComment by Ken on The sort -R command doesn't sort lines randomly in LinuxKen2009-02-11T15:07:27Z2009-02-11T15:07:27Zworks as expected in Ubuntu Ibex - so seems like a problem specific to your versionhttp://stackoverflow.com/questions/207047/what-linux-unix-commands-are-outdated-and-have-powerful-alternativesComment by Ken on What Linux/Unix commands are outdated and have powerful alternatives?Ken2009-01-20T10:03:53Z2009-01-20T10:03:53ZYou can also use +F to start less in follow mode. "less +F /var/log/apache2/error.log" is a handy aliashttp://stackoverflow.com/questions/435703/how-to-select-the-most-recent-set-of-dated-records-from-a-mysql-table/435735#435735Comment by Ken on How to select the most recent set of dated records from a mysql tableKen2009-01-12T15:47:34Z2009-01-12T15:47:34ZHAVING max(timestamp) = timestamp gives me an empty sethttp://stackoverflow.com/questions/435703/how-to-select-the-most-recent-set-of-dated-records-from-a-mysql-table/435735#435735Comment by Ken on How to select the most recent set of dated records from a mysql tableKen2009-01-12T15:30:20Z2009-01-12T15:30:20ZI want the most recent record for each combination of method/id. Not all combinations are changed with every timestamp so I can't just specify the latest timestamp.http://stackoverflow.com/questions/358663/what-tag-should-i-use-instead-of-deprecated-tag-font-in-html-cannot-use-cssComment by Ken on What tag should I use instead of deprecated tag font in html (cannot use CSS)Ken2008-12-11T08:28:48Z2008-12-11T08:28:48ZWhen you say the colour changes at least 1000 times do you mean there are 1000+ different colours?http://stackoverflow.com/questions/297542/simplest-way-to-detect-client-locale-in-php/297554#297554Comment by Ken on Simplest way to detect client locale in PHPKen2008-12-08T15:41:13Z2008-12-08T15:41:13Z+1 for the Google comment - very annoyinghttp://stackoverflow.com/questions/338824/are-subversion-externals-an-antipattern/345404#345404Comment by Ken on Are subversion externals an antipattern?Ken2008-12-06T11:32:20Z2008-12-06T11:32:20ZThank you Rob. I'd considered asking this question as a comment on your other answer but I'm very glad I didn't now.