User Mike Stone - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T00:21:43Zhttp://stackoverflow.com/feeds/user/122http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/3881/illegalargumentexception-or-nullpointerexception-for-a-null-parameter23IllegalArgumentException or NullPointerException for a null parameter?Mike Stone2008-08-06T19:26:30Z2009-11-25T14:08:45Z
<p>I have a simple setter method for a Java property and null is not appropriate for this particular property. I have always been torn, in this situation: should I throw an <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/IllegalArgumentException.html" rel="nofollow">IllegalArgumentException</a>, or a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/NullPointerException.html" rel="nofollow">NullPointerException</a>? From the javadocs, both seem appropriate. Is there some kind of understood standard? Or is this just one of those things that you should do whatever you prefer and both is really correct?</p>
http://stackoverflow.com/questions/90851/is-it-just-me-or-are-interfaces-overused74Is it just me or are interfaces overused?Mike Stone2008-09-18T08:07:18Z2009-11-21T16:04:15Z
<p>Ok, I may resort to a tad ranting here, so let me apologize in advance, but I'm really curious if others find this pattern annoying too (and I wonder if it is a justifiable pattern)…</p>
<p>So, after just looking at a <a href="http://stackoverflow.com/questions/90657/mocking-method-results">particular question</a>, I noticed that almost all of the responses suggested creating an interface for injecting a mock in some test code.</p>
<p>I don't mind using interfaces, and sometimes they can really help in static typed languages like C# and Java… but I do mind seeing interfaces for almost every class in a system (or in general being used where they aren't really needed).</p>
<p>I have 2 major problems with using an interface when it isn't called for:</p>
<ul>
<li>You abstract away where the implementation is coming from. This problem has a couple consequences… in an IDE, it means that when I try to browse to the source of this method being called… I get taken to an interface instead of some code that I can look at and see what is going on. This bothers me a lot, but also this is a real problem to me to hide where the implementation is coming from (sometimes it can be in non-obvious locations).</li>
<li>It adds ANOTHER file to the system. I tend to be a minimalist in my programming… if I don't really need another method, or another class, or even another file… not unless that extra thing is justified (flexibility that is going to be used, or makes the design cleaner, or provides some real benefit).</li>
</ul>
<p>Now… if you are testing something, and you create an interface JUST TO ALLOW MOCKING… this seems to be adding a layer of minor headaches for no real benefit. What does creating the interface do that just overriding the class won't do? What is so bad about having a mock that merely overrides some methods of the single implementation class?</p>
<p>I guess it should be no surprise then that I much prefer Java's default virtual methods (ie requiring a final keyword to have a method that CAN'T be overriden) to C#'s default final methods… and I also tend to avoid the final keyword on methods and classes too.</p>
<p>So is there something to using interfaces that I am missing? Is there some hidden benefit of using an interface when you have 1 version of a class and no immediate need to create an interface?</p>
http://stackoverflow.com/questions/1412382/ruby-and-ubuntus-notify-osd2Ruby and Ubuntu's Notify-OSDMike Stone2009-09-11T17:53:17Z2009-11-08T13:30:23Z
<p>I'm using <a href="http://ruby-libnotify.rubyforge.org/" rel="nofollow">ruby-libnotify</a> in a Ruby GTK app, and it works great to create a bubble popup in Ubuntu. I'm on Hardy, and it all works great. Then I had others try the app on Jaunty, and instead of a bubble popup with the new Notify-OSD system, as I expected, the notification turned into a dialog box.</p>
<p>I looked into it, and found the <a href="https://wiki.ubuntu.com/NotificationDevelopmentGuidelines" rel="nofollow">Ubuntu wiki</a> states that the problem is because I set a timeout of 0:</p>
<blockquote>
<p>Some programs specify an expire_timeout of 0 to produce notifications that never close by themselves, assuming that they can be closed manually as they can in notification-daemon. Because this is usually done for a message that requires response or acknowledgement, Notify OSD presents it as an alert box rather than as a bubble.</p>
</blockquote>
<p>Is there a way I can use libnotify in some way to have a normal bubble with a "never expire" timeout? I would actually prefer it if I could use the old notification system, even, since Notify-OSD doesn't seem to support permanent bubbles at all.</p>
<p>It is unacceptable to have the dialog for me, as it doesn't stay over all windows, so the user won't see the popup right away, necessarily (which is the whole point of using the bubble popup).</p>
http://stackoverflow.com/questions/799442/increment-a-sequence-twice-in-db21Increment a sequence twice in DB2Mike Stone2009-04-28T19:14:49Z2009-11-03T22:05:20Z
<p>I need to get the next value of a sequence twice in DB2 (version 9.1). Rather than executing the following twice:</p>
<pre><code>SELECT nextval FOR schema.sequence AS id
FROM dual
</code></pre>
<p>I would like to do something like:</p>
<pre><code>SELECT nextval FOR schema.sequence AS id1,
nextval FOR schema.sequence AS id2
FROM dual
</code></pre>
<p>Except the above only increments it once:</p>
<pre><code>ID1 ID2
----------- -----------
643 643
1 record(s) selected.
</code></pre>
<p>Am I forced to just query twice, or is there a way to increment it twice in 1 query?</p>
http://stackoverflow.com/questions/1314592/how-can-i-get-the-binding-from-methodmissing1How can I get the binding from method_missing?Mike Stone2009-08-21T23:17:28Z2009-08-23T09:16:13Z
<p>I am trying to find a way to get the binding from the caller within method_missing in Ruby (1.8), but I can't seem to find a way to do it.</p>
<p>Hopefully the following code explains what I would like to do:</p>
<pre><code>class A
def some_method
x = 123
nonexistent_method
end
def method_missing(method, *args, &block)
b = caller_binding # <---- Is this possible?
eval "puts x", b
end
end
A.new.some_method
# expected output:
# 123
</code></pre>
<p>So... is there a way to obtain the caller's binding, or is this just impossible in Ruby (1.8)?</p>
http://stackoverflow.com/questions/24864/virtualbox-from-an-existing-partition1VirtualBox from an existing partitionMike Stone2008-08-24T05:46:57Z2009-08-15T10:32:40Z
<p>I installed VirtualBox on my Ubuntu Hardy Heron installation, and I would like to use it to virtualize Windows for those rare occasions that I actually need to do something there.</p>
<p>Unfortunately, I don't have an installation disk at the moment, but I do have Vista already installed on a partition (it came with the machine).</p>
<p>Is there a way I can easily copy this partition into a .vdi virtual image?</p>
http://stackoverflow.com/questions/10752/what-is-the-difference-between-integration-and-unit-tests19What is the difference between integration and unit tests?Mike Stone2008-08-14T06:27:57Z2009-08-03T17:07:18Z
<p>I know the so-called textbook definition of unit tests and integration tests. What I am curious about is when it is time to write unit tests... I will write them to cover as many sets of classes as possible.</p>
<p>For example, if I have a Word class, I will write some unit tests for the Word class. Then, I begin writing my Sentence class, and when it needs to interact with the Word class, I will often write my unit tests such that they test both Sentence and Word... at least in the places where they interact.</p>
<p>Have these tests essentially become integration tests because they now test the integration of these 2 classes? Or is it just a unit test that spans 2 classes?</p>
<p>In general, because of this uncertain line, I will rarely actually write integration tests... or is my using the finished product to see if all the pieces work properly the actual integration tests, even though they are manual and rarely repeated beyond the scope of each individual feature?</p>
<p>Am I misunderstanding integration tests, or is there really just very little difference between integration and unit tests?</p>
<p>EDIT: Thanks for all the great responses everyone! I think from the varied answers it's clear that the line between unit and integration tests is definitely a blurry line, and perhaps it's a bit pedantic to try and figure out which are which and the true focus should stay on the code (Thanks @Rob Cooper). Also, sorry but I'm not going to accept any answer because too many are too good, and it really seems quite subjective.</p>
http://stackoverflow.com/questions/10506/weird-db2-issue-with-dbunit0Weird DB2 issue with DBUnitMike Stone2008-08-13T23:57:01Z2009-06-16T20:32:58Z
<p>I am having a strange DB2 issue when I run DBUnit tests. My DBUnit tests are highly customized, but I don't think it is the issue. When I run the tests, I get a failure SQLCODE: -1084, SQLSTATE: 57019, <a href="https://www1.columbia.edu/sec/acis/db2/db2m0/sql1000.htm" rel="nofollow">which translates to</a> "SQL1084C Shared memory segments cannot be allocated."</p>
<p>It sounds like a weird memory issue, though here's the big strange thing. If I ssh to the test database server, then go in to db2 and do "connect to MY_DB", the tests start succeeding! This seems to have no relation to the supposed memory error that is being reported.</p>
<p>I have 2 tests, and the first one actually succeeds, the second one is the one that fails. However, it fails in the DBUnit setup code, when it is obtaining the connection to the DB server to load my xml dataset.</p>
<p>Any ideas what might be going on?</p>
http://stackoverflow.com/questions/896274/select-multiple-ids-from-a-postgresql-sequence1Select multiple ids from a PostgreSQL sequenceMike Stone2009-05-22T03:47:32Z2009-05-25T20:33:09Z
<p>Is there a concise way to select the nextval for a PostgreSQL sequence multiple times in 1 query? This would be the only value being returned.</p>
<p>For example, I would like to do something really short and sweet like:</p>
<pre><code>SELECT NEXTVAL('mytable_seq', 3) AS id;
</code></pre>
<p>And get:</p>
<pre><code> id
-----
118
119
120
(3 rows)
</code></pre>
http://stackoverflow.com/questions/896274/select-multiple-ids-from-a-postgresql-sequence/896277#8962770Answer by Mike Stone for Select multiple ids from a PostgreSQL sequenceMike Stone2009-05-22T03:49:16Z2009-05-22T03:49:16Z<p>My current best solution is:</p>
<pre><code>SELECT NEXTVAL('mytable_seq') AS id
UNION ALL
SELECT NEXTVAL('mytable_seq') AS id
UNION ALL
SELECT NEXTVAL('mytable_seq') AS id;
</code></pre>
<p>Which will correctly return 3 rows... but I would like something that is minimal SQL for even as much as 100 or more NEXTVAL invocations.</p>
http://stackoverflow.com/questions/799442/increment-a-sequence-twice-in-db2/799796#7997960Answer by Mike Stone for Increment a sequence twice in DB2Mike Stone2009-04-28T20:56:57Z2009-04-28T20:56:57Z<p>Ok, it's a hack, but the following works... I would love to see a cleaner answer though, so please post an answer if you know one!</p>
<pre><code>SELECT nextval FOR schema.sequence AS id
FROM (SELECT 1 FROM dual UNION ALL SELECT 1 FROM dual) temp
</code></pre>
<p>Which results with:</p>
<pre><code>ID
-----------
669
670
2 record(s) selected.
</code></pre>
http://stackoverflow.com/questions/731351/default-element-for-ants-macrodef1Default element for Ant's macrodef?Mike Stone2009-04-08T18:53:31Z2009-04-10T07:38:52Z
<p>I would like to create a macro as such:</p>
<pre><code><macrodef name="testing">
<element name="test" implicit="yes"/>
<sequential>
<test/>
</sequential>
</macrodef>
</code></pre>
<p>And then use it:</p>
<pre><code><testing>
<echo message="hello world"/>
</testing>
</code></pre>
<p>However, I would like to specify a default for the implicit element... something like:</p>
<pre><code><macrodef name="testing">
<element name="test" implicit="yes">
<echo message="hello world"/>
</element>
<sequential>
<test/>
</sequential>
</macrodef>
</code></pre>
<p>So I can then use it as such:</p>
<pre><code><testing/>
</code></pre>
<p>Except where I want to change the default element.</p>
<p>Is this possible without defining a task via a Java class? So far, I don't see any documentation that indicates how to do it, if so.</p>
<p><hr /></p>
<p><strong>Update</strong></p>
<p>I ended up resolving my particular issue by using refid for filesets (which is what I actually was trying to pull into an element). Using the refid, it was simple to just use a macrodef attribute, which CAN have a default value.</p>
<p>Another alternative would be to create a new base macro which uses the element, and then I could have kept my existing macro as using that one... but still, there is no real default mechanism for an element (which would be nice).</p>
<p>So, Simon gets the answer since he's correct! Thanks!</p>
http://stackoverflow.com/questions/731018/jquery-ui-datepicker-dont-highlight-today-when-it-is-also-selected0jQuery UI Datepicker: don't highlight today when it is also selectedMike Stone2009-04-08T17:35:16Z2009-04-09T04:06:59Z
<p>I'm using the <a href="http://docs.jquery.com/UI/Datepicker" rel="nofollow">jQuery datepicker</a> to select dates. It works fine, except there is 1 default behavior that I would like to change. When you select a day, the selected day is highlighted (which I like). The current day is also highlighted, but using a different css style (which I also like). However, if you select the current day, the highlighting because it is the current day supersedes it being selected... I would much prefer it being selected to supersede the current day highlight, which I feel would make it very clear that you have selected the current day.</p>
<p>Now, I feel I could probably update the css to solve my problem. However, I really don't want to tweak the out-of-the-box jQuery UI css, because I want to later add skins to my app. This means if I grab a bunch of the jQuery UI themes... I then have to make the same tweak on all of them (very undesirable).</p>
<p>I could probably update the actual Datepicker plugin to do this as well, but then I run into the issue that if I want to update my Datepicker later on... I need to remember to make this fix again.</p>
<p>Ideally, I could use some option built into the Datepicker to accomplish my goal, but as of yet none of the options seem to be right. I would settle for some kind of JavaScript hack, or css plopped into the page, but I'm at a loss for ideas right now.</p>
http://stackoverflow.com/questions/724348/how-to-restart-rails-from-within-rails3How to restart Rails from within Rails?Mike Stone2009-04-07T06:30:15Z2009-04-07T13:54:24Z
<p>Ok, so I would like to create an action in Rails to restart itself. I did a little searching and found:</p>
<p><a href="http://snippets.dzone.com/posts/show/5002" rel="nofollow">http://snippets.dzone.com/posts/show/5002</a></p>
<p>Which suggests 2 commands, one to stop and another to restart. The following kills:</p>
<pre><code>ps -a|grep "/usr/local/bin/ruby script/server"|grep -v "grep /usr"|cut -d " " -f1|xargs -n 1 kill -KILL $1
</code></pre>
<p>The -HUP signal doesn't restart for me, so I tried to mangle the above command (adjusted so the command worked fine with how I was starting the server under Ubuntu):</p>
<pre><code>ps -eaf|grep "ruby script/server"|grep -v grep|cut -d " " -f3|xargs -n 1 kill -KILL $1;script/server
</code></pre>
<p>This works fine in my environment, so I tried to set up an action to execute it:</p>
<pre><code>def restart
fork { exec "ps -eaf|grep \"ruby script/server\"|grep -v grep|cut -d \" \" -f3|xargs -n 1 kill -KILL $1;script/server" }
redirect_to "/server_maintenance"
end
</code></pre>
<p>The action kills the server fine, but doesn't actually start the server back up:</p>
<pre><code>=> Booting Mongrel
=> Rails 2.3.2 application starting on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
Exiting
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/tcphack.rb:12:in `initialize_without_backlog': Address already in use - bind(2) (Errno::EADDRINUSE)
from /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/tcphack.rb:12:in `initialize'
from /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:93:in `new'
from /usr/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:93:in `initialize'
from /usr/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/vendor/rack-1.0/rack/handler/mongrel.rb:10:in `new'
from /usr/lib/ruby/gems/1.8/gems/actionpack-2.3.2/lib/action_controller/vendor/rack-1.0/rack/handler/mongrel.rb:10:in `run'
from /usr/lib/ruby/gems/1.8/gems/rails-2.3.2/lib/commands/server.rb:111
from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
from script/server:3
</code></pre>
<p>I'm not quite understanding why the address is already in use when Mongrel seems to have just exited.</p>
<p>I found this question:</p>
<p><a href="http://stackoverflow.com/questions/74218/how-do-you-restart-rails-under-mongrel-without-stopping-and-starting-mongrel">http://stackoverflow.com/questions/74218/how-do-you-restart-rails-under-mongrel-without-stopping-and-starting-mongrel</a></p>
<p>but the signals don't cause the restart in my environment, they just end up killing the process.</p>
<p>Anyone have any ideas on what may work? For some notes on my environment: I installed Rails from a new version of RubyGems, and Mongrel. I use script/server to start the server, which of course uses Mongrel. I'm on Ubuntu Hardy Heron.</p>
http://stackoverflow.com/questions/724348/how-to-restart-rails-from-within-rails/724428#7244281Answer by Mike Stone for How to restart Rails from within Rails?Mike Stone2009-04-07T07:07:16Z2009-04-07T07:07:16Z<p>Ok I found a fix... I changed how I start rails to:</p>
<pre><code>mongrel_rails start -d
</code></pre>
<p>and now the following action will do it:</p>
<pre><code>def restart
fork { exec "mongrel_rails restart" }
redirect_to "/server_maintenance"
end
</code></pre>
<p>As a caveat, the redirect_to will cause a failed load because the server will be down... however a reload after a pause will show that the restart was successful. This could be fixed by changing the restart to be done with AJAX, followed by a javascript reload... but I will leave that as an exercise to the reader.</p>
http://stackoverflow.com/questions/645746/how-to-improve-productivity-when-developing-jee-based-web-applications/672449#6724491Answer by Mike Stone for How to improve productivity when developing JEE based web applications.Mike Stone2009-03-23T07:08:44Z2009-03-23T07:08:44Z<p>Just wanted to pitch in another idea... you can actually use JRuby and Rails (similar to the previous comment about Django and Jython).</p>
<p>If you use JRuby with Rails and JRuby Rack (and maybe some other utilities... I wasn't the one to actually get the integration going initially), you can deploy JRuby Rails additions to an existing Java web app. We have a legacy JSP application deployed with Tomcat, and are now starting to add new pages using Rails with just that setup (in addition to extending the JSP side when necessary). So far it has been quite successful, though we don't have any of the major high traffic pages implemented in Rails, so I don't know how well it will scale.</p>
<p>We have full access to the session, and have even set up mechanisms to invoke JSPs from Rails pages (such as existing header and footer type JSP includes). It takes some effort and trial and error to fully integrate the 2, but if Rails and JRuby is an option, I highly recommend it (as a personal fan of Ruby).</p>
<p>A colleague has dabbled in JBoss Seam, which is a framework by Gavin King (the guy who brought us Hibernate), which was meant to emulate Rails. Having seen both, I feel Rails is a lot easier to develop with.</p>
http://stackoverflow.com/questions/9044/can-i-specify-a-class-wide-group-on-a-testng-test-case3Can I specify a class wide group on a TestNG test case?Mike Stone2008-08-12T16:52:08Z2009-03-16T18:31:06Z
<p>I have a base class that represents a database test in TestNG, and I want to specify that all classes extending from this class are of a group "db-test", however I have found that this doesn't seem possible. I have tried the @Test annotation:</p>
<pre><code>@Test(groups = { "db-test" })
public class DBTestBase {
}
</code></pre>
<p>However, this doesn't work because the @Test annotation will try to make a bunch of methods into tests, and warnings/errors pop up in eclipse when the tests are run.</p>
<p>So I tried disabling the test, so at least the groups are assigned:</p>
<pre><code>@Test(enabled = false, groups = { "db-test" })
public class DBTestBase {
}
</code></pre>
<p>but then any @BeforeTest (and other similar annotations) ALSO get disabled... which is of course not what I want.</p>
<p>I would like some way to annotate a class as being of a particular type of group, but it doesn't quite seem possible in TestNG. Does anyone have any other ideas?</p>
http://stackoverflow.com/questions/644831/install-cab-file-from-firefox-or-command-line0Install CAB file from FireFox or command lineMike Stone2009-03-13T22:23:46Z2009-03-13T23:11:31Z
<p>I have a CAB file that contains a few DLLs, and an OCX ActiveX control, an OSD describing the contents, and an INF for installing the DLLs and ActiveX control. These are coming from a 3rd party, so I can't control anything except how they are distributed to the client.</p>
<p>They are being used within a Java applet, and they work cross browser, but only IE seems to support actually installing the CAB file.</p>
<p>The installation is being done via:</p>
<pre><code><OBJECT classid="clsid:actual-class-id-here" NAME="name"
width="0" height="0" codebase="xxxx.cab#Version=w,x,y,z">
<param name="useslibrary" value="xxxx">
<param name="useslibrarycodebase" value="xxxx.cab">
<param name="useslibraryversion" value="w,x,y,z">
</OBJECT>
</code></pre>
<p>So, I need a way to install this CAB file that will work cross browser. Since the above will only work via IE, I need an alternative, or I need a way to install it from the command line, which would be a reasonable workaround (I could then set up an installer to take care of it). This needs to work on XP through Vista.</p>
<p>Any help would greatly be appreciated!</p>
<p>EDIT: <strong>Installing from command line would be much preferred</strong>, as then I could do a solution that isn't specific to IE, FireFox, or any other browser.</p>
http://stackoverflow.com/questions/644831/install-cab-file-from-firefox-or-command-line/644940#6449401Answer by Mike Stone for Install CAB file from FireFox or command lineMike Stone2009-03-13T23:11:31Z2009-03-13T23:11:31Z<p>Ok, so I finally tracked down a website that gave something useful:</p>
<p><a href="http://www.msfn.org/board/install-inf-file-c-t104891.html" rel="nofollow">http://www.msfn.org/board/install-inf-file-c-t104891.html</a></p>
<p>And the resulting command I will likely use:</p>
<pre><code>rundll32.exe advpack.dll,LaunchINFSectionEx .\xxxx.inf,,C:\path\to\xxxx.cab,4
</code></pre>
<p>Which I think will do exactly what I want. Now I just need to create a simple installer, and it should all tie together nicely!</p>
http://stackoverflow.com/questions/234848/is-there-a-greatest-function-in-db21Is there a 'greatest' function in db2?Mike Stone2008-10-24T18:54:02Z2009-03-10T21:31:26Z
<p>I found in MYSQL and apparently other database engines that there is a "greatest" function that can be used like: greatest(1, 2, 3, 4), and it would return 4. I need this, but I am using IBM's DB2. Does anybody know of such an equivalent function, even if it only accepts 2 parameters?</p>
<p>I found somewhere that MAX should do it, but it doesn't work... it only works on selecting the MAX of a column.</p>
<p>If there is no such function, does anybody have an idea what a stored procedure to do this might look like? (I have no stored procedure experience, so I have no clue what DB2 would be capable of).</p>
http://stackoverflow.com/questions/1988/how-far-can-lisp-macros-go9How far can LISP macros go?Mike Stone2008-08-05T07:32:54Z2009-03-08T00:32:46Z
<p>I have read a lot that LISP can redefine syntax on the fly, presumably with macros. I am curious how far does this actually go? Can you redefine the language structure so much that it borderline becomes a compiler for another language? For example, could you change the functional nature of LISP into a more object oriented syntax and semantics, maybe say having syntax closer to something like Ruby?</p>
<p>Especially, is it possible to get rid of the parenthesis hell using macros? I have learned enough (Emacs-)LISP to customize Emacs with my own micro-features, but I am very curious how far macros can go in customizing the language.</p>
http://stackoverflow.com/questions/53264/what-is-the-most-beautiful-code-you-have-ever-seen-or-written/53275#5327511Answer by Mike Stone for What Is the most beautiful code you have ever seen or written?Mike Stone2008-09-10T01:20:55Z2009-03-04T20:43:10Z<p>Many different kinds of code I find beautiful, but one of the pieces that struck me the most is (I found it on the internet somewhere at some point):</p>
<pre><code>while (*a++ = *b++);
</code></pre>
<p>Which will copy a string in C/C++. It should never really be used in real code because it is a bit cryptic, but its simplicity is also quite elegant.</p>
http://stackoverflow.com/questions/12855/database-case-insensitive-index5Database Case Insensitive Index?Mike Stone2008-08-15T22:47:57Z2009-01-07T06:22:22Z
<p>I have a query where I am searching against a string:</p>
<pre><code>SELECT county FROM city WHERE UPPER(name) = 'SAN FRANCISCO';
</code></pre>
<p>Now, this works fine, but it doesn't scale well, and I need to optimize it. I have <a href="http://www.ibm.com/developerworks/db2/library/techarticle/0203adamache/0203adamache.html" rel="nofollow" title="Araxis Merge">found an option</a> along the lines of creating a generated view, or something like that, but I was hoping for a simpler solution using an index.</p>
<p>We are using DB2, and I really want to use an <a href="http://ibmsystemsmag.blogs.com/db2utor/2007/11/db2-9-index-wit.html" rel="nofollow">expression in an index</a>, but this option seems to only be available on z/OS, however we are running Linux. I tried the expression index anyways:</p>
<pre><code>CREATE INDEX city_upper_name_idx
ON city UPPER(name) ALLOW REVERSE SCANS;
</code></pre>
<p>But of course, it chokes on the UPPER(name).</p>
<p>Is there another way I can create an index or something similar in this manner such that I don't have to restructure my existing queries to use a new generated view, or alter my existing columns, or any other such intrusive change?</p>
<p>EDIT: I'm open to hearing solutions for other databases... it might carry over to DB2...</p>
http://stackoverflow.com/questions/42840/dbunit-dataset-generation2DBUnit dataset generationMike Stone2008-09-03T23:33:57Z2008-12-16T14:34:35Z
<p>I am looking for a simple tool to generate a DBUnit dataset from existing data in a database. Namely I need to be able to construct a query of a limited amount of that data, and just use these results for the dataset.</p>
<p>Eclipse has a tool, but as far as I can tell, it only lets you pull all data out of a given table, but that is much too much data for my purposes.</p>
<p>Anybody know of a good (free) tool for this purpose?</p>
http://stackoverflow.com/questions/61863/rosetta-stone-sorting-arrays/61909#619094Answer by Mike Stone for Rosetta Stone - Sorting ArraysMike Stone2008-09-15T05:36:22Z2008-11-26T19:50:56Z<p>Ruby:</p>
<pre><code>list = ["some", "list", "to", "sort"]
list.sort! # Sorts using default <=> method
list.sort! { |x, y| x <=> y } # custom block to sort any way you want
list.sort_by { |k| k.downcase } # sort using Schwartzian Transform
</code></pre>
http://stackoverflow.com/questions/10666/what-programming-language-construct-do-you-find-the-most-useful2What programming language construct do you find the most useful?Mike Stone2008-08-14T04:30:09Z2008-11-23T09:40:50Z
<p>Before I started branching out and learning other languages, I naively believed I could get by with the features Java provided.</p>
<p>Since learning Ruby and some other languages that are very different from Java, I have found that there are some really powerful language features that I miss a lot when I go back to Java.</p>
<p>I am curious, what are the most unique features of your favorite languages that you have found to make you more productive, or enjoy your time programming more than when you are forced to use another language?</p>
<p>I'm talking especially about the features that get you fired up such that you would start writing a project suitable for the language solely so you can use that language.</p>
http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts2What is the meaning of the type safety warning in certain Java generics casts?Mike Stone2008-08-02T08:58:27Z2008-10-18T08:34:46Z
<p>What is the meaning of the Java warning "Type safety: The cast from Object to List is actually checking against the erased type List"? I get it when I try to cast an Object to a type with generic information, such as in the following code:</p>
<pre><code>Object object = getMyList();<br>List<Integer> list = (List<Integer>) object;<br></code></pre>
http://stackoverflow.com/questions/141162/how-can-i-determine-if-a-different-process-id-is-running-using-java-or-jruby-on-l0How can I determine if a different process id is running using Java or JRuby on Linux?Mike Stone2008-09-26T18:34:21Z2008-10-14T09:51:51Z
<p>I need to see if a given process id is running, and it must work in either Java or JRuby (preferably a Ruby solution). It can be system dependent for Linux (specifically Debian and/or Ubuntu).</p>
<p>I already have the PID I am looking for, just need to see if it is currently running.</p>
<p><hr /></p>
<p>UPDATE:</p>
<p>Thanks for all the responses everyone! I appreciate it, however it's not QUITE what I'm looking for... I am hoping for something in a standard Ruby library (or Java, but preferably Ruby)... if no such library call exists, I will probably stick with the procfs solution I already have.</p>
http://stackoverflow.com/questions/6392/java-time-zone-is-messed-up3Java Time Zone is messed upMike Stone2008-08-08T21:24:01Z2008-10-08T12:18:05Z
<p>I am running a Tomcat application, and I need to display some time values. Unfortunately, the time is coming up an hour off. I looked into it and discovered that my default TimeZone is being set to:</p>
<pre><code>sun.util.calendar.ZoneInfo[id="GMT-08:00",
offset=-28800000,dstSavings=0,useDaylight=false,
transitions=0,lastRule=null]
</code></pre>
<p>Rather than the Pacific time zone. This is further indicated when I try to print the default time zone's <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/TimeZone.html#getDisplayName()" rel="nofollow">display name</a>, and it comes up "GMT-08:00", which seems to indicate to me that it is not correctly set to the US Pacific time zone. I am running on Ubuntu Hardy Heron, upgraded from Gutsy Gibbon.</p>
<p>Is there a configuration file I can update to tell the JRE to use Pacific with all the associated daylight savings time information? The time on my machine shows correctly, so it doesn't seem to be an OS-wide misconfiguration.</p>
http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/172493#1724932Answer by Mike Stone for What programming religious argument bothers you the most?Mike Stone2008-10-05T19:26:46Z2008-10-05T19:26:46Z<p>I don't know if it's really a religious argument, but it really bugs me when people do premature optimizations for things that they should know don't matter... like avoiding throwing exceptions for what should be an exception... or even more minor things like ++i versus i++.</p>
<p>When you blindly optimize things like that, it can become a real danger. More often than not, this sort of micro optimizations creates code that might be micro or nanoseconds faster, but at the cost of being hugely less readable.</p>
<p>I think it is much better to evaluate performance based on actual statistics of the code's actual performance, and then improve bottlenecks based on these facts. Thus, write your code so that it is the most readable, and only then refactor for performance.</p>
<p>This of course does not mean you should never do optimizations ahead of time, it just means you should think about what the performance gain you will actually get with realistic data versus the maintainability hit you might get as a result (copying a java array of a small amount of items to an ArrayList for huge readability gains should not be converted to an array just for performance reasons... but if it is likely to be an array of 1,000,000 items... then it might be worth rethinking the approach ahead of time).</p>
http://stackoverflow.com/questions/799442/increment-a-sequence-twice-in-db2/1670440#1670440Comment by Mike Stone on Increment a sequence twice in DB2Mike Stone2009-11-10T09:01:48Z2009-11-10T09:01:48Zschema.sequence was intended to be a placeholder for a sequence I need to pull from. dual was intended to be a generic table indicating that I don't care what table I am selecting from, and it actually has meaning in other databases: <a href="http://en.wikipedia.org/wiki/DUAL_table" rel="nofollow">en.wikipedia.org/wiki/DUAL_table</a>http://stackoverflow.com/questions/90851/is-it-just-me-or-are-interfaces-overused/1685907#1685907Comment by Mike Stone on Is it just me or are interfaces overused?Mike Stone2009-11-10T08:55:46Z2009-11-10T08:55:46ZI was not intending we never use an interface again, just simply saying we should think about it first. It is easy to extract interfaces later (Eclipse provides a refactoring action named exactly that). Just consider YAGNI, and add that interface at the time you discover it will be useful for a particular situation. That's my main point.http://stackoverflow.com/questions/1412382/ruby-and-ubuntus-notify-osd/1613987#1613987Comment by Mike Stone on Ruby and Ubuntu's Notify-OSDMike Stone2009-10-28T07:39:39Z2009-10-28T07:39:39ZThanks! Though, I'm pretty sure the command line tool just routes to the new notification engine in jaunty. I wish it were that simple!http://stackoverflow.com/questions/1314592/how-can-i-get-the-binding-from-methodmissing/1315612#1315612Comment by Mike Stone on How can I get the binding from method_missing?Mike Stone2009-08-24T17:09:56Z2009-08-24T17:09:56ZNot quite the solution I want, but I think this is the best you can do, so I'm accepting.
For the record, I wanted access to a variable defined in a Rails template engine to set up a method missing to access that variable and invoke methods on the variable (to turn "var.method" into just "method" so it is more like a DSL). I don't want such a complex solution for this, so I ended up just patching the plugin... which I was trying to avoid in the first place. Oh well! Thanks for the ideas! :-)http://stackoverflow.com/questions/1314592/how-can-i-get-the-binding-from-methodmissing/1314834#1314834Comment by Mike Stone on How can I get the binding from method_missing?Mike Stone2009-08-24T17:02:57Z2009-08-24T17:02:57ZAppreciate the ideas, unfortunately I don't actually have access to the method I need the binding for... it's defined in a library that I wanted to avoid having a personal patch for, so I can't really shift things around so I have access to the variable. Upvoted for the effort though! :-)http://stackoverflow.com/questions/1314592/how-can-i-get-the-binding-from-methodmissing/1314610#1314610Comment by Mike Stone on How can I get the binding from method_missing?Mike Stone2009-08-21T23:35:49Z2009-08-21T23:35:49Zdang, unfortunately I don't have a block in the situation I am in... I hope you are somehow wrong, but I don't think you are :-(http://stackoverflow.com/questions/293236/monkey-patching-vs-s-o-l-i-d-principles/293253#293253Comment by Mike Stone on Monkey-patching Vs. S.O.L.I.D. principles?Mike Stone2009-06-23T21:31:57Z2009-06-23T21:31:57ZFrankly, I disagree. The ability to add functionality to where it logically belongs makes very much sense to me. foo.delay(5000, args); is significantly more readable to me than a regular setTimeout. It is precisely the kind of monkeypatching that makes code MORE READABLE rather than unintuitive and surprising like bad monkeypatching can do. It is powerful, and possible to abuse, but it can help make code more understandable too. For the record, I don't use mootools, but that's a cool use of monkeypatching.http://stackoverflow.com/questions/293236/monkey-patching-vs-s-o-l-i-d-principles/296775#296775Comment by Mike Stone on Monkey-patching Vs. S.O.L.I.D. principles?Mike Stone2009-06-23T17:57:43Z2009-06-23T17:57:43ZI think this sums up your post well: "With great power comes great responsibility." Frankly, I love monkeypatching, but I tend to avoid overriding existing methods (though I will consider it if it really is the best option), for exactly the reasons you illustrate.http://stackoverflow.com/questions/896274/select-multiple-ids-from-a-postgresql-sequence/902510#902510Comment by Mike Stone on Select multiple ids from a PostgreSQL sequenceMike Stone2009-05-28T02:29:18Z2009-05-28T02:29:18ZAppreciated, but the downfalls pointed out in the link from Ants Aasma are too steep for me to alter the increment... and the number of ids I need varies, so I prefer obtaining all the ids individually (which makes the code that uses the ids simpler anyways).http://stackoverflow.com/questions/896274/select-multiple-ids-from-a-postgresql-sequence/907978#907978Comment by Mike Stone on Select multiple ids from a PostgreSQL sequenceMike Stone2009-05-28T02:26:48Z2009-05-28T02:26:48ZInterestingly, that article appears to be written by the person who wrote the answer I accepted :-)
Regardless, the generate_series fits my need because the number of ids I need is around a dozen. On a very rare case, maybe 100... so the downfalls of the other solution presented in the article are too steep for my uses. +1 for nice link though!http://stackoverflow.com/questions/896274/select-multiple-ids-from-a-postgresql-sequence/896443#896443Comment by Mike Stone on Select multiple ids from a PostgreSQL sequenceMike Stone2009-05-22T05:21:39Z2009-05-22T05:21:39ZEXACTLY what I was looking for, thanks!http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/106312#106312Comment by Mike Stone on Why isn't LISP more widely used?Mike Stone2009-05-08T23:47:14Z2009-05-08T23:47:14Z@crashmstr I'm with you... in my programming languages course, scheme struck me as the most interesting language by FAR because of it's elegance, and paired with the short introduction to lambda calculus the professor gave. Really was tons of fun to learn, and I always think fondly on that class because of it.http://stackoverflow.com/questions/152691/is-eclipse-the-best-ide-for-java/152948#152948Comment by Mike Stone on Is Eclipse the best IDE for Java?Mike Stone2009-04-13T18:34:47Z2009-04-13T18:34:47ZAs a converter from Eclipse to Emacs... Emacs is a lot more powerful than most people think. IDEs give you a lot of awesome features, but there's a lot of things that Emacs can do that no IDE can... using it over ssh is probably my favorite benefit though.http://stackoverflow.com/questions/152691/is-eclipse-the-best-ide-for-java/152878#152878Comment by Mike Stone on Is Eclipse the best IDE for Java?Mike Stone2009-04-13T18:32:14Z2009-04-13T18:32:14ZAs a converter from Eclipse to Emacs... Emacs is a lot more powerful than you think. I'm not saying Eclipse is bad, or IDEs are bad, but once you get familiar with Emacs, it's hard to go back (and this coming from someone who knows all the Eclipse advantages over a "simple" editor)http://stackoverflow.com/questions/731351/default-element-for-ants-macrodef/731426#731426Comment by Mike Stone on Default element for Ant's macrodef?Mike Stone2009-04-08T20:15:36Z2009-04-08T20:15:36ZAppreciated, but I am looking for an actual default, not optional behavior... I would like the contents of the default to be completely replaced with whatever is actually passed in, but of course only if there is content defined.