User yalestar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T02:06:31Zhttp://stackoverflow.com/feeds/user/2177http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1723250/intermediate-in-javascript-looking-for-a-book-to-learning-object-oriented-program/1723373#17233733Answer by yalestar for intermediate in javascript looking for a book to learning object oriented programmingyalestar2009-11-12T16:10:43Z2009-11-12T16:10:43Z<p><a href="http://www.packtpub.com/object-oriented-javascript-applications-libraries/book" rel="nofollow">Object-Oriented JavaScript</a> published by Packt was an invaluable resource for me recently when I was trying to learn JavaScript's prototype-based system without letting my traditional OO knowledge (Java, etc.) get in the way and make it more confusing. </p>
<p>For a slightly less in-depth treatment, I also recommend <a href="http://apress.com/book/view/159059908x" rel="nofollow">Pro JavaScript Design Patterns</a> and John Resig's <a href="http://apress.com/book/view/1590597273" rel="nofollow">Pro JavaScript Techniques</a>. Both have chapters on the topic.</p>
http://stackoverflow.com/questions/1269249/scriptaculous-ajax-inplaceeditor-how-to-trigger-cancel-action0Scriptaculous Ajax.InPlaceEditor: How to trigger cancel action?yalestar2009-08-12T23:20:27Z2009-11-09T08:00:10Z
<p>Certainly it must be possible to fire the cancel action on an Ajax.InPlaceEditor without clicking the Cancel button. But I just cannot figure out how to do it.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1608391/rails-not-loading-css-javascript-images-on-isp-server0Rails not loading CSS/javascript/images on ISP serveryalestar2009-10-22T16:23:07Z2009-10-23T08:54:29Z
<p>I have a Rails app that works fine on my local environment. But when I upload it to my ISP the app is not loading any of the assets in the public directory. Because the ISP uses .htaccess rewrites for Rails apps, I suspect this is the problem, but I'm pretty green on that sort of thing.</p>
<p>On the server, my rails app is deployed at <code>~/etc/rails_apps/myapp</code></p>
<p>In my home dir there's a symlink <code>www -> etc/rails_apps/myapp/public</code></p>
<p>Isn't the idea that the symlink loads the assets from <code>etc/rails_apps/myapp/public</code>? Am I missing something else? </p>
<p>The server is Mongrel, if that matters.
The <code>public/stylesheets</code> and <code>public/javascripts</code> dirs both have 755 permissions, if that matters.</p>
http://stackoverflow.com/questions/1528560/e-commerce-best-practices-for-declined-credit-cards-how-much-info-is-too-much1E-Commerce Best Practices: For declined credit cards, how much info is too much?yalestar2009-10-06T23:05:28Z2009-10-07T00:05:58Z
<p>My colleagues are having a debate as to how specific to be for credit card transactions that were declined. We get a lot of details about the transactions from our card processor, and we're trying to decide how much info to pass on to the user.</p>
<p>For example, do you tell the user that their card was declined because it's expired or the CCV number is wrong, or is there too much fraud potential in that? And when we return the user to the page where they provide payment details, do we pre-fill in the fields with the data they entered previously or not?</p>
http://stackoverflow.com/questions/371796/in-a-rails-migration-mysql-can-you-specify-what-position-a-new-column-should-b3In a Rails Migration (MySQL), can you specify what position a new column should be?yalestar2008-12-16T16:17:14Z2009-10-04T20:28:23Z
<p>If I'm adding a column via MySQL, I can specify where in the table that column will be using the AFTER modifier. But if I do the add_column via a Rails migration, the column will be created at the end of the table.</p>
<p>Is there any functionality for rails migrations to specify the position of an added column?</p>
http://stackoverflow.com/questions/1369591/action-extension-what-is-it/1369605#13696053Answer by yalestar for .action extension... what is it?yalestar2009-09-02T19:16:16Z2009-09-02T19:16:16Z<p>It's probably just a URL pattern for firing a Struts action. Most people stick with the .do convention, but you can make the actions fire on just about anything you want.</p>
<p>See Section 5.4.2 on <a href="http://struts.apache.org/1.x/userGuide/configuration.html" rel="nofollow">this site</a> for more info</p>
http://stackoverflow.com/questions/1299750/javac-not-recognized/1299780#12997804Answer by yalestar for javac not recognizedyalestar2009-08-19T13:00:11Z2009-08-19T13:00:11Z<p>This just means that javac isn't in your PATH variable. </p>
<p>On Windows, you just have to add the folder that contains javac.exe to the PATH environment variable (Win+Pause/Break).</p>
<p>On Linux/Mac/Unix, just append that directory to $PATH in .bashrc or similar.</p>
http://stackoverflow.com/questions/1298240/good-datamodelling-software/1299726#12997260Answer by yalestar for Good datamodelling softwareyalestar2009-08-19T12:52:15Z2009-08-19T12:52:15Z<p><a href="http://code.google.com/p/wwwsqldesigner/" rel="nofollow">wwwsqldesigner</a> is web-based, and fairly rudimentary, but perfect for simple designs.</p>
<p><a href="http://fabforce.net/dbdesigner4/" rel="nofollow">DBDesigner</a> by fabForce is also a good tool, though it is intended for MySQL. But if your SQL is fairly standard, or if you just need it for a visual reference (i.e. you're not exporting SQL from the model) then it should be fine.</p>
http://stackoverflow.com/questions/1289518/struts-2-validation/1289673#12896730Answer by yalestar for Struts 2 validationyalestar2009-08-17T18:41:44Z2009-08-17T18:48:10Z<p>Since you're performing validation on two fields, one approach is to create a custom validator that operates on an entire object (e.g. User) that contains start and end date, as opposed to validating the fields independently. Then you could just do some simple date-comparison arithmetic in there.</p>
<p>The general term they use is non-field validation (or domain validation), which is covered <a href="http://struts.apache.org/2.x/docs/validation.html" rel="nofollow">here</a></p>
<p>There's a nice example in the <a href="http://manning.com/dbrown/" rel="nofollow">source code for the Manning book Struts 2 in Action</a>, chapter 10.</p>
http://stackoverflow.com/questions/1288708/what-are-the-containers-in-java/1288742#12887422Answer by yalestar for What are the containers in Javayalestar2009-08-17T15:51:37Z2009-08-17T15:51:37Z<p>Have a look-see at the <a href="http://java.sun.com/javase/6/docs/api/java/util/package-summary.html" rel="nofollow">Java Collections API</a>, and at <a href="http://www.javapractices.com/topic/TopicAction.do?Id=65" rel="nofollow">this page</a> for more information</p>
http://stackoverflow.com/questions/1276403/simple-vim-commands-you-wish-youd-known-earlier/1278813#127881326Answer by yalestar for Simple VIM commands you wish you'd known earlieryalestar2009-08-14T16:22:03Z2009-08-14T16:22:03Z<p>I really wish I'd known that you can use Ctrl-C instead of ESC to switch out of insert mode. That's been a real productivity boost for me.</p>
http://stackoverflow.com/questions/1271977/multithreading-and-subscribe-publish-approach-in-javascript/1272106#12721062Answer by yalestar for multithreading And Subscribe/Publish approach in javascriptyalestar2009-08-13T13:52:19Z2009-08-13T13:52:19Z<p><a href="http://madskristensen.net/post/Simple-JavaScript-event-model.aspx" rel="nofollow">This article</a> describes what you're trying to accomplish pretty closely. Essentially you just have a JavaScript file that holds an array of handlers/subscribers. Each subscriber registers itself with the publisher (i.e. gets added to the handlers array). Then in the onClose handler of your Ajax call, you'd call a function that iterates over the subscribers and notifies them each by name:</p>
<pre><code>this.handlers = [];
...
for(var i = 0; i < this.handlers.length; i++)
{
this.handlers[i].eventHandler.call(this, eventArgs);
}
...
</code></pre>
http://stackoverflow.com/questions/1213695/question-on-how-to-configure-html-tidy-in-notepadd/1213740#12137401Answer by yalestar for Question on how to configure HTML Tidy in Notepadd++yalestar2009-07-31T17:08:54Z2009-07-31T17:08:54Z<p>There's a file called <code>HTMLTIDY.CFG</code> in <code><NPPInstallDir>plugins\Config\tidy</code> that configures the Tidy operation. From what you said, I think all you'd have to do is remove (or comment out with ';') everything but the indent options, i.e.</p>
<pre><code>indent: yes
indent-spaces: 2
</code></pre>
http://stackoverflow.com/questions/1138597/rearranging-project-after-svn-checkout2Rearranging project after SVN checkoutyalestar2009-07-16T15:57:57Z2009-07-20T20:50:59Z
<p>This is probably SVN 101, but I have to ask:</p>
<p>I'm working on a project that has kind of a lame directory structure. In order to get it building and running in my favorite IDE, after I check the project out, I copy the whole project to a different directory and move things around to my (and my IDE's) liking.</p>
<p>So my basic question is this: can I safely edit/update/merge a file that is in a different directory strcuture than the repository's directory structure?</p>
<p>E.g., if I check out <code>/home/me/dev/proj/index.jsp</code> and then copy it (and its .svn metadata) to <code>/home/me/dev/better-proj/web/index.jsp</code>, the fact that index.jsp resides in a different directory should be okay with regard to its SVN status, right? Wrong? Or am I just asking for trouble?</p>
http://stackoverflow.com/questions/386087/head-first-design-patterns-opinions-wanted/1127224#11272241Answer by yalestar for 'Head First Design Patterns' opinions wantedyalestar2009-07-14T18:43:59Z2009-07-14T18:43:59Z<p>I think it's a good book to get from the library (or otherwise procure at the non-retail price). The tone and style of humor are similar to the "For Dummies" books, but honestly, I found that to be a welcome counterpoint to the incredibly dry and academic tone found in the GoF book.</p>
<p>If you're a Java person, <a href="http://rads.stackoverflow.com/amzn/click/0201743973" rel="nofollow">Design Patterns Java Workbook</a> is the most helpful, I've found</p>
http://stackoverflow.com/questions/1089327/what-programming-practice-that-you-once-liked-have-you-since-changed-your-mind-ab/1089403#108940320Answer by yalestar for What programming practice that you once liked have you since changed your mind about?yalestar2009-07-06T22:01:01Z2009-07-06T22:01:01Z<p>Obsessive testing. I used to be a rabid proponent of test-first development. For some projects it makes a lot of sense, but I've come to realize that it is not only unfeasible, but rather detrimental to many projects to slavishly adhere to a doctrine of writing unit tests for every single piece of functionality. </p>
<p>Really, slavishly adhering to <em>anything</em> can be detrimental.</p>
http://stackoverflow.com/questions/1061034/which-java-templating-system-should-i-use-to-generate-emails/1061072#10610726Answer by yalestar for Which Java templating system should I use to generate emails?yalestar2009-06-29T23:27:02Z2009-06-29T23:27:02Z<p>I used <a href="http://freemarker.org/" rel="nofollow">Freemarker</a> a lot for e-mail templating and it worked great and was easy to use.</p>
http://stackoverflow.com/questions/1009260/how-can-i-detect-with-javascript-jquery-if-the-user-is-currently-active-on-the-pa/1009411#10094112Answer by yalestar for How can I detect with JavaScript/jQuery if the user is currently active on the page?yalestar2009-06-17T20:40:06Z2009-06-17T20:40:06Z<p>I just recently did something like this, albeit using Prototype instead of JQuery, but I imagine the implementation would be roughly the same as long as JQuery supports custom events.</p>
<p>In a nutshell, IdleMonitor is a class that observes mouse and keyboard events (adjust accordingly for your needs). Every 30 seconds it resets the timer and broadcasts an state:idle event, unless it gets a mouse/key event, in which case it broadcasts a state:active event.</p>
<pre><code>var IdleMonitor = Class.create({
debug: false,
idleInterval: 30000, // idle interval, in milliseconds
active: null,
initialize: function() {
document.observe("mousemove", this.sendActiveSignal.bind(this));
document.observe("keypress", this.sendActiveSignal.bind(this));
this.timer = setTimeout(this.sendIdleSignal.bind(this), this.idleInterval);
},
// use this to override the default idleInterval
useInterval: function(ii) {
this.idleInterval = ii;
clearTimeout(this.timer);
this.timer = setTimeout(this.sendIdleSignal.bind(this), ii);
},
sendIdleSignal: function(args) {
// console.log("state:idle");
document.fire('state:idle');
this.active = false;
clearTimeout(this.timer);
},
sendActiveSignal: function() {
if(!this.active){
// console.log("state:active");
document.fire('state:active');
this.active = true;
this.timer = setTimeout(this.sendIdleSignal.bind(this), this.idleInterval);
}
}
});
</code></pre>
<p>Then I just created another class that has the following somewhere in it:</p>
<pre><code>Event.observe(document, 'state:idle', your-on-idle-functionality);
Event.observe(document, 'state:active', your-on-active-functionality)
</code></pre>
http://stackoverflow.com/questions/1007825/will-using-an-ide-with-rails-hinder-me/1008076#10080761Answer by yalestar for Will using an IDE with Rails hinder me?yalestar2009-06-17T16:09:42Z2009-06-17T16:09:42Z<p>I too was using RubyMine; it's an excellent IDE (naturally, being a JetBrains tool), but as a fairly new Rails guy, I found it doing just a bit too much for me. It tends to obscure what's really going on behind the scenes. However, for someone who has gotten accustomed to being able to step through code in a debugger and inspect variables, RubyMine was incredibly helpful and actually added to my understanding of the code (and of course Netbeans and others can do this too; I just really like how RubyMine "handles").</p>
<p>So in general, I say what most other people say: there are facets of IDE use that make things much clearer; just make sure the IDE isn't becoming a crutch.</p>
http://stackoverflow.com/questions/998286/how-to-get-iframe-to-listen-to-same-events-as-parent-and-fire-the-same-handlers0How to get IFRAME to listen to same events as parent (and fire the same handlers)yalestar2009-06-15T20:45:36Z2009-06-16T01:57:11Z
<p>I've got an HTML page (the parent) with an embedded IFRAME. The parent page has a couple of event listeners for mouse and keyboard events, as shown below (I'm using the Prototype library). </p>
<pre><code>var IdleMonitor = Class.create({
active: null,
initialize: function(ii) {
Element.observe(window, "mousemove", this.sendActiveSignal.bind(this));
},
sendActiveSignal: function() {
console.log("MOUSE");
}
});
var idleMonitor = new IdleMonitor();
</code></pre>
<p>The IFRAME, being a separate document and all, doesn't respond to the parent's events. So I've set up some code in the IFRAME like:</p>
<pre><code><script type="text/javascript" >
Element.observe(window, "mousemove", function(p) {
parent.sendActiveSignal();
});
</script>
</code></pre>
<p>But that's giving me an error (sendActiveSignal is an undefined function).
How do I make the IFRAME also listen for the same events and fire the parent's event handlers, preferably in a Prototype-y way?</p>
http://stackoverflow.com/questions/998286/how-to-get-iframe-to-listen-to-same-events-as-parent-and-fire-the-same-handlers/999290#9992900Answer by yalestar for How to get IFRAME to listen to same events as parent (and fire the same handlers)yalestar2009-06-16T01:57:11Z2009-06-16T01:57:11Z<p>Turns out it's much easier to just access the child iframe from the parent using the contentDocument property of the iframe element, e.g.</p>
<pre><code>document.observe("dom:loaded", function() {
Element.observe($('id-of-iframe').contentDocument, "mousemove", function() {
// call whatever...
});
});
</code></pre>
http://stackoverflow.com/questions/984605/how-do-i-create-a-new-java-project-without-existing-source-files-with-the-abili/984695#9846951Answer by yalestar for How do I create a new Java project, without existing source files, with the ability to manually edit the Ant script using NetBeansyalestar2009-06-12T02:01:10Z2009-06-12T02:01:10Z<p>You should be able to edit any Ant file that Netbeans generates as part of a new project. They're stored in the project folder (the one that contains the nbproject directory) as build.xml, which in turn references build-impl.xml. </p>
<p>The idea is that you can edit build.xml in order to override the Ant targets in build-impl.xml.</p>
http://stackoverflow.com/questions/970479/javascript-prototype-scope-confusion0Javascript/Prototype scope confusionyalestar2009-06-09T14:44:32Z2009-06-09T15:00:18Z
<p>I'm creating a JavaScript class (using Prototype) that will set the page state to idle if there's no mouse movement within a specified number of seconds. When the mouse moves, the class will "wake up" the page by sending a message to a list of listeners.</p>
<p>The thing I don't understand is that <code>this.handlers</code> is valid in one function (<code>setIdle</code>), but not another (<code>setActive</code>). The annotated code below illustrates my problem: </p>
<pre><code>var IM2 = Class.create({
handlers: null,
initialize: function(callback, frequency) {
this.handlers = [];
Event.observe(document, "mousemove", this.sendActiveSignal);
Event.observe(document, "keypress", this.sendActiveSignal);
setInterval(this.sendIdleSignal.bind(this), 5000);
},
addListener: function(h) {
console.log(this.handlers.size()); // it's 0 here, as expected
this.handlers.push(h);
console.log(this.handlers.size()); // it's 1 here, as expected
},
sendIdleSignal: function(args) {
console.log("IDLE");
this.handlers.each(function(i){
i.setIdle();
})
},
sendActiveSignal: function() {
// this.handlers is undefined here. Why?
this.handlers.each(function(r) {
r.setActive();
})
}
});
</code></pre>
http://stackoverflow.com/questions/922441/improve-bufferedreader-speed/922484#9224843Answer by yalestar for Improve BufferedReader Speedyalestar2009-05-28T18:33:16Z2009-05-28T18:33:16Z<p>I think the <a href="http://java.sun.com/javase/6/docs/api/java/nio/package-summary.html" rel="nofollow">Java's NIO package</a> would be immensely useful for your needs.</p>
<p><a href="http://en.wikipedia.org/wiki/New%5FI/O" rel="nofollow">This Wikipedia article</a> has some great background info on the specific improvements over "old" Java I/O.</p>
http://stackoverflow.com/questions/922436/ant-run-a-single-target-but-without-dependencies/922452#9224520Answer by yalestar for ANT - Run a single target but without dependenciesyalestar2009-05-28T18:25:33Z2009-05-28T18:25:33Z<p>I think your only simple choice here would be to just make a copy of the target in question and make it not have dependencies.</p>
http://stackoverflow.com/questions/922052/testing-whether-a-font-is-monospaced-in-java/922206#9222060Answer by yalestar for Testing whether a Font is monospaced in Javayalestar2009-05-28T17:35:51Z2009-05-28T17:35:51Z<p>According to <a href="http://stackoverflow.com/questions/221568/swt-os-agnostic-way-to-get-monospaced-font">this response</a>, Java doesn't know too much about underlying font details, so you'd have to do some comparisons of the font's dimensions.</p>
http://stackoverflow.com/questions/918620/are-there-any-online-database-schema-drawing-tools/918805#9188052Answer by yalestar for Are there any online database schema drawing tools?yalestar2009-05-28T01:34:03Z2009-05-28T01:34:03Z<p>I had good results using <a href="http://www.gliffy.com/" rel="nofollow">Gliffy</a></p>
http://stackoverflow.com/questions/918703/would-ruby-be-a-bad-first-language-to-teach-to-high-schoolers-with-no-programming/918718#9187186Answer by yalestar for Would Ruby be a bad first language to teach to High-Schoolers with no programming experience?yalestar2009-05-28T01:07:07Z2009-05-28T01:07:07Z<p>Using Ruby seems like a great idea to me. Students who are inclined to pursue more advanced concepts (classes, modules, mixins, etc.) would be able to do so, while those less inclined students will find its friendly syntax unintimidating.</p>
http://stackoverflow.com/questions/912746/what-kind-of-problems-may-occur-when-executing-a-jsp-page/912805#9128051Answer by yalestar for What kind of problems may occur when executing a JSP page?yalestar2009-05-26T21:17:38Z2009-05-26T21:17:38Z<p>One potentially problematic thing that a lot of people overlook when writing JSP pages is the fact that JSP declarations, i.e.:</p>
<pre><code><%! String foo = "bar" %>
</code></pre>
<p>create instance variables when they get compiled into servlets, which destroys the thread safety of the JSP. </p>
<p>More generally though, common problems include using a semicolon at the end of an expression, or not using a semicolon in a scriptlet; attempting to retrieve parameter or attribute or session values that are null or are the wrong type; using the wrong scope when trying to access variables. All sorts of fun stuff.</p>
http://stackoverflow.com/questions/893881/what-are-your-favourite-rubygems/894240#8942400Answer by yalestar for What are your favourite Rubygems?yalestar2009-05-21T17:58:46Z2009-05-21T17:58:46Z<p>Ohhhh, I loves me some <a href="http://wiki.github.com/mislav/will%5Fpaginate" rel="nofollow">will_paginate</a> and <a href="http://code.google.com/p/calendardateselect/" rel="nofollow">calendar_date_select</a>.</p>
<p><a href="http://faker.rubyforge.org/" rel="nofollow">Faker</a> is awfully useful as well.</p>
http://stackoverflow.com/questions/1343500/ruby-on-rails-connection-problem/1351467#1351467Comment by yalestar on Ruby on rails connection problemyalestar2009-11-12T17:28:57Z2009-11-12T17:28:57ZA much appreciated timesaver!http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/1335120#1335120Comment by yalestar on What technologies are you using even though they are embarassingly out of date?yalestar2009-08-26T17:22:57Z2009-08-26T17:22:57ZAML is certainly obsolete, but I have somewhat fond memories of using it. ArcIMS: every time I load a county govt website and see that telltale IMS progress bar, I run away screaming.http://stackoverflow.com/questions/1284718/are-static-methods-good-for-scalability/1290602#1290602Comment by yalestar on Are static methods good for scalability ?yalestar2009-08-17T22:05:13Z2009-08-17T22:05:13Z"The OP clearly doesn't quite understand OO"
...which is probably why he asked the questionhttp://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/455860#455860Comment by yalestar on What was your first computer game that got you interested in computers?yalestar2009-08-13T16:29:28Z2009-08-13T16:29:28ZAnd dig this emulator: <a href="http://www.harmlesslion.com/cgi-bin/showprog.cgi?search=classic99" rel="nofollow">harmlesslion.com/cgi-bin/…</a>http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/455860#455860Comment by yalestar on What was your first computer game that got you interested in computers?yalestar2009-08-13T16:27:12Z2009-08-13T16:27:12Zohhhh, I loved Parsechttp://stackoverflow.com/questions/998286/how-to-get-iframe-to-listen-to-same-events-as-parent-and-fire-the-same-handlers/998434#998434Comment by yalestar on How to get IFRAME to listen to same events as parent (and fire the same handlers)yalestar2009-06-16T00:03:21Z2009-06-16T00:03:21ZPoint taken on the bindAsEventListenter()... thanks
However, the function is still undefined; must be because it's in that class?http://stackoverflow.com/questions/16804/enterprise-reporting-solutions/133781#133781Comment by yalestar on Enterprise Reporting Solutionsyalestar2009-06-14T01:06:18Z2009-06-14T01:06:18ZBIRT is indeed where it's athttp://stackoverflow.com/questions/970479/javascript-prototype-scope-confusion/970522#970522Comment by yalestar on Javascript/Prototype scope confusionyalestar2009-06-09T14:55:34Z2009-06-09T14:55:34ZExactly what I was missing; thanks!http://stackoverflow.com/questions/918671/package-beans-does-not-existComment by yalestar on Package Beans does not Existyalestar2009-05-28T01:04:26Z2009-05-28T01:04:26ZI suspect the error lies somewhere other than the above JSP snippet. Is there any other code in the project yet?http://stackoverflow.com/questions/691928/svn-commit-problems-on-mac-osx-terminalComment by yalestar on SVN commit problems on Mac OSX Terminalyalestar2009-03-28T01:40:19Z2009-03-28T01:40:19Z...or maybe the results of running 'svn stat'?http://stackoverflow.com/questions/573623/powershell-vs-unix-shells/573658#573658Comment by yalestar on PowerShell vs. Unix Shellsyalestar2009-02-21T22:29:04Z2009-02-21T22:29:04ZWhoa! Thanks for the tip; I can't wait to give it a tryhttp://stackoverflow.com/questions/84967/usable-jsp-servlet-hosting/85165#85165Comment by yalestar on Usable JSP/Servlet Hostingyalestar2008-09-17T17:07:52Z2008-09-17T17:07:52ZI understand your frustration completely. Finding decent Java hosting that's also affordable is pretty much impossible these days. Whoever comes up with a good solution for reasonably priced Tomcat hosting is going to have a lot of business!