User Rob - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T05:22:36Z http://stackoverflow.com/feeds/user/3542 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816354/decrement-in-mysql-goes-past-zero/1816367#1816367 5 Answer by Rob for Decrement in mysql goes past zero Rob 2009-11-29T18:42:25Z 2009-11-29T18:42:25Z <pre><code>`AND value &gt; 0` </code></pre> http://stackoverflow.com/questions/1744051/why-do-so-many-javascript-scripts-append-random-numbers-to-things-collision/1744089#1744089 10 Answer by Rob for Why do so many Javascript scripts append random numbers to things? Collision? Rob 2009-11-16T18:50:13Z 2009-11-16T18:50:13Z <p>As Rubens says, it's typically a trick employed to prevent caching. Browsers typically cache JavaScript and CSS very aggressively, which can save you bandwidth, but can also cause deployment problems when changing your scripts.</p> <p>The idea is that browsers will consider the resource located at <code>http://www.example.com/something.js?foo</code> different from <code>http://www.example.com/something.js?bar</code>, and so won't use their local cache to retrieve the resource.</p> <p>Probably a more common pattern is to append an incrementing value which can be altered whenever the resource needs to change. In this way, you benefit by having repeat requests served by the client-side cache, but when deploying a new version, you can force the browser to fetch the new version.</p> <p>Personally, I like to append the last-modified time of the file as as a Unix timestamp, so I don't have to go hunting around and bumping version numbers whenever I change the file.</p> http://stackoverflow.com/questions/1724708/when-not-to-use-integration-tests/1724725#1724725 6 Answer by Rob for When not to Use Integration Tests Rob 2009-11-12T19:25:31Z 2009-11-12T19:25:31Z <p>When you don't plan on actually hooking your application up to anything "real"; no real containers, databases, resources or actual services. That's what an integration test is supposed to verify; that everything works properly together.</p> http://stackoverflow.com/questions/1724587/how-to-store-php-sessions-in-apc-cache/1724666#1724666 0 Answer by Rob for How to store PHP sessions in APC Cache ? Rob 2009-11-12T19:18:39Z 2009-11-12T19:18:39Z <p>In theory, you ought to be able to write a <a href="http://uk.php.net/manual/en/session.customhandler.php" rel="nofollow">custom session handler</a> which uses APC to do this transparently for you. However, I haven't actually been able to find anything really promising in a quick five-minute search; most people seem to be using APC for the bytecode cache and putting their sessions in memcached.</p> http://stackoverflow.com/questions/1724610/mysql-status-model-best-implementation/1724640#1724640 0 Answer by Rob for MySQL Status Model -- Best Implementation? Rob 2009-11-12T19:14:21Z 2009-11-12T19:14:21Z <p>From a data modelling point of view:</p> <ul> <li>Have a different table for each "kind" of status; keep user statuses separate from page statuses (for example) - group the like entities together.</li> <li>Don't put the CSS classes into the database, but use some form of status indicator - this could be an ENUM column, if you know the set of possible statuses up front. Transform this into the appropriate CSS class in the view layer. You don't want to end up in a situation where your CSS can't be changed because some data in the database prevents it.</li> </ul> http://stackoverflow.com/questions/1724612/change-file-extension-in-php/1724621#1724621 1 Answer by Rob for change file extension in php? Rob 2009-11-12T19:11:51Z 2009-11-12T19:11:51Z <p><a href="http://uk3.php.net/manual/en/function.rename.php" rel="nofollow"><code>rename()</code></a> the file, substituting the new extension.</p> http://stackoverflow.com/questions/1724511/how-to-check-where-apache-is-looking-for-a-php-ini-file/1724538#1724538 2 Answer by Rob for How to check where Apache is looking for a php.ini file? Rob 2009-11-12T18:57:44Z 2009-11-12T18:57:44Z <p>The output from <code>phpinfo()</code> will contain this. When using PHP as an Apache module, it can be configured using <code>PHPIniDir</code> in <code>httpd.conf</code> (or similar).</p> http://stackoverflow.com/questions/490091/java-generics/490103#490103 7 Answer by Rob for Java Generics Rob 2009-01-29T01:02:09Z 2009-11-09T16:51:25Z <p>I refer you to the excellent <a href="http://java.sun.com/docs/books/tutorial/java/generics/index.html" rel="nofollow">Java Generics tutorial</a>, and the <a href="http://java.sun.com/docs/books/tutorial/extra/generics/index.html" rel="nofollow">"advanced" Generics tutorial</a>, both available from Sun Microsystems. Another great resource is the <a href="http://oreilly.com/catalog/9780596527754" rel="nofollow">Java Generics and Collections</a> book.</p> http://stackoverflow.com/questions/1682964/in-javascript-how-can-i-get-all-radio-buttons-in-the-page-with-a-given-name/1682987#1682987 4 Answer by Rob for In JavaScript, how can I get all radio buttons in the page with a given name? Rob 2009-11-05T19:34:52Z 2009-11-05T19:34:52Z <p>You can use <code>document.getElementsByName()</code>, passing the name of the radio group, then loop over them inspecting the <code>checked</code> attribute, e.g. something like:</p> <pre><code>function getCheckedValue( groupName ) { var radios = document.getElementsByName( groupName ); for( i = 0; i &lt; radios.length; i++ ) { if( radios[i].checked ) { return radios[i].value; } } return null; } </code></pre> http://stackoverflow.com/questions/35698/multi-agent-computing-in-simple-terms 1 "Multi-agent computing" in simple terms Rob 2008-08-30T05:26:02Z 2009-11-02T11:17:30Z <p>I've encountered the term "multi-agent computing" as of late, and I don't quite get what it is. I've read a book about it, but that didn't answer the fundamental question of what an agent was.</p> <p>Does someone out there have a pointer to some reference which is clear and concise and answers the question without a load of bullshit/marketing speak? I want to know if this is something I should familiarise myself, or whether it's some crap I can probably ignore, because I honestly can't tell.</p> http://stackoverflow.com/questions/1659815/what-is-the-different-of-abstract-class-and-interface-in-net/1659820#1659820 1 Answer by Rob for What is the different of abstract class and interface in .NET? Rob 2009-11-02T07:07:37Z 2009-11-02T07:07:37Z <ul> <li>You can provide partial implementation with an abstract class.</li> <li>Interfaces don't smash the inheritance line; abstract classes do. You might want to mandate behaviour/capabilities without creating an is-a relationship.</li> </ul> http://stackoverflow.com/questions/1652374/writing-html-and-css/1652393#1652393 0 Answer by Rob for Writing HTML and CSS Rob 2009-10-30T21:22:30Z 2009-10-30T21:22:30Z <p>The real answer is, it doesn't make a blind bit of difference, although the chances are, quite a lot of "web 2.0" sites do hand-code their HTML. The fact is, it makes no difference because that information doesn't help you. If you're starting out learning how to write them, then you should feel perfectly entitled to use whatever editor or IDE you like to make it easier. Over time, you will feel more confident when it comes to bashing out a bit of HTML.</p> http://stackoverflow.com/questions/1621544/dont-you-find-it-horribly-annoying-that-neat-and-clean-is-inefficient/1621550#1621550 5 Answer by Rob for Don't you find it horribly annoying that neat and clean is inefficient? Rob 2009-10-25T17:53:39Z 2009-10-25T17:53:39Z <p>Readable code beats clever code, hands-down, any day, as far as I'm concerned. I really don't care about a few miliseconds here or there, but I do care if something can't be maintained further down the line.</p> <p>For some people, performance is (literally) a matter of life and death. I can see why those people may prefer "cleverness" to simplicity.</p> http://stackoverflow.com/questions/1621523/how-does-sites-such-as-livescore-com-work/1621535#1621535 1 Answer by Rob for How does sites such as livescore.com work? Rob 2009-10-25T17:47:51Z 2009-10-25T17:47:51Z <p>I've no idea for this particular site, but it seems like there are a couple of viable possibilities:</p> <ul> <li>Subscribe to a live feed of information from a provider, e.g. a broadcaster or similar. I would imagine this would cost a fair bit and be subject to restrictions on use, etc.</li> <li>Hire people to obtain the information from a variety of sources (including primary sources, i.e. watch several of the games) and update a database manually.</li> <li>Scrape ("borrow") the information from one or more other sites which do one of the above.</li> </ul> http://stackoverflow.com/questions/1616289/why-does-the-windows-registry-exist/1616299#1616299 0 Answer by Rob for Why does the Windows registry exist? Rob 2009-10-23T22:43:38Z 2009-10-23T22:43:38Z <p>For starters, it's quicker to read and write to the registry during the course of a user session.</p> http://stackoverflow.com/questions/1591236/accessing-local-file-from-php/1591253#1591253 1 Answer by Rob for accessing local file from php Rob 2009-10-19T21:25:06Z 2009-10-19T21:25:06Z <p>For starters, don't overwrite <code>$_FILES</code> with <code>$_POST</code>; the former is created by parsing the multi-part form data in the request.</p> <p>Second, make sure your form tag has said multi-part form encoding:</p> <pre><code>&lt;form action="..." method="post" enctype="multipart/form-data"&gt; </code></pre> http://stackoverflow.com/questions/1573468/experience-with-billing-systems/1591242#1591242 0 Answer by Rob for Experience with billing systems Rob 2009-10-19T21:23:26Z 2009-10-19T21:23:26Z <p>If you want to accept credit/debit card payments online, you're going to need two things:</p> <ul> <li>an Internet Merchant Account (a business bank account which can accept such payments; there's usually quite a bit of business compliance, risk and anti-fraud attached, but if you're a serious business with an existing business account, talk to your bank)</li> <li>a Payment Services Provider (who provide you with, for example, an API or a hosted checkout solution, and who act as the go-between for your web site and your IMA, which will typically only provide very limited options)</li> </ul> <p>There is, of course, a fast growing trend of alternative payment services; PayPal, Envoy, MoneyBookers, Neteller, uKash, etc. Those are definitely worth exploring, because they tend to provide a certain degree of risk-free/guaranteed payment, and they dramatically widen the numbers of customers you can reach - think in terms of people who aren't old enough to have cards, or who aren't able to get them due to debt problems or the like.</p> <p>Perhaps the easiest combination is to find a Payment Services Provider who can handle the whole lot - set you up with an IMA (or rather, underwrite your risk with a bank so they'll be happier to give you one), provide payment processing services, maybe a bit of fraud protection and risk management on top, chargeback management, and then handle all those possible payment methods, including things like 3D Secure (Verified by Visa/Mastercard SecureCode) which can be a real headache to integrate with.</p> <p>If you're going to be getting into the business of handling online payments, even if it's just an occasional thing, then you'll need to knuckle down and do a bit of serious research into what you need, what you don't need, and what you're willing to pay, 'cause payment service providers obviously charge for this stuff, and it'll be a serious business partnership.</p> <p>For once, Wikipedia seem to have an appallingly lightweight list, so you may want to Google "payment services provider".</p> http://stackoverflow.com/questions/1591132/how-can-i-add-an-underscore-before-each-capital-letter-inside-a-java-string/1591149#1591149 2 Answer by Rob for How can I add an underscore before each capital letter inside a Java String? Rob 2009-10-19T21:04:11Z 2009-10-19T21:04:11Z <p>Here's a hint to get you thinking along a possible solution:</p> <ol> <li>Find a way of splitting the string into parts at each capital letter</li> <li>Join the split strings back up with underscores between them</li> </ol> <p>Useful keywords:</p> <ul> <li>split</li> <li>regular expression/regex</li> </ul> http://stackoverflow.com/questions/1590923/java-6-and-swingutilities2/1590964#1590964 1 Answer by Rob for Java 6 and SwingUtilities2 Rob 2009-10-19T20:30:52Z 2009-10-19T20:30:52Z <p>Da-dum! This is precisely why you should pay attention to those pesky warnings admonishing you not to rely upon internals of the JVM!</p> http://stackoverflow.com/questions/1590909/updating-tags-in-svn/1590945#1590945 2 Answer by Rob for updating tags in svn Rob 2009-10-19T20:28:40Z 2009-10-19T20:28:40Z <p>As an alternative to merging, if you're simply after a straightforward tag update, you could delete the copy and re-create it.</p> http://stackoverflow.com/questions/1590770/are-there-any-free-solutions-that-provide-intellisense-for-javascript/1590920#1590920 0 Answer by Rob for Are there any free solutions that provide intellisense for JavaScript? Rob 2009-10-19T20:24:23Z 2009-10-19T20:24:23Z <p><a href="http://www.netbeans.org" rel="nofollow">NetBeans</a> has decent JavaScript editing capabilities.</p> http://stackoverflow.com/questions/1590855/show-busy-gif-after-user-clicks-on-a-link/1590916#1590916 1 Answer by Rob for Show busy gif after user clicks on a Link Rob 2009-10-19T20:23:19Z 2009-10-19T20:23:19Z <p>The problem here is that clicking the link fires off another request which is nothing to do with the first one. You <em>could</em> have the code that handles the download request update some kind of session data, which a bit of Ajax on the linking page then polls to determine when the request handler is in the process of offering up the data for download.</p> <p>Alternatively, you could simply make it time out after a reasonable period of time, say 30 seconds, and perhaps offer up an explanation. This might then transition through a couple of states:</p> <pre><code>"Click here to download the super-duper PDF of awesomeness!" "Please wait, generating a whole dollop of fonty goodness..." "It may take some time to bundle all that uber-data into a download...if nothing's happening, maybe you want to try again?" </code></pre> <p>This seems to be the approach Google Mail takes when it comes to detecting timeouts or similar problems.</p> http://stackoverflow.com/questions/580995/why-do-applets-have-such-a-low-adoption-level/581010#581010 7 Answer by Rob for Why do applets have such a low adoption level? Rob 2009-02-24T09:03:30Z 2009-10-16T17:34:55Z <p>Back in the 1990s when Sun introduced applets to the world, the JVM was slow, and applets were slower. Think "wait fifteen minutes for it to finish loading" slow.</p> <p>Slow technologies are dead technologies. Speed wasn't the only advantage that Flash and its ilk had over Java applets, but it was a major contributor to their decline.</p> http://stackoverflow.com/questions/1568011/rss-works-fine-on-my-development-server-not-on-my-live-one/1574551#1574551 0 Answer by Rob for RSS Works fine on my Development Server, not on my Live one. Rob 2009-10-15T19:32:47Z 2009-10-15T19:32:47Z <p>It sounds like the <code>&lt;?</code> at the start of the XML declaration is misrecognised as a PHP code block, which the PHP interpreter then chokes on.</p> <p>I seem to recall (though this might be quite wrong) that switching off <code>short_open_tags</code> support doesn't stop this problem.</p> <p>The workaround is to emit the declaration from PHP itself, like so:</p> <pre><code>&lt;?php echo( '&lt;?xml version="1.0" encoding="UTF-8"?&gt;' ); ?&gt; </code></pre> http://stackoverflow.com/questions/1569009/ajax-jquery-a-to-update-database/1569036#1569036 0 Answer by Rob for Ajax jquery <a> to update database Rob 2009-10-14T21:13:00Z 2009-10-14T21:13:00Z <p>Emit the value of that success variable as output from the Ajax script and check the value in the Ajax callback.</p> http://stackoverflow.com/questions/1568948/eclipse-packages-and-folders-and-such/1568978#1568978 0 Answer by Rob for Eclipse packages and folders and such... Rob 2009-10-14T21:01:53Z 2009-10-14T21:01:53Z <p>I'm going to assume this is a Java project in Eclipse; if it's not, please provide more information.</p> <p>When using classes from within different packages, you need to import them. This is done with one or more import statements at the top of the class file, like so:</p> <pre><code>import java.util.List; import java.util.ArrayList; </code></pre> <p>This tells the compiler, "when I refer to List, I want to use the one that's in the <em>java.util</em> package".</p> <p>In Eclipse, a convenient way to try and automatically add those import statements is to right-click in the source editor and select "Organize Imports" under "Source". Eclipse will look around all the code and libraries it knows about related to that project and try and resolve any missing imports. If it can't work something out, it'll either prompt you or ignore it. If it finds multiple possibilities, it will usually prompt you to select which one you meant.</p> <p>For a much more thorough explanation of packages and dividing source code up, please see the <a href="http://java.sun.com/docs/books/tutorial/java/package/index.html" rel="nofollow">Packages lesson</a> in the Java Tutorials.</p> http://stackoverflow.com/questions/1533568/what-is-the-correct-way-to-write-html-using-javascript/1534227#1534227 1 Answer by Rob for What is the correct way to write HTML using Javascript? Rob 2009-10-07T21:13:53Z 2009-10-07T21:13:53Z <p>Surely the best way is to avoid doing any heavy HTML <em>creation</em> in your JavaScript at all? The markup sent down from the server ought to contain the bulk of it, which you can then manipulate, using CSS rather than brute force removing/replacing elements, if at all possible.</p> <p>This doesn't apply if you're doing something "clever" like emulating a widget system.</p> http://stackoverflow.com/questions/1534161/lack-of-invariance-in-stackoverflow-url-why/1534184#1534184 0 Answer by Rob for Lack of invariance in stackoverflow URL. Why ? Rob 2009-10-07T21:05:23Z 2009-10-07T21:05:23Z <p>Theoretically, it's for SEO reasons. The software ignores the part following the identifier (the "slug"), but the idea is that search engine crawlers consider the description part of the link text, and thus weigh the resulting page higher in search results. Whether this actually happens in any meaningful way, I don't know for sure.</p> <p>A more practical use is that you can gain a better idea of where a link's pointing just by inspecting the slug, which is handy if you've got multiple question URLs.</p> http://stackoverflow.com/questions/1528012/secure-login-public-key-encryption-in-php-and-javascript/1528225#1528225 3 Answer by Rob for Secure login: public key encryption in PHP and Javascript Rob 2009-10-06T21:33:22Z 2009-10-06T21:33:22Z <p>This doesn't seem that secure from the perspective of the client. Two (related) problems:</p> <ol> <li><strong>How does the client trust the server?</strong> How can it verify that the key the sever's presenting is the one that belongs to it?</li> <li><strong>It's possible to do man-in-the-middle attacks.</strong> A malicious proxy could strip out and store the public key before the client sees it, substituting its own, then decrypt the password when the client authenticates, store it, and re-encrypt and send the response on so the client doesn't realise something's up.</li> </ol> <p>What's wrong with ordinary SSL? There has to be a consensus that it's secure, otherwise vendors and organisations would drop support for it overnight. By contrast, most attempts to invent a funky new way to do security "on the cheap" usually miss something fundamental.</p> http://stackoverflow.com/questions/1516952/java-creating-a-string-by-selecting-certain-numbers-from-within-a-text-file/1517060#1517060 0 Answer by Rob for Java - Creating a string by selecting certain numbers from within a text file Rob 2009-10-04T18:35:02Z 2009-10-04T18:35:02Z <p>Building upon duffymo's excellent advice, you might want to break your problem down into high-level pseudocode. The great thing about this is, you can actually write these steps as comments in your code, and then solve each bit as a separate problem. Better still, if you break down the problem right, you can actually place each piece into a separate method.</p> <p>For example:</p> <pre><code>// Open the file // Read in all the numbers // For each number, does it meet our criteria? // If so, add it to the list </code></pre> <p>Now you can address each part of the problem in a somewhat isolated fashion. Furthermore, you can start to see that you might break this down into methods which can open the file (and deal with any errors thrown by the API), read in all the numbers from the file, determine whether a given number meets your criteria, etc. A little clever method naming, and your code will literally read like the pseudocode, making it more maintainable in the future.</p> http://stackoverflow.com/questions/1773349/java-coding-practice-runtime-exceptions-and-this-scenario/1773468#1773468 Comment by Rob on Java coding practice, runtime exceptions and this scenario Rob 2009-11-20T21:53:02Z 2009-11-20T21:53:02Z For these two cases, I would suggest throwing an AssertionError instead; it seems to fit better, semantically speaking. http://stackoverflow.com/questions/1772927/php-query-single-line-from-database/1772954#1772954 Comment by Rob on PHP query single line from database Rob 2009-11-20T20:55:15Z 2009-11-20T20:55:15Z MySQL will cast the string to an integer and carry on. The quotes are perfectly fine. http://stackoverflow.com/questions/1744051/why-do-so-many-javascript-scripts-append-random-numbers-to-things-collision/1744089#1744089 Comment by Rob on Why do so many Javascript scripts append random numbers to things? Collision? Rob 2009-11-17T20:37:29Z 2009-11-17T20:37:29Z @Jim: Yeah, it's all about not having to remember to change things. :) http://stackoverflow.com/questions/1743967/why-do-the-major-browsers-not-support-htmls-accept-attribute-for-input-typefile Comment by Rob on Why do the major browsers not support HTMLs ACCEPT attribute for input type="file"? Rob 2009-11-16T18:55:48Z 2009-11-16T18:55:48Z +1 for usability! Waiting 40 seconds for something to upload only to be told it's not good enough is not the greatest user experience. http://stackoverflow.com/questions/1743967/why-do-the-major-browsers-not-support-htmls-accept-attribute-for-input-typefile/1744011#1744011 Comment by Rob on Why do the major browsers not support HTMLs ACCEPT attribute for input type="file"? Rob 2009-11-16T18:54:59Z 2009-11-16T18:54:59Z Why is this &quot;all the browser can really do&quot;? http://stackoverflow.com/questions/1743985/best-way-to-get-maximum-date-value-in-java/1744085#1744085 Comment by Rob on Best way to get maximum Date value in java? Rob 2009-11-16T18:52:14Z 2009-11-16T18:52:14Z +1; this will lead to much more readable checking for expiration in the future. http://stackoverflow.com/questions/1743532/why-is-everyone-choosing-json-over-xml-for-jquery/1743552#1743552 Comment by Rob on Why is Everyone Choosing JSON Over XML for jQuery? Rob 2009-11-16T18:46:05Z 2009-11-16T18:46:05Z The need to parse items does not equate to an impedence mismatch. http://stackoverflow.com/questions/1606212/why-there-is-no-official-javascript-reference Comment by Rob on Why there is no OFFICIAL JavaScript reference? Rob 2009-11-14T00:04:55Z 2009-11-14T00:04:55Z jQuery wallpapers over the DOM, but doesn't actually replace JavaScript. http://stackoverflow.com/questions/1724376/jar-file-resource-not-available Comment by Rob on Jar file resource not available ? Rob 2009-11-12T19:24:29Z 2009-11-12T19:24:29Z Can you confirm the location of the file &quot;Key_1_Silver.gif&quot; relative to &quot;Phone_Dialer.java&quot;? http://stackoverflow.com/questions/1538834/which-java-web-framework-to-learn/1538921#1538921 Comment by Rob on Which java web framework to learn? Rob 2009-11-10T07:15:01Z 2009-11-10T07:15:01Z -1; no mention which part of Spring http://stackoverflow.com/questions/1701692/is-it-bad-practice-to-use-default-values-in-a-database/1701717#1701717 Comment by Rob on Is it bad practice to use default values in a database? Rob 2009-11-09T19:49:31Z 2009-11-09T19:49:31Z The semantics of NULL are different from 1900/01/01; the former indicates the absence of a value, the latter is a default. http://stackoverflow.com/questions/1697215/what-is-your-favourite-java-api-annoyance/1697372#1697372 Comment by Rob on What is your "favourite" Java API annoyance? Rob 2009-11-09T19:45:19Z 2009-11-09T19:45:19Z -1; give a rationale. http://stackoverflow.com/questions/1697215/what-is-your-favourite-java-api-annoyance/1697226#1697226 Comment by Rob on What is your "favourite" Java API annoyance? Rob 2009-11-09T19:41:50Z 2009-11-09T19:41:50Z Not an API issue. http://stackoverflow.com/questions/1670704/how-do-i-determine-whether-a-file-is-in-use Comment by Rob on How do I determine whether a file is in use? Rob 2009-11-03T23:02:20Z 2009-11-03T23:02:20Z Is this &quot;in use by any other process&quot;, or &quot;in use by a specific process&quot;, i.e. one you control? http://stackoverflow.com/questions/1663792/give-me-an-assignment-in-c/1663834#1663834 Comment by Rob on Give me an assignment in C Rob 2009-11-03T20:02:06Z 2009-11-03T20:02:06Z Could you possibly drop that seemingly misinformed attitude about people who haven't &quot;entered a single SO code golf challenge&quot; - just because they haven't participated in a StackOverflow one, doesn't mean they haven't done code golf before, and don't know what it's about. You're being confronted with valid and reasonable criticism - code golf might well teach someone to solve a problem, but it won't necessarily teach them any good, general way to solve larger problems in a target language. If you'd like to contribute further to the discussion, please do so without the logical fallacies.