User Electrons_Ahoy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:26:54Z http://stackoverflow.com/feeds/user/19074 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/851010/how-do-i-check-if-a-disk-is-in-a-drive-using-python 3 How do I check if a disk is in a drive using python? Electrons_Ahoy 2009-05-12T03:20:00Z 2009-12-14T19:11:18Z <p>Say I want to manipulate some files on a floppy drive or a USB card reader. How do I check to see if the drive in question is ready? (That is, has a disk physically inserted.)</p> <p>The drive letter <em>exists</em>, so os.exists() will always return True in this case. Also, at this point in the process I don't yet know any file names, so checking to see if a given file exists also won't work.</p> <p>Some clarification: the issue here is exception handling. Most of the win32 API calls in question just throw an exception when you try to access a drive that isn't ready. Normally, this would work fine - look for something like the free space, and then catch the raised exception and assume that means there isn't a disk present. However, even when I catch any and all exceptions, I still get an angry exception dialog box from Windows telling me the floppy / card reader isn't ready. So, I guess the real question is - how do I suppress the windows error box?</p> http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub 3 Is there a way to get the number of places after the decimal point in a java double? Electrons_Ahoy 2009-12-04T20:04:56Z 2009-12-07T22:16:25Z <p>I'm working on a Java/Groovy program. I have a double variable that holds a number that was typed in by a user. What I really want to know is how many numbers the user typed to the right of the decimal place. Something like:</p> <pre><code>double num = 3.14 num.getPlaces() == 2 </code></pre> <p>Of course, you can't do this with a double since that's using IEEE floating points and it's all an approximation.</p> <p>Assuming that I can't get at the string the user typed, but only have access to the double the value has been stored in, is there a way I can scrub that double though a BigDecimal or somesuch to get the "real" number of decimal places? (When the double gets displayed on the screen, it gets it right, so I assume there is a way to at least guess well?)</p> http://stackoverflow.com/questions/1501257/can-i-just-hand-groovys-markupbuilder-a-node-list 1 Can I just hand groovy's markupbuilder a node list? Electrons_Ahoy 2009-09-30T23:48:57Z 2009-12-07T18:00:02Z <p>I'm doing some XML processing with groovy. Specifically, I'm inhaling an XML file via XMLParser, doing a whole batch of in-memory processing, and then serializing the resulting data back out to XML via a MarkupBuiler.</p> <p>The vast majority of the data in the file gets transferred to a non-xml based object hierarchy to talk to the gui and have processing done, so the two XML files never know about each other.</p> <p>However, there is one slug of XML that lives at the edge of the source file that needs to get copied verbatim to the output XML file with little or no processing. Is there a way I can hand the MarkupBuilder a nodelist from XMLParser and have it just insert that into the document?</p> <p>Something like this:</p> <pre><code>def builder = new MarkupBuilder() builder.outermosttag( name: 'library') { someothertag( name: 'shelf' ) { //magically insert a nodelist of arbitrary XML from somewhere else } } </code></pre> http://stackoverflow.com/questions/1494307/can-groovys-swingbuilder-get-more-than-one-look-and-feel-in-a-java-swing-applica 0 Can groovy's swingbuilder get more than one look and feel in a Java swing application? Electrons_Ahoy 2009-09-29T18:55:09Z 2009-12-04T20:06:30Z <p>Via <a href="http://stackoverflow.com/questions/446056/can-i-use-two-different-look-and-feels-in-the-same-swing-application">this question</a>, it would seem that normally you can't mix-and-match look and feels in the same swing app.</p> <p>However, we've been using groovy's swingbuilder to handle all of our GUI code, and groovy seems to do enough black magic that this seemed in the Realms of the Possible.</p> <p>Can swingbuilder set the LaF at, say, the Frame level?</p> <p>(Specifically, the main app opens a specific sub-utility in it's own frame, rather than a dialog box. This child frame and all of its children are what I'd like to have in a different LaF from the main app frame.)</p> http://stackoverflow.com/questions/1494307/can-groovys-swingbuilder-get-more-than-one-look-and-feel-in-a-java-swing-applica/1849343#1849343 0 Answer by Electrons_Ahoy for Can groovy's swingbuilder get more than one look and feel in a Java swing application? Electrons_Ahoy 2009-12-04T20:06:30Z 2009-12-04T20:06:30Z <p>For the record, the answer is "no."</p> http://stackoverflow.com/questions/1767428/under-what-circumstances-does-groovy-use-abstractconcurrentmap 0 Under what circumstances does Groovy use AbstractConcurrentMap? Electrons_Ahoy 2009-11-19T23:48:29Z 2009-12-01T22:11:42Z <p>(Specifically, org.codehaus.groovy.util.AbstractConcurrentMap)</p> <p>While doing some profiling of our application thats mixed Java/Groovy, I'm seeing a lot of references to the AbstractConcurrentMap class, none of which are explicit in the code base. Does groovy use this class when maps are instantiated in the groovy dynamic <code>def myMap = [:]</code> style? Are there rules somewhere about when groovy chooses to use this as opposed to, say, java.util.HashMap?</p> <p>And does anyone have any performance information comparing the two? My rough "eyeball check" says that AbstractConcurrentMap seems to be much slower - anyone know if I'm right?</p> http://stackoverflow.com/questions/1793735/git-change-case-of-a-file-on-windows 1 Git - change case of a file on windows? Electrons_Ahoy 2009-11-24T23:38:53Z 2009-11-24T23:43:07Z <p>There are a couple of files in our git-controlled codebase that I'd like to rename. Specifically, I just want to change the case of the file, so that <code>sourceCode.java</code> becomes <code>SourceCode.java</code>, for example. The catch: I'm on a Windows box, and the filesystem thinks those are the same file name.</p> <p>How can I get Windows and git to recognize that change and check it in?</p> http://stackoverflow.com/questions/1785862/what-is-the-value-of-interfaces/1785959#1785959 2 Answer by Electrons_Ahoy for What is the value of Interfaces? Electrons_Ahoy 2009-11-23T21:05:39Z 2009-11-23T21:05:39Z <p>So that a given class can inherit from multiple sources, while still only inheriting from a single parent class.</p> <p>Some programming languages (C++ is the classic example) allow a class to inherit from multiple classes; in this case, interfaces aren't needed (and, generally speaking, don't exist.)</p> <p>However, when you end up in a language like Java or C# where multiple-inheritance isn't allowed, you need a different mechanism to allow a class to inherit from multiple sources - that is, to represent more than one "is-a" relationships. Enter Interfaces.</p> <p>So, it lets you define, quite literally, interfaces - a class implementing a given interface will implement a given set of methods, without having to specify anything about how those methods are actually written.</p> http://stackoverflow.com/questions/1785144/can-you-specify-generics-type-on-map-value/1785169#1785169 4 Answer by Electrons_Ahoy for Can you specify generics type on map value? Electrons_Ahoy 2009-11-23T18:49:13Z 2009-11-23T18:49:13Z <p>You sure can. Works great.</p> http://stackoverflow.com/questions/1738564/is-it-wise-to-use-branching-with-one-man-git-project/1751726#1751726 1 Answer by Electrons_Ahoy for Is it wise to use branching with one-man git project? Electrons_Ahoy 2009-11-17T20:59:02Z 2009-11-17T20:59:02Z <p>Adding to what others have said: branches are so easy to create &amp; maintain in git, why not make a branch? Even if you never need to do a bugfix / update on the old branch, you'll still end up with some extra meta-data about your code-base via the branches that you'll be happy to have in a year.</p> <p>I'm a big fan of making all kinds of feature branches, for two reasons: first, you can structure your workflow such that the master branch is always ready to ship (which is pretty cool) and second, once you have some history with a bunch of feature branches and such, looking at the tree in something like gitk or qgit gives you a really cool high-level feel for the history of the codebase that a single line wouldn't.</p> http://stackoverflow.com/questions/1750498/marketshare-of-cross-platform-widget-libraries 0 Marketshare of cross-platform widget libraries? Electrons_Ahoy 2009-11-17T17:35:59Z 2009-11-17T17:45:28Z <p>For a variety of reasons, we're in the market for a cross-platform widget library. We're in the somewhat rare situation of not being tied to a particular programming language at this stage, so we get to look at libraries in a language-independent way.</p> <p>Something we haven't been able to find is any data on market share of various libraries. Everyone seems to know what the big guns are (Swing, TCL/Tk, Qt, GTK, wxWidgets, etc) but no one seems to have any numbers on use.</p> <p>Can anyone point me towards some data on marketshare?</p> http://stackoverflow.com/questions/1713481/groovy-string-to-int/1724227#1724227 1 Answer by Electrons_Ahoy for Groovy String to int Electrons_Ahoy 2009-11-12T18:05:25Z 2009-11-12T18:05:25Z <p>As an addendum to Don's answer from yesterday, not only does groovy add a ".toInteger()" method to strings, it also adds toBigDecimal, toBigInteger, toBoolean, toCharacter, toDouble(), toFloat, toList, and toLong.</p> <p>In the same vein, groovy also adds "is*" eqivalents to all of those that return true if the string in question can be parsed into the format in question.</p> <p>The relevant GDK page <a href="http://groovy.codehaus.org/groovy-jdk/" rel="nofollow">is here.</a></p> http://stackoverflow.com/questions/1632407/has-anyone-got-a-jsp-language-file-for-notepad 0 Has anyone got a JSP language file for Notepad++? Electrons_Ahoy 2009-10-27T17:30:29Z 2009-11-01T19:12:01Z <p>I can't seem to find a language syntax highlighting file for JSPs for Notepad++. Is there one out there?</p> <p>(Currently, I've just got it set to use Java highlighting, which is a little sub-optimal. I could knock together my own, I suppose, but I'm hoping the internet has solved my problem for me.)</p> http://stackoverflow.com/questions/1652942/can-a-jtable-save-data-whenever-a-cell-loses-focus 0 Can a Jtable save data whenever a cell loses focus? Electrons_Ahoy 2009-10-31T00:23:50Z 2009-10-31T03:11:24Z <p>The high level: I have a JTable that the user can use to edit data.</p> <p>Whenever the user presses Enter or Tab to finish editing, the data is saved (I'm asusming that "saved" really means "the TableModel's setValueAt() method is called".)</p> <p>If the user leaves the cell in any other way after making an edit, the new data is not saved and the value stays the way it was. So, for example, if the user changes a value and then clicks on some other widget on the screen, the change doesn't "stick."</p> <p>I believe that this is the default behavior for a JTable full of Strings, yes?</p> <p>For a variety of reasons, the desired behavior is for the cell to save any and all edits whenever the user leaves the cell. What's the best/right way to get Swing to do this?</p> http://stackoverflow.com/questions/1615104/is-there-a-way-to-include-body-comments-in-javadocs 1 Is there a way to include body comments in javadocs? Electrons_Ahoy 2009-10-23T18:16:37Z 2009-10-24T16:06:30Z <p>We've got a large codebase of Java (with a smattering of Groovy mixed in) that, by and large, has no javadocs written for it.</p> <p>However, much of the code is reasonably well documented in "old-school" comments scattered throughout the body.</p> <p>We're now on something of a push to try and get things documented a little better - Javadocs are now being generated on a regular basis, for example. As a stopgap measure, it would be really nice if javadoc would "scrape" the body of the class (or function, or whatever) and toss all the comments within into a "stub" javadoc.</p> <p>Is there a way to do that?</p> http://stackoverflow.com/questions/1534167/in-groovy-is-there-a-way-to-check-if-an-object-has-a-given-method 0 In groovy, is there a way to check if an object has a given method? Electrons_Ahoy 2009-10-07T21:03:09Z 2009-10-20T21:05:04Z <p>Assuming that I have an object <code>someObj</code> of indeterminate type, I'd like to do something like:</p> <pre><code>def value = someObj.someMethod() </code></pre> <p>Where there's no guarantee that 'someObj' implements the <code>someMethod()</code> method, and if it doesn't, just return <code>null</code>.</p> <p>Is there anything like that in Groovy, or do I need to wrap that in an if-statement with an <code>instanceof</code> check?</p> http://stackoverflow.com/questions/273307/i-need-a-quick-and-dirty-way-to-append-to-a-text-file-in-vb-net 3 I need a quick and dirty way to append to a text file in vb.net Electrons_Ahoy 2008-11-07T19:27:28Z 2009-10-20T18:20:37Z <p>I've got a very small standalone vb.net app that gets run automatically. Every now and then it hits an error condition that I want to log and then keep processing. But, this is far too minor a thing to store in the system's main log - I really just want to append a line to a text file.</p> <p>What's the least stress way to append a line of text to a file (and have it create the file if it's not there) under .net?</p> http://stackoverflow.com/questions/1590298/in-groovy-swingbuilder-how-do-i-attatch-a-closure-to-a-jtable-that-fires-when-a 0 In Groovy SwingBuilder, how do I attatch a closure to a JTable that fires when a cell is selected? Electrons_Ahoy 2009-10-19T18:27:17Z 2009-10-19T18:27:17Z <p>I have a JTable being constructed via Groovy's SwingBuilder. I'd like to attach a closure to the table that fires when a cell is selected, but I can't seem to find the right hook.</p> <p>How do I do that?</p> http://stackoverflow.com/questions/1569547/does-groovy-have-an-easy-way-to-get-a-filename-without-the-extension 1 Does groovy have an easy way to get a filename without the extension? Electrons_Ahoy 2009-10-14T23:23:35Z 2009-10-15T13:50:40Z <p>Say I have something like this:</p> <pre><code>new File("test").eachFile() { file-&gt; println file.getName() } </code></pre> <p>This prints the full filename of every file in the <code>test</code> directory. Is there a Groovy way to get the filename without any extension? (Or am I back in regex land?)</p> http://stackoverflow.com/questions/1349255/c-structs-real-life-examples 16 C# Structs - real life examples? Electrons_Ahoy 2009-08-28T20:44:33Z 2009-10-13T17:00:52Z <p>There are any number of questions here on SO dealing with the differences between Structs and Classes in C#, and when to use one or the other. (The one sentence answer: use structs if you need value semantics.) There are plenty of guidelines out there about how to choose one or the other, most of which boil down to: use a class unless you meet these specific requirements, then use a struct.</p> <p>This all makes sense to me.</p> <p>However, I can't seem to find any real-life examples of people using structs in a system. I'm (semi-)new to C#, and I'm having trouble imagining a concrete situation where structs are really the right choice (at least, I haven't run into one yet.)</p> <p>So, I turn to the SO world-brain. What are some cases where you actually used a struct in a system where a class wouldn't have worked?</p> http://stackoverflow.com/questions/1522970/how-do-i-fire-an-action-when-the-user-leaves-a-jtextbox 0 How do I fire an action when the user leaves a JTextBox? Electrons_Ahoy 2009-10-05T23:48:04Z 2009-10-06T00:10:51Z <p>I've got a JTextField, and I'd like the system to do some processing on what the user typed whenever the user leaves the text field. The ActionListener that you can add to just the JTextField only fires when the user presses enter, however.</p> <p>I'd like the processing routine to run whenever the user leaves the text box by any means - tabs, clicks out of it, presses enter, etc. (The processing in question is to save the text the user typed to the appropriate data object, nothing fancy.)</p> <p>My google-fu has failed on this one: I'm confident that it's possible, I just can't see how.</p> http://stackoverflow.com/questions/612566/any-suggestions-for-shrinking-a-pdf-file 2 Any suggestions for shrinking a PDF file? Electrons_Ahoy 2009-03-04T21:39:15Z 2009-10-05T10:37:02Z <p>We've got a .net 2.0 web system that dynamically builds pdf files. Some of these files can get pretty large - 12MB+. While processing time isn't a factor, really, the size of the files to be downloaded is in some cases.</p> <p>For the moment, let's assume that our B-grade pdf library is already making the smallest files that it knows how. (Although, if anyone has any suggestions on that front, do see <a href="http://stackoverflow.com/questions/608724/optimize-abcpdf-file-size">this related question</a>.)</p> <p>However, taking the 12MB file in question and sending it though the Acrobat distiller results in a roughly 700K file, with no appreciable loss in print quality.</p> <p>I'd love to have some kind of post-processor that does even a third of that. Does anyone have any controls they know about that'll do something like this?</p> <p>The cheaper the better, for this project, but we're not adverse to throwing a few bucks down.</p> <p>(Some preemptive comments: naturally, rewriting the existing PDF generation code with a new tool is off the table at the moment. Also, while Distiller seems to have an API, calling that on a webserver doesn't seem like the most efficient course - and Distiller is a little pricey. Finally, we'd just as well not wrap the pdfs in a zip file or some such, since that may baffle the clients somewhat. No, really.)</p> <p>Thanks!</p> http://stackoverflow.com/questions/302759/computing-california-sales-tax 8 Computing California Sales Tax Electrons_Ahoy 2008-11-19T17:47:43Z 2009-10-05T06:51:20Z <p>One of the web apps I'm working on has a fairly small web store / shopping cart. As the client company is physically located in CA and has a physical location there, they're required to collect CA sales tax on all orders shipped to locations in California.</p> <p>For those who don't know, CA has some fairly complex sales tax rules where, essentially, any local group can create a "tax district" and leverage an extra few cents worth of sales tax on top of the state-wide base of 7.25%. (Usually less than 1% extra.) These districts don't have to map to any other legislative borders, so you can end up with half a city paying an extra .25% sales tax, for example.</p> <p>Technically, the law only requires that you charge the sales tax rate in your location as a seller - so, if I have a store here in Sacramento, I only need to charge Sacramento sales taxes on all orders shipped.</p> <p>However, for various accounting and tax declaration reasons, it's actually easier to charge the sales tax of the location the order is being shipped <em>to</em>. (Which means a different sales tax, potentially, on every single order.)</p> <p>So - my question. Is anyone aware of any slick ways to calculate this? The data you need to actually do the work is all available in a variety of semi-useful formats at the state Board of Equalization website, and we're knocking together a widget that tries to figure out sales tax based on things like city name and zip code. But, I was wondering if anyone has come across any cool tools out there for solving this problem. (Or any tools at all, for that matter.)</p> <p>(We're using VB and ASP.net, but I'd be interested in solutions for any language, mainly because I'm fascinated to see how other people have solved this.)</p> <p>Addendum - answering some questions from below:</p> <p>Tim asks how this can possibly be "easier." I'm told that doing sales tax this way makes filling out your tax return simpler. I'm bleary on the details, but as I understand it, if you don't charge the rate for the shipping location, you have to justify why you didn't for every single order at the end of the year - namely, you have to attest that no, we live <em>here</em> and not <em>there</em>, so we charge the rate <em>here.</em></p> <p>Whereas if you always charge the destination rate, you can (apparently) just put down the total amount of sales tax you collected for the whole year on one line, and say "sales tax was this much.</p> <p>It would seem the state doesn't care which you do. So, by "easier," I really mean "easier for the accountants" - which is of course in no way easier for us here on the programming team.</p> <p>Also, Schnapple's Texas story is a potential solution. (In fact, I pitched this very idea this morning.) CA really doesn't care if you overcharge sales tax, as long as you don't undercharge and hand over everything you collect. The problem here is, unlike Texas (apparently) vast swathes of CA are not in a special tax district. So, while we <em>could</em> charge the highest level for everyone (which I think is 8.75 at the moment), most of the customers would mind not playing their normal rate of 7.25. And I guess I can't blame them.</p> http://stackoverflow.com/questions/443968/in-net-is-there-an-opposite-function-to-server-htmlencode 1 In .net, is there an opposite function to Server.HTMLEncode() ? Electrons_Ahoy 2009-01-14T17:42:51Z 2009-10-03T22:42:39Z <p>.Net's Server.HTMLEncode() is the very helpful function that takes an HTML string and replaces special characters with their entity equivalents - "&lt;" becomes &amp;lt ; and so forth.</p> <p>Is there a (built-in) function that does the reverse? There doesn't seem to be, and I am incredulous. While I could certainly write my own (and have in the past) Server.HTMLEncode has all kinds of cool handling for different string encodings and high-level unicode characters that I would really not have crash my hand-rolled decoder in a year's time.</p> <p>What do other people do when they need the plain HTML back?</p> <p>Update: To answer the first batch of questions, I present the MSDN article on the <a href="http://msdn.microsoft.com/en-us/library/ms525541.aspx" rel="nofollow">Server object</a>, which has Encode but no Decode... I'm as amazed as anyone.</p> <p>Update2: as several alert readers have pointed out, the docs I was looking at were for classic ASP, not ASP.Net. Thanks guys, that's an important MSDN safety tip.</p> http://stackoverflow.com/questions/1263074/how-do-i-reduce-the-vertical-space-between-list-items-in-an-unordered-list 0 How do I reduce the vertical space between list items in an unordered list? Electrons_Ahoy 2009-08-11T21:36:34Z 2009-10-03T10:56:54Z <p>I've got a very simple html unordered list:</p> <pre><code>&lt;ul&gt; &lt;li&gt;First&lt;/li&gt; &lt;li&gt;Second&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>The problem is that the default styling for such a list in firefox leaves a lot of space between each list item - about the same as between paragraphs in a <code>&lt;p&gt;</code> tag. My google-fu is proving uncharacteristically useless today - how do I reduce that vertical space? I assume there's a css element I can apply to the <code>&lt;ul&gt;</code> tag, but I can't seem to find anything.</p> <p>(This is going in the side navigation element of a page so it needs to be as compact as possible.)</p> http://stackoverflow.com/questions/1505877/can-anyone-point-me-at-some-examples-of-groovys-closurecolumn-for-swingbuilder-t 0 Can anyone point me at some examples of Groovy's closureColumn for SwingBuilder Tables? Electrons_Ahoy 2009-10-01T19:11:28Z 2009-10-01T19:11:28Z <p>I'm working on some GUI code in Groovy using SwingBuilder.</p> <p>One of the elements on the screen is a JTable that's being used, essentially, as a properties editor. <em>Groovy in Action</em> has a fantastic example of how to do a display-only table, with what amounts to a side note that you can also attach a write closure. GiA's example is pretty consistant with the other examples I've found on the net: lots of read-only examples, not a lot of read-write examples.</p> <p>I've got, basically, this:</p> <pre><code>table() { tableModel( list : editorData ) { closureColumn(header: 'Component Attribute', read: {it.attribute} ) closureColumn(header: 'Value', read: {it.value}, write: { ?? } ) } } </code></pre> <p>In a theoretical sense, I get what needs to be in the write closure: code that fires when the user edits that cell. But examples, like I said, are hard to come by, so I'm a little shaky on how that's actually supposed to work.</p> <p>Can anyone point me at an example of using something like the above?</p> http://stackoverflow.com/questions/764416/why-would-one-use-groovy-over-java/1505722#1505722 2 Answer by Electrons_Ahoy for Why would one use Groovy over Java? Electrons_Ahoy 2009-10-01T18:41:21Z 2009-10-01T18:41:21Z <p>Taking a step back from the other answers: it takes less code to get the same amount of work done.</p> <p>For example, Groovy has a mess syntactic sugar to make lists and maps act like first-class citizens of the language. Since it's all Java bytecode under the hood, it just uses the existing Java collections, but this line in Java:</p> <pre><code>List booksILike = new ArrayList(); </code></pre> <p>becomes this in Groovy:</p> <pre><code>def booksILike = [] </code></pre> <p>Literally, those do exactly the same thing. However, the groovy one is just faster to type and less characters equals less things to get wrong. The whole language is kind of built on that philosophy: use as few words as possible to get the job done. Groovy's black magic hides away all the baroque boilerplate that Java needs to work and lets you get on with actually writing the code. It's awesome.</p> <p>And, since Groovy does all that grunt work for you, it's (almost) always right. The amount of bugs that were actually in the Java boilerplate code kinda blew my mind: writing in Groovy tends to just <em>work.</em></p> <p>Going back to Java after working in Groovy was like slowing to a crawl.</p> http://stackoverflow.com/questions/1488603/is-there-a-filter-out-there-to-use-groovy-code-with-doxygen 0 Is there a filter out there to use groovy code with doxygen? Electrons_Ahoy 2009-09-28T18:29:48Z 2009-09-28T18:29:48Z <p>We've got a fairly large project written in a mix of Java and Groovy. For a variety of reasons, we're looking to switch from Javadoc/groovydoc to doxygen for our code documentation generation needs.</p> <p>The Java code, of course, works fine. Doxygen, however, has no native support for groovy, and google doesn't seem to have turned up a doxygen filter. Has anyone seen such a creature out there, or do I need to crank one out myself?</p> http://stackoverflow.com/questions/155291/can-html-checkboxes-be-set-to-readonly 5 Can HTML checkboxes be set to readonly? Electrons_Ahoy 2008-09-30T21:58:58Z 2009-09-26T06:05:12Z <p>I thought they could be, but as I'm not putting my money where my mouth was (so to speak) setting the readonly attribute doesn't actually seem to do anything.</p> <p>I'd rather not use Disabled, since I want the checked check boxes to be submitted with the rest of the form, I just don't want the client to be able to change them under certain circumstances.</p> http://stackoverflow.com/questions/1474782/is-there-a-way-to-do-an-xcopy-deployment-of-a-jsp 0 Is there a way to do an "xcopy deployment" of a JSP? Electrons_Ahoy 2009-09-25T00:02:45Z 2009-09-25T00:13:30Z <p>One of the things that's neat about the IIS / ASP.NET environment is the ability to do an "xcopy deployment" - you can literally just drop a stack of .aspx pages in a web-shared directory, and ISS will figure out how to show them to the web.</p> <p>Is there a way to do something similar with JSPs?</p> <p>The exact use case in question is this: we have an internal development/debugging tool that would work much better if it was just a JSP or two living on the "back burner" of the web server.</p> <p>The whole process of creating a JAR and/or WAR files for a single JSP seems like overkill, as does setting up a whole ant build/deployment task. Is there any way to just point the server at a directory with JSPs in it and have it show those?</p> <p>(For the record, we're using JBoss as our java web server, so solutions with that would bve preferred, but due to the nature of this particular puzzle I'll take any windows-runnable java server you might have in mind.)</p> http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub/1849351#1849351 Comment by Electrons_Ahoy on Is there a way to get the number of places after the decimal point in a java double? Electrons_Ahoy 2009-12-04T20:45:23Z 2009-12-04T20:45:23Z And, for the record, in the world where I am King (or, at least, Project Manager) all those doubles would become BigDecimals. Sadly, I think that change might be received as being a little out of scope. ;) http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub/1849352#1849352 Comment by Electrons_Ahoy on Is there a way to get the number of places after the decimal point in a java double? Electrons_Ahoy 2009-12-04T20:41:59Z 2009-12-04T20:41:59Z Man, at least mine isn't fiscal numbers, so the occasional rounding error is okay. http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub/1849351#1849351 Comment by Electrons_Ahoy on Is there a way to get the number of places after the decimal point in a java double? Electrons_Ahoy 2009-12-04T20:39:22Z 2009-12-04T20:39:22Z Guys 3.14 was just an example. We're talking about arbitrary user entered doubles. http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub/1849352#1849352 Comment by Electrons_Ahoy on Is there a way to get the number of places after the decimal point in a java double? Electrons_Ahoy 2009-12-04T20:13:03Z 2009-12-04T20:13:03Z Believe me, I wouldn't if I had the option. But, you know, existing codebase and all that. I'm not even working on the module that collects the data, so I just get a double handed to me. :) http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub Comment by Electrons_Ahoy on Is there a way to get the number of places after the decimal point in a java double? Electrons_Ahoy 2009-12-04T20:11:06Z 2009-12-04T20:11:06Z That the user entered. Good point. http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub Comment by Electrons_Ahoy on Is there a way to get the number of places after the decimal point in a java double? Electrons_Ahoy 2009-12-04T20:08:02Z 2009-12-04T20:08:02Z Footnote: as this is a mixed Java/Groovy codebase, any solutions using groovy-based sorcery will be more than welcome. http://stackoverflow.com/questions/1793735/git-change-case-of-a-file-on-windows/1793757#1793757 Comment by Electrons_Ahoy on Git - change case of a file on windows? Electrons_Ahoy 2009-11-24T23:54:48Z 2009-11-24T23:54:48Z That did the trick! Thanks, Igor. http://stackoverflow.com/questions/1785862/what-is-the-value-of-interfaces/1785959#1785959 Comment by Electrons_Ahoy on What is the value of Interfaces? Electrons_Ahoy 2009-11-23T21:43:59Z 2009-11-23T21:43:59Z Granted. (I've done that even, now that I think back to my C++ days.) http://stackoverflow.com/questions/1750498/marketshare-of-cross-platform-widget-libraries Comment by Electrons_Ahoy on Marketshare of cross-platform widget libraries? Electrons_Ahoy 2009-11-17T19:42:27Z 2009-11-17T19:42:27Z Sidebar: market-share won't be the deciding factor in choosing a toolkit, but it is an interesting metric, and being able to say something like &quot;..and we're using the most widely-used toolkit!&quot; is something the marketing guys like to be able to say. http://stackoverflow.com/questions/1713481/groovy-string-to-int/1716699#1716699 Comment by Electrons_Ahoy on Groovy String to int Electrons_Ahoy 2009-11-12T17:56:46Z 2009-11-12T17:56:46Z Seconded and thirded. http://stackoverflow.com/questions/1637952/should-entry-level-programmers-be-able-to-answer-fizzbuzz/1638769#1638769 Comment by Electrons_Ahoy on Should entry level programmers be able to answer FizzBuzz? Electrons_Ahoy 2009-10-28T17:45:05Z 2009-10-28T17:45:05Z Seconded. I'd vote this up twice if I could. http://stackoverflow.com/questions/1632407/has-anyone-got-a-jsp-language-file-for-notepad/1632477#1632477 Comment by Electrons_Ahoy on Has anyone got a JSP language file for Notepad++? Electrons_Ahoy 2009-10-27T18:26:16Z 2009-10-27T18:26:16Z Well, granted, but I'd rather apply JSP highlighting, you know? http://stackoverflow.com/questions/1569547/does-groovy-have-an-easy-way-to-get-a-filename-without-the-extension Comment by Electrons_Ahoy on Does groovy have an easy way to get a filename without the extension? Electrons_Ahoy 2009-10-15T16:31:45Z 2009-10-15T16:31:45Z Or don't have either. This is why I was hoping there was a Groovy way to do it, so I didn't have to roll my own. :) http://stackoverflow.com/questions/1522970/how-do-i-fire-an-action-when-the-user-leaves-a-jtextbox/1522978#1522978 Comment by Electrons_Ahoy on How do I fire an action when the user leaves a JTextBox? Electrons_Ahoy 2009-10-07T20:59:05Z 2009-10-07T20:59:05Z For the record, the focus listener did exactly what I need it to do. Thanks! http://stackoverflow.com/questions/1522970/how-do-i-fire-an-action-when-the-user-leaves-a-jtextbox/1522978#1522978 Comment by Electrons_Ahoy on How do I fire an action when the user leaves a JTextBox? Electrons_Ahoy 2009-10-06T00:09:40Z 2009-10-06T00:09:40Z Aha! FocusListener is what I was vaguely remembering. The action in question is to save the text the user typed - is that better to do via a listener on the document, do you think?