User Eran Galperin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T01:08:15Z http://stackoverflow.com/feeds/user/10585 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/189903/scaling-solutions-for-mysql-replication-clustering 5 Scaling solutions for MySQL (Replication, Clustering) Eran Galperin 2008-10-10T02:21:52Z 2009-08-21T21:51:07Z <p>At the <a href="http://www.octabox.com" rel="nofollow">startup</a> I'm working at we are now considering scaling solutions for our database. Things get somewhat confusing (for me at least) with MySQL, which has the <a href="http://dev.mysql.com/doc/refman/5.0/en/faqs-mysql-cluster.html" rel="nofollow">MySQL cluster</a>, <a href="http://dev.mysql.com/doc/refman/5.0/en/replication.html" rel="nofollow">replication</a> and <a href="http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-replication.html" rel="nofollow">MySQL cluster replication</a> (from ver. 5.1.6), which is an asynchronous version of the MySQL cluster. The MySQL manual explains some of the differences in its <a href="http://dev.mysql.com/doc/refman/5.0/en/faqs-mysql-cluster.html#qandaitem-22-10-3" rel="nofollow">cluster FAQ</a>, but it is hard to ascertain from it when to use one or the other.</p> <p>I would appreciate any advice from people who are familiar with the differences between those solutions and what are the pros and cons, and when do you recommend to use each.</p> http://stackoverflow.com/questions/1275413/tracking-php-object-property-changes/1275445#1275445 1 Answer by Eran Galperin for Tracking PHP Object property changes Eran Galperin 2009-08-14T00:35:51Z 2009-08-14T00:35:51Z <p>Since your 'object' is really an array, you can't add functionality to it. Your idea of encapsulating it with class methods is the correct approach. Worrying about performance over proper design at this stage is irrelevant and misguided - the overhead you incur with this approach will likely be insignificant to your overall application performance.</p> <p>You should look into the SPL array classes such as <a href="http://www.php.net/~helly/php/ext/spl/classArrayObject.html" rel="nofollow">ArrayObject</a>. They provide a complete array-like interface and are easily extendable.</p> http://stackoverflow.com/questions/175056/svn-checkout-or-export-for-production-environment 5 SVN checkout or export for production environment? Eran Galperin 2008-10-06T16:31:09Z 2009-08-04T16:01:21Z <p>In a project I am working on, we have an ongoing discussion amongst the dev team - should the production environment be deployed as a checkout from the SVN repository or as an export?</p> <p>The development environment is obviously a checkout, since it is constantly updated. For the production, I'm personally for checking out the main trunk, since it makes future updates easier (just run svn update). However some of the devs are against it, as svn creates files with the group/owner and permissions of the svn process (this is on a linux OS, so those things matter), and also having the .svn directories on the production seem to them to be somewhat dirty.</p> <p>Also, if it is a checkout - how do you push individual features to the production without including in-development code? do you use tags or branch out for each feature? any alternatives?</p> <p><strong>EDIT:</strong> I might not have been clear - one of the requirement is to be able to constantly be able to push fixes to the production environment. We want to avoid a complete build (which takes much longer than a simple update) just for pushing critical fixes.</p> http://stackoverflow.com/questions/366588/what-does-a-good-programmers-code-look-like/366596#366596 55 Answer by Eran Galperin for What does a good programmer's code look like? Eran Galperin 2008-12-14T14:42:04Z 2009-07-02T21:22:13Z <p>The first thing you'd notice is that their code follows a consistent <a href="http://en.wikipedia.org/wiki/Programming%5Fstyle" rel="nofollow">coding-style</a>. They always write their structure blocks the same, indent religiously and comment where appropriate. </p> <p>The second things you'd notice is that their code is segmented into small methods / functions spanning no more than a couple dozen lines at the most. They also use self describing method names and generally their code is very readable.</p> <p>The third thing you'd notice, after you messed around with the code a little is that the logic is easy to follow, easy to modify - and therefore easily maintainable.</p> <p>After that, you'll need some knowledge and experience in software design techniques to understand the specific choices they took constructing their code architecture. </p> <p>Regarding books, I haven't seen many books where the code could be considered "world-class". In books they try mostly to present simple examples, which might be relevant to solving very simple problems but aren't reflective of more complex situations. </p> http://stackoverflow.com/questions/186071/left-join-outperforming-inner-join 1 Left Join outperforming Inner Join? Eran Galperin 2008-10-09T06:01:30Z 2009-04-22T19:52:37Z <p>I've been profiling some queries in an application I'm working on, and I came across a query that was retrieving more rows than necessary, the result set being trimmed down in the application code.</p> <p>Changing a LEFT JOIN to an INNER JOIN trimmed the result set to just what was needed, and presumably would also be more performant (since less rows are selected). In reality, the LEFT JOIN'ed query was outperforming the INNER JOIN'ed, taking half the time to complete.</p> <p>LEFT JOIN: (127 total rows, Query took 0.0011 sec)</p> <p>INNER JOIN: (10 total rows, Query took 0.0024 sec)</p> <p>(I ran the queries multiple times and those are averages).</p> <p>Running EXPLAIN on both reveals nothing that explains the performance differences:</p> <p>For the INNER JOIN:</p> <pre><code>id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE contacts index NULL name 302 NULL 235 Using where 1 SIMPLE lists eq_ref PRIMARY PRIMARY 4 contacts.list_id 1 1 SIMPLE lists_to_users eq_ref PRIMARY PRIMARY 8 lists.id,const 1 1 SIMPLE tags eq_ref PRIMARY PRIMARY 4 lists_to_users.tag_id 1 1 SIMPLE users eq_ref email_2 email_2 302 contacts.email 1 Using where </code></pre> <p>For the LEFT JOIN:</p> <pre><code>id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE contacts index NULL name 302 NULL 235 Using where 1 SIMPLE lists eq_ref PRIMARY PRIMARY 4 contacts.list_id 1 1 SIMPLE lists_to_users eq_ref PRIMARY PRIMARY 8 lists.id,const 1 1 SIMPLE tags eq_ref PRIMARY PRIMARY 4 lists_to_users.tag_id 1 1 SIMPLE users eq_ref email_2 email_2 302 contacts.email 1 </code></pre> <p>And the query itself:</p> <pre><code>SELECT `contacts`.*, `lists`.`name` AS `group`, `lists`.`id` AS `group_id`, `lists`.`shared_yn`, `tags`.`name` AS `context`, `tags`.`id` AS `context_id`, `tags`.`color` AS `context_color`, `users`.`id` AS `user_id`, `users`.`avatar` FROM `contacts` LEFT JOIN `lists` ON lists.id=contacts.list_id LEFT JOIN `lists_to_users` ON lists_to_users.list_id=lists.id AND lists_to_users.user_id='1' AND lists_to_users.creator='1' LEFT JOIN `tags` ON tags.id=lists_to_users.tag_id INNER JOIN `users` ON users.email=contacts.email WHERE (contacts.user_id='1') ORDER BY `contacts`.`name` ASC </code></pre> <p>(The clause that I'm talking about is the last INNER JOIN on the 'users' table)</p> <p>The query runs on a MySQL 5.1 database, if it makes a difference.</p> <p>Does anyone has a clue on why the LEFT JOIN'ed query outperforms the INNER JOIN'ed on in this case?</p> <p><strong>UPDATE:</strong> Due to Tomalak's suggestion that the small tables I'm using were making the INNER JOIN more complex, I'd created a test database with some mock data. The 'users' table is 5000 rows, and the contacts table is ~500,000 rows. The results are the same (also the timings haven't changed which is surprising when you consider that the tables are much bigger now).</p> <p>I also ran ANALYZE and OPTIMIZE on the contacts table. Didn't make any discernible difference.</p> http://stackoverflow.com/questions/175451/how-do-you-version-your-database-schema 11 How do you version your database schema? Eran Galperin 2008-10-06T18:02:29Z 2009-04-13T15:42:00Z <p>How do you prepare your SQL deltas? do you manually save each schema-changing SQL to a delta folder, or do you have some kind of an automated diffing process?</p> <p>I am interested in conventions for versioning database schema along with the source code. Perhaps a pre-commit hook that diffs the schema?</p> <p>Also, what options for diffing deltas exist aside from <a href="http://dbdeploy.com/" rel="nofollow">DbDeply</a>?</p> <p><strong>EDIT:</strong> seeing the answers I would like to clarify that I am familiar with the standard scheme for running a database migration using deltas. My question is about creating the deltas themselves, preferably automatically.</p> <p>Also, the versioning is for PHP and MySQL if it makes a difference. (No Ruby solutions please).</p> http://stackoverflow.com/questions/407904/implementing-keyword-comparison-scheme-reverse-search 2 Implementing keyword comparison scheme (reverse search) Eran Galperin 2009-01-02T20:12:42Z 2009-02-11T22:44:47Z <p>I have a constantly growing database of keywords. I need to parse incoming text inputs (articles, feeds etc) and find which keywords from the database are present in the text. The database of keywords is much larger than the text.</p> <p>Since the database is constantly growing (users add more and more keywords to watch for), I figure the best option will be to break the text input into words and compare those against the database. My main dilemma is implementing this comparison scheme (PHP and MySQL will be used for this project).</p> <p>The most naive implementation would be to create a simple SELECT query against the keywords table, with a giant IN clause listing all the found keywords.</p> <pre><code>SELECT user_id,keyword FROM keywords WHERE keyword IN ('keyword1','keyword2',...,'keywordN'); </code></pre> <p>Another approach would be to create a hash-table in memory (using something like memcache) and to check against it in the same manner.</p> <p>Does anyone has any experience with this kind of searching and has any suggestions on how to better implement this? I haven't tried yet any of those approaches, I'm just gathering ideas at this point.</p> http://stackoverflow.com/questions/477754/how-to-do-this-in-jquery/477786#477786 7 Answer by Eran Galperin for How to do this in jQuery Eran Galperin 2009-01-25T14:58:25Z 2009-01-25T15:04:47Z <p>jQuery knows how to work with select elements. You can get the value as any other input:</p> <pre><code>var value = $('#cityBuild').val(); </code></pre> http://stackoverflow.com/questions/470951/what-is-the-correct-syntax-to-return-div-without-an-id-using-jquery/470962#470962 5 Answer by Eran Galperin for What is the correct syntax to return div without an id using jQuery? Eran Galperin 2009-01-22T21:49:46Z 2009-01-22T22:13:04Z <p>The @ operator has been deprecated for a while and finally removed in version 1.3. Just remove it from the attribute declaration:</p> <pre><code>.not('[id]')... </code></pre> <p>EDIT: The following should do what you stated, as opposed to your original code:</p> <pre><code>if($(form).find('div').filter(function(){ return $(this).attr('id') == ''; }).remove(); </code></pre> http://stackoverflow.com/questions/466820/math-resources-for-c-c-programmers/466848#466848 5 Answer by Eran Galperin for Math Resources for C/C++ Programmers Eran Galperin 2009-01-21T20:29:47Z 2009-01-21T20:29:47Z <p><a href="http://mathworld.wolfram.com/" rel="nofollow">Wolfram MathWorld</a> is one of my favorite resources for all things math. <a href="http://www.wikipedia.org" rel="nofollow">Wikipedia</a> has plenty of math resources as well.</p> http://stackoverflow.com/questions/466560/can-anybody-give-me-an-example-of-overused-design-patterns/466591#466591 15 Answer by Eran Galperin for Can anybody give me an example of overused design patterns? Eran Galperin 2009-01-21T19:16:00Z 2009-01-21T20:02:47Z <p>The <a href="http://en.wikipedia.org/wiki/Singleton_pattern" rel="nofollow">singleton</a> is probably the most <a href="http://www.ibm.com/developerworks/webservices/library/co-single.html" rel="nofollow">overused design pattern</a>. I often see it used in many cases when it's out of scope and much more appropriate to directly instantiate objects.</p> <p>After that, I believe the <a href="http://en.wikipedia.org/wiki/Factory_method_pattern" rel="nofollow">factory pattern</a> is way overused as a shortcut of instantiating objects, many times without a real need.</p> http://stackoverflow.com/questions/463764/are-unique-indices-case-sensitive-in-mysql/463784#463784 5 Answer by Eran Galperin for Are UNIQUE indices case sensitive in MySQL? Eran Galperin 2009-01-21T01:13:04Z 2009-01-21T01:13:04Z <p>It depends on the collation of the field - if it's ci (case insensitive) or cs (case sensitive). The unique index would apply accordingly.</p> http://stackoverflow.com/questions/463670/how-to-eliminate-post-render-flicker/463694#463694 1 Answer by Eran Galperin for How to eliminate post-render "flicker"? Eran Galperin 2009-01-21T00:29:05Z 2009-01-21T00:29:05Z <p>I can think of two methods:</p> <p>1 - Pre-detect if Javascript is enabled and save that information in a cookie/session. This could be done at the front page, and should eliminate most flickers.</p> <p>2 - Use the <a href="http://docs.jquery.com/Plugins/livequery" rel="nofollow">livequery plugin</a>, which detects elements as they are added to the DOM. You can run it right when Javascript finishes loading, which should be much before the document (it its in the head).</p> <pre><code>$('.with_js_disabled').livequery(function() { $(this).hide(); }); </code></pre> http://stackoverflow.com/questions/463572/jquery-edit-a-table-row-inline/463587#463587 4 Answer by Eran Galperin for jQuery - Edit a table row inline Eran Galperin 2009-01-20T23:47:27Z 2009-01-20T23:47:27Z <p>Iterate over the table cells in the rows, and replace the contents with text inputs:</p> <pre><code>function editRow(row) { $('td',row).each(function() { $(this).html('&lt;input type="text" value="' + $(this).html() + '" /&gt;'); }); } </code></pre> <p>You need to pass the relevant row/rows into the function obviously.</p> http://stackoverflow.com/questions/458740/how-can-i-learn-to-become-a-dba/458777#458777 1 Answer by Eran Galperin for How can I learn to become a DBA? Eran Galperin 2009-01-19T19:14:50Z 2009-01-19T19:14:50Z <p>Learning theory is not enough, to get good at something as complex as database managment you must have on-hands experience. You need to experience the pain of challenging database problems and successfully solve them with effort and dedication. </p> <p>phpMyAdmin is a limited interface for performing some basic maintainence. You need to be in full control of all of the command line options and utilities to consider applying as a DBA. Database modeling, query tuning, high availability, scalability - there is so much to know to be able to manage a production database properly.</p> <p>I suggest you get a copy of <a href="http://rads.stackoverflow.com/amzn/click/0596101716" rel="nofollow">High Performance MySQL</a> (2nd ed.) and start scratching the edge of what's possible. You can read some wisdom from world class DBAs on <a href="http://www.xaprb.com/blog/" rel="nofollow">several</a> <a href="http://www.mysqlperformanceblog.com/" rel="nofollow">blogs</a>. And most importantly, get involved in challenging projects and start gaining experience.</p> http://stackoverflow.com/questions/457586/what-is-the-best-method-to-build-multilingual-script-in-php/457604#457604 4 Answer by Eran Galperin for what is the best method to build "multilingual" script in php? Eran Galperin 2009-01-19T13:42:07Z 2009-01-19T13:42:07Z <p>There are plenty of options for storing translations:</p> <ul> <li><a href="http://www.lisa.org/Translation-Memory-e.34.0.html" rel="nofollow">TMX</a>: A relatively new XML format for translations. Seems to be gaining in popularity.</li> <li><a href="http://www.gnu.org/software/gettext/" rel="nofollow">Gettext</a> is another open format for translations. Been the de-facto standard for a long time.</li> <li>ini files - easy to edit, very simple format</li> <li>PHP files (arrays) - easy to edit for PHP programmers, good performance</li> <li>CSV format - relatively simple to use.</li> </ul> <p>I'd suggest you use something like <a href="http://framework.zend.com/manual/en/zend.translate.using.html" rel="nofollow">Zend_Translate</a> which supports multiple adapters and provides a basic approach to embedding translations in your application.</p> http://stackoverflow.com/questions/457263/should-i-count-or-not/457325#457325 7 Answer by Eran Galperin for Should I COUNT(*) or not? Eran Galperin 2009-01-19T11:32:24Z 2009-01-19T11:32:24Z <p>COUNT(*) count all rows while COUNT(column_name) will count only rows without NULL values in the specified column.</p> <p>Important to note in MySQL:</p> <p>COUNT() is very fast on MyISAM tables for * or not-null columns, since the row count is cached. InnoDB has no row count caching, so there is no difference in performance for COUNT(*) or COUNT(column_name), regardless if the column can be null or not. You can read more on the differences on <a href="http://www.mysqlperformanceblog.com/2007/04/10/count-vs-countcol/" rel="nofollow">this post</a> at the MySQL performance blog.</p> http://stackoverflow.com/questions/455958/hide-show-column-in-an-html-table/455976#455976 2 Answer by Eran Galperin for Hide/Show Column in an HTML Table Eran Galperin 2009-01-18T21:57:03Z 2009-01-18T22:03:00Z <p>The following should do it:</p> <pre><code>$("input[type='checkbox']").click(function() { var index = $(this).attr('name').substr(2); $('table tr').each(function() { $('td:eq(' + index + ')',this).toggle(); }); }); </code></pre> <p>This is untested code, but the principle is that you choose the table cell in each row that corresponds to the chosen index extracted from the checkbox name. You could of course limit the selectors with a class or an ID.</p> http://stackoverflow.com/questions/455476/does-adding-limit-1-to-mysql-queries-make-them-faster-when-you-know-there-will/455507#455507 10 Answer by Eran Galperin for Does adding 'LIMIT 1' to MySQL queries make them faster when you know there will only be 1 result? Eran Galperin 2009-01-18T17:21:39Z 2009-01-18T17:21:39Z <p>Depending on the query, adding a limit clause can have a huge effect on performance. If you want only one row (or know for a fact that only one row can satisfy the query), and are not sure about how the internal optimizer will execute it (for example, WHERE clause not hitting an index and so forth), then you should definitely add a LIMIT clause.</p> <p>As for optimized queries (using indexes on small tables) it probably won't matter much in performance, but again - if you are only interested in one row than add a LIMIT clause regardless. </p> http://stackoverflow.com/questions/453313/after-a-rewriterule-to-a-php-script-do-an-internal-redirect-from-within-the-php/453324#453324 1 Answer by Eran Galperin for After a RewriteRule to a PHP script, do an internal redirect from within the PHP Eran Galperin 2009-01-17T13:43:18Z 2009-01-17T13:51:48Z <p>You should use a <a href="http://www.phppatterns.com/docs/design/the_front_controller_and_php" rel="nofollow">front controller</a> (also referred to as <a href="http://devzone.zend.com/node/view/id/70" rel="nofollow">bootstrapping</a>) to determine the route and include the correct script (rather than re-direct). A front controller is a single entry point to your application, and allows you to handle routing as you see fit.</p> <p>Most frameworks have a <a href="http://framework.zend.com/manual/en/zend.controller.front.html" rel="nofollow">nice implementation</a> of a front-controller, but for simple purposes you can roll your own.</p> http://stackoverflow.com/questions/444967/best-practices-vs-other-best-practices-vs-other-best-practices/444980#444980 0 Answer by Eran Galperin for Best practices vs. other Best practices vs. other Best practices Eran Galperin 2009-01-14T22:40:40Z 2009-01-14T22:40:40Z <p>The concept of best practice is non-existent. There are practices that work (much) better than others in a certain context. No practice is sacred though, and should always be re-evaluated under different circumstances.</p> http://stackoverflow.com/questions/444213/in-firefox-how-to-change-color-of-text-in-a-treecell-using-javascript/444224#444224 3 Answer by Eran Galperin for In firefox, how to change color of text in a treecell using javascript Eran Galperin 2009-01-14T18:56:50Z 2009-01-14T18:56:50Z <p>The style property of a DOM element contains all the CSS declarations for that element. The naming scheme is slightly different (camelCaps instead of dashes), but otherwise exactly the same. </p> <pre><code> element.style.color = 'blue'; </code></pre> <p>You can read more on the style property in the <a href="http://developer.mozilla.org/en/DOM/element.style" rel="nofollow">Mozilla javascript manual</a>.</p> http://stackoverflow.com/questions/444099/what-are-some-optimization-techniques-for-mysql-table-with-300-million-records/444155#444155 6 Answer by Eran Galperin for What are some optimization techniques for MySQL table with 300+ million records? Eran Galperin 2009-01-14T18:34:13Z 2009-01-14T18:34:13Z <p>There are several things you can do:</p> <ol> <li><p>Build your indexes to match the queries you are running. Run <a href="http://dev.mysql.com/doc/refman/5.1/en/explain.html" rel="nofollow">EXPLAIN</a> to see the types of queries that are run and make sure that they all use an index where possible.</p></li> <li><p>Partition your table. Paritioning is a technique for splitting a large table into several smaller ones by a specific (aggregate) key. MySQL supports this internally from <a href="http://dev.mysql.com/doc/refman/5.1/en/partitioning.html" rel="nofollow">ver. 5.1</a>.</p></li> <li><p>If necessary, build summary tables that cache the costlier parts of your queries. Then run your queries against the summary tables. Similarly, temporary in-memory tables can be used to store a simplified view of your table as a pre-processing stage.</p></li> </ol> http://stackoverflow.com/questions/442176/whats-the-best-way-to-represent-a-stage-script-in-html/442202#442202 4 Answer by Eran Galperin for What's the best way to represent a stage script in HTML? Eran Galperin 2009-01-14T07:41:31Z 2009-01-14T08:14:52Z <p>I would use headers and paragraphs.</p> <pre><code>&lt;div class="play"&gt; &lt;h2&gt;Jeff&lt;/h2&gt; &lt;p&gt;This sure is a nice website we've got now.&lt;/p&gt; &lt;h2&gt;Joel&lt;/h2&gt; &lt;p&gt;It certainly is. By the way, working at FogCreek rocks.&lt;/p&gt; &lt;h2&gt;Jeff&lt;/h2&gt; &lt;p&gt;Of course it does. Have you played Rock Band yet? It's&lt;br /&gt; a lot of fun.&lt;/p&gt; &lt;/div&gt; </code></pre> <p>With the following styles it would arrange as you presented it:</p> <pre><code>.play h2 { float:left; clear:left; width:100px; margin:0; } .play p { margin-left:100px; } </code></pre> http://stackoverflow.com/questions/442048/how-do-you-select-elements-based-on-their-style/442082#442082 11 Answer by Eran Galperin for How do you select elements based on their style? Eran Galperin 2009-01-14T06:20:18Z 2009-01-14T07:05:48Z <p>Using the <a href="http://docs.jquery.com/Traversing/filter" rel="nofollow">filter function</a>:</p> <pre><code>$('*').filter(function() { return $(this).css('float') == 'left'; }); </code></pre> <p>Replace '*' with the appropriate selectors for your case.</p> http://stackoverflow.com/questions/437315/best-way-to-code-stackoverflow-style-questions-tags-rollover-buttons/437336#437336 13 Answer by Eran Galperin for Best way to code stackoverflow style 'questions' / 'tags' rollover buttons Eran Galperin 2009-01-12T22:50:54Z 2009-01-12T22:50:54Z <p>There's no javascript needed for hover effects on links. Just use the :hover <a href="http://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes" rel="nofollow">pseudo-class</a>:</p> <pre><code>a:hover { background-color:#FF9900; } </code></pre> <p>Regarding the menu, it is quite common to implement <a href="http://mirificampress.com/permalink/the_amazing_li" rel="nofollow">navigation using unordered lists</a>.</p> http://stackoverflow.com/questions/433903/how-many-rows-in-mysql-database-table/433906#433906 10 Answer by Eran Galperin for how many rows in mysql database table? Eran Galperin 2009-01-11T22:48:35Z 2009-01-11T22:48:35Z <p>MySQL <a href="http://dev.mysql.com/doc/refman/5.1/en/counting-rows.html" rel="nofollow">COUNT()</a> function</p> <pre><code>SELECT COUNT(*) FROM table </code></pre> http://stackoverflow.com/questions/432432/distributed-time-synchronization-and-web-applications/432437#432437 1 Answer by Eran Galperin for Distributed time synchronization and web applications. Eran Galperin 2009-01-11T05:58:22Z 2009-01-11T06:13:20Z <p>Time synchronization is very hard to get right and in my opinion the wrong way to go about it. You need an event system which can notify registered observers every time an event is dispatched (<a href="http://en.wikipedia.org/wiki/Observer_pattern" rel="nofollow">observer pattern</a>). All observers will be notified simultaneously (or as close as possible to that), removing the need for time synchronization.</p> <p>To accommodate latency, the browser should be sent the timestamp of the event dispatch, and it should wait a little longer than what you expect the maximum latency to be. This way all events will be fired up at the same time on all browsers.</p> http://stackoverflow.com/questions/432174/how-to-store-arbitrary-data-for-some-html-tags/432210#432210 4 Answer by Eran Galperin for How to store arbitrary data for some HTML tags Eran Galperin 2009-01-11T02:21:40Z 2009-01-11T02:21:40Z <p>Arbitrary attributes are not valid, but are perfectly reliable in modern browsers. If you are setting the properties via javascript, than you don't have to worry about validation as well.</p> <p>An alternative is to set attributes in javascript. jQuery has a <a href="http://docs.jquery.com/Core/data" rel="nofollow">nice utility method</a> just for that purpose, or you can roll your own.</p> http://stackoverflow.com/questions/432192/singleton-in-php/432205#432205 14 Answer by Eran Galperin for Singleton in PHP Eran Galperin 2009-01-11T02:18:09Z 2009-01-11T02:18:09Z <p>Each request is self contained and does not share data with other requests (unless you use specific extensions for that, like memcache). So having singletons in your application would not affect separate requests from separate users.</p> <p>What should be of concern to you is your overuse of the singleton pattern. A singleton is an OO version of a global, and can cause some weird bugs if you are not careful. It is better to use scoped operations that do not rely on global settings, and use singletons sparingly.</p> http://stackoverflow.com/questions/139482/what-are-some-good-methods-to-hinder-screen-scrapers-from-grabbing-specific-piece/139505#139505 Comment by Eran Galperin on What are some good methods to hinder screen scrapers from grabbing specific pieces of content off my site? Eran Galperin 2009-11-20T21:46:58Z 2009-11-20T21:46:58Z A &quot;simple&quot; proxy server is not really a part of your basic scraping tools. Regardless, you can use session tokens to make sure the original page is accessed first, and also limit requests based on those tokens. In the end, anything available to a user, can be read by an automatic scraper if its configured properly. The point is just to make this as hard as possible. http://stackoverflow.com/questions/139482/what-are-some-good-methods-to-hinder-screen-scrapers-from-grabbing-specific-piece/139505#139505 Comment by Eran Galperin on What are some good methods to hinder screen scrapers from grabbing specific pieces of content off my site? Eran Galperin 2009-08-17T19:50:23Z 2009-08-17T19:50:23Z I was of course referring to fetching the data by Ajax. How do you scrape text that does not exist on the document? http://stackoverflow.com/questions/1168708/my-zend-framework-quoting-mess/1168727#1168727 Comment by Eran Galperin on My Zend Framework 'quoting' mess. Eran Galperin 2009-07-23T02:31:12Z 2009-07-23T02:31:12Z Since I know the type of the field, I coerce the value. This is especially useful with user input, as you make sure the value is of the proper format. http://stackoverflow.com/questions/126917/php-object-caching/126971#126971 Comment by Eran Galperin on PHP object caching Eran Galperin 2009-07-02T21:21:06Z 2009-07-02T21:21:06Z APC is not just a bytecode cache. It also has cache-to-memory capabilities, similar to memcache. http://stackoverflow.com/questions/422207/setting-properties-on-anonymous-dom-elements-through-javascript/422258#422258 Comment by Eran Galperin on Setting properties on anonymous DOM elements through JavaScript? Eran Galperin 2009-02-18T19:40:32Z 2009-02-18T19:40:32Z Not really sure what you are talking about. The second approach I gave you does exactly what you want - it's inside a callback, you are free to give them what attributes you wish. http://stackoverflow.com/questions/482631/chaining-a-constructor-with-an-object-function-call-in-php/482657#482657 Comment by Eran Galperin on Chaining a constructor with an object function call in PHP Eran Galperin 2009-01-27T14:25:28Z 2009-01-27T14:25:28Z But if you don't return it into anything than why create an instance locally? use a static method to return the instance and operate it directly. http://stackoverflow.com/questions/477754/how-to-do-this-in-jquery/477789#477789 Comment by Eran Galperin on How to do this in jQuery Eran Galperin 2009-01-25T15:05:29Z 2009-01-25T15:05:29Z No need to do option:selected if you need only the value.. http://stackoverflow.com/questions/477754/how-to-do-this-in-jquery/477786#477786 Comment by Eran Galperin on How to do this in jQuery Eran Galperin 2009-01-25T15:04:17Z 2009-01-25T15:04:17Z I thought you wanted the selected text... getting the value is even simpler. Check out my update http://stackoverflow.com/questions/476810/problems-with-big-query-and-subquery Comment by Eran Galperin on Problems with big query and subquery Eran Galperin 2009-01-24T22:45:33Z 2009-01-24T22:45:33Z Can you post the EXPLAIN results on the query? http://stackoverflow.com/questions/471165/comparing-sound-files-if-not-completely-identical/471181#471181 Comment by Eran Galperin on Comparing sound files if not completely identical Eran Galperin 2009-01-22T22:58:56Z 2009-01-22T22:58:56Z You need to do add pattern recognition then, and try to align them temporally before you check the samples http://stackoverflow.com/questions/471115/how-to-post-soap-request-from-php Comment by Eran Galperin on How to post SOAP Request from PHP Eran Galperin 2009-01-22T22:44:27Z 2009-01-22T22:44:27Z is it? did you see what the first page of results returns? http://stackoverflow.com/questions/471115/how-to-post-soap-request-from-php Comment by Eran Galperin on How to post SOAP Request from PHP Eran Galperin 2009-01-22T22:36:35Z 2009-01-22T22:36:35Z <a href="http://letmegooglethatforyou.com/?q=php+soap" rel="nofollow">letmegooglethatforyou.com/?q=php+soap</a> http://stackoverflow.com/questions/470951/what-is-the-correct-syntax-to-return-div-without-an-id-using-jquery/470962#470962 Comment by Eran Galperin on What is the correct syntax to return div without an id using jQuery? Eran Galperin 2009-01-22T22:14:27Z 2009-01-22T22:14:27Z I suggested an alternative method http://stackoverflow.com/questions/463572/jquery-edit-a-table-row-inline/463587#463587 Comment by Eran Galperin on jQuery - Edit a table row inline Eran Galperin 2009-01-21T07:41:58Z 2009-01-21T07:41:58Z I answered it in the simplistic way you described it. I usually use a hidden input with the data in raw form, and load up the text input with that. http://stackoverflow.com/questions/463677/alter-table-without-locking-the-table/463685#463685 Comment by Eran Galperin on ALTER TABLE without locking the table? Eran Galperin 2009-01-21T02:27:54Z 2009-01-21T02:27:54Z By saying standard you implied more than the default storage engine - rather that it was &quot;standard&quot;. I use InnoDB as the standard storage engine in my applications, and so do most production MySQL databases that require transactions. Removed my downvote since you cleared it up.