User cherouvim - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T05:56:42Zhttp://stackoverflow.com/feeds/user/72478http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810491/possible-to-svn-export-and-include-unversioned-files/1810499#18104990Answer by cherouvim for Possible to svn export and include unversioned files?cherouvim2009-11-27T20:16:42Z2009-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#17886790Answer by cherouvim for How to disable or Encrypt "View Source" from my sitecherouvim2009-11-24T08:32:42Z2009-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#17882053Answer by cherouvim for How to emulate the look of an off-white sheet of paper on a computer screencherouvim2009-11-24T06:24:51Z2009-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#17378760Answer by cherouvim for is there any script which can stop to show ALT="text" as a tooltip in IE 6 and 7?cherouvim2009-11-15T15:43:29Z2009-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#16494481Answer by cherouvim for what's the difference between import java.util.*; and import java.util.Date; ? [SOLVED]cherouvim2009-10-30T12:11:28Z2009-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#16352060Answer by cherouvim for Best Practice to Atomic Read and Write a Field In Databasecherouvim2009-10-28T04:30:14Z2009-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#16298380Answer by cherouvim for Searching for '\' using javascriptcherouvim2009-10-27T10:16:35Z2009-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#16293951Answer by cherouvim for Is anyone using SpringSource tc server as a Tomcat replacement?cherouvim2009-10-27T08:22:41Z2009-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#15855080Answer by cherouvim for Sitemap for dynamic PHP website ... the "lastmod" field is needed? cherouvim2009-10-18T17:32:36Z2009-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-content1Google Analytics cookies vs subdomain for static contentcherouvim2009-08-16T14:07:43Z2009-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-blockingcache5Does hibernate work well with ehcache's BlockingCache?cherouvim2009-10-05T16:26:11Z2009-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-hibernate0using ehcache blocking decorator with hibernatecherouvim2009-10-05T08:18:46Z2009-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#14290280Answer by cherouvim for How to protect HTML navigationcherouvim2009-09-15T18:55:58Z2009-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#13958670Answer by cherouvim for How to negotiate with a recruiter?cherouvim2009-09-08T19:29:15Z2009-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#13452632Answer by cherouvim for why Static cannot access non-static?cherouvim2009-08-28T06:01:50Z2009-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-host1ehcache auto-discovery (via multicast) between 2 instances on the same hostcherouvim2009-08-21T18:04:38Z2009-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><cacheManagerPeerProviderFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1,
multicastGroupPort=4446, timeToLive=32"/>
<cacheManagerPeerListenerFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="port=40001, socketTimeoutMillis=2000"/>
</code></pre>
<p>And inside each cache region I want to replicate I have:</p>
<pre><code><cacheEventListenerFactory
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
properties="asynchronousReplicationIntervalMillis=500 " />
<bootstrapCacheLoaderFactory
class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory" />
</code></pre>
<p>thanks</p>
http://stackoverflow.com/questions/743247/types-of-urls6Types of URLscherouvim2009-04-13T07:14:30Z2009-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#13189791Answer by cherouvim for Deleting millions of rows in MySQLcherouvim2009-08-23T16:42:21Z2009-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#13160252Answer by cherouvim for how to use url routing in php?cherouvim2009-08-22T13:53:38Z2009-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#13139991Answer by cherouvim for Keyword (OR, AND) search in Lucenecherouvim2009-08-21T20:12:50Z2009-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#13131441Answer by cherouvim for What is the most boring and hard part of your job?cherouvim2009-08-21T17:07:18Z2009-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#13131120Answer by cherouvim for is there a good listing of projects like apache software foundation?cherouvim2009-08-21T17:02:52Z2009-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#13130674Answer by cherouvim for Using a CMS to Design a Web Applicationcherouvim2009-08-21T16:54:53Z2009-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#13078860Answer by cherouvim for How Do I Serve a File Through JSMin PHP Script With Correct HTTP Caching (using .htaccess?)cherouvim2009-08-20T18:04:52Z2009-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#13053471Answer by cherouvim for Recommended reading on 'how the web works'cherouvim2009-08-20T10:48:10Z2009-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#13053341Answer by cherouvim for EmailAddress field length in databasecherouvim2009-08-20T10:46:04Z2009-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#13020881Answer by cherouvim for Google Analytics cookies vs subdomain for static contentcherouvim2009-08-19T19:19:57Z2009-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#13016531Answer by cherouvim for How can I practice better object-oriented programming?cherouvim2009-08-19T18:06:48Z2009-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#13016162Answer by cherouvim for Java Vector or ArrayList for Primitivescherouvim2009-08-19T18:02:35Z2009-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#13015933Answer by cherouvim for is there a simple alternative to TinyMCE?cherouvim2009-08-19T17:58:39Z2009-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#1737876Comment by cherouvim on is there any script which can stop to show ALT="text" as a tooltip in IE 6 and 7?cherouvim2009-11-19T19:24:56Z2009-11-19T19:24:56Z@Boldewyn: yes it is but I saw the jQuery tag so I thought that the author uses jQuery anywayhttp://stackoverflow.com/questions/1737828/is-there-any-script-which-can-stop-to-show-alttext-as-a-tooltip-in-ie-6-and-7/1737876#1737876Comment by cherouvim on is there any script which can stop to show ALT="text" as a tooltip in IE 6 and 7?cherouvim2009-11-15T15:46:37Z2009-11-15T15:46:37ZThis 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 IE7http://stackoverflow.com/questions/1733106/tomcat-6-cant-find-mysql-driverComment by cherouvim on Tomcat 6 can't find mysql drivercherouvim2009-11-14T09:14:11Z2009-11-14T09:14:11ZHow 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#265204Comment by cherouvim on is the das keyboard worth it?cherouvim2009-10-18T17:35:59Z2009-10-18T17:35:59Zyep, very very loud!http://stackoverflow.com/questions/1284384/google-analytics-cookies-vs-subdomain-for-static-content/1564495#1564495Comment by cherouvim on Google Analytics cookies vs subdomain for static contentcherouvim2009-10-14T12:18:23Z2009-10-14T12:18:23ZYou can ask a question for that.http://stackoverflow.com/questions/1521055/does-hibernate-work-well-with-ehcaches-blockingcache/1521364#1521364Comment by cherouvim on Does hibernate work well with ehcache's BlockingCache?cherouvim2009-10-06T04:53:23Z2009-10-06T04:53:23ZThanks 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#1518840Comment by cherouvim on using ehcache blocking decorator with hibernatecherouvim2009-10-05T08:53:09Z2009-10-05T08:53:09ZThanks 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#1092551Comment by cherouvim on Java: Checking if a bit is 0 or 1 in a longcherouvim2009-08-28T05:58:07Z2009-08-28T05:58:07Z+1 for using code that is understandable by future maintainershttp://stackoverflow.com/questions/131020/migrations-for-java/131843#131843Comment by cherouvim on Migrations for Javacherouvim2009-08-26T20:06:16Z2009-08-26T20:06:16ZIt 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#1337111Comment by cherouvim on What are the 4 main attributes of software process?cherouvim2009-08-26T20:02:31Z2009-08-26T20:02:31Zand "by when" :)http://stackoverflow.com/questions/1313410/ehcache-auto-discovery-via-multicast-between-2-instances-on-the-same-host/1322845#1322845Comment by cherouvim on ehcache auto-discovery (via multicast) between 2 instances on the same hostcherouvim2009-08-24T20:30:29Z2009-08-24T20:30:29ZThat 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#1318975Comment by cherouvim on Deleting millions of rows in MySQLcherouvim2009-08-23T16:43:46Z2009-08-23T16:43:46Znicely described!http://stackoverflow.com/questions/1318057/creating-image-cloudComment by cherouvim on Creating image cloudcherouvim2009-08-23T08:26:02Z2009-08-23T08:26:02ZWhat 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#1318027Comment by cherouvim on Lucene: unstored fields.cherouvim2009-08-23T08:12:45Z2009-08-23T08:12:45Z+1 for Luke. it's an eye openerhttp://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72685#72685Comment by cherouvim on What development book made the most impact on you as a developer?cherouvim2009-08-23T05:59:19Z2009-08-23T05:59:19ZTop book! Read it 3 times (there is a second edition as well).