User David - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T00:37:32Zhttp://stackoverflow.com/feeds/user/3351http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/40689/tips-resources-for-building-a-google-chrome-plugin10Tips / Resources for building a Google Chrome pluginDavid2008-09-02T21:13:11Z2009-09-16T08:25:15Z
<p>After test driving Google Chrome for 30 minutes or so, I like it, even if it seems bare-bones at the moment. The obvious way to add a few things I can't live without would be through plugins. Does anyone have any links to resources on how to get started building a plugin/addon for Chrome? Thanks.</p>
http://stackoverflow.com/questions/184112/what-is-the-optimal-length-for-user-password-salt5What is the optimal length for user password salt?David2008-10-08T18:20:25Z2009-09-09T20:43:01Z
<p>Any <a href="http://en.wikipedia.org/wiki/Salt_%28cryptography%29" rel="nofollow">salt</a> at all will obviously help when salting and hashing a user's password. Are there any best practices for how long the salt should be? I'll be storing the salt in my user table, so I would like the best tradeoff between storage size and security. Is a random 10 character salt enough? Or do I need something longer?</p>
http://stackoverflow.com/questions/880512/prevent-text-selection-after-double-click4Prevent text selection after double clickDavid2009-05-19T00:55:52Z2009-07-24T21:54:17Z
<p>I'm handling the dblclick event on a span in my web app. A side-effect is that the double click selects text on the page. How can I prevent this selection from happening?</p>
http://stackoverflow.com/questions/880608/prevent-click-event-from-firing-when-dblclick-event-fires0Prevent click event from firing when dblclick event firesDavid2009-05-19T01:37:27Z2009-06-29T10:56:50Z
<p>I'm handling both the click and dblclick event on a DOM element. Each one carries out a different command, but I find that when double clicking on the element, in addition to firing the double click event, the click event is also fired twice. What is the best approach for preventing this behavior?</p>
http://stackoverflow.com/questions/829007/find-out-what-process-registered-a-global-hotkey-windows-api/880626#8806260Answer by David for Find out what process registered a global hotkey? (Windows API)David2009-05-19T01:46:53Z2009-05-19T01:56:44Z<p>Off the top of my head, you might try enumerating all windows with EnumWindows, then in the callback, send WM_GETHOTKEY to each window.</p>
<p>Edit: Apparrently I was wrong about that. <a href="http://msdn.microsoft.com/en-us/library/ms646279(VS.85).aspx" rel="nofollow">MSDN</a> has more information: </p>
<blockquote>
<p>WM_HOTKEY is unrelated to the WM_GETHOTKEY and WM_SETHOTKEY hot keys. The WM_HOTKEY message is sent for generic hot keys while the WM_SETHOTKEY and WM_GETHOTKEY messages relate to window activation hot keys.</p>
</blockquote>
<p>Note: <a href="http://tds.diamondcs.com.au/dse/detection/hotkeys.php" rel="nofollow">Here</a> is a program purporting to have the functionality you are looking for. You could try decompiling it.</p>
http://stackoverflow.com/questions/171400/which-is-fastest-in-php-mysql-or-mysqli2Which is fastest in PHP- MySQL or MySQLi?David2008-10-05T02:53:44Z2009-04-08T18:46:24Z
<p>I'd like to know if anyone has any first-hand experience with this dichotomy. A few blogs say the mysql extension is faster than mysqli. Is this true?</p>
<p>And I'm only asking about speed. I know mysqli has features that are not present in the older extension.</p>
http://stackoverflow.com/questions/142242/what-is-the-best-way-to-pick-a-random-row-from-a-table-in-mysql8What is the best way to pick a random row from a table in MySQL?David2008-09-26T21:58:42Z2009-03-20T22:13:35Z
<p>I have seen random rows pulled using queries like this, which are quite inefficient for large data sets. </p>
<pre><code>SELECT id FROM table ORDER BY RANDOM() LIMIT 1
</code></pre>
<p>I have also seen various other RDBMS-specific solutions that don't work with MySQL.</p>
<p>The best thing I can think of doing off-hand is using two queries and doing something like this.</p>
<ol>
<li>Get the number of rows in the table. MyISAM tables store the row count so this is very fast.</li>
<li>Calculate a random number between 0 and rowcount - 1.</li>
<li>Select a row ordered by primary key, with a LIMIT randnum, 1</li>
</ol>
<p>Here's the SQL:</p>
<pre><code>SELECT COUNT(*) FROM table;
SELECT id FROM table LIMIT randnum, 1;
</code></pre>
<p>Does anyone have a better idea?</p>
http://stackoverflow.com/questions/184089/what-is-the-strongest-hashing-algorithm-commonly-available-today2What is the strongest hashing algorithm commonly available today?David2008-10-08T18:16:12Z2008-10-08T18:48:27Z
<p>I'm building a web application and would like to use the strongest hashing algorithm possible for passwords. What are the differences, if any, between sha512, whirlpool, ripemd160 and tiger192,4? Which one would be considered cryptographically stronger?</p>
http://stackoverflow.com/questions/142320/setting-up-our-new-dev-server-what-is-the-easiest-way-to-assign-multiple-ip-addre/142347#142347-1Answer by David for Setting up our new Dev server What is the easiest way to assign multiple IP addressesDavid2008-09-26T22:26:11Z2008-09-26T22:26:11Z<p>Network Connections -> Local Area Network Connection Properties -> TCP/IP Properties -> Advanced -> IP Settings -> Add Button.</p>
http://stackoverflow.com/questions/142273/standard-way-to-detect-mobile-browsers-in-a-web-application-based-on-the-http-req/142283#14228310Answer by David for Standard way to detect mobile browsers in a web application based on the http requestDavid2008-09-26T22:07:07Z2008-09-26T22:07:07Z<p>Wouldn't the standard way be to check the user agent? Here's a <a href="http://wurfl.sourceforge.net/" rel="nofollow">database of user agents</a> you can use to detect mobile browsers.</p>
http://stackoverflow.com/questions/129013/generated-image-using-php-and-gd-is-being-cut-off/129526#1295260Answer by David for Generated image using PHP and GD is being cut offDavid2008-09-24T20:03:15Z2008-09-24T20:03:15Z<p>Are you running the same version of PHP on both servers? Post the relevant PHP code you're using to generate the image.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/129254#1292542Answer by David for PHP Optimization TipsDavid2008-09-24T19:17:32Z2008-09-24T19:22:37Z<p>To sum things up...</p>
<ol>
<li>Don't worry about optimization until you actually run into a bottleneck. Premature optimization will just introduce bugs and make the code harder to maintain.</li>
<li>Use a PHP Opcache such as <a href="http://www.php.net/apc" rel="nofollow">APC</a>, <a href="http://xcache.lighttpd.net/" rel="nofollow">xCache</a> or <a href="http://turck-mmcache.sourceforge.net/" rel="nofollow">Turck MMCache</a>, or a memory caching system such as <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a>.</li>
</ol>
<p>The following is a list of "optimizations" you can use in your code, but the differences are so minuscule, you shouldn't use these at the expense of unreadable, unmanageable code.</p>
<ol>
<li>Use require and include instead of require_once and include_once, which are slower.</li>
<li>echo is faster than print</li>
<li>$_SERVER['REQUEST_TIME'] is faster than time(), which invokes a system call (php5)</li>
<li>Calculate the limit for a for loop before the loop, not in the loop condition.</li>
<li>Only inlcuded code/files/classes that are actually needed.</li>
<li>Enclose literal strings in single quotes unless they actually contain variables you want to evaluate and insert into the string.</li>
<li>Type-specific comparison operators are faster then non-type specific ones, when you know the types of the variables you are comparing. $x === 5 is faster than $x == 5, but will evaluate to false if $x is the string '5' for example.</li>
<li>Use string functions instead of regular expressions where appropriate. To find if a string is contained in another string use strpos or stripos. To replace values in a string when you don't need regular expressions, use str_replace.</li>
<li>preg_* functions are faster than ereg_* regular expression functions.</li>
<li>Do as little as possible inside loops, especially avoid many if constructs when possible.</li>
<li>Free memory with unset, when a variable is no longer needed.</li>
<li>Using full paths for includes and requires is faster than relative paths.</li>
<li>Avoid "magic" functions when possible. __autoload, __call etc.</li>
<li>Sending multiple parameters to echo (separated by a comma) is faster than string concatenation.</li>
</ol>
<p>You also have to correctly optimize your database schema and queries.</p>
<ol>
<li>Make sure you denormalize your database in key areas where appropriate.</li>
<li>Make sure you have indices where needed.</li>
<li>Make sure you don't have unneeded indices.</li>
<li>Optimize your queries. For example an IN() sub-query is many,many times slower than an INNER JOIN sub-query.</li>
</ol>
http://stackoverflow.com/questions/58424/a-lightweight-application-framework-for-php/59681#596816Answer by David for A lightweight application framework for PHP?David2008-09-12T18:20:55Z2008-09-12T18:20:55Z<p><a href="http://kohanaphp.com" rel="nofollow">Kohana</a> is a lightweight fork of CI. I like it better, but <a href="http://kohanaphp.com" rel="nofollow">decide for yourself</a>.</p>
http://stackoverflow.com/questions/40689/tips-resources-for-building-a-google-chrome-plugin/40727#40727-1Answer by David for Tips / Resources for building a Google Chrome pluginDavid2008-09-02T21:28:42Z2008-09-02T21:28:42Z<p>Thanks for the answers. From reading the Chrome comic book, I thought there would be a real addon api available, similar to Firefox.</p>
http://stackoverflow.com/questions/39892/how-to-write-a-plug-in-for-ie/40036#400365Answer by David for How To Write a Plug-In for IEDavid2008-09-02T17:00:57Z2008-09-02T17:00:57Z<p>Here are a few resources that might help you in your quest to create browser helper objects (BHO).</p>
<p><a href="http://petesearch.com/wiki/" rel="nofollow">http://petesearch.com/wiki/</p>
<p><a href="http://www.hackszine.com/blog/archive/2007/06/howto_port_firefox_extensions.html" rel="nofollow">http://www.hackszine.com/blog/archive/2007/06/howto_port_firefox_extensions.html</a></p>
<p>http://msdn.microsoft.com/en-us/library/ms182554(VS.80).aspx</a></p>
<p><a href="http://www.codeplex.com/TeamTestPlugins" rel="nofollow">http://www.codeplex.com/TeamTestPlugins</a></p>
<p>Edit: Can't get the msdn link to work with markdown, probably because it contains parens.</p>
http://stackoverflow.com/questions/880608/prevent-click-event-from-firing-when-dblclick-event-fires/880792#880792Comment by David on Prevent click event from firing when dblclick event firesDavid2009-05-19T13:29:14Z2009-05-19T13:29:14ZThanks for the updated answer. I think this really comes down to the fact that I need to rethink my UI. What I want to accomplish really isn't going to be possible. I should simply use two controls for the two actions, or use a modifier key instead of the double-click. Thanks!http://stackoverflow.com/questions/880608/prevent-click-event-from-firing-when-dblclick-event-fires/880618#880618Comment by David on Prevent click event from firing when dblclick event firesDavid2009-05-19T02:19:49Z2009-05-19T02:19:49ZActually, that's what I'm doing now, but it seems like it's a rather kludgy solution. I delay the click handler by 300 ms (a noticeable and annoying delay) and even with that you can still double click slow enough (eg. 350 ms) to make both of them fire.http://stackoverflow.com/questions/880512/prevent-text-selection-after-double-click/880518#880518Comment by David on Prevent text selection after double clickDavid2009-05-19T01:33:20Z2009-05-19T01:33:20ZThanks for your help!http://stackoverflow.com/questions/880512/prevent-text-selection-after-double-click/880518#880518Comment by David on Prevent text selection after double clickDavid2009-05-19T01:12:02Z2009-05-19T01:12:02ZThe CSS looks great! Any idea if there's something similar available for IE?http://stackoverflow.com/questions/880512/prevent-text-selection-after-double-click/880518#880518Comment by David on Prevent text selection after double clickDavid2009-05-19T01:09:48Z2009-05-19T01:09:48ZYou're missing an opening brace in the second if statement </perfectionism>http://stackoverflow.com/questions/880512/prevent-text-selection-after-double-click/880518#880518Comment by David on Prevent text selection after double clickDavid2009-05-19T01:07:53Z2009-05-19T01:07:53ZIs there any way to actually prevent selection as opposed to removing the selection after the fact? Also, your second if statement could be inside the else if for better readability.http://stackoverflow.com/questions/198346/whats-the-best-way-to-create-a-single-file-upload-form-using-php/198361#198361Comment by David on What's the best way to create a single-file upload form using PHP?David2008-10-13T18:46:43Z2008-10-13T18:46:43ZAn additional benefit is that in PHP 4 you can't show an upload progress bar. You can in PHP 5, Flash and Java.http://stackoverflow.com/questions/147275//147320#147320Comment by David on 这是一个测试,想看一下中文是否能得到支持David2008-09-29T03:31:45Z2008-09-29T03:31:45ZMandarin has the largest number of <i>native</i> speakers. If you count native and non-native speakers, English is the most spoken language in the world.http://stackoverflow.com/questions/142242/what-is-the-best-way-to-pick-a-random-row-from-a-table-in-mysql/142345#142345Comment by David on What is the best way to pick a random row from a table in MySQL?David2008-09-26T22:33:40Z2008-09-26T22:33:40ZHow does that actually help? You can have your random number column indexed and then order by that column? You'd always get the same row. Otherwise, you're left with doing what I described in the OP anyway.
http://stackoverflow.com/questions/142242/what-is-the-best-way-to-pick-a-random-row-from-a-table-in-mysql/142318#142318Comment by David on What is the best way to pick a random row from a table in MySQL?David2008-09-26T22:31:56Z2008-09-26T22:31:56ZI thought about that. Add a new indexed column and on row creation, assign a random int to it. But the problem with that is I'm storing unnecessary data and you would still have to do something else to actually get a random row out of it, since the random column data is static.
http://stackoverflow.com/questions/142242/what-is-the-best-way-to-pick-a-random-row-from-a-table-in-mysql/142311#142311Comment by David on What is the best way to pick a random row from a table in MySQL?David2008-09-26T22:30:19Z2008-09-26T22:30:19ZThere are gaps in the primary key, as some rows get deleted.http://stackoverflow.com/questions/142242/what-is-the-best-way-to-pick-a-random-row-from-a-table-in-mysql/142260#142260Comment by David on What is the best way to pick a random row from a table in MySQL?David2008-09-26T22:04:44Z2008-09-26T22:04:44ZI'll edit that out of the post. Although I would think it shouldn't really matter much anyway, since that column is the primary key, is indexed and the rows are already in that order.http://stackoverflow.com/questions/127765/php-optimization-tips/127811#127811Comment by David on PHP Optimization TipsDavid2008-09-24T18:44:07Z2008-09-24T18:44:07ZDo you have any reference for that? I'd be interested in knowing.http://stackoverflow.com/questions/127765/php-optimization-tips/127806#127806Comment by David on PHP Optimization TipsDavid2008-09-24T18:42:48Z2008-09-24T18:42:48ZOk, it munged my example, but in_array is about twice as fast.http://stackoverflow.com/questions/127765/php-optimization-tips/127806#127806Comment by David on PHP Optimization TipsDavid2008-09-24T18:42:10Z2008-09-24T18:42:10Zin_array is faster than array_flip + array_key_exists.
$letters = range('a', 'b');
for ($i = 0; $i < 100000; ++$i)
{
array_key_exists('f', array_flip($letters));
}
// time: 0.358922958374
for ($i = 0; $i < 100000; ++$i)
{
in_array('f', $letters);
}
// time: 0.143461942673