User Don Werve - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T05:13:17Zhttp://stackoverflow.com/feeds/user/85287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1219615/auto-comment-model-on-migration-in-rails1Auto-comment model on migration in Rails?Don Werve2009-08-02T19:29:02Z2009-12-16T03:24:47Z
<p>I seem to recall that there was a plugin or Rake snippet that would put comments in various Model classes after running a migration? It's a chore to have to look at db/migrate/X when I want to see which fields a given model has.</p>
<p>If not, I'll write one, of course. :)</p>
http://stackoverflow.com/questions/728626/using-embedded-derby-with-jruby-on-rails4Using embedded Derby with JRuby on Rails.Don Werve2009-04-08T05:33:06Z2009-12-07T16:46:31Z
<p>Attempting to use JRuby 1.2.0 and Rails 2.3.2 with an embedded Derby database. I've copied <code> derbytools.jar</code> and <code>derby.jar</code> to <code>$RUBY_HOME/lib</code>, yet <code>rake db:migrate</code> still gives:</p>
<pre><code>The driver encountered an error:
cannot load Java class org.apache.derby.jdbc.ClientDriver
</code></pre>
<p>Aaaand... I played a hunch and figured it out. So, I'll post this here in case somebody else runs into the same problem I did.</p>
<p>Almost all the documentation I found online has the following <code>database.yml</code> configuration for Derby:</p>
<pre><code>development:
adapter: jdbc
driver: org.apache.derby.jdbc.ClientDriver
url: jdbc:derby:[db];create=true
username: xxx
password: xxx
</code></pre>
<p>This probably works fine for a client/server setup, but for an embedded Derby setup, you need this:</p>
<pre><code>development:
adapter: jdbc
driver: org.apache.derby.jdbc.EmbeddedDriver
url: jdbc:derby:[db];create=true
username: xxx
password: xxx
</code></pre>
<p>Note the 'EmbeddedDriver', and not 'ClientDriver'.</p>
http://stackoverflow.com/questions/1249597/serving-static-content-from-a-jarfile-with-jetty3Serving static content from a jarfile with Jetty?Don Werve2009-08-08T18:41:33Z2009-08-08T21:19:05Z
<p>This should be fairly easy, but for some reason nearly everything I try just seems to hand out a 'not found' error when I hook it up to a web browser.</p>
<p>I've got a single static context, and for the ResourceBase I've got 'file:jar:/path/to/myjar!/.'... any ideas what I'm missing?</p>
http://stackoverflow.com/questions/727078/whats-so-great-about-scala9What's so great about Scala?Don Werve2009-04-07T18:41:27Z2009-05-13T06:00:16Z
<p>What makes Scala such a wonderful language, <em>other</em> than the type system? Almost everything I read about the language brings out 'strong typing' as a big reason to use Scala, but there has to be more than that. What are some of the other compelling and/or cool language features that make Scala a really useful tool?</p>
http://stackoverflow.com/questions/742665/rails-plugin-to-run-migrations-on-startup0Rails plugin to run migrations on startup?Don Werve2009-04-12T23:55:21Z2009-04-27T01:10:38Z
<p>Is there a plugin available to have Rails run through a db:migrate on startup? I'm looking for a solution that doesn't involve calling out to the Rake task via the shell; so, no "<code>system('rake db:migrate')</code>".</p>
<p>I can readily write my own plugin to do this, but figured it would be better to use/improve an existing migrate-on-init plugin if one exists.</p>
http://stackoverflow.com/questions/783209/creating-an-api-for-my-software-basic-code-structure/783224#7832243Answer by Don Werve for Creating an API for my software - Basic code structureDon Werve2009-04-23T19:37:32Z2009-04-23T19:37:32Z<p>Doing things twice is almost always a bad idea -- you're probably better off implementing the API, opening it up to the end-user, and also using it for the client code as well, with some extra hooks for stuff that is interface-specific.</p>
http://stackoverflow.com/questions/783189/english-and-or-finnish-text-validation/783207#7832071Answer by Don Werve for English and/or Finnish text validation.Don Werve2009-04-23T19:32:06Z2009-04-23T19:32:06Z<p>I'm not sure what you're trying to do, but if you're looking for something that can say 'this is valid English' or 'this is valid Finnish', then you're looking at a class of problems that is quite likely unsolvable.</p>
<p>If not, then use a dictionary and/or letter frequencies and Bayesian analysis to determine whether or not given text is English-like or Finnish-like. If you're trying to auto-detect a language, this is likely the best route, although you'll run into problems with mixed-language text.</p>
http://stackoverflow.com/questions/783085/sqliite-how-to-add-special-data/783156#7831560Answer by Don Werve for SQLIite - how to add special data?Don Werve2009-04-23T19:16:21Z2009-04-23T19:16:21Z<p>In short, no. SQLite has no concept of users, and doesn't store creation metadata.</p>
http://stackoverflow.com/questions/778894/non-xhtml-attributes-any-disadvantages6Non-(X)HTML Attributes... any disadvantages?Don Werve2009-04-22T19:49:12Z2009-04-23T04:10:44Z
<p>I've generally tried to stick with DOM-only attributes when writing Javascript. Now that I've switched from Prototype to jQuery, I can get some serious mileage out of adding my own attributes to various DOM elements, mostly in the realm of being able to set up a very readable coding convention for handling AJAX requests.</p>
<p>As a short example, this means I do things like</p>
<pre><code><div type="book" app_id="13">
<a href="#" action="delete">delete</a>
</div>
</code></pre>
<p>And then I can set up code to find all <code><a></code> tags with an <code>action</code> attribute, find a parent with a <code>type</code> and <code>app_id</code>, and then do CRUD operations... all without me having to write additional code.</p>
<p>Are there any pitfalls (other than not being strictly XHTML complaint) that I should watch out for, and/or any good habits I should look to emulate? How about a standard way of setting up my own attribute namespace?</p>
http://stackoverflow.com/questions/712187/troubleshooting-grails-groovy-memory-leaks5Troubleshooting Grails/Groovy memory leaks?Don Werve2009-04-03T00:50:53Z2009-04-22T21:03:56Z
<p>I've got a Grails application that does a fairly decent amount of domain object creation and destruction, and it seems to run out of PermGen space at a very, very rapid rate. I've done the usual tweaks (bumped PermGen to 256M, enabled class GC, etc.), but no dice.</p>
<p>Would anyone care to recommend some (and hopefully free or very low-cost) tools for troubleshooting this sort of memory consumption in Groovy and/or Java? Or some techniques that you use to troubleshoot JVM memory problems?</p>
<p>Edit: This is when the application is deployed inside Tomcat in production mode; I've not tried with other containers. Even so, it would be nice to have some resources for tracking down the problem.</p>
http://stackoverflow.com/questions/778760/connecting-to-ms-sql-server-with-jruby/778813#7788134Answer by Don Werve for Connecting to MS SQL Server with JRubyDon Werve2009-04-22T19:32:18Z2009-04-22T19:32:18Z<p>MS SQL should have a JDBC driver; use that with the JRuby-JDBC bridge: <a href="http://wiki.jruby.org/wiki/JDBC" rel="nofollow">http://wiki.jruby.org/wiki/JDBC</a></p>
http://stackoverflow.com/questions/778439/what-is-the-proper-way-to-configure-smtpappender-in-log4j/778457#7784570Answer by Don Werve for What is the proper way to configure SMTPAppender in log4j?Don Werve2009-04-22T18:03:24Z2009-04-22T18:03:24Z<p>SMTPHost should point to your mail server (so, <code>mail.mydomain.com</code> for Dreamhost). Can you send mail manually if you telnet to port 25 and pass credentials by hand?</p>
http://stackoverflow.com/questions/778241/complex-associations-in-activerecord-models/778440#7784400Answer by Don Werve for Complex associations in ActiveRecord modelsDon Werve2009-04-22T17:57:40Z2009-04-22T17:57:40Z<p>For associations like this, you're going to end up writing custom SQL -- there's no real way that you can handle a chain of associations like this without having to do some fairly massive joins, and there really isn't an efficient way for the built-in query generators to handle it with a one-liner.</p>
<p>You can look into the :joins parameter of ActiveRecord as well -- this may do what you want.</p>
http://stackoverflow.com/questions/778385/rails-post-put-get/778407#7784075Answer by Don Werve for Rails POST, PUT, GETDon Werve2009-04-22T17:48:59Z2009-04-22T17:48:59Z<p>You want to look at <code>conf/routes.rb</code>, as well as the following two bits of the API:</p>
<p><a href="http://api.rubyonrails.org/classes/ActionController/Routing.html" rel="nofollow">http://api.rubyonrails.org/classes/ActionController/Routing.html</a></p>
<p><a href="http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html" rel="nofollow">http://api.rubyonrails.org/classes/ActionController/AbstractRequest.html</a></p>
http://stackoverflow.com/questions/778316/can-i-connect-to-a-java-api-with-c/778341#7783411Answer by Don Werve for Can I connect to a Java API with C#?Don Werve2009-04-22T17:30:38Z2009-04-22T17:30:38Z<p>Is this a web-services API, or a JAR file that you've been provided? In the latter case, J# may be an option, and there's some other bridging options in this thread: <a href="http://www.velocityreviews.com/forums/t140810-java-c-interop.html" rel="nofollow">http://www.velocityreviews.com/forums/t140810-java-c-interop.html</a></p>
http://stackoverflow.com/questions/774481/changing-lines-in-a-file/774495#7744952Answer by Don Werve for Changing lines in a fileDon Werve2009-04-21T20:39:55Z2009-04-21T20:39:55Z<p>Use Perl, or if you don't like Perl, Ruby or Python. You could do this with the shell, but it will be ultimately more complicated than writing a small program to handle the job.</p>
http://stackoverflow.com/questions/773296/apache-modrewrite-redirect-to-internal-server/773309#7733090Answer by Don Werve for Apache mod_rewrite redirect to internal serverDon Werve2009-04-21T15:50:15Z2009-04-21T15:50:15Z<p>mod_rewrite is for rewriting the URI -- you can use it to kick out an HTTP 301 (redirect), but what you want to do is actually proxy the web traffic through the Apache server, to the IIS servers.</p>
<p>Look into mod_proxy.</p>
http://stackoverflow.com/questions/754900/prepending-and-animating-text-loaded-via-ajax-with-jquery1Prepending and animating text loaded via AJAX with jQuery.Don Werve2009-04-16T05:57:56Z2009-04-21T03:48:48Z
<p>Old hand with Prototype, new to jQuery, and writing a simple app to get a feel for the framework (and because I want to use it). I've got an HTML fragment that I load via AJAX, and I want to stick this at the top of a <code>div</code>, with a slide-in transition animation.</p>
<p>This bit works, and does the prepending bit:</p>
<pre><code>// Get the HTML fragment and stick it at the top of the containing div.
$.post("/create_new_thing", function(data) {
$('#container_div').prepend(data);
});
</code></pre>
<p>What I'd like to do, and can't figure out, is animate the newly added HTML fragment with a show() effect.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/757318/are-there-any-security-test-plugins-for-rails/769549#7695490Answer by Don Werve for Are there any security test plugins for rails?Don Werve2009-04-20T18:37:03Z2009-04-20T18:37:03Z<p>It's not a Rails plugin, but <a href="http://www.owasp.org/" rel="nofollow">http://www.owasp.org/</a> is a good place to start.</p>
http://stackoverflow.com/questions/769496/ubuntu-noob-rails-install-fails-on-zlib/769512#7695122Answer by Don Werve for Ubuntu noob rails install fails on zlibDon Werve2009-04-20T18:26:33Z2009-04-20T18:26:33Z<p>The problem is that Ruby on Ubuntu isn't built against zlib; you'll want to do a source build to install Ruby. You can do this with <code>apt-get source -b ruby</code></p>
http://stackoverflow.com/questions/764450/activerecord-does-not-work-on-app-engine-whats-the-alternative/764492#7644922Answer by Don Werve for ActiveRecord does not work on App Engine - What's the alternative?Don Werve2009-04-18T23:37:18Z2009-04-18T23:37:18Z<p>Try using JRuby on Rails: <a href="http://olabini.com/blog/2009/04/jruby-on-rails-on-google-app-engine/" rel="nofollow">http://olabini.com/blog/2009/04/jruby-on-rails-on-google-app-engine/</a></p>
http://stackoverflow.com/questions/763909/jquery-change-div-button-states-click-disable/763930#7639301Answer by Don Werve for jQuery Change Div Button States & Click DisableDon Werve2009-04-18T18:38:19Z2009-04-18T18:38:19Z<p>What's the problem? The only thing I can see that you're missing is</p>
<pre><code>$("div.__button_image").unbind('click');
</code></pre>
<p>This will remove the 'click' handler (setting it back to the default).</p>
http://stackoverflow.com/questions/763888/is-ms-access-jet-suitable-for-multiuser-access/763924#763924-1Answer by Don Werve for Is MS Access (JET) suitable for multiuser access?Don Werve2009-04-18T18:35:45Z2009-04-18T18:35:45Z<p>As a sysadmin, please don't use Access for anything multi-user. Do what Jeff Fritz suggests and use a database that is designed for multi-user access. You may think that your little app is only going to be shared between a few people, but I guarantee you that it'll have a hundred users and fifty new features by the end of the year. And if those are all Access, rather than VB/SQL Express, your Ops people will break into your house one night and slit your throat.</p>
<p>Access isn't a client-server app, and provides very little in the way of backup/restore, or any automation whatsoever. Not to mention the interface and the DB are very tightly coupled... so if you ever want to turn this into a web app, or make any serious changes, your world will be filled with pain.</p>
http://stackoverflow.com/questions/763900/learning-resources-to-transerfer-my-ms-sql-server-knowledge-into-mysql/763911#7639111Answer by Don Werve for Learning resources to transerfer my MS SQL Server knowledge into MySQLDon Werve2009-04-18T18:28:50Z2009-04-18T18:28:50Z<p>There probably aren't going to be any guides that address your specific issues, so I'd just recommend reading through the excellent documentation on the MySQL website. If you have a particular problem that's causing grief, and that isn't addressed in the docs, then ask about it here.</p>
http://stackoverflow.com/questions/763881/automatic-associations-in-ruby-on-rails-fixtures/763903#7639032Answer by Don Werve for Automatic associations in ruby on rails fixturesDon Werve2009-04-18T18:25:54Z2009-04-18T18:25:54Z<p>Reading the API documentation, this is exactly how autogenerated fixtures are supposed to behave -- if you want to have a specific ID value for a fixture in advance, you should probably just assign it yourself.</p>
<p>If not, well, from the API docs:</p>
<pre><code>The generated ID for a given label is constant, so we can discover any fixture‘s ID without loading anything, as long as we know the label.
</code></pre>
http://stackoverflow.com/questions/762894/mysql-selecting-from-multiple-tables/762902#7629021Answer by Don Werve for MySql: Selecting from multiple tablesDon Werve2009-04-18T04:37:06Z2009-04-18T04:37:06Z<p>You'll want to read up on SQL JOINs:</p>
<p><a href="http://www.w3schools.com/Sql/sql_join.asp" rel="nofollow">http://www.w3schools.com/Sql/sql_join.asp</a></p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/join.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/join.html</a></p>
http://stackoverflow.com/questions/759577/how-do-i-make-text-wrapping-match-current-indentation-level-in-vim/760930#7609300Answer by Don Werve for How do I make text wrapping match current indentation level in vim?Don Werve2009-04-17T15:38:33Z2009-04-17T15:38:33Z<p>You're looking for <code>breakindent</code></p>
<p>You may want to also refer to this thread:</p>
<p><a href="http://newsgroups.derkeiler.com/Archive/Comp/comp.editors/2005-07/msg00056.html" rel="nofollow">http://newsgroups.derkeiler.com/Archive/Comp/comp.editors/2005-07/msg00056.html</a></p>
http://stackoverflow.com/questions/760819/is-there-a-limit-on-number-of-tcp-ip-connections-between-machines-on-linux/760844#7608440Answer by Don Werve for Is there a limit on number of tcp/ip connections between machines on linux?Don Werve2009-04-17T15:17:30Z2009-04-17T15:17:30Z<p>Yep, the limit is set by the kernel; check out this thread on Stack Overflow for more details: <a href="http://stackoverflow.com/questions/410616/increasing-the-maximum-number-of-tcp-ip-connections-in-linux">http://stackoverflow.com/questions/410616/increasing-the-maximum-number-of-tcp-ip-connections-in-linux</a></p>
http://stackoverflow.com/questions/758571/is-there-any-reason-for-telnet-port-23-to-be-open-on-a-web-server/758574#7585748Answer by Don Werve for Is there any reason for Telnet port 23 to be open on a web server?Don Werve2009-04-17T00:25:44Z2009-04-17T00:25:44Z<p>No. Shut it down. Telnet should never be used, ever, in a modern environment.</p>
http://stackoverflow.com/questions/757452/which-authentication-and-authorization-schemes-are-you-using-and-why/757565#7575650Answer by Don Werve for Which authentication and authorization schemes are you using - and why?Don Werve2009-04-16T18:58:33Z2009-04-16T18:58:33Z<p>I'm not an ASP or .NET developer, but my gut says (3). You really don't want a public-use web-app to have any sort of access to your corporate network, much less be able to put auth credentials anywhere near AD.</p>
http://stackoverflow.com/questions/1224021/what-should-every-web-developer-know-about-encryption/1224088#1224088Comment by Don Werve on What should every web developer know about encryption?Don Werve2009-08-31T19:50:24Z2009-08-31T19:50:24ZHashing is next to useless without a salt; do a Google search for 'rainbow tables' to how unsalted hashes can be easily compromised.http://stackoverflow.com/questions/1249597/serving-static-content-from-a-jarfile-with-jetty/1249930#1249930Comment by Don Werve on Serving static content from a jarfile with Jetty?Don Werve2009-08-08T23:15:17Z2009-08-08T23:15:17ZI can readily change the path later, I'm just seeing if I can get this to work at all, and I'm not loading a servlet from the JAR -- just static .html files.http://stackoverflow.com/questions/710840/telnet-login-to-linux-as-root-without-password/710875#710875Comment by Don Werve on Telnet login to Linux as root without passwordDon Werve2009-08-06T15:54:06Z2009-08-06T15:54:06ZThe key has no passphrase -- so you still need the keyfile to log in. Admittedly, it's not as good as just using a password, but it's <i>way</i> better than an unencrypted, unauthenticated, passwordless root login. :)http://stackoverflow.com/questions/1219615/auto-comment-model-on-migration-in-rails/1219829#1219829Comment by Don Werve on Auto-comment model on migration in Rails?Don Werve2009-08-03T04:09:29Z2009-08-03T04:09:29ZI'll grab the source and write an update so that it updates on db:migrate; dropping at checkin isn't really an issue for me, though.http://stackoverflow.com/questions/129072/is-it-possible-to-compile-a-rails-app-to-a-java-vm-jar-fileComment by Don Werve on Is it possible to compile a Rails app to a Java VM JAR file?Don Werve2009-07-31T21:17:36Z2009-07-31T21:17:36ZDid you ever get this working? I'm about to start in on it, but if someone else has figured it out...http://stackoverflow.com/questions/1099305/why-is-ruby-more-suitable-for-rails-than-pythonComment by Don Werve on Why is Ruby more suitable for Rails than Python?Don Werve2009-07-09T00:57:15Z2009-07-09T00:57:15ZI'm still waiting for ADA on Ales.http://stackoverflow.com/questions/783209/creating-an-api-for-my-software-basic-code-structure/783224#783224Comment by Don Werve on Creating an API for my software - Basic code structureDon Werve2009-04-23T20:06:57Z2009-04-23T20:06:57ZNot to mention, when you need to refactor later, you can do all of that under cover of the API, and just expose new fields as need be -- if you go with a tightly-coupled interface, then changing functionality becomes much more painful.http://stackoverflow.com/questions/778894/non-xhtml-attributes-any-disadvantages/778982#778982Comment by Don Werve on Non-(X)HTML Attributes... any disadvantages?Don Werve2009-04-23T15:13:40Z2009-04-23T15:13:40ZExactly -- @BYK has hit the nail on the head. My goal is to minimize the amount of code I have to write and maintain, and an extra step to parse out the ID isn't part of that. It also breaks if I want to use the ID as a selector for some other reason.http://stackoverflow.com/questions/778894/non-xhtml-attributes-any-disadvantages/778982#778982Comment by Don Werve on Non-(X)HTML Attributes... any disadvantages?Don Werve2009-04-22T20:40:45Z2009-04-22T20:40:45ZUnfortunately, if you want to then use different classes to provide visual feedback (say, different backgrounds for a checked-out vs. not-checked-out book), you either need another wrapper element, or need to go with the custom-attribute route.http://stackoverflow.com/questions/778760/connecting-to-ms-sql-server-with-jruby/778813#778813Comment by Don Werve on Connecting to MS SQL Server with JRubyDon Werve2009-04-22T19:49:33Z2009-04-22T19:49:33ZGlad to help. :)http://stackoverflow.com/questions/763888/is-ms-access-jet-suitable-for-multiuser-access/763924#763924Comment by Don Werve on Is MS Access (JET) suitable for multiuser access?Don Werve2009-04-18T23:39:13Z2009-04-18T23:39:13ZI'm fairly certain that's actually the mission statement for the Access team over at Microsoft...http://stackoverflow.com/questions/763832/programming-riddle-counting-down-without-subtracting/763843#763843Comment by Don Werve on Programming Riddle: Counting down without subtracting.Don Werve2009-04-18T18:30:37Z2009-04-18T18:30:37Z+1 for good use of modulo arithmetic.http://stackoverflow.com/questions/762059/what-is-powering-youtube/762089#762089Comment by Don Werve on What is powering YouTube?Don Werve2009-04-17T20:54:52Z2009-04-17T20:54:52ZYes, but the're <i>turing</i> hamsters.http://stackoverflow.com/questions/757452/which-authentication-and-authorization-schemes-are-you-using-and-why/757492#757492Comment by Don Werve on Which authentication and authorization schemes are you using - and why?Don Werve2009-04-16T18:57:25Z2009-04-16T18:57:25ZLDAP adds another moving part to the web app, and if you're using the AD LDAP store, you're exposing your corporate data to needless risk, by allowing web-apps to add auth credentials that might be valid on the Windows network.http://stackoverflow.com/questions/754900/prepending-and-animating-text-loaded-via-ajax-with-jquery/754934#754934Comment by Don Werve on Prepending and animating text loaded via AJAX with jQuery.Don Werve2009-04-16T06:33:18Z2009-04-16T06:33:18ZWhoops, not POST, PUT.