User JacobM - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T15:33:17Z http://stackoverflow.com/feeds/user/1237 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820384/whats-the-best-way-to-truncate-text-to-fit-in-a-container/1820480#1820480 1 Answer by JacobM for What's the best way to truncate text to fit in a container? JacobM 2009-11-30T15:27:08Z 2009-11-30T15:27:08Z <p>The new version of CSS (CSS3) should include <code>text-overflow:ellipsis</code>, which does this for you. It currently works in IE only. So this isn't a useful answer yet, but it's worth keeping in mind that the real best way will, eventually, be to let CSS handle this.</p> <p>CSS3 spec draft: <a href="http://www.w3.org/TR/2001/WD-css3-text-20010517/#text-overflow-props" rel="nofollow">http://www.w3.org/TR/2001/WD-css3-text-20010517/#text-overflow-props</a></p> http://stackoverflow.com/questions/1799533/get-the-selected-option-from-a-list/1799557#1799557 1 Answer by JacobM for Get the selected option from a list JacobM 2009-11-25T19:56:09Z 2009-11-25T19:56:09Z <p><code>$("select").val()</code> will always give you the value of the selected option at any point.</p> http://stackoverflow.com/questions/1792471/how-much-access-should-an-os-give-to-web-based-scripting/1792531#1792531 1 Answer by JacobM for How much access should an OS give to web-based scripting? JacobM 2009-11-24T19:56:45Z 2009-11-24T19:56:45Z <p>Any access that is given is going to be abused by malware. Guaranteed.</p> <p>I think the trend is toward less access; consider Google's Chrome OS, in which you do all of your work within web applications, which have no native access to your system at all.</p> http://stackoverflow.com/questions/1791171/ruby-object-hash/1791315#1791315 1 Answer by JacobM for ruby object.hash JacobM 2009-11-24T16:43:28Z 2009-11-24T16:43:28Z <p>A hash value has no inherent meaning, but it is a way of representing that object such that it can be differentiated from other objects of the same type. When you create an object, it needs to implement hash such that if two objects have the same hash value, they will also be equal. What it means for two objects to be equal depends on the object; if you define, say, a Person object, you might want to say that two instances of Person are equal if they have the same name, id number, and birthdate. Or whatever criteria you choose.</p> <p>Using an array or a hash as a hash key will now work since both do implement hash (such that the hash value is based on their contents). However, you can run into trouble when using a modifiable object such as an array as a key if there's any chance you might modify it. For example, if you have a variable of type Array, and you use it as a key to put something into a hash, and then you add something to the array, and try to use that variable as the key to get the something back out of the hash, it won't work (as the array's hash value has changed). The solution to this issue is to call Rehash on your hash after you modify the array.</p> http://stackoverflow.com/questions/1785759/html-data-entry/1785889#1785889 0 Answer by JacobM for HTML data entry JacobM 2009-11-23T20:55:14Z 2009-11-23T20:55:14Z <p>In the future, when you allow people to update their bios, I'm guessing you won't want people to update each other's bios. Therefore it's not going to buy you anything to make the bios into non-functional forms as you propose (with the idea of adding functionality for updates later), as you will be wanting to use a different path (with some kind of authentication added) for doing the updates.</p> <p>Given this, I'd just type the bios into the HTML for now. Make sure to use the same HTML structure for every page, so that later, when you do switch to a database-driven approach (and you will) you can more easily turn it into a dynamic page.</p> http://stackoverflow.com/questions/1785621/jquery-keeping-addclass-stored-after-page-reload/1785674#1785674 1 Answer by JacobM for JQuery keeping addClass stored after page reload JacobM 2009-11-23T20:19:23Z 2009-11-23T20:31:30Z <p>The entire Javascript environment resets when you go to a new page, so you can't keep changes made in javascript between pages.</p> <p>Possible ways to deal with this:</p> <ol> <li>open the new page in an iframe or in a separate window. The outer page (for an iframe) or the original page (for a separate window) doesn't reload, so javascript changes in it will not be lost. </li> <li>Add some sort of querystring to the url when you pass to the new page, and then interpret that querystring in the new page (within javascript) to make whatever change you've made again.</li> <li>Put data in a cookie that will allow you to apply the change on the new page.</li> </ol> http://stackoverflow.com/questions/1785615/region-analogue-for-eclipse/1785647#1785647 2 Answer by JacobM for #region analogue for eclipse JacobM 2009-11-23T20:15:04Z 2009-11-23T20:15:04Z <p>User-defined regions for code folding can be added by using the <a href="http://archive.realjenius.com/platform%5Fsupport" rel="nofollow">Coffee-Bytes</a> plugin.</p> http://stackoverflow.com/questions/1766009/how-to-simulate-a-click-in-javascript/1766018#1766018 3 Answer by JacobM for How to simulate a click in javascript? JacobM 2009-11-19T19:44:38Z 2009-11-19T19:44:38Z <p>Using jQuery, you can do <code>$("#myElementId").click()</code> to simulate a click.</p> http://stackoverflow.com/questions/1765908/is-it-better-to-have-code-duplication-and-have-it-be-very-simple-readable-or-hav/1765982#1765982 4 Answer by JacobM for Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? JacobM 2009-11-19T19:39:44Z 2009-11-19T19:39:44Z <p>There are extreme cases where you prevent code duplication by complicated metaprogramming (not so much an issue for Java) or excessive use of reflection, and in those few cases I'd favor permitting the duplication. This is rare. So long as the code remains understandable by a reasonably skilled developer who isn't you, I'd go for eliminating the duplication.</p> <p>I have run across situations where a team includes one or two skilled developers and a bunch of newbies, where the newbies try to prevent the use of coding approaches that they don't understand at a glance. This must be resisted.</p> http://stackoverflow.com/questions/1764663/select-rows-that-are-different-in-sql/1764741#1764741 1 Answer by JacobM for Select rows that are different in SQL JacobM 2009-11-19T16:45:40Z 2009-11-19T16:45:40Z <p>Do you need to do this programmatically, or can you just run a few queries yourself to check it?</p> <p>If the latter, I'd just do "select distinct name, order#" to start. This should return a list that includes "Peter Paul and Mary, 132" and possibly some other things.</p> <p>Then find the other things by doing select ... where name = "this" as you suggest.</p> <p>You could get even more info out of that first query by doing "select distinct name, order#, count(*) from ... group by name, order#". This would give you both the list of values and the frequency of a given set of values.</p> http://stackoverflow.com/questions/1763961/how-to-get-the-day-of-year-in-ruby/1764001#1764001 0 Answer by JacobM for How to get the day of year in ruby? JacobM 2009-11-19T15:15:44Z 2009-11-19T15:15:44Z <p>Time.now.strftime("%j") or Time.now.yday</p> http://stackoverflow.com/questions/1763899/asp-net-script-in-external-js-file/1763949#1763949 0 Answer by JacobM for Asp.Net script in external js file JacobM 2009-11-19T15:08:04Z 2009-11-19T15:08:04Z <p>The external js file isn't processed by ASP.NET, so of course the ASP.NET code doesn't run.</p> <p>A common practice is to define a javascript variable within the ASP.NET page, and use it as a parameter to call a function that's defined externally. For example:</p> <p>in the external js file:</p> <pre><code>function doSomething(someElement) { //do stuff with someElement } </code></pre> <p>in the ASP.NET page:</p> <pre><code>$(document).ready( function() { var el = ("#&lt;%= gridResults.ClientID %&gt;"); doSomething(el); }); </code></pre> http://stackoverflow.com/questions/1758302/in-jquery-how-can-i-select-different-elements-by-the-name-attribute/1758334#1758334 1 Answer by JacobM for In jQuery, how can I select different elements by the name attribute? JacobM 2009-11-18T19:13:03Z 2009-11-18T19:13:03Z <p>If the comma is included in the selector string it will work. You could also do </p> <pre><code>$("input, select").filter("[name=" + prop + "]") </code></pre> <p>which eliminates writing "[name=" + prop + "]" twice.</p> http://stackoverflow.com/questions/1757586/php-specific-clean-code-naming-conventions-and-documentation/1757614#1757614 7 Answer by JacobM for PHP specific - clean code, naming conventions and documentation JacobM 2009-11-18T17:17:48Z 2009-11-18T17:17:48Z <p>Zend Framework has a PHP coding standard document <a href="http://framework.zend.com/manual/en/coding-standard.html" rel="nofollow">here</a> that should cover things like how to name variables and functions.</p> <p>When and how to comment is much less platform-specific. I think a good general rule is to comment on <em>why</em> something is done, rather than <em>how</em>. The code should be written clearly enough to make <em>how</em> obvious. (There are exceptions, of course, such as the use of particularly complex algorithms that may need explanation.)</p> http://stackoverflow.com/questions/1757567/cost-of-logging-ip-address-for-user-activity/1757601#1757601 2 Answer by JacobM for cost of logging ip address for user activity JacobM 2009-11-18T17:15:32Z 2009-11-18T17:15:32Z <p>Naturally adding more logging will always mean more writes to a database or log file, and that will slow things down.</p> <p>The real question is what you want to use this for. Presumably it's not just about tracking who posted a message, etc. -- you clearly are using some kind of authentication, so presumably you know who posted the message. What are you using IP address for?</p> http://stackoverflow.com/questions/1757031/attribute-name-for-serial-or-parallel/1757180#1757180 0 Answer by JacobM for attribute name for serial or parallel JacobM 2009-11-18T16:18:41Z 2009-11-18T16:18:41Z <p>It depends a bit on what you're describing (port, etc.) but one possible type descriptor for things that can be serial or parallel would be "transfer_type". Or "communication_type".</p> http://stackoverflow.com/questions/1752115/some-quick-help-with-this-small-piece-of-code/1752151#1752151 2 Answer by JacobM for some quick help with this small piece of code... JacobM 2009-11-17T21:59:36Z 2009-11-17T21:59:36Z <p>Try <code>$p="/SV/main/temp_images/{${$img}}";</code></p> <p>When PHP is parsing the string and comes to a $, it looks at the next character to see if it makes a valid variable name. If not, it moves on. In this case, that means that the second $ is correctly interpreted, but the first one has already been passed by. The answer is to enclose the inner expression in brackets, so that it will be parsed before the outer one is.</p> http://stackoverflow.com/questions/1744751/how-can-i-pass-a-variable-as-an-option-when-creating-a-jquery-ui-accordion/1744797#1744797 1 Answer by JacobM for How can I pass a variable as an option when creating a jQuery UI accordion? JacobM 2009-11-16T20:54:52Z 2009-11-16T20:54:52Z <p>The approach given in the examples by ChaosPandion and rochal (where the header is defined from a variable) seems best to me, but another useful thing to know about is that you can redefine any option on an accordion by using the "option" option, like this:</p> <pre><code>$(acc_id).accordion({ alwaysOpen: false, active: false, autoheight: false, header: 'placeholder', clearStyle: true }); $(acc_id).accordion('option', 'header', 'h3.ui-accordion3-header'); </code></pre> <p>In this way you can create the accordion and then, afterwards, set the header value.</p> http://stackoverflow.com/questions/1744687/how-to-attach-a-file-to-an-email-using-javamail/1744760#1744760 3 Answer by JacobM for How to attach a file to an email using JavaMail JacobM 2009-11-16T20:47:02Z 2009-11-16T20:47:02Z <p>jheddings answer seems correct to me, but I'll also add that if, by any chance, you are using Spring framework in your application, you could take advantage of the Spring MimeMessageHelper, which includes a nice addAttachment() method (and makes the rest of the message creation easier as well).</p> http://stackoverflow.com/questions/1744283/how-to-center-google-map-on-a-country-by-name/1744326#1744326 2 Answer by JacobM for How to center Google Map on a country by name JacobM 2009-11-16T19:30:21Z 2009-11-16T19:36:22Z <p>Turning a location name or address into a latitude/longitude like this is called geocoding. Google Maps API now includes this capability: see <a href="http://code.google.com/apis/maps/documentation/services.html#Geocoding" rel="nofollow">http://code.google.com/apis/maps/documentation/services.html#Geocoding</a></p> <p>They include a sample application where you can type in an address, and it does work to simply type a country name. I don't know if they are going to the exact center of the country.</p> http://stackoverflow.com/questions/1744188/how-can-i-prevent-that-users-browse-my-site-with-a-specific-browser/1744235#1744235 6 Answer by JacobM for How can i prevent that users browse my site with a specific browser? JacobM 2009-11-16T19:15:29Z 2009-11-16T19:15:29Z <p>Short answer: you can't.</p> <p>Browsers will supply a user-agent header with each HTTP request, and you can use that to determine which browser a request says it is from. But the browser is often lying. In part because of developers (like you?) who try to restrict their sites to certain browsers, many browsers and users "spoof" the user-agent string, or include names of browsers they are not within that string.</p> <p>If your specific concern is preventing Javascript compatibility problems, a much better approach is checking for a given piece of functionality (in Javascript) before using that functionality. This will work across browser types.</p> http://stackoverflow.com/questions/1744164/how-to-keep-up-to-date-on-available-java-libraries/1744200#1744200 1 Answer by JacobM for How to keep up to date on available Java libraries? JacobM 2009-11-16T19:10:12Z 2009-11-16T19:10:12Z <p>The <a href="http://www.discursive.com/books/cjcook/reference/book-cjcook.html" rel="nofollow">Common Java Cookbook</a> is a very nice reference for useful things that can be done with Apache Commons and some related libraries (Lucene, Velocity).</p> http://stackoverflow.com/questions/1744131/in-jscript-is-it-possible-to-implement-getters-and-setters-that-look-like-object/1744157#1744157 1 Answer by JacobM for In JScript, is it possible to implement getters and setters that look like object properties from the outside? JacobM 2009-11-16T19:03:14Z 2009-11-16T19:03:14Z <p>According to <a href="http://ejohn.org/blog/javascript-getters-and-setters/" rel="nofollow">this article</a> (by John Resig, creator of jQuery), Javascript getters and setters are supported in JScript.NET 8.</p> http://stackoverflow.com/questions/1744082/javascript-open-1-links-that-dont-have-content/1744134#1744134 1 Answer by JacobM for Javascript: Open 1+ links (that dont have content) JacobM 2009-11-16T18:57:18Z 2009-11-16T18:57:18Z <p>If what you're trying to do is open a series of URLs, one after another, in a single window, then I see a couple of options.</p> <p>When you loop through the list, you could use window.open on each one, but give the window a name and use the same name for each -- that way it would open a single extra window and load each URL in it. Note that it might well start loading one before the previous one has had time to finish loading, unless you add a pause of some kind, or use a callback approach.</p> <p>The second approach is to load them, one after another, into an iframe on your page. Same timing issues apply.</p> http://stackoverflow.com/questions/1731366/how-to-move-intellij-file-tabs/1731924#1731924 2 Answer by JacobM for How to move IntelliJ file tabs? JacobM 2009-11-13T21:05:28Z 2009-11-13T21:05:28Z <p>There's a free TabReorder plugin to do this, available at <a href="http://plugins.intellij.net/plugin/?id=187" rel="nofollow">http://plugins.intellij.net/plugin/?id=187</a></p> http://stackoverflow.com/questions/1729778/how-can-i-invert-the-case-of-a-string-in-java/1729795#1729795 13 Answer by JacobM for How can I invert the case of a String in Java? JacobM 2009-11-13T15:10:04Z 2009-11-13T15:10:04Z <p>Apache Commons StringUtils has a <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/StringUtils.html#swapCase%28java.lang.String%29" rel="nofollow">swapCase</a> method.</p> http://stackoverflow.com/questions/1728237/simpleformcontroller-help/1729381#1729381 0 Answer by JacobM for SimpleFormController help JacobM 2009-11-13T14:02:03Z 2009-11-13T14:02:03Z <p>It sounds like the idea is that the form backing object binds to the form, but the initial data for the form isn't loaded when the page loads (which is what you would use the formBackingObject method for). Instead, you want to pre-load some other data that doesn't go in the form backing object (the list of "messages") and the form will get initialized via Ajax based on that drop-down).</p> <p>So what you want to use, I think, is the referenceData method. This allows you to put any objects you want into the request so they can be accessed from the JSP. You create a map and insert, say, a list of Message objects with a key of "messageList" into the map. Then you can just get the messages, within the JSP, by referencing ${messageList}.</p> http://stackoverflow.com/questions/1717018/spring-formbackingobject-business-object-creation-and-factories/1717395#1717395 1 Answer by JacobM for Spring formBackingObject, Business Object Creation, and Factories JacobM 2009-11-11T19:09:05Z 2009-11-11T19:09:05Z <p>I definitely wouldn't choose the option of not using a formBackingObject and gathering the information manually -- that would eliminate a lot of the power that makes Spring MVC worthwhile in the first place.</p> <p>If I were you, I would just make a new factory, or factory method, that is designed specifically to create an "uninitialized" business object, and use that as your formBackingObject.</p> <p>Another approach that is widely used is not to use a business object as your formBackingObject at all, but create a separate transport object whose only purpose is to be the formBackingObject (and then add a factory method for your business object that lets you initialize it from the transport object). One of the big advantages of this is if your business object has a deep tree of other objects inside it, this can make it a pain to use as a formBackingObject. If you create a separate transport object just for use as a formBackingObject, you can give it a much flatter structure.</p> http://stackoverflow.com/questions/1710632/submitting-futuretasks-to-an-executor-why-does-it-work/1710712#1710712 1 Answer by JacobM for Submitting FutureTasks to an Executor - why does it work ? JacobM 2009-11-10T19:51:39Z 2009-11-10T19:51:39Z <p>The executor doesn't call done(). done() gets called by FutureTask when the call to run() is complete.</p> http://stackoverflow.com/questions/1710519/error-in-converting-string-to-float/1710561#1710561 2 Answer by JacobM for Error in converting string to float JacobM 2009-11-10T19:29:39Z 2009-11-10T19:29:39Z <p>I'd imagine your array would begin with an empty string (because of the : at the beginning of your string). Step one is to use a debugger to figure out whether the array contains what you think it contains.</p> http://stackoverflow.com/questions/1820257/assigning-to-an-associative-array-slice-in-php/1820280#1820280 Comment by JacobM on assigning to an associative array slice in php JacobM 2009-11-30T15:02:58Z 2009-11-30T15:02:58Z You could do something like $info = array(4,5,6); list($a['foo'], $a['bar'], $a['baz']) = $info; but using &quot;list&quot; there really isn't buying you anything. http://stackoverflow.com/questions/1820257/assigning-to-an-associative-array-slice-in-php/1820280#1820280 Comment by JacobM on assigning to an associative array slice in php JacobM 2009-11-30T15:01:43Z 2009-11-30T15:01:43Z list() is really in the opposite direction: it takes a list of variables and an array and assigns each item in the array to the corresponding variable (i.e. it's a way to get things OUT of an array rather than a way to put things IN). http://stackoverflow.com/questions/1799533/get-the-selected-option-from-a-list/1799550#1799550 Comment by JacobM on Get the selected option from a list JacobM 2009-11-25T19:58:11Z 2009-11-25T19:58:11Z Since the value of a select is the value of the selected option, you don't need the &quot;:selected&quot; -- $(&quot;select&quot;).val() is sufficient. http://stackoverflow.com/questions/1791515/onclick-does-not-work-properly-on-p-tag/1791534#1791534 Comment by JacobM on onClick does not work properly on p tag JacobM 2009-11-24T17:15:37Z 2009-11-24T17:15:37Z Exactly. What you've done is assigned the click event to a call to a function (i.e. call the function now, and assign the result to the event). What you want is to actually assign the event to a function. http://stackoverflow.com/questions/1791419/adding-data-to-an-input-field/1791469#1791469 Comment by JacobM on Adding Data To An Input Field JacobM 2009-11-24T17:08:37Z 2009-11-24T17:08:37Z If they don't want to hit an intermediate URL that will do the concatenation for them, then Javascript is what's left. Yes, it will not work for some users. http://stackoverflow.com/questions/1791419/adding-data-to-an-input-field/1791469#1791469 Comment by JacobM on Adding Data To An Input Field JacobM 2009-11-24T17:07:24Z 2009-11-24T17:07:24Z I think what the poster is asking for is a way to concatenate the locale and other data, along with the actual query, into a single field (as expected by whatever they're using on the backend). http://stackoverflow.com/questions/1785645/problem-with-login-page-ruby-on-rails Comment by JacobM on problem with login page ruby on rails JacobM 2009-11-23T20:22:06Z 2009-11-23T20:22:06Z Do you have a &quot;private&quot; method within your controller? http://stackoverflow.com/questions/1765908/is-it-better-to-have-code-duplication-and-have-it-be-very-simple-readable-or-hav/1766033#1766033 Comment by JacobM on Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? JacobM 2009-11-19T20:10:51Z 2009-11-19T20:10:51Z Voted up for some useful examples. http://stackoverflow.com/questions/1765908/is-it-better-to-have-code-duplication-and-have-it-be-very-simple-readable-or-hav/1765933#1765933 Comment by JacobM on Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? JacobM 2009-11-19T19:55:46Z 2009-11-19T19:55:46Z Couldn't agree more. http://stackoverflow.com/questions/1766011/trouble-with-jquery-and-attrvalue Comment by JacobM on Trouble with jQuery and .attr('value') JacobM 2009-11-19T19:50:23Z 2009-11-19T19:50:23Z When you changed the case in the jquery call, I assume you also changed the case that was defined in the HTML? http://stackoverflow.com/questions/1766009/how-to-simulate-a-click-in-javascript/1766018#1766018 Comment by JacobM on How to simulate a click in javascript? JacobM 2009-11-19T19:47:01Z 2009-11-19T19:47:01Z Truly jquery is the bomb. http://stackoverflow.com/questions/1765908/is-it-better-to-have-code-duplication-and-have-it-be-very-simple-readable-or-hav/1765933#1765933 Comment by JacobM on Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? JacobM 2009-11-19T19:36:03Z 2009-11-19T19:36:03Z Generics isn't just about collections; if I have multiple methods that do similar things but differ by parameter type, I prefer to replace them with a single method that takes a generic type. Some developers seem to find that confusing. http://stackoverflow.com/questions/1765669/ajax-javascript-error-ruby-on-rails Comment by JacobM on AJAX/Javascript Error Ruby on Rails... JacobM 2009-11-19T18:57:54Z 2009-11-19T18:57:54Z Can you identify where the code snippet referenced in the error message (&quot;((position == 'before' || position == 'after')? element.parentNode : element)&quot;) appears? It doesn't seem to be in any of the samples you posted here. http://stackoverflow.com/questions/1757567/cost-of-logging-ip-address-for-user-activity/1757601#1757601 Comment by JacobM on cost of logging ip address for user activity JacobM 2009-11-18T19:30:09Z 2009-11-18T19:30:09Z Ah, gotcha. Well, I'd be careful with this, since users behind a proxy (including AOL users) may share an IP address but actually be different people. http://stackoverflow.com/questions/1757665/cleaner-way-to-translate-index-into-specified-string/1757686#1757686 Comment by JacobM on Cleaner way to translate index into specified string? JacobM 2009-11-18T17:28:37Z 2009-11-18T17:28:37Z I like this approach, but I'd probably specify the indexes rather than use the &quot;minus one&quot; thing: array(1=&gt;&quot;Sorcerer&quot;, 2=&gt;&quot;Druid&quot;,...). This way you're not stuck with the automatic indexes -- what if you decide to eliminate one or skip one later?