User Steve Moyer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T06:19:57Zhttp://stackoverflow.com/feeds/user/17008http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/225605/do-in-line-ads-indicate-a-saas-products-monetization-strategy-is-flawed1Do in-line ads indicate a SaaS product's monetization strategy is flawed?Steve Moyer2008-10-22T12:52:03Z2009-11-16T19:00:02Z
<p>Before I continue with my question, I think there's a perfect real-world analogy to the creation of a new and shiny web application. (and yes, I chose the incendiary title to simply to draw you here ... we tolerate them at Google and I have no intention of quitting SO).</p>
<p>When Wal-mart determines that a market will support a store, they build an nice, shiny, new facility and carefully stock it with really low-priced, nice-looking items. Business starts out brisk as people are curious about the new store, and while prices are artificially low. </p>
<p>Once they've driven the competition out-of-business the store manager, under continued pressure to increase profits raises prices to the normal Wal-mart levels, and continues to increase the number of shoppers, since the competition has been eliminated.</p>
<p>Once that growth phase has levelled off, the manager, under continued pressure to raise profits, orders more items than his store will logically hold, including large quantities of impulse items. Since this exceeds the store's capacity, many of these items are simply left on pallets and placed in the aisles.</p>
<p>Target notices the growth of this market and realizes that many of these Wal-mart shoppers are in their demographics. They build a store and stock it with slightly better merchandise which is sold for somewhat more money than the equivalent product at Wal-mart. Many shoppers, who were dubious of the quality of Wal-marts items and irritated at navigating the increasingly cluttered aisles (especially during peak shopping hours), flock to Target where very little merchandise is ever placed in the aisles. The poor store manager is now stuck at an equilibrium and won't be seeing any more of the growth bonuses he's accustomed to. Some people return to the few remaining mom-and-pop stores in the area.</p>
<p>In many cases, the Target (or mom-and-pop) shopper is paying more for exactly the same item. Why? Atmosphere. Studies have shown that it's not the presence of the impulse purchase items, or even the in-store advertising, but rather the general appearance of the store that ultimately determines the shoppers perception of the store (and chain). And open aisles are a huge factor in people's perceptions.</p>
<p>In SaaS products, we expect to see advertising if we're using a free version of the software, but at what level does the advertising impede users to the point where they go elsewhere?</p>
<p>I have a few questions that are much more specific, which I'd love to see hard numbers for or against. Not that I expect everyone to provide real figures in dollars, but most of these questions can be answered with a non-specific y-axis.</p>
<p>If Jeff and Joel will indulge me, I'll frame them in terms of their web-sites. We've seen that SO started (at least when I first surfed here), with some side-bar advertising, but I just noticed there was an in-line ad this morning (here's a picture for those who haven't seen one).</p>
<p><img src="http://www.selesy.com/images/misc/SOIn-lineAd.png" alt="alt text" /></p>
<p>Here's what I'm curious to know (and it might take quite a while before some of these can be answered):</p>
<ol>
<li>How has the growth of SO impacted traffic to JoS/BoS/DoS?</li>
<li>How has the inclusion of advertising on SO affected revenues?</li>
<li>How has the inclusion of in-line advertising on SO impacted traffic (or maybe reduced the growth curve) if at all?</li>
<li>What is the proper balance of "impeding the customer" and advertising to maximize both profits and traffic?</li>
<li>Are you better off maximizing profits by charging for answers like some of the subscription Q&A sites, even though it reduces traffic and search engine exposure?</li>
</ol>
<p>SaaS is obviously a fast-growing software product category, but there are challenges looming with consumers that are used to the Internet being free? The real question is how do we make a living off this category. I'm not sure I've seen the "perfect answer" yet!</p>
http://stackoverflow.com/questions/99012/what-is-the-best-way-to-obtain-a-list-of-site-resources-when-writing-a-maven2-sit0What is the best way to obtain a list of site resources when writing a Maven2 site plugin?Steve Moyer2008-09-19T02:36:46Z2009-07-30T20:55:41Z
<p>When creating a plugin that executes in the default life-cycle, it's easy to obtain a reference to the project and its resources, but I'm getting a null instead of a MavenProject object when creating plugins that execute in the site life-cycle.</p>
<p>Any hints, tips or suggestions?</p>
http://stackoverflow.com/questions/104803/how-do-you-create-automated-tests-of-a-maven-plugin-using-junit2How do you create automated tests of a Maven plugin using JUnit?Steve Moyer2008-09-19T19:27:09Z2009-07-30T20:55:06Z
<p>I've got a (mostly) working plugin developed, but since its function is directly related to the project it processes, how do you develop unit and integration tests for the plugin. The best idea I've had is to create an integration test project for the plugin that uses the plugin during its lifecycle and has tests that report on the plugins success or failure in processing the data.</p>
<p>Anyone with better ideas?</p>
http://stackoverflow.com/questions/920967/how-could-i-convince-my-boss-to-follow-tdd/920999#9209990Answer by Steve Moyer for How could I convince my boss to follow TDD?Steve Moyer2009-05-28T14:01:48Z2009-05-28T14:01:48Z<p>Have you considered that he could be right?</p>
<p>I've seen plenty of useful cases for TDD; interfaces are a great example, since a proper set of tests is a contract between the two sides and these tests can also be used as an adjunct to formal requirements, but it is often useless at a low level. Unit tests that provide full coverage are often a waste! For Acceptance tests or System/Integration tests TDD can be useful.</p>
http://stackoverflow.com/questions/920899/float-to-string-what-is-an-exponent-part/920940#9209400Answer by Steve Moyer for Float to String: What is an Exponent part?Steve Moyer2009-05-28T13:49:59Z2009-05-28T13:49:59Z<p>In scientific notation, the exponent is the ten to the XX power, so 1234.5678 can be represented as 1.2345678E03 where the normalized form is multiplied by 10^3 to get the "real" answer.</p>
http://stackoverflow.com/questions/716048/javadb-connection-issues-database-not-found/716099#7160991Answer by Steve Moyer for JavaDB connection issues; database not foundSteve Moyer2009-04-03T23:39:10Z2009-04-03T23:39:10Z<p>Have you verified that this error message isn't also used when there's no listener on the host machine ... and were you using JavaDB on your local machine before the relocation? Many database systems (and I'm not that familiar with JavaDB) ship set-up to only allow connections from localhost for security reasons. On PostgreSQL for instance, you have to allow TCP connections and bounce the daemon to obtain a remote connection.</p>
<p>Anyway ... since the problem started when you when remote, look for issues related to that first! (And if you can run your application on the remote machine, does that work?)</p>
http://stackoverflow.com/questions/638722/is-there-any-open-source-java-cms-running-compatible-in-ibm-websphere-portal/638974#6389740Answer by Steve Moyer for Is there any open source java CMS running compatible in IBM WebSphere PortalSteve Moyer2009-03-12T14:48:24Z2009-03-12T14:48:24Z<p>Al Fresco is a great open source CMS that I've been using quite a while on JBoss. Though it's not officially supported on Websphere, here's a link describing how to do the installation: <a href="http://wiki.alfresco.com/wiki/Installing%5Fon%5FWebSphere" rel="nofollow">http://wiki.alfresco.com/wiki/Installing_on_WebSphere</a>. For a list of features, take a look at the home page for the open source version here: <a href="http://www.alfresco.com/" rel="nofollow">http://www.alfresco.com/</a></p>
http://stackoverflow.com/questions/624526/create-a-dialtone-from-56k-modem/624645#6246452Answer by Steve Moyer for create a dialtone from 56k modemSteve Moyer2009-03-09T00:49:09Z2009-03-09T00:49:09Z<p>You're going to need more than a modem in your PC to accomplish what you've described. Both the sump pump and your PC have modems, which are the subscriber end of a telephone "loop". The CO end (Central office in telephony terms) provides functions that you're telephone and both the modems mentioned above.</p>
<p>A big one is the generation of a ring ... this is a relatively high voltage AC signal that actually rang the bell in the old style telephones, but is simply detected in newer phones and your modems. In order for your sump pump's call to be recognized, this ring voltage has to be received at your PC's modem, but the sump pump won't actually generate this tone.</p>
<p>The other ideas presented here (the use of a PABX SOHO switch or connecting the detected signal from the sump pump directly to a I/O port on your PC), I can think of one other option. Somewhere inside the sump pump is a UART chip that does the serial communications to the included modem. If you disconnect the modem from the UART, you have the basics of a serial port, which can be connected to the serial port on a PC (though you may need an interface chip to get the levels right ... see the ICs provided by Maxim).</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/620319/how-can-i-use-dbi-to-execute-a-copy-from-remote-table-command-in-postgres/620432#6204322Answer by Steve Moyer for How can I use DBI to execute a "\copy from remote table" command in Postgres?Steve Moyer2009-03-06T21:10:18Z2009-03-06T21:10:18Z<p>You definitely want to use the "copy from" and "copy to" commands to get the data in and out of the databases efficiently. They are orders of magnitude faster than iterating over rows of data. You many also want to turn off the indexes while you're copying data into the target table, then enable them (and let them build) when the copy is complete.</p>
<p>Assuming you are simply connecting to the listener ports of the two databases, simply open a connection to the source database, copy the table(s) to a file, open a connection to the destination database and copy the file back to the target table.</p>
http://stackoverflow.com/questions/605913/top-developer-skills/605979#6059791Answer by Steve Moyer for Top Developer SkillsSteve Moyer2009-03-03T11:12:56Z2009-03-03T11:12:56Z<p>It has to be either listening or thinking ... both should be rated WAY HIGHER than coding!</p>
http://stackoverflow.com/questions/600550/in-the-eclipse-jdt-how-do-i-most-efficiently-find-a-typeroot-in-the-workspace-co/600716#6007160Answer by Steve Moyer for In the Eclipse JDT, how do I most efficiently find a typeroot in the workspace corresponding to a fully qualified name?Steve Moyer2009-03-01T22:51:50Z2009-03-01T22:51:50Z<p>From the JavaCore singleton, try:</p>
<pre><code>ITypeHierarchy myHierarchy = newTypeHierarchy(IRegion region, WorkingCopyOwner owner, IProgressMonitor monitor);
</code></pre>
<p>Once you have the hierarchy, you can traverse class file hierarchies as ITypes pretty easily.</p>
http://stackoverflow.com/questions/600621/making-a-2-player-web-based-textual-game/600641#6006411Answer by Steve Moyer for Making a 2-player web-based textual gameSteve Moyer2009-03-01T22:10:31Z2009-03-01T22:10:31Z<p>Try the <a href="http://www.jabber.org" rel="nofollow">Jabber</a> protocol ... It works great for IM, but was designed for use by other types of systems as well and there's already a set of <a href="http://xmpppy.sourceforge.net/" rel="nofollow">bindings for Python</a> since it has become so popular.</p>
http://stackoverflow.com/questions/562904/clustering-algorithm-for-paper-boys/597298#5972983Answer by Steve Moyer for Clustering Algorithm for Paper BoysSteve Moyer2009-02-28T01:22:42Z2009-02-28T16:06:44Z<p>This is a classic example of a problem that deserves an <a href="http://en.wikipedia.org/wiki/Category:Optimization%5Falgorithms" rel="nofollow">optimized solution</a> rather than trying to solve for "The OPTIMUM". It's similar in some ways to the "<a href="http://en.wikipedia.org/wiki/Traveling%5Fsalesman%5Fproblem" rel="nofollow">Travelling Salesman Problem</a>", but you also need to segment the locations during the optimization.</p>
<p>I've used three different optimization algorithms to good effect on problems like this:</p>
<ol>
<li><a href="http://en.wikipedia.org/wiki/Simulated%5Fannealing" rel="nofollow">Simulated Annealing</a></li>
<li><a href="http://en.wikipedia.org/wiki/Great%5FDeluge%5Falgorithm" rel="nofollow">Great Deluge Algorithm</a></li>
<li><a href="http://en.wikipedia.org/wiki/Genetic%5Falgorithm" rel="nofollow">Genetic Algoritms</a></li>
</ol>
<p>Using an optimization algorithm, I think you've described the following "goals":</p>
<ol>
<li>The geographic area for each paper
boy should be minimized.</li>
<li>The number of subscribers served by
each should be approximately equal.</li>
<li>The distance travelled by each
should be about equal.</li>
<li>(And one you didn't state, but might
matter) The route should end where
it began.</li>
</ol>
<p>Hope this gets you started!</p>
<p><strong>* Edit *</strong></p>
<p>If you don't care about the routes themselves, that eliminates goals 3 and 4 above, and perhaps allows the problem to be more tailored to your bonus requirements.</p>
<p>If you take demographic information into account (such as population density, subscription adoption rate and subscription cancellation rate) you could probably use the optimization techniques above to eliminate the need to rerun the algorithm at all as subscribers adopted or dropped your service. Once the clusters were optimized, they would stay in balance because the rates of each for an individual cluster matched the rates for the other clusters.</p>
<p>The only time you'd have to rerun the algorithm was when and external factor (such as a recession/depression) caused changes in the behavior of a demographic group.</p>
http://stackoverflow.com/questions/588924/about-system-data-rate-in-h264/588956#5889561Answer by Steve Moyer for About system data rate in H264Steve Moyer2009-02-26T03:14:35Z2009-02-26T03:20:17Z<p>The maximum specifies that you that you will never exceed 24Mbps so you will never send more than one bit in any 42nS (approximately) period. You can scale that to any time frame you want by simple multiplication to the point when you will never burst beyond 24M bits in one second (and you will still never send more than one bit in any of the 24M 42nS periods that make up that second).</p>
<p>When you calculate an average for any time period, it MUST be below the specified maximum burst, but is simply considered an average. Those of us in the CATV industry spend a lot of time trying to make the transmission system behave as if the average rate is a constant rate, because if you have a certain throughput (in bits) for video, you don't want to waste any of it. We "rate shape" the video as well as using adaptive buffering in the digital set-top boxes that receive the signal.</p>
<p>A single QAM256 channel on the U.S. broadband cable system will support 40Mbps and usually between 10 and 12 normal definition signals with an average bit rate of approximately 4Mbps. These channels will burst to 9Mbps when there is a lot of change in the picture of an unpredictable nature. As you can imagine, a boxing match (with a lot of movement) takes significantly more bandwidth, than a network news anchor reading from their desk, so we also try to match channels to fill this available bandwidth.</p>
<p>Typically, we can only fit 3 high-definition channels in the same 40Mbps channel and these have an average bit rate of about 12.5Mbps and as you've noted above, are limited to 24Mbps.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/580032/apache2-authorize-users-against-a-location-using-basicauth-but-only-for-users-o/580147#5801470Answer by Steve Moyer for Apache2 - authorize users against a Location using BasicAuth but ONLY for users outside local subnetSteve Moyer2009-02-24T01:48:02Z2009-02-24T01:48:02Z<p>I think that David has covered Apache2 configuration pretty well, but it's also common to use split DNS to provide different services to your internal and external users. There's really no reason for your internal users to make a request from your proxy, since they (ostensibly) have direct access to the "endpoint". </p>
<p>There are cases where you can actually incur routing delays and congestion if your internal users are connecting to one of your public IP addresses. Originally, I was a fan of having separate hardware for the two DNS servers, but have recently switched to using bind "views" to provide different zones to my two users classes.</p>
http://stackoverflow.com/questions/579993/how-can-i-make-it-so-that-a-jpanel-updates-itself-once-the-window-scrolls/580026#580026-1Answer by Steve Moyer for How can I make it so that a JPanel updates itself once the window scrolls?Steve Moyer2009-02-24T00:40:14Z2009-02-24T00:40:14Z<p>It's been a while since I did any graphics in Swing, but I think the code you're looking for is something like:</p>
<pre><code>Graphics g = getGraphics();
if (g != null) paintComponent(g);
else repaint();
</code></pre>
<p>And as you noted, you'll need to add this code in a listener attached to the JPanel's scroll functions.</p>
<p>I would probably create a Canvas that would contain the entire drawing and put it inside a JScrollPane. That will let Java do all the work!</p>
http://stackoverflow.com/questions/576185/logging-best-practices/576227#5762276Answer by Steve Moyer for Logging best practicesSteve Moyer2009-02-23T00:56:47Z2009-02-24T00:20:34Z<p>I'm not qualified to comment on logging for .Net, since my bread and butter is Java, but we've had a migration in our logging over the last 8 years you may find a useful analogy to your question.</p>
<p>We started with a Singleton logger that was used by every thread within the JVM, and set the logging level for the entire process. This resulted in huge logs if we had to debug even a very specific part of the system, so lesson number one is to segment your logging.</p>
<p>Our current incarnation of the logger allows multiple instances with one defined as the default. We can instantiate any number of child loggers that have different logging levels, but the most useful facet of this architecture is the ability to create loggers for individual packages and classes by simply changing the logging properties. Lesson number two is to create a flexible system that allows overriding its behavior without changing code.</p>
<p>We are using the Apache commons-logging library wrapped around Log4J.</p>
<p>Hope this helps!</p>
<p><strong>* Edit *</strong></p>
<p>After reading Jeffrey Hantin's post below, I realized that I should have noted what our internal logging wrapper has actually become. It's now essentially a factory and is strictly used to get a working logger using the correct properties file (which for legacy reasons hasn't been moved to the default position). Since you can specify the logging configuration file on command line now, I suspect it will become even leaner and if you're starting a new application, I'd definitely agree with his statement that you shouldn't even bother wrapping the logger.</p>
http://stackoverflow.com/questions/545326/designing-system-architecture-for-real-time-acquisition-and-control/576326#5763261Answer by Steve Moyer for Designing system architecture for real time acquisition and 'control'Steve Moyer2009-02-23T02:00:27Z2009-02-23T02:00:27Z<p>I've done a lot of embedded engineering including hybrid systems such as the one you've described. At the data rates and sizes you need to process, I doubt that you need an FPGA ... simply find an off the shelf data acquisition system to plug into your PC.</p>
<p>I think the biggest issue you're going to run into is more related to language bindings for your hardware APIs. In the past, I've had to develop a lot of my software in C and assembly (and even some Forth) simply because that was the easiest way to get the data from the hardware.</p>
http://stackoverflow.com/questions/576276/is-it-possible-to-load-an-entire-web-page-before-rendering-it/576286#5762862Answer by Steve Moyer for Is it possible to load an entire web page before rendering it?Steve Moyer2009-02-23T01:29:39Z2009-02-23T01:29:39Z<p>If you create two divs that overlap in the image area, you can load one with a new image via AJAX, hide the current div and display the one with the new image and you won't have a web page refresh to cause a the "bad transition". Then repeat the process.</p>
<p>If there's only a small number of images and they're always displayed in the same order, you can simply create an animated GIF.</p>
http://stackoverflow.com/questions/576192/re-throwing-exceptions-in-java/576198#5761984Answer by Steve Moyer for Re-throwing exceptions in JavaSteve Moyer2009-02-23T00:44:20Z2009-02-23T00:44:20Z<p>Sometimes, you want a specific type of Exception to be thrown by a method, but there are rare instances that cause other Exceptions to be thrown within the method. I often wrap the causal Exception with my desired Exception and then rethrow the desired Exception.</p>
<p>This is really useful when you can't determine that the Exception has caused your operation to fail until control is passed to the calling method (or one of its ancestors), since if the process does eventually fail, I can trace back in the stacktrace to see why.</p>
http://stackoverflow.com/questions/574798/singleton-servlet/574853#574853-3Answer by Steve Moyer for Singleton servlet?Steve Moyer2009-02-22T12:38:19Z2009-02-22T12:38:19Z<p>I tend to think that Singletons are overused, and often indicate a flaw with the basic architecture of a solution. Assuming you've done enough analysis to prove you need a Singleton, you can use an older Singleton pattern that doesn't rely on static initialization. Here's an example:</p>
<pre><code>public SomeServlet extends HttpServlet {
private instance = null;
private SomeServlet() {
// Construction code here
}
public synchronized SomeServlet getInstance() {
if(instance == null) {
instance = SomeServlet();
}
return instance;
}
// Servlet methods here
}
</code></pre>
<p>I see two potential problems though: </p>
<p>First, you'll need a wrapper Servlet (or maybe just chain from another servlet, since the Servlet container won't know how to deal with not having a private constructor. </p>
<p>Second, you'll still need to synchronize the servlet methods because you still can't guarantee that there's only one executor thread "in" the servlet at a time.</p>
http://stackoverflow.com/questions/362784/subclipse-and-tortoise-svn-together/362851#3628511Answer by Steve Moyer for Subclipse and Tortoise SVN togetherSteve Moyer2008-12-12T14:08:14Z2009-01-03T03:07:01Z<p>When you check code out of Subversion to create a "sandbox", the directories all contain meta-data in the .svn directory. Any client you try to use against the "sandbox" will (assuming the client version is not behind the server), read the meta-data and understand the state of the sandbox and how to manage it with respect to the server.</p>
<p>So ... Yes, it will work just fine;)</p>
http://stackoverflow.com/questions/363259/zip-code-distance-in-excel/363297#3632971Answer by Steve Moyer for Zip Code distance in excel Steve Moyer2008-12-12T16:36:03Z2008-12-12T16:36:03Z<p>You can get a list of the post office address for each zip code and geocode each address into a lat, long pair. Do the same for the recruit's address and then use the formula for great circle distance.</p>
<p>Here's a link to a U.S. zip code database:</p>
<p><a href="http://www.zipcodeworld.com/" rel="nofollow">http://www.zipcodeworld.com/</a></p>
<p>And another to how to calculate distance between two points on the globe:</p>
<p><a href="http://williams.best.vwh.net/avform.htm" rel="nofollow">http://williams.best.vwh.net/avform.htm</a></p>
http://stackoverflow.com/questions/363206/universal-dropdown-menu/363247#3632470Answer by Steve Moyer for Universal Dropdown Menu?Steve Moyer2008-12-12T16:23:45Z2008-12-12T16:23:45Z<p>Here's the best article I've found:</p>
<p><a href="http://www.alistapart.com/articles/dropdowns" rel="nofollow">http://www.alistapart.com/articles/dropdowns</a></p>
http://stackoverflow.com/questions/277774/jdk-download-problem-your-download-transaction-cannot-be-approved-contact-custo/279824#279824-1Answer by Steve Moyer for JDK Download problem: Your download transaction cannot be approved. Contact Customer Service.Steve Moyer2008-11-11T02:16:06Z2008-11-11T02:16:06Z<p>Perhaps you weren't meant to program in Java;)</p>
http://stackoverflow.com/questions/245453/refactor-this-recursive-method/245472#245472-2Answer by Steve Moyer for Refactor this recursive method?Steve Moyer2008-10-29T01:18:53Z2008-10-29T01:42:04Z<p>First, let's take care of the static scope issue ... Your class is defining an object, but never actually instantiating one. Since main is statically scoped, the first thing to do is get an object, then execute it's methods like this:</p>
<pre><code>public class RecursiveTry{
private int[] n = {1,2,4,3,3,32,100};
public static void main(String[] args){
RecursiveTry maxObject = new RecursiveTry();
System.out.println(maxObject.Max(maxObject.n, 0));
}
public int Max(int[] n, int start) {
if(start == n.length - 1) {
return n[start];
} else {
int maxRest = Max(n, start + 1);
if(n[start] > maxRest) {
return n[start];
}
return maxRest;
}
}
}
</code></pre>
<p>So now we have a RecursiveTry object named maxObject that does not require the static scope. I'm not sure that finding a maximum is effective using recursion as the number of iterations in the traditional looping method is roughly equivalent, but the amount of stack used is larger using recursion. But for this example, I'd pare it down a lot.</p>
<p>One of the advantages of recursion is that your state doesn't generally need to be persisted during the repeated tests like it does in iteration. Here, I've conceded to the use of a variable to hold the starting point, because it's less CPU intensive that passing a new int[] that contains all the items except for the first one.</p>
http://stackoverflow.com/questions/229393/how-do-you-control-your-programmer-ego/229413#2294133Answer by Steve Moyer for How do you control your programmer ego?Steve Moyer2008-10-23T11:37:11Z2008-10-23T11:37:11Z<p>We're pretty careful to avoid individual "ownership" of both code and design documents, so once it's in the source code repository, it's the team's code. If someone alters code I wrote, and it's better than before, I have an opportunity to learn something. If someone alters code I wrote and it's worse than before, it will get reverted during code review.</p>
<p>This is a business and I write code to make money, not earn bonus points.</p>
http://stackoverflow.com/questions/229352/python-find-question/229394#2293941Answer by Steve Moyer for Python Find QuestionSteve Moyer2008-10-23T11:31:12Z2008-10-23T11:31:12Z<p>Filenames with a slash at the end are technically still path definitions and indicate that the index file is to be read. If you actually have one that' ends in <code>test.php/</code>, I would consider that an error. In any case, you can strip the / from the end before running your code as follows:</p>
<pre><code>url = url.rstrip('/')
</code></pre>
http://stackoverflow.com/questions/225154/good-pointers-that-a-software-requirement-is-in-fact-political/225199#2251991Answer by Steve Moyer for Good pointers that a software requirement is in fact political?Steve Moyer2008-10-22T10:44:01Z2008-10-22T11:11:08Z<p>Here are some I've seen:</p>
<ul>
<li>It directly contradicts other requirements</li>
<li>It is clearly not feasible technically</li>
<li>It is "out in left field" ... it doesn't fit into the defined problem space</li>
<li>It contradicts common sense</li>
</ul>
<p>BEWARE ... sometimes this results from your use-cases being wrong or incomplete. I've also purposely allowed some of these to proceed to development (e.g Eye-candy that sells the product but is useless or at least generally not used by the operators).</p>
http://stackoverflow.com/questions/218504/customized-naming-of-columns-in-jpa-relationships/218695#2186953Answer by Steve Moyer for Customized naming of columns in JPA relationshipsSteve Moyer2008-10-20T14:47:28Z2008-10-20T15:29:56Z<p>This capability is part of the JPA specification and allows for the naming of many of your database structures in the annotations. These include:</p>
<p>Naming your table as follows:</p>
<pre><code>@Entity
@Table(name="better_table_name")
public class MyConvolutedClassName {
}
</code></pre>
<p>Naming your columns as follows:</p>
<pre><code>@Column(name="better_column_name")
private Date myConvolutedDateColumn;
</code></pre>
<p>Naming your columns that are part of a relationship:</p>
<pre><code>@ManyToOne
@JoinColumn(name="better_join_column_name")
private ClassName otherModelClass;
</code></pre>
<p>There's a great (though not quite up-to-date) cheatsheet for EJB 3.0 annotations (which includes JPA) available at <a href="http://www.fnogol.de/media/ejb3.0-anno-cheat-1.2.pdf" rel="nofollow">http://www.fnogol.de/media/ejb3.0-anno-cheat-1.2.pdf</a>.</p>
http://stackoverflow.com/questions/647721/quick-divisibility-check-in-zx81-basicComment by Steve Moyer on Quick divisibility check in ZX81 BASICSteve Moyer2009-03-15T12:39:47Z2009-03-15T12:39:47ZI've got a couple real ZX-81s (with the massive 16KB memory module) in my basement ... I haven't had the heart to get rid of them!http://stackoverflow.com/questions/605913/top-developer-skills/605979#605979Comment by Steve Moyer on Top Developer SkillsSteve Moyer2009-03-03T17:29:38Z2009-03-03T17:29:38ZYou're right! I didn't notice the title included plural "Skills".http://stackoverflow.com/questions/562904/clustering-algorithm-for-paper-boys/597298#597298Comment by Steve Moyer on Clustering Algorithm for Paper BoysSteve Moyer2009-02-28T21:31:22Z2009-02-28T21:31:22Z@carrier ... you have the current list ... which contains the starting subscription density for each area ... you can gather the other statistics over time.
http://stackoverflow.com/questions/554167/drawing-arrows-on-an-html-page-to-visualize-semantic-links-between-textual-spans/586669#586669Comment by Steve Moyer on Drawing arrows on an HTML page to visualize semantic links between textual spansSteve Moyer2009-02-28T16:09:51Z2009-02-28T16:09:51Z+1 for Walter Zorn's drawing library ... it's perfect for this type of application (but don't try to use it for a web-based CAD system!).http://stackoverflow.com/questions/562904/clustering-algorithm-for-paper-boys/597298#597298Comment by Steve Moyer on Clustering Algorithm for Paper BoysSteve Moyer2009-02-28T16:00:52Z2009-02-28T16:00:52Z@carrier ... what if the cluster is bisected by a major interstate? Just dropping a cluster anywhere doesn't guarantee a routable solution ... see my edit based on the lack of those criteriahttp://stackoverflow.com/questions/204708/primary-partition-limit-on-linux/204714#204714Comment by Steve Moyer on primary partition limit on Linux Steve Moyer2009-02-27T19:07:08Z2009-02-27T19:07:08ZI don't have any numbers handy, but can at least describe the "testing" I did. Using a linux LiveCD, I created partitions on a hard drive (some primary and some "logical" or "extended") and then ran:
hdparm -Tt /dev/hda?
where the ? is replaced by the number for the partition (primary are 1-4).http://stackoverflow.com/questions/580032/apache2-authorize-users-against-a-location-using-basicauth-but-only-for-users-o/580147#580147Comment by Steve Moyer on Apache2 - authorize users against a Location using BasicAuth but ONLY for users outside local subnetSteve Moyer2009-02-24T12:10:32Z2009-02-24T12:10:32ZSounds like you'll be golden with David's configuration then!http://stackoverflow.com/questions/576185/logging-best-practices/576227#576227Comment by Steve Moyer on Logging best practicesSteve Moyer2009-02-23T13:20:12Z2009-02-23T13:20:12ZNo ... if we add a logging configuration to the logging.properties files for a package or class, they will be logged per that configuration but any package or class not specifically configured will be logged at the default levels.http://stackoverflow.com/questions/191052/what-are-the-rules-on-using-the-stackoverflow-logoComment by Steve Moyer on What are the rules on using the stackoverflow logo?Steve Moyer2009-02-23T00:40:40Z2009-02-23T00:40:40ZJoel Spolsky has posted ... that should be pretty definitive.http://stackoverflow.com/questions/574798/singleton-servlet/574853#574853Comment by Steve Moyer on Singleton servlet?Steve Moyer2009-02-23T00:37:48Z2009-02-23T00:37:48ZGreat article ... nasty ramifications for Java 6. I've almost completely eliminated the Singleton pattern from my code, but I'll be sure to remember that for future upgrades.http://stackoverflow.com/questions/376346/project-euler-p14-recursion-problems/376370#376370Comment by Steve Moyer on Project Euler (P14): recursion problems Steve Moyer2008-12-17T23:08:55Z2008-12-17T23:08:55ZToo funny to dock you reputation;)http://stackoverflow.com/questions/362784/subclipse-and-tortoise-svn-together/362851#362851Comment by Steve Moyer on Subclipse and Tortoise SVN togetherSteve Moyer2008-12-12T16:02:12Z2008-12-12T16:02:12ZIf you add them to the project, either client will create a .svn folder with the required meta-data and then the other client will recognize it as a "sandbox" folder. If you don't want to add it to the project, set it to ignore and that meta-data will be saved in the parent folders .svn data.http://stackoverflow.com/questions/245453/refactor-this-recursive-method/245472#245472Comment by Steve Moyer on Refactor this recursive method?Steve Moyer2008-10-29T01:47:42Z2008-10-29T01:47:42ZOkay ... there's a running example!http://stackoverflow.com/questions/245453/refactor-this-recursive-method/245472#245472Comment by Steve Moyer on Refactor this recursive method?Steve Moyer2008-10-29T01:35:10Z2008-10-29T01:35:10ZYeah ... just stuck it in my IDE and it bombed horribly ... I'm fixing it up now!http://stackoverflow.com/questions/229352/python-find-question/229394#229394Comment by Steve Moyer on Python Find QuestionSteve Moyer2008-10-23T21:41:35Z2008-10-23T21:41:35ZActually it will ... they both resolve to the same path and are redirected to <a href="http://www.reddit.com/r/gaming/" rel="nofollow">reddit.com/r/gaming</a>. As was pointed out elsewhere, query strings are a completely different problem (which the OP didn't ask about)