User deathy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T20:15:38Zhttp://stackoverflow.com/feeds/user/20109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1217529/how-to-profile-session-memory-usage-in-java-seam-web-application0How to profile session memory usage in Java/Seam web application?deathy2009-08-01T21:25:15Z2009-09-19T08:47:56Z
<p>Is there any way/tool to profile per-session memory usage in a Java web application?</p>
<p>More specifically I'm using Seam and I have a few objects which are specific for the user or for the user's current session so they're set to be stored in the user's session.</p>
<p>Some time ago my application would run out of memory when hitting a certain number of users so I moved various things out of the session and profiled until I got the memory down. However the memory measurements were at the JVM level. I'd really like a way to monitor memory usage on session level, excluding any non-session memory usage.</p>
<p>Nice to have:</p>
<ul>
<li>Total memory usage for http sessions (which I can compare to whole application memory usage)</li>
<li>Per-session memory usage, even averages. </li>
</ul>
http://stackoverflow.com/questions/1217534/gzipped-content-expected/1217546#12175460Answer by deathy for Gzipped content expecteddeathy2009-08-01T21:37:20Z2009-08-01T21:37:20Z<ul>
<li>Are you sure you're testing the same URLs with the Firefox extensions?
<ul>
<li>Using the ob_gzhandler in PHP will compress the output of your php pages, but YSlow and others warn you also about uncompressed css/javascript files.</li>
</ul></li>
<li>Check that the browser is sending the correct headers. A browser usually sends the "Accept-encoding: gzip" header to tell the script/webserver it accepts compressed content. The testing scripts will surely send that but your browser might not.</li>
</ul>
http://stackoverflow.com/questions/458489/how-do-you-make-really-large-boolean-arrays-using-java/458555#4585551Answer by deathy for How do you make REALLY large boolean arrays using Java?deathy2009-01-19T18:07:15Z2009-01-19T18:07:15Z<p>What values do you have in the array?
For a such large number I guess it's going to be a sparse array so maybe it would be best to use a Map/List and just allocate space and store a value for a 1 value for a bit. Or for a 0 value if most of your values will be 1.</p>
http://stackoverflow.com/questions/385069/how-to-protect-monitor-your-site-from-crawling-by-malicious-user1How to protect/monitor your site from crawling by malicious userdeathy2008-12-21T22:25:16Z2009-01-07T08:59:25Z
<p>Situation:</p>
<ul>
<li>Site with content protected by username/password (not all controlled since they can be trial/test users)</li>
<li>a normal search engine can't get at it because of username/password restrictions</li>
<li>a malicious user can still login and pass the session cookie to a "wget -r" or something else.</li>
</ul>
<p>The question would be what is the best solution to monitor such activity and respond to it (considering the site policy is no-crawling/scraping allowed)</p>
<p>I can think of some options:</p>
<ol>
<li>Set up some traffic monitoring solution to limit the number of requests for a given user/IP.</li>
<li>Related to the first point: Automatically block some user-agents</li>
<li>(Evil :)) Set up a hidden link that when accessed logs out the user and disables his account. (Presumably this would not be accessed by a normal user since he wouldn't see it to click it, but a bot will crawl all links.)</li>
</ol>
<p>For point 1. do you know of a good already-implemented solution? Any experiences with it? One problem would be that some false positives might show up for very active but human
users.</p>
<p>For point 3: do you think this is really evil? Or do you see any possible problems with it?</p>
<p>Also accepting other suggestions.</p>
http://stackoverflow.com/questions/405060/can-i-use-a-regex-in-an-xpath-expression/405081#4050818Answer by deathy for Can I use a Regex in an XPath expression?deathy2009-01-01T16:01:22Z2009-01-01T16:08:02Z<p>XPath 2.0 has some functions which support regular expressions: matches(), replace(), tokenize()</p>
<p>In XPath 1.0 there is no regex support.</p>
<p>For .NET you can use the XPath engine in Saxon.Net to have XPath 2.0 support.</p>
<p>So if using the XPath 2.0 engine in Saxon.NET your example would turn to: ".//div[matches(@id,'foo\d+')]"</p>
http://stackoverflow.com/questions/385069/how-to-protect-monitor-your-site-from-crawling-by-malicious-user/385192#3851920Answer by deathy for How to protect/monitor your site from crawling by malicious userdeathy2008-12-21T23:34:11Z2008-12-22T00:02:13Z<p>Added comments: </p>
<ul>
<li>I know you can't completely protect something that a normal user should be able to see. I've been on both sides of the problem :)</li>
<li>From a developer side what do you think is best ratio of time spent versus protected cases? I'd guess some simple user-agent checks would remove half or more of the potential crawlers, and I know you can spend months developing to protect from the last 1%</li>
</ul>
<p>Again, from a service provider point of view I'm also interested that one user (crawler) doesn't consume cpu/bandwidth for others so any good bandwidth/request limiters you can point out?</p>
<p>response to comment: Platform specifications: Application based on JBoss Seam running on JBoss AS. However there is an apache2 in front of it. (running on linux)</p>
http://stackoverflow.com/questions/385069/how-to-protect-monitor-your-site-from-crawling-by-malicious-user/385116#3851160Answer by deathy for How to protect/monitor your site from crawling by malicious userdeathy2008-12-21T22:53:19Z2008-12-21T22:53:19Z<p>@frankodwyer:</p>
<ul>
<li>Only trusted user agents won't work, consider especially IE user-agent string which gets modified by addons or .net version. There would be too many possibilities and it can be faked.</li>
<li>variation on point 3. with notification to admin would probably work, but it would mean a non-determined delay if an admin isn't monitoring the logs constantly.</li>
</ul>
<p>@Greg Hewgill:</p>
<ul>
<li>The auto-logout would also disable the user account. At the least a new account would have to be created leaving more trails like email-address and other information.</li>
</ul>
<p>Randomly changing logout/disable-url for 3. would be interesting, but don't know how I would implement it yet :)</p>
http://stackoverflow.com/questions/363420/how-can-i-make-a-table-of-contents-frame-in-xsl/369292#3692920Answer by deathy for How can I make a Table of Contents frame in XSL?deathy2008-12-15T18:35:16Z2008-12-15T18:35:16Z<p>As said before, you need 3 files for this.</p>
<p>In XSLT 2.0 you can generate multiple output files from one xsl stylesheet using the xsl:result-document instruction.</p>
<p>In XSLT 1.0 you don't have that function, but depending on the processor it might be possible. For example for Xalan see <a href="http://xml.apache.org/xalan-j/extensions_xsltc.html#redirect_ext" rel="nofollow">http://xml.apache.org/xalan-j/extensions_xsltc.html#redirect_ext</a></p>
http://stackoverflow.com/questions/365387/refactoring-when-do-you-know-its-time-and-when-do-you-do-it5Refactoring: When do you know it's time and when do you do it?deathy2008-12-13T16:25:52Z2008-12-13T18:40:44Z
<p>When do you know it's time to refactor/review some piece of code ? And better yet, when do you do it?</p>
<p>Probably like others, I've found myself knowing that something needs a refactor/review but deadlines and management left no time for that. I'd also like to hear how you include code review in the general development process.</p>
<p>Lately I've found myself doing it before working on new features/code. For example, if I have to develop something new or change something in module X of an application, I do a code review on that module. I found it also helps me understand the module better so I can then make the changes more easily.</p>
<p>So when do you know it's time and when do you do it? And most of all how do you include it in the planning of a project?</p>
http://stackoverflow.com/questions/365387/refactoring-when-do-you-know-its-time-and-when-do-you-do-it/365411#3654110Answer by deathy for Refactoring: When do you know it's time and when do you do it?deathy2008-12-13T16:43:47Z2008-12-13T16:43:47Z<p>To get into a specific problem: There's a project where some bad code was written (even by people who are no longer in the company) during a few months. A full rewrite would be unfeasible and I couldn't explain it to either the client or management.</p>
<p>So I was wondering if refactoring a certain module before doing changes on that module would be acceptable in that situation.</p>
<p>I know it's not the best scenario but the context is a special case (code already broken, can't rewrite it all).</p>
http://stackoverflow.com/questions/350470/what-tools-do-you-recommend-to-profile-rails-apps/350551#3505512Answer by deathy for What tools do you recommend to profile Rails apps?deathy2008-12-08T19:19:57Z2008-12-08T19:33:24Z<p><a href="http://rails-analyzer.rubyforge.org/" rel="nofollow">http://rails-analyzer.rubyforge.org/</a> might be what you're looking for.</p>
<p>I highly recommend the Production log Analyzer for a clear list of most time consuming actions and also the action profiler.</p>
<p>added: For the production log analyzer you don't need any configuration, it just parses the production log and gives you a list of most time consuming actions, including min/max/median time. Very good to see where you should profile/optimize more.</p>
http://stackoverflow.com/questions/185535/largest-heap-used-in-a-managed-environment-net-java/185588#1855880Answer by deathy for Largest Heap used in a managed environment? (.net/java)deathy2008-10-09T01:24:44Z2008-10-09T01:24:44Z<p>I have used from 2GB to 5GB of memory in java, but usually when I get to more than 2GB I really start thinking about memory optimization. Diminishing returns can vary from not optimizing when it's necessary because you have a lot of memory, to not having memory available for the OS/Disk caches (which can help your application overall).</p>
<p>For Java, I recommend watching your memory usage per generation over time. Do you create a lot of temporary objects or have long-lasting objects that consume a lot of memory? A lot of optimization of memory can be done when knowing those things.</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185515#1855153Answer by deathy for Prevent direct access to a PHP page.deathy2008-10-09T00:47:01Z2008-10-09T00:47:01Z<p>If the browser will call your page, either by normal request or ajax, then someone can call it manually. There really isn't a well defined difference between normal and ajax requests as far as the server-client communication goes. </p>
<p>Common case is to pass a header to the server that says "this request was done by ajax". If you're using Prototype, it automatically sets the http header "X-Requested-With" to "XMLHttpRequest" and also some other headers including the prototype version. (See more at <a href="http://www.prototypejs.org/api/ajax/options" rel="nofollow">http://www.prototypejs.org/api/ajax/options</a> at "requestHeaders" )</p>
<p>Add: In case you're using another AJAX library you can probably add your own header. This is useful for knowing what type of request it was on the server side, and for avoiding simple cases when an ajax page would be requested in the browser. It does not protect your request from everyone because you can't.</p>
http://stackoverflow.com/questions/182393/xml-configuration-versus-annotation-based-configuration/183579#1835791Answer by deathy for Xml configuration versus Annotation based configurationdeathy2008-10-08T16:12:02Z2008-10-08T16:12:02Z<p>I also think a mix is the best thing, but it also depends on the type of configuration parameters.
I'm working on a Seam project which also uses Spring and I usually deploy it to different development and test servers. So I have split:</p>
<ul>
<li>Server specific configuration (Like absolute paths to resources on server): Spring XML file</li>
<li>Injecting beans as members of other beans (or reusing a Spring XML defined value in many beans): Annotations</li>
</ul>
<p>The key difference is that you don't have to recompile the code for all changing server-specific configurations, just edit the xml file.
There's also the advantage that some configuration changes can be done by team members who don't understand all the code involved.</p>
http://stackoverflow.com/questions/121605/how-to-reduce-javax-faces-viewstate-in-jsf/170877#1708773Answer by deathy for How to reduce javax.faces.ViewState in JSFdeathy2008-10-04T19:14:29Z2008-10-04T19:14:29Z<p>Have you tried setting the state saving to server? This should only send an id to the client, and keep the full state on the server. </p>
<pre><code> <context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>
</code></pre>
http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/112521#1125214Answer by deathy for What was the biggest lesson you learned in your career as an IT professional?deathy2008-09-21T23:24:21Z2008-09-21T23:24:21Z<p>You'll meet most of the code you write later on in a dark alley and it will be angry.
Always try to write maintainable code and/or documentation. Keeping it simple helps a lot here.</p>
<p>I had 2 projects which I had to come back to 2,3 years after the code was written and it wasn't very fun.</p>
http://stackoverflow.com/questions/1217298/common-programming-mistakes-for-python-developers-to-avoid/1217353#1217353Comment by deathy on Common programming mistakes for Python developers to avoid?deathy2009-08-01T21:08:38Z2009-08-01T21:08:38ZDid that once, very hard to figure out what was wrong. Learned not to use * on lists ever again.http://stackoverflow.com/questions/832204/beware-of-the-pitfalls-of-code-like-user-findall-each/832234#832234Comment by deathy on Beware of the pitfalls of code like: User.find(:all).each ?deathy2009-05-07T04:11:24Z2009-05-07T04:11:24ZAs an additional note, it also loads all columns for each row/User, maybe even some that you don't need. (This includes creating even more objects for associations to other tables)http://stackoverflow.com/questions/415627/big-web-2-0-sites-written-in-pythonComment by deathy on Big Web 2.0 sites written in Python?deathy2009-01-06T06:43:15Z2009-01-06T06:43:15ZYoutube is mostly Python and I guess we can consider that BIG :)http://stackoverflow.com/questions/385069/how-to-protect-monitor-your-site-from-crawling-by-malicious-user/385164#385164Comment by deathy on How to protect/monitor your site from crawling by malicious userdeathy2008-12-21T23:24:23Z2008-12-21T23:24:23ZWouldn't be a solution since that would only control signup/login. After logging in (as a normal user/browser) you can move the session cookie to a crawler process and continue.http://stackoverflow.com/questions/385069/how-to-protect-monitor-your-site-from-crawling-by-malicious-user/385089#385089Comment by deathy on How to protect/monitor your site from crawling by malicious userdeathy2008-12-21T22:57:57Z2008-12-21T22:57:57ZRelated to the edit: I guess I could add browsers or proxies with some evil pre-fetching done to this problem.http://stackoverflow.com/questions/349612/simple-jquery-function-works-in-every-browser-but-firefox-what-am-i-missingComment by deathy on Simple jQuery function works in every browser but Firefox. What am I missing?deathy2008-12-15T19:04:45Z2008-12-15T19:04:45Zremember in these cases that "this" is a DOM object and can behave differently in different browsers. jQuery has its own .children() function which is cross-browser so when possible always use jQuery functions and not the DOM ones.http://stackoverflow.com/questions/365387/refactoring-when-do-you-know-its-time-and-when-do-you-do-it/365425#365425Comment by deathy on Refactoring: When do you know it's time and when do you do it?deathy2008-12-13T16:59:19Z2008-12-13T16:59:19ZGreat book actually, I recommended it to every co-worker.http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/132404#132404Comment by deathy on Most useful free Java libraries?deathy2008-11-30T20:15:48Z2008-11-30T20:15:48ZThat's Saxon, not xalan. Although the link is good :)