User cherouvim - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:56:42Z http://stackoverflow.com/feeds/user/72478 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810491/possible-to-svn-export-and-include-unversioned-files/1810499#1810499 0 Answer by cherouvim for Possible to svn export and include unversioned files? cherouvim 2009-11-27T20:16:42Z 2009-11-27T20:16:42Z <p>In TortoiseSVN (windows SVN client) you do an "SVN export all", but the "unix" tag tells me that this doesn't apply to you.</p> http://stackoverflow.com/questions/1788539/how-to-disable-or-encrypt-view-source-from-my-site/1788679#1788679 0 Answer by cherouvim for How to disable or Encrypt "View Source" from my site cherouvim 2009-11-24T08:32:42Z 2009-11-24T08:32:42Z <p><strong>Yes</strong>, you can have your whole website being rendered dynamically via javascript which would be encrypted/packed/obfuscated like there is no tomorrow.</p> http://stackoverflow.com/questions/1787240/how-to-emulate-the-look-of-an-off-white-sheet-of-paper-on-a-computer-screen/1788205#1788205 3 Answer by cherouvim for How to emulate the look of an off-white sheet of paper on a computer screen cherouvim 2009-11-24T06:24:51Z 2009-11-24T06:24:51Z <p>It's the texture that matters as well.</p> http://stackoverflow.com/questions/1737828/is-there-any-script-which-can-stop-to-show-alttext-as-a-tooltip-in-ie-6-and-7/1737876#1737876 0 Answer by cherouvim for is there any script which can stop to show ALT="text" as a tooltip in IE 6 and 7? cherouvim 2009-11-15T15:43:29Z 2009-11-15T15:43:29Z <p>You could do the following but it would be very intrusive (and a bit slow):</p> <pre><code>$('*').attr('alt', ''); </code></pre> http://stackoverflow.com/questions/1649430/whats-the-difference-between-import-java-util-and-import-java-util-date-s/1649448#1649448 1 Answer by cherouvim for what's the difference between import java.util.*; and import java.util.Date; ? [SOLVED] cherouvim 2009-10-30T12:11:28Z 2009-10-30T12:11:28Z <p>Your program should work exactly the same with either <strong>import java.util.*;</strong> or <strong>import java.util.Date;</strong>. There has to be something else you did in between.</p> http://stackoverflow.com/questions/1635096/best-practice-to-atomic-read-and-write-a-field-in-database/1635206#1635206 0 Answer by cherouvim for Best Practice to Atomic Read and Write a Field In Database cherouvim 2009-10-28T04:30:14Z 2009-10-28T07:13:10Z <p>Not sure if this is acceptable for your usecase but the following is possible all in the database level:</p> <pre><code>1. begin transaction 2. update counter = counter+1 3. read value 4. commit </code></pre> <p>When a thread has executed 2 the other threads will block before 2 until the 1st thread does the commit.</p> <p><strong>Edit</strong>: If the update cannot happen on the database then you have to use a <strong>select for update</strong> style of statement to lock others from executing:</p> <pre><code>1. begin transaction 2. select counter for update 3. calculate new counter value in application layer 4. update counter on database 5. commit </code></pre> <p>Now threads will always block on step 2 when another thread is anywhere between 2 and 5. The whole operation will be atomic. Select for update syntax for MySQL InnoDB can be found at: <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb-locking-reads.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/innodb-locking-reads.html</a></p> http://stackoverflow.com/questions/1629824/searching-for-using-javascript/1629838#1629838 0 Answer by cherouvim for Searching for '\' using javascript cherouvim 2009-10-27T10:16:35Z 2009-10-27T10:16:35Z <p>Try</p> <pre><code>lastIndexOf("\\") </code></pre> http://stackoverflow.com/questions/802400/is-anyone-using-springsource-tc-server-as-a-tomcat-replacement/1629395#1629395 1 Answer by cherouvim for Is anyone using SpringSource tc server as a Tomcat replacement? cherouvim 2009-10-27T08:22:41Z 2009-10-27T08:22:41Z <p>They've just released a <a href="http://www.springsource.com/products/tcserver/devedition" rel="nofollow">developer edition</a>. Have a look at this <a href="http://s3.springsource.com/MRKT/spring-metrics/Spring_Insight_Preview-final2.mov" rel="nofollow">screencast</a> which demonstrates how their diagnostics work.</p> http://stackoverflow.com/questions/1585498/sitemap-for-dynamic-php-website-the-lastmod-field-is-needed/1585508#1585508 0 Answer by cherouvim for Sitemap for dynamic PHP website ... the "lastmod" field is needed? cherouvim 2009-10-18T17:32:36Z 2009-10-18T17:32:36Z <p><a href="http://en.wikipedia.org/wiki/Sitemaps#Element_definitions" rel="nofollow">It's not mandatory</a> but it's good to have it in order to let Google (and other engines) know when content updates happen on your site.</p> http://stackoverflow.com/questions/1284384/google-analytics-cookies-vs-subdomain-for-static-content 1 Google Analytics cookies vs subdomain for static content cherouvim 2009-08-16T14:07:43Z 2009-10-14T06:01:39Z <p>Hello</p> <p>I have a website on www.example.com and use Google Analytics. I've also set up static.example.com which serves all static content.</p> <p>The problem is that the default behavior of GA is to issue cookies on ".example.com" but I don't want the static content traffic to be carrying the weight the GA cookies.</p> <p>I tried <strong>pageTracker._setDomainName("none");</strong> and it worked well for the cookies problem but it completely messed up the "Avg. Time on Site" report (from 5 mins average it went to 40 mins until the day I reverted the _setDomainName call).</p> <p>Any idea why this is happening and how could I fix it?</p> <p>Thanks</p> http://stackoverflow.com/questions/1521055/does-hibernate-work-well-with-ehcaches-blockingcache 5 Does hibernate work well with ehcache's BlockingCache? cherouvim 2009-10-05T16:26:11Z 2009-10-06T15:23:04Z <p>Hello</p> <p>I have a high traffic website and I use hibernate. I also use ehcache to cache some entities and queries which are required to generate the pages. The problem is that when a cache region invalidates I'm getting that cache region repopulated many times by different threads (because the site is being hit by many users at the same time) and I want to avoid it.</p> <p>I managed to <a href="http://stackoverflow.com/questions/1518808/using-ehcache-blocking-decorator-with-hibernate">convert 1 entity and 1 query cache to a BlockingCache</a> by providing my own implementation to hibernate.cache.provider_class but the semantics of BlockingCache do not seem to work. Even worst sometimes the BlockingCache deadlocks (blocks) and the application hangs completely. Thread dump shows that processing is blocked on the mutex of BlockingCache on a get operation.</p> <p>So, the question is, does Hibernate support this kind of use?</p> <p>And if not, how do you solve this problem on production?</p> <p>Thanks a lot</p> <p><strong>Edit</strong>: The *hibernate.cache.provider_class* points to my custom cache provider which is a copy paste from <a href="http://ehcache.org/xref/net/sf/ehcache/hibernate/SingletonEhCacheProvider.html" rel="nofollow">SingletonEhCacheProvider</a> and at the end of the start() method (after line 136) I do:</p> <pre><code>Ehcache cache = manager.getEhcache("foo"); if (!(cache instanceof BlockingCache)) { manager.replaceCacheWithDecoratedCache(cache, new BlockingCache(cache)); } </code></pre> <p>That way upon initialization, and before anyone else touches the cache named "foo", I decorate it with BlockingCache. "foo" is a query cache and "bar" (same code but omitted) is an entity cache for a pojo.</p> <p><strong>Edit 2</strong>: "Doesn't seem to work" means that the initial problem still exists. Cache "foo" is still being re-populated many times with the same data, because of the concurrency. I validate this by stressing the site with JMeter with 10 threads. I'd expect the 9 threads to block until the first one which requested data from "foo" to finish it's job (execute queries, store data in cache), and then get the data directly from the cache. </p> http://stackoverflow.com/questions/1518808/using-ehcache-blocking-decorator-with-hibernate 0 using ehcache blocking decorator with hibernate cherouvim 2009-10-05T08:18:46Z 2009-10-05T08:32:08Z <p>Hello</p> <p>I'm using ehcache with hibernate and I'd like to use the blocking or SelfPopulating cache to avoid the issues presented in <a href="http://ehcache.org/documentation/constructs-0_5.html#mozTocId722946" rel="nofollow">http://ehcache.org/documentation/constructs-0_5.html#mozTocId722946</a></p> <blockquote> <p>An expensive operation is required, say rendering a large web page, which takes 30 seconds. The page is not considered stale until it is 5 minutes old. The page is hit very heavily and will be hit an average of 20 times per minute each 5 minutes.</p> </blockquote> <p>Do I have to do this programmatically as <a href="http://ehcache.org/documentation/cache_decorators.html" rel="nofollow">http://ehcache.org/documentation/cache_decorators.html</a> suggests or is there a declarative (in xml) way to do so?</p> <p>thanks a lot</p> http://stackoverflow.com/questions/1429013/how-to-protect-html-navigation/1429028#1429028 0 Answer by cherouvim for How to protect HTML navigation cherouvim 2009-09-15T18:55:58Z 2009-09-15T18:55:58Z <p>One way of solving this problem is to have an intermediary script serving the binary content (based on user privileges) from a protected location.</p> <p>So a typical file download URL instead of <strong>/resources/foo.pdf</strong> would be <strong>/download.php?foo.pdf</strong></p> http://stackoverflow.com/questions/1395821/how-to-negotiate-with-a-recruiter/1395867#1395867 0 Answer by cherouvim for How to negotiate with a recruiter? cherouvim 2009-09-08T19:29:15Z 2009-09-08T19:29:15Z <p>Make sure you listen to the <a href="http://manager-tools.com/2009/01/maintaining-recruiter-relationships" rel="nofollow">http://manager-tools.com/2009/01/maintaining-recruiter-relationships</a> podcast as well.</p> http://stackoverflow.com/questions/1345253/why-static-cannot-access-non-static/1345263#1345263 2 Answer by cherouvim for why Static cannot access non-static? cherouvim 2009-08-28T06:01:50Z 2009-08-28T06:01:50Z <p>You've created an instance of <strong>X</strong> inside the static initializer block.</p> <p>Later on you try to access the member variable <strong>a</strong> from another static block, which is not possible. You need to create an instance of <strong>X</strong> and then try to access <strong>X.a</strong></p> http://stackoverflow.com/questions/1313410/ehcache-auto-discovery-via-multicast-between-2-instances-on-the-same-host 1 ehcache auto-discovery (via multicast) between 2 instances on the same host cherouvim 2009-08-21T18:04:38Z 2009-08-26T10:02:04Z <p>Hello</p> <p>I run 2 tomcat instances on the same host. Each instance runs the same web application which tries to communicate some ehcache caches via RMI replication. I use the autodiscovery configuration in ehcache so I don't have to explicitly define which are the hosts and which are the caches I want to replicate. The ehcache instances do not manage to find each other and communicate:</p> <pre><code>DEBUG (RMIBootstrapCacheLoader.java:211) - cache peers: [] DEBUG (RMIBootstrapCacheLoader.java:133) - Empty list of cache peers for cache org.hibernate.cache.UpdateTimestampsCache. No cache peer to bootstrap from. </code></pre> <p>If I try the same thing but this time run each tomcat instance on a separate host (box) then everything works like a charm.</p> <p>Am I doing something wrong, or isn't autodiscovery via multicast possible when the instances are on the same host?</p> <p>My configuration uses the defaults presented in the <a href="http://ehcache.org/documentation/distributed_caching_with_rmi.html" rel="nofollow">RMI Distributed Caching documentation</a>:</p> <pre><code>&lt;cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory" properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1, multicastGroupPort=4446, timeToLive=32"/&gt; &lt;cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory" properties="port=40001, socketTimeoutMillis=2000"/&gt; </code></pre> <p>And inside each cache region I want to replicate I have:</p> <pre><code>&lt;cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory" properties="asynchronousReplicationIntervalMillis=500 " /&gt; &lt;bootstrapCacheLoaderFactory class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory" /&gt; </code></pre> <p>thanks</p> http://stackoverflow.com/questions/743247/types-of-urls 6 Types of URLs cherouvim 2009-04-13T07:14:30Z 2009-08-24T13:42:16Z <p><strong>1) Absolute</strong><br /> <code>http://www.example.com/images/icons.png</code></p> <p><strong>2) Relative</strong><br /> <code>../images/icons.png</code></p> <p><strong>3) ???</strong><br /> <code>/images/icons.png</code></p> <p><strong>4) ???</strong><br /> <code>//www.example.com/images/icons.png</code></p> <p>Do <a href="http://en.wikipedia.org/wiki/URL" rel="nofollow">URL</a> types 3 and 4 have a name? One place I've seen type 4 being used is at <a href="http://slashdot.org/" rel="nofollow">slashdot</a>.</p> http://stackoverflow.com/questions/1318972/deleting-millions-of-rows-in-mysql/1318979#1318979 1 Answer by cherouvim for Deleting millions of rows in MySQL cherouvim 2009-08-23T16:42:21Z 2009-08-23T16:42:21Z <p>Do it in batches of lets say 2000 rows at a time. Commit in-between. A million rows isn't that much and this will be fast, unless you have many indexes on the table.</p> http://stackoverflow.com/questions/1316021/how-to-use-url-routing-in-php/1316025#1316025 2 Answer by cherouvim for how to use url routing in php? cherouvim 2009-08-22T13:53:38Z 2009-08-22T13:53:38Z <p>Plain PHP doesn't have it by default. You'd have to forward via mod_rewrite everything to index.php?$1 and then implement some kind of <a href="http://en.wikipedia.org/wiki/Front_Controller_pattern" rel="nofollow">front controller</a> there.</p> http://stackoverflow.com/questions/1311304/keyword-or-and-search-in-lucene/1313999#1313999 1 Answer by cherouvim for Keyword (OR, AND) search in Lucene cherouvim 2009-08-21T20:12:50Z 2009-08-22T04:19:25Z <p><strong>OR</strong>, <strong>NOT</strong> and <strong>AND</strong> are reserved keywords. I solved this problem just 2 days ago by lower-casing those 3 words in the user's search term before feeding it into the lucene query parser. Note that if you search and replace for these keywords make sure you use word boundaries (\b) so you don't end up changing words such as ANDROID and ORDER.</p> <p>I then let the user specify <strong>NOT</strong> and <strong>AND</strong> by using - and +, just like Google does.</p> http://stackoverflow.com/questions/1312249/what-is-the-most-boring-and-hard-part-of-your-job/1313144#1313144 1 Answer by cherouvim for What is the most boring and hard part of your job? cherouvim 2009-08-21T17:07:18Z 2009-08-21T17:07:18Z <p>Dealing with coworkers who can't be bothered.</p> http://stackoverflow.com/questions/1313091/is-there-a-good-listing-of-projects-like-apache-software-foundation/1313112#1313112 0 Answer by cherouvim for is there a good listing of projects like apache software foundation? cherouvim 2009-08-21T17:02:52Z 2009-08-21T17:02:52Z <p>open source project hosting:</p> <ul> <li><a href="http://code.google.com/" rel="nofollow">http://code.google.com/</a></li> <li><a href="http://sourceforge.net/" rel="nofollow">http://sourceforge.net/</a></li> </ul> <p>projects such as apache:</p> <ul> <li><a href="http://codehaus.org/" rel="nofollow">http://codehaus.org/</a></li> <li><a href="http://www.opensymphony.com/" rel="nofollow">http://www.opensymphony.com/</a></li> </ul> http://stackoverflow.com/questions/1313021/using-a-cms-to-design-a-web-application/1313067#1313067 4 Answer by cherouvim for Using a CMS to Design a Web Application cherouvim 2009-08-21T16:54:53Z 2009-08-21T16:54:53Z <p>I do it all the time with a proprietary CMS. I'm sure it's possible to write any kind of plugin/subsystem for drupal etc.</p> <p>Benefits:</p> <ul> <li>Hopefully familiar MVC codebase, you get something out of the door quicker.</li> <li>Integration with website for free in case it is needed, since you are already in a CMS environment. Otherwise you'd have to implement basic CMS functionalities on top of your custom web application.</li> <li>Dependency with underlying CMS. You benefit from updates such as new features, security fixes, performance optimizations etc.</li> </ul> <p>Caveats:</p> <ul> <li>Carrying the "weight" of the CMS. Maybe it has tables, objects and subsystems that you'll never use.</li> <li>Larger code base. Steeper learning curve for maintainers who now have to understand the CMS and your business logic.</li> <li>Dependency with underlying CMS. At least your controllers (and maybe the persistence layer) will be bound to the way the CMS does it. Try to keep your model and business logic independent of the CMS'es MVC framework.</li> </ul> http://stackoverflow.com/questions/1307865/how-do-i-serve-a-file-through-jsmin-php-script-with-correct-http-caching-using/1307886#1307886 0 Answer by cherouvim for How Do I Serve a File Through JSMin PHP Script With Correct HTTP Caching (using .htaccess?) cherouvim 2009-08-20T18:04:52Z 2009-08-20T18:04:52Z <p>Why don't you compress the file before deploying? Compressing it on runtime seems more complex and slower.</p> <p>I use <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">http://developer.yahoo.com/yui/compressor/</a></p> http://stackoverflow.com/questions/1296610/recommended-reading-on-how-the-web-works/1305347#1305347 1 Answer by cherouvim for Recommended reading on 'how the web works' cherouvim 2009-08-20T10:48:10Z 2009-08-20T10:48:10Z <p>On how the web works you need to also read a bit about <a href="http://en.wikipedia.org/wiki/Domain_Name_System" rel="nofollow">DNS</a>.</p> http://stackoverflow.com/questions/1305327/emailaddress-field-length-in-database/1305334#1305334 1 Answer by cherouvim for EmailAddress field length in database cherouvim 2009-08-20T10:46:04Z 2009-08-20T10:46:04Z <p>Something like 64 or more, but in any case make sure that you always truncate the user input (to 64). You don't want to be missing important information (user entry) just because the email was longer than you expected.</p> http://stackoverflow.com/questions/1284384/google-analytics-cookies-vs-subdomain-for-static-content/1302088#1302088 1 Answer by cherouvim for Google Analytics cookies vs subdomain for static content cherouvim 2009-08-19T19:19:57Z 2009-08-19T19:19:57Z <p>The solution is to do <code>pageTracker._setDomainName("www.example.com")</code> and then GA will issue the cookies to ".www.example.com". That way analytics still works fine and the cookies do not leak into the other static subdomain.</p> http://stackoverflow.com/questions/1301606/how-can-i-practice-better-object-oriented-programming/1301653#1301653 1 Answer by cherouvim for How can I practice better object-oriented programming? cherouvim 2009-08-19T18:06:48Z 2009-08-19T18:06:48Z <p>Become more agile, learn junit testing and study about Domain Driven Design. I suggest the book <a href="http://rads.stackoverflow.com/amzn/click/0321125215" rel="nofollow">Domain-Driven Design: Tackling Complexity in the Heart of Software</a> although it's a bit tough at some points.</p> http://stackoverflow.com/questions/1301588/java-vector-or-arraylist-for-primitives/1301616#1301616 2 Answer by cherouvim for Java Vector or ArrayList for Primitives cherouvim 2009-08-19T18:02:35Z 2009-08-19T18:02:35Z <p><a href="http://joda-primitives.sourceforge.net/faq.html" rel="nofollow">Joda-Primitives</a>.</p> <p>There is also <a href="http://pcj.sourceforge.net/" rel="nofollow">Primitive Collections for Java</a> but it's a bit out of date.</p> http://stackoverflow.com/questions/1301567/is-there-a-simple-alternative-to-tinymce/1301593#1301593 3 Answer by cherouvim for is there a simple alternative to TinyMCE? cherouvim 2009-08-19T17:58:39Z 2009-08-19T17:58:39Z <p>What do you find problematic with TinyMCE?</p> <p>You can try <a href="http://www.fckeditor.net/" rel="nofollow">http://www.fckeditor.net/</a> on a lightweight toolbar setup. It's not lightweight but it doesn't have any serious editing and HTML formating issues.</p> http://stackoverflow.com/questions/1737828/is-there-any-script-which-can-stop-to-show-alttext-as-a-tooltip-in-ie-6-and-7/1737876#1737876 Comment by cherouvim on is there any script which can stop to show ALT="text" as a tooltip in IE 6 and 7? cherouvim 2009-11-19T19:24:56Z 2009-11-19T19:24:56Z @Boldewyn: yes it is but I saw the jQuery tag so I thought that the author uses jQuery anyway http://stackoverflow.com/questions/1737828/is-there-any-script-which-can-stop-to-show-alttext-as-a-tooltip-in-ie-6-and-7/1737876#1737876 Comment by cherouvim on is there any script which can stop to show ALT="text" as a tooltip in IE 6 and 7? cherouvim 2009-11-15T15:46:37Z 2009-11-15T15:46:37Z This doesn't remove it from the source code, but from the DOM which is in memory. Bots will not be affected, and you could couple this with a jQuery.support call in order to execute it only on IE6 and IE7 http://stackoverflow.com/questions/1733106/tomcat-6-cant-find-mysql-driver Comment by cherouvim on Tomcat 6 can't find mysql driver cherouvim 2009-11-14T09:14:11Z 2009-11-14T09:14:11Z How are you trying to create a datasource? From within your application or from a JNDI bound connection pool (DBCP)? http://stackoverflow.com/questions/264981/is-the-das-keyboard-worth-it/265204#265204 Comment by cherouvim on is the das keyboard worth it? cherouvim 2009-10-18T17:35:59Z 2009-10-18T17:35:59Z yep, very very loud! http://stackoverflow.com/questions/1284384/google-analytics-cookies-vs-subdomain-for-static-content/1564495#1564495 Comment by cherouvim on Google Analytics cookies vs subdomain for static content cherouvim 2009-10-14T12:18:23Z 2009-10-14T12:18:23Z You can ask a question for that. http://stackoverflow.com/questions/1521055/does-hibernate-work-well-with-ehcaches-blockingcache/1521364#1521364 Comment by cherouvim on Does hibernate work well with ehcache's BlockingCache? cherouvim 2009-10-06T04:53:23Z 2009-10-06T04:53:23Z Thanks for your answer. I still find it hard to believe that I need to go so low level with hibernate and ehcache to solve this problem. http://stackoverflow.com/questions/1518808/using-ehcache-blocking-decorator-with-hibernate/1518840#1518840 Comment by cherouvim on using ehcache blocking decorator with hibernate cherouvim 2009-10-05T08:53:09Z 2009-10-05T08:53:09Z Thanks a lot for the insight. I'm already using SingletonEhCacheProvider and the implementation is final (I cannot extend it). Should I duplicate the code or would a custom servlet filter do the job? http://stackoverflow.com/questions/1092411/java-checking-if-a-bit-is-0-or-1-in-a-long/1092551#1092551 Comment by cherouvim on Java: Checking if a bit is 0 or 1 in a long cherouvim 2009-08-28T05:58:07Z 2009-08-28T05:58:07Z +1 for using code that is understandable by future maintainers http://stackoverflow.com/questions/131020/migrations-for-java/131843#131843 Comment by cherouvim on Migrations for Java cherouvim 2009-08-26T20:06:16Z 2009-08-26T20:06:16Z It doesn't sync it 100%. It doesn't alter columns, delete columns or tables, remove FKs etc. http://stackoverflow.com/questions/1337087/what-are-the-4-main-attributes-of-software-process/1337111#1337111 Comment by cherouvim on What are the 4 main attributes of software process? cherouvim 2009-08-26T20:02:31Z 2009-08-26T20:02:31Z and &quot;by when&quot; :) http://stackoverflow.com/questions/1313410/ehcache-auto-discovery-via-multicast-between-2-instances-on-the-same-host/1322845#1322845 Comment by cherouvim on ehcache auto-discovery (via multicast) between 2 instances on the same host cherouvim 2009-08-24T20:30:29Z 2009-08-24T20:30:29Z That was it. There was a port collision but no WARN or ERROR on logs (and I have everything set to level ALL). Thanks a lot!!! http://stackoverflow.com/questions/1318972/deleting-millions-of-rows-in-mysql/1318975#1318975 Comment by cherouvim on Deleting millions of rows in MySQL cherouvim 2009-08-23T16:43:46Z 2009-08-23T16:43:46Z nicely described! http://stackoverflow.com/questions/1318057/creating-image-cloud Comment by cherouvim on Creating image cloud cherouvim 2009-08-23T08:26:02Z 2009-08-23T08:26:02Z What aspect of this image cloud do you need help with? modeling? database design issues? html markup? css positioning? http://stackoverflow.com/questions/1316118/lucene-unstored-fields/1318027#1318027 Comment by cherouvim on Lucene: unstored fields. cherouvim 2009-08-23T08:12:45Z 2009-08-23T08:12:45Z +1 for Luke. it's an eye opener http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72685#72685 Comment by cherouvim on What development book made the most impact on you as a developer? cherouvim 2009-08-23T05:59:19Z 2009-08-23T05:59:19Z Top book! Read it 3 times (there is a second edition as well).