User 64BitBob - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T03:59:01Zhttp://stackoverflow.com/feeds/user/16339http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/84967/usable-jsp-servlet-hosting10Usable JSP/Servlet Hosting64BitBob2008-09-17T16:20:54Z2009-08-26T14:04:56Z
<p>Has anyone found a usable JSP/Servlet hosting provider? Lunarpages offers JSP as an option, but the server they use (Resin 2.1) is poorly implemented, out of date, cantankerous, and is always running out of memory. There's javaservlethosting.com, but they apparently have a rather negative reputation for poor service. Myjavaserver.com is cool, but limited to ~5MB of stuff. Not a lot of space to work with. </p>
<p>Ideally, I'd like to run applications like Apache Roller and JForum, as I'm rather tired of the constant security issues with PHP apps. Java also provides more options for customizing the software without having the beg the hosting provider to install a PHP extension to meet the needs of the plugin.</p>
<p>Any ideas? Are there <em>any</em> decent hosting options short of a dedicated server?</p>
http://stackoverflow.com/questions/84967/usable-jsp-servlet-hosting/1334932#13349320Answer by 64BitBob for Usable JSP/Servlet Hosting64BitBob2009-08-26T14:04:56Z2009-08-26T14:04:56Z<p>FYI, these days I use <a href="http://www.appspot.com/" rel="nofollow">Google App Engine</a> for hosting. They provide a number of Servlet/JSP features at a low cost and with high scalability. Their availability is still iffy (apparently the demand was higher than they had originally planned for), but it's otherwise a great service. If you have something that does not require 3-5 9s of service, go take a look.</p>
http://stackoverflow.com/questions/223038/using-a-cmyk-psd-without-photoshop1Using a CMYK PSD without Photoshop64BitBob2008-10-21T18:54:50Z2008-11-15T00:36:10Z
<p>I have run into a common, yet difficult problem. I do not use Photoshop for image manipulation. Since all my work is web-based, GIMP does what I need in 99% of the situations. The <em>problem</em> is that I occasionally receive PSD files with CMYK encoding rather than RGB encoding. These files will not open in GIMP, nor will they convert in ImageMagik. </p>
<p>Has anyone found a good solution for converting CMYK files to RGB files (either PSD format or a flat format like PNG) that does <strong>not</strong> involve the use of Photoshop? Say plugin for GIMP or a standalone utility?</p>
http://stackoverflow.com/questions/232507/expand-and-collapse-issues/232517#2325170Answer by 64BitBob for Expand and collapse issues.64BitBob2008-10-24T05:07:34Z2008-10-24T05:07:34Z<p>If I'm not mistaken, your CSS has some wonkiness. ".question-container h3" and ".question-container h3 span" have relative and absolute positioning, respectively. Internet Explorer does not handle out-of-flow positioning very well. In result, it gets confused and tries to place these elements in weird places.</p>
<p>Construct the accordion without relative or absolute positioning and it should work fine.</p>
http://stackoverflow.com/questions/227470/simple-search-passing-form-variable-to-uri/227496#2274962Answer by 64BitBob for Simple Search: passing form variable to URI?64BitBob2008-10-22T20:47:39Z2008-10-22T20:47:39Z<p>As far as I know, there is no method of accomplishing this with a simple POST. However, you can access the form via Javascript and update the destination. For example:</p>
<pre><code><form id="myform" onsubmit="return changeurl();" method="POST">
<input id="keyword">
</form>
<script>
function changeurl()
{
var form = document.getElementById("myform");
var keyword = document.getElementById("keyword");
form.action = "http://mysite.com/search/"+escape(keyword.value);
return true;
}
</script>
</code></pre>
http://stackoverflow.com/questions/226977/what-is-loose-coupling-please-provide-examples/227036#22703610Answer by 64BitBob for What is "loose coupling?" Please provide examples.64BitBob2008-10-22T18:35:53Z2008-10-22T18:35:53Z<p>I'll use Java as an example. Let's say we have a class that looks like this:</p>
<pre><code>public class ABC
{
public void doDiskAccess() {...}
}
</code></pre>
<p>When I call the class, I'll need to do something like this:</p>
<pre><code>ABC abc = new ABC();
abc. doDiskAccess();
</code></pre>
<p>So far, so good. Now let's say I have another class that looks like this:</p>
<pre><code>public class XYZ
{
public void doNetworkAccess() {...}
}
</code></pre>
<p>It looks exactly the same as ABC, but let's say it works over the network instead of on disk. So now let's write a program like this:</p>
<pre><code>if(config.isNetwork()) new XYZ().doNetworkAccess();
else new ABC().doDiskAccess();
</code></pre>
<p>That works, but it's a bit unwieldy. I could simplify this with an interface like this:</p>
<pre><code>public interface Runnable
{
public void run();
}
public class ABC implements Runnable
{
public void run() {...}
}
public class XYZ implements Runnable
{
public void run() {...}
}
</code></pre>
<p>Now my code can look like this:</p>
<pre><code>Runnable obj = config.isNetwork() ? new XYZ() : new ABC();
obj.run();
</code></pre>
<p>See how much cleaner and simpler to understand that is? We've just understood the first basic tenant of loose coupling: abstraction. The key from here is to ensure that ABC and XYZ do not depend on any methods or variables of the classes that call them. That allows ABC and XYZ to be completely independent APIs. Or in other words, they are "decoupled" or "loosely coupled" from the parent classes.</p>
<p>But what if we need communication between the two? Well, then we can use further abstractions like an <a href="http://en.wikipedia.org/wiki/Event_model" rel="nofollow">Event Model</a> to ensure that the parent code never needs to couple with the APIs you have created.</p>
http://stackoverflow.com/questions/226701/what-do-you-think-when-a-boolean-if-has-three-resulting-code-paths/226751#2267512Answer by 64BitBob for What do you think when a Boolean "if" has three resulting code paths?64BitBob2008-10-22T17:16:50Z2008-10-22T17:16:50Z<blockquote>
<p>Is this problem more or less language
specific (can non-JS people learn
lessons here?)</p>
</blockquote>
<p>This is a language-agnostic problem. It's quite easy to write the following in Java, for example:</p>
<pre><code>if(x)
{
//do something
}
else if(!x)
{
//do something else
}
else
{
//never, ever, do anything
}
</code></pre>
<p>The key thing to remember is that the "if(!x)" is not required. Making that a simple "else" would create simpler code.</p>
<pre><code>Are there legitimate reasons code ended up this way?
</code></pre>
<p>Sort of. It's standard practice for an else condition to always exist when a fall-through is needed. The problem was the programmer wasn't thinking very clearly single his "(form_field != empty)" was exactly the same as a simple "else". Point it out to him and he should kick himself. If he doesn't, question his role on the team.</p>
<blockquote>
<p>What approaches should be used to
find/address the problem (code
coverage, code review, blackbox
testing, etc.)</p>
</blockquote>
<p>Static code analysis tools can catch this sort of issue. However, I'm not aware of any for Javascript. <a href="http://www.jslint.com/" rel="nofollow">JSLint</a> can catch a lot of bad stuff, but not logic flow issues.</p>
http://stackoverflow.com/questions/226455/can-anyone-explain-thread-monitors-and-wait/226479#2264791Answer by 64BitBob for Can anyone explain thread monitors and wait?64BitBob2008-10-22T16:03:09Z2008-10-22T16:58:59Z<p>If the object does not own the object monitor when it calls Object.wait(), it will not be able to access the object to setup a notify listener until the the monitor is released. Instead, it will be treated as a thread attempting to access a method on a synchronized object.</p>
<p>Or to put it another way, there is no difference between:</p>
<pre><code>public void doStuffOnThisObject()
</code></pre>
<p>and the following method:</p>
<pre><code>public void wait()
</code></pre>
<p>Both methods will be blocked until the object monitor is released. This is a feature in Java to prevent the state of an object from being updated by more than one thread. It simply has unintended consequences on the wait() method.</p>
<p>Presumably, the wait() method is not synchronized because that could create situations where the Thread has multiple locks on the object. (See <a href="http://java.sun.com/docs/books/jls/third_edition/html/memory.html#61803" rel="nofollow">Java Language Specifications/Locking</a> for more info on this.) Multiple locks are a problem because the wait() method will only undo one lock. If the method were synchronized, it would guarantee that only the method's lock would be undone while still leaving a potential outer lock undone. This would create a deadlock condition in the code.</p>
<p>To answer your question on Thread.sleep(), Thread.sleep() does not guarantee that whatever condition you are waiting on has been met. Using Object.wait() and Object.notify() allows a programmer to manually implement blocking. The threads will unblock once a notify is sent that a condition has been met. e.g. A read from disk has finished and data can be processed by the thread. Thread.sleep() would require the programmer to poll if the condition has been met, then fall back to sleep if it has not.</p>
http://stackoverflow.com/questions/226411/selecting-a-non-standard-image-area-in-a-web-application/226443#2264430Answer by 64BitBob for Selecting a non-standard image area in a web application64BitBob2008-10-22T15:58:18Z2008-10-22T15:58:18Z<p>Look into the SVG and Canvas APIs. These will allow you to do vector drawings that can be updated via Javascript. For your stated purpose, updating the DOM of SVG documents might be easier. Canvas is more like a 2D bitmap, so you'd need to work out a lot of the drawing code yourself.</p>
<p>SVG Specs: <a href="http://www.w3.org/Graphics/SVG/" rel="nofollow">http://www.w3.org/Graphics/SVG/</a></p>
<p>Canvas Specs: <a href="http://www.whatwg.org/specs/web-apps/current-work/" rel="nofollow">http://www.whatwg.org/specs/web-apps/current-work/</a></p>
<p>Note that SVG only works in IE with a plugin. Canvas works in IE only with Google <a href="http://excanvas.sourceforge.net/" rel="nofollow">exCanvas</a> support. </p>
http://stackoverflow.com/questions/226377/operating-system-compile-time/226387#2263875Answer by 64BitBob for Operating System compile time64BitBob2008-10-22T15:48:18Z2008-10-22T15:53:27Z<p>Third-hand information I have is that it takes about a day to complete a Windows build. Which is more or less in line with attempting to build your favorite OSS Operating System from scratch. </p>
<p>Building a modern operating system is a complex and difficult task. The only reason why it doesn't take longer is because companies like Microsoft have build environments setup to help automate integration testings. Thus they can build a system with less manual effort than is involved in most OSS builds.</p>
<p>If you've like to get a feel for what it takes to build an operating system, might I recommend the free eBook: <a href="http://www.linuxfromscratch.org/" rel="nofollow">Linux from Scratch</a></p>
<p>For a more automated build, try <a href="http://www.gentoo.org/" rel="nofollow">Gentoo</a>. Both options should give you a better idea of the Operating System build process.</p>
http://stackoverflow.com/questions/226316/how-much-effort-does-it-take-to-spoof-an-ip-address-in-a-call-to-a-webservice/226339#2263393Answer by 64BitBob for How much effort does it take to spoof an Ip Address in a call to a webservice?64BitBob2008-10-22T15:37:37Z2008-10-22T15:37:37Z<p>If you're trying to do something more complex than DDoSing or triggering a security hole, then spoofing is not the answer. What you need is a system that will front for your request, thus hiding the true origin of the request. Since we're talking about HTTP traffic, an <a href="http://en.wikipedia.org/wiki/Anonymous_proxy" rel="nofollow">Anonymous Proxy</a> will do the trick.</p>
<p>For the purposes of security you're referring to, it depends on whether or not actions can be taken. If the site is purely informational, then you are safe. If the site allows actions to be performed (e.g. update this, delete that), then consider adding at least password authentication.</p>
<p>Another issue to keep in mind is that anyone controlling routers between your server and the IP address you wish to allow can intercept the packets. That would allow them to have complete two-way spoofed communication without your server realizing it. If you want the information to be truly secure, use HTTPS and an authentication scheme to prevent such interceptions from happening.</p>
http://stackoverflow.com/questions/226216/best-oracle-database-manager-editor/226226#2262263Answer by 64BitBob for Best Oracle database manager/editor?64BitBob2008-10-22T15:13:59Z2008-10-22T15:19:16Z<p><a href="http://www.toadsoft.com" rel="nofollow">Toad</a> is the best database manager on the market. It is targeted at Oracle, so it has support for nearly every Oracle feature known to man.</p>
<p>If you can't quite bring yourself to spend money on Toad (which I guarantee is worth it), other options include:</p>
<p><a href="http://sourceforge.net/projects/tora/" rel="nofollow">TOra</a></p>
<p><a href="http://www.minq.se/products/dbvis/" rel="nofollow">DBVisualizer</a></p>
<p><a href="http://www.squirrelsql.org/" rel="nofollow">SquirrelSQL</a></p>
<p>See Also: <a href="http://stackoverflow.com/questions/214930/oracle-alternatives-to-toad">Oracle Alternatives to TOAD</a></p>
http://stackoverflow.com/questions/226108/what-is-a-web-service-in-plain-english/226151#2261513Answer by 64BitBob for What is a "web service" in plain english?64BitBob2008-10-22T15:02:35Z2008-10-22T15:02:35Z<p>A web service differs from a web site in that a web service provides information consumable by software rather than humans. As a result, we are usually talking about exposed <a href="http://www.json.org" rel="nofollow">JSON</a>, XML, or SOAP services. </p>
<p>Web services are a key component in "mashups". Mashups are when information from many websites is automatically aggregated into a new and useful service. For example, there are sites that aggregate Google Maps with information about police reports to give you a graphical representation of crime in your area. Another type of mashup would be to take real stock data provided by another site and combine it with a fake trading application to create a stock-market "game". </p>
<p>Web services are also used to provide news (see RSS), latest items added to a site, information on new products, podcasts, and other great features that make the modern web turn.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/223040/what-methods-do-wikis-use-for-merging-concurrent-edits/223061#2230612Answer by 64BitBob for What methods do wikis use for merging concurrent edits?64BitBob2008-10-21T19:00:04Z2008-10-21T19:00:04Z<p>My experience with most Wiki software (e.g. MediaWiki) is that it tracks the version of the document you are editing. If the document changes during your time editing, your change is rejected and you are prompted to perform a manual merge. </p>
http://stackoverflow.com/questions/92859/what-are-the-differences-between-struct-and-class-in-c/92992#929921Answer by 64BitBob for What are the differences between struct and class in C++64BitBob2008-09-18T14:23:30Z2008-09-18T14:23:30Z<p>STRUCT is a type of Abstract Data Type that divides up a given chunk of memory according to the structure specification. Structs are particularly useful in file serialization/deserialization as the structure can often be written to the file verbatim. (i.e. Obtain a pointer to the struct, use the SIZE macro to compute the number of bytes to copy, then move the data in or out of the struct.)</p>
<p>Classes are a different type of abstract data type that attempt to ensure information hiding. Internally, there can be a variety of machinations, methods, temp variables, state variables. etc. that are all used to present a consistent API to any code which wishes to use the class. </p>
<p>In effect, structs are about data, classes are about code.</p>
<p>However, you do need to understand that these are merely abstractions. It's perfectly possible to create structs that look a lot like classes and classes that look a lot like structs. In fact, the earliest C++ compilers were merely pre-compilers that translates C++ code to C. Thus these abstractions are a benefit to logical thinking, not necessarily an asset to the computer itself.</p>
<p>Beyond the fact that each is a different type of abstraction, Classes provide solutions to the C code naming puzzle. Since you can't have more than one function exposed with the same name, developers used to follow a pattern of _(). e.g. mathlibextreme_max(). By grouping APIs into classes, similar functions (here we call them "methods") can be grouped together and protected from the naming of methods in other classes. This allows the programmer to organize his code better and increase code reuse. In theory, at least.</p>
http://stackoverflow.com/questions/92786/what-would-be-the-best-place-to-start-learning-ajax-i-have-perl-as-a-backend/92868#928688Answer by 64BitBob for What would be the best place to start learning AJAX (I have Perl as a backend)64BitBob2008-09-18T14:11:10Z2008-09-18T14:11:10Z<p>AJAX is best approached by picking up the following:</p>
<ol>
<li>The <a href="http://devedge-temp.mozilla.org/library/manuals/2000/javascript/1.5/guide/" rel="nofollow">Javascript language</a>.</li>
<li>An understanding of the <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/" rel="nofollow">DOM</a>.</li>
<li>An understanding of <a href="http://en.wikipedia.org/wiki/XMLHttpRequest" rel="nofollow">XMLHttpRequest</a>.</li>
</ol>
<p>Once you have those under your belt, you can make an informed decision about what APIs or frameworks you'd like to use. The back-end doesn't matter much, but I do recommend using <a href="http://www.json.org/" rel="nofollow">JSON</a> as your protocol of choice over XML. XML parsing is fraught with inconsistencies that will require code hacks to work around. JSON is much more straightforward.</p>
<p>See my answer on "<a href="http://stackoverflow.com/questions/90078/has-anyone-migrated-from-struts-1-to-another-web-framework#90197">Has anyone migrated from Struts 1 to another web framework?</a>" for more information.</p>
http://stackoverflow.com/questions/90078/has-anyone-migrated-from-struts-1-to-another-web-framework/90197#901974Answer by 64BitBob for Has anyone migrated from Struts 1 to another web framework?64BitBob2008-09-18T05:08:46Z2008-09-18T06:12:10Z<p>Sure. Moving from Struts to an AJAX framework is a very liberating experience. (Though we used JSON rather than XML. Much easier to parse.) However, you need to be aware that it's effectively a full rewrite of your application. </p>
<p>Instead of the classic Database/JSP/Actions scheme for MVC, you'll find yourself moving to a Servlet/Javascript scheme whereby the model is represented by HTTP GET requests, actions are represented by POST/PUT/DELETE requests, and the view is rendered on the fly by the web browser. This leads to interesting challenges in each area:</p>
<p><strong>Server Side</strong> - On the server side you will need to develop a standard for exposing data to the client. The simplest and easiest method is to adopt a <a href="http://en.wikipedia.org/wiki/REST" rel="nofollow">REST</a> methodology that best matches your data's hierarchy. This is fairly simple to implement with servlets, but Sun also has developed a <a href="http://www.jcp.org/en/jsr/detail?id=311" rel="nofollow">Java 1.6 scheme</a> using attributes that looks pretty cool. </p>
<p>Another aspect of the server side is to choose a transmission protocol. I know you mentioned XML already, but you might want to reconsider. XML parsers vary greatly between browsers. One browser might make the document root the first child, another one might add a special content object, and they all parse whitespace differently. Even worse, the normalize() function doesn't seem to be correctly implemented by the major browsers. Which means that XML parsing is liable to be full of hacks.</p>
<p><a href="http://www.json.org/" rel="nofollow">JSON</a> is much easier to parse and more consistent in its results. Javascript and Actionscript (Flash) can both translate JSON directly to objects. This makes accessing the data a simple matter of x.y or x[y]. There are also plenty of APIs to handle JSON in every language imaginable. Because it's so easy to parse, it's almost supported BETTER than XML!</p>
<p><strong>Client Side</strong> - The first issue you're going to run into is the fact that no one understands how to write Javascript. ESPECIALLY those who think they do. If you have any books on Javascript, throw them out the window NOW. There are practically no good books on the language as they all follow the same "hacking" pattern without really diving into what they are doing. </p>
<p>From the lowest level, your team is going to need remedial training on Javascript development. Start with the <a href="http://devedge-temp.mozilla.org/library/manuals/2000/javascript/1.5/guide/" rel="nofollow">Javascript Client Guide</a>. It's the <em>de facto</em> source of information on the language. The next stop is <a href="http://www.metafilter.com/61049/Douglas-Crockford-Teaches-JavaScript" rel="nofollow">Douglas Crockford's videos</a> on Javascript. I don't agree with everything he has to say, but he's one of the few experts on the language.</p>
<p>Once you've got that down, consider what frameworks, if any, you want to use. Generally speaking, I dislike stuff like Prototype and Mootools. They tend to take a simple problem and make it worse. None the less, you can feel free to evaluate these tools and decide if they'll work for you.</p>
<p>If you absolutely feel that you cannot live without a framework because your team is too inexperienced, then <a href="http://code.google.com/webtoolkit/" rel="nofollow">GWT</a> might fit the bill. GWT allows you to quickly write DHTML web apps in Java code, then compile them to Javascript. The PROBLEM is that you're giving up massive amounts of flexibility by doing this. The Javascript language is far more powerful than GWT exposes. However, GWT does let Java developers get up to speed faster. So pick your battles.</p>
<p>Those are the key areas I can think of. I can say that you'll heave a sigh of relief once you get struts out of your application. It can be a bit of a beast. Especially if you've had inexperienced developers working on your Struts model. :-)</p>
<p>Any questions?</p>
<p><strong>Edit 1:</strong> I forgot to add that your team should study the <a href="http://www.w3.org/" rel="nofollow">W3C specs</a> religiously. These are the APIs available to you in modern browsers. If you catch anyone using the DOM 0 APIs (e.g. document.forms['myform'].blah.value instead of document.getElementById("blah").value) force them to transcribe the entire DOM 1 specification until they understand it top to bottom.</p>
<p><strong>Edit 2:</strong> Another key issue to consider is how to document your fancy new AJAX application. REST style interfaces lend themselves well to being documented in a Wiki. What I did was a had a top level page that listed each of the services and a description. By clicking on the service path, you would be taken to a document with detailed information on each of the sub-paths. In theory, this scheme can document as deep as you need the tree to go.</p>
<p>If you go with JSON, you will need to develop a scheme to document the objects. I just listed out the possible properties in the Wiki as documentation. That works well for simple object trees, but can get complex with larger, more sophisticated objects. You can consider supplementing with something like IDL or WebIDL in that case. (Can't be much worse than XML DTDs and Schemas. ;-))</p>
<p>The DHTML code is a bit more classical in its documentation. You can use a tool like <a href="http://jsdoc.sourceforge.net/" rel="nofollow">JSDoc</a> to create JavaDoc-style documentation. There's just one caveat. Javascript code does not lend itself well to being documented in-code. If for no other reason that the fact that it bloats the download. However, you may find yourself regularly writing code that operates as a cohesive object, but is not coded behind the scenes as such an object. Thus the best solution is to create JSDoc skeleton files that represent and document the Javascript objects.</p>
<p>If you're using GWT, documentation should be a no-brainer. </p>
http://stackoverflow.com/questions/90217/what-is-the-best-way-to-connect-remotely-to-a-mac/90231#902311Answer by 64BitBob for What is the best way to connect remotely to a mac64BitBob2008-09-18T05:15:27Z2008-09-18T05:15:27Z<p><a href="http://www.apple.com/remotedesktop/" rel="nofollow">http://www.apple.com/remotedesktop/</a></p>
<p>^That's your best solution.</p>
<p>If you go into the Settings panel, you can find a variety of other remote access options including SSH.</p>
http://stackoverflow.com/questions/90075/how-to-compare-two-word-documents/90119#901192Answer by 64BitBob for How to compare two word documents?64BitBob2008-09-18T04:46:52Z2008-09-18T04:46:52Z<p>You're using the wrong tools. Through the course of my last major project, we managed to convince the entire team to move to a Wiki scheme. Not only did it make tracking changes faster and easier, but it helped organize the information better. Rather than having to keep track of arbitrary indexes in a large text document, hyperlinks were available between documents. </p>
<p>This meant that the documents could naturally flow from high-level to specifics. Implementation of such specs was incredibly easy in comparison to Word docs. Also, the fact that the docs were in a central location ensured that no one was still working from an out of date copy they saved to their hard drive.</p>
<p>I know there can be some internal resistance to moving in new directions. But if you can convince your colleagues that they should be forward thinking and always challenging themselves, they'll give it a shot and become true believers in no time flat. :-)</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90022#900220Answer by 64BitBob for What is a reasonable code coverage % for unit tests (and why)?64BitBob2008-09-18T04:30:24Z2008-09-18T04:30:24Z<p>If this were a perfect world, 100% of code would be covered by unit tests. However, since this is NOT a perfect world, it's a matter of what you have time for. As a result, I recommend focusing less on a specific percentage, and focusing more on the critical areas. If your code is well-written (or at least a reasonable facsimile thereof) there should be several key points where APIs are exposed to other code. </p>
<p>Focus your testing efforts on these APIs. Make sure that the APIs are 1) well documented and 2) have test cases written that match the documentation. If the expected results don't match up with the docs, then you have a bug in either your code, documentation, or test cases. All of which are good to vet out.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/89891/what-are-the-benefits-of-the-iterator-interface-in-java/89946#899462Answer by 64BitBob for What are the benefits of the Iterator interface in Java?64BitBob2008-09-18T04:12:46Z2008-09-18T04:12:46Z<p>Because you may be iterating over something that's not a data structure. Let's say I have a networked application that pulls results from a server. I can return an Iterator wrapper around those results and <strong>stream them</strong> through any standard code that accepts an Iterator object. </p>
<p>Think of it as a key part of a good MVC design. The data has to get from the Model (i.e. data structure) to the View somehow. Using an Iterator as a go-between ensures that the implementation of the Model is never exposed. You could be keeping a LinkedList in memory, pulling information out of a decryption algorithm, or wrapping JDBC calls. It simply doesn't matter to the view, because the view only cares about the Iterator interface.</p>
http://stackoverflow.com/questions/89736/does-my-javascript-code-have-any-security-vulnerabilities/89887#898873Answer by 64BitBob for Does my JavaScript code have any security vulnerabilities?64BitBob2008-09-18T04:01:26Z2008-09-18T04:01:26Z<p>For the issue you're worried about (Server-side injection), we're looking at the wrong code. The real question is not a matter of what the client does, but how the server handles the "?prog_files.a28.zip". Do you do something naive like this?</p>
<pre><code>File file = new File(request.getQueryString());
//Open file for streaming
</code></pre>
<p>If you do, then YES you have a security hole! On the other hand, if you do this:</p>
<pre><code>if(!request.getQueryString().equals("prog_files.a28.zip")) return;
File file = new File("prog_files.a28.zip");
//Open file for streaming
</code></pre>
<p>...then you're fine. Though this does nothing to change the fact that your solution is a <a href="http://en.wikipedia.org/wiki/Rube_Goldberg_machine" rel="nofollow">Rube Goldberg machine</a>. ;-)</p>
<p>Basically, there are two security concerns. One is a security hazard on the server (your server-side code leaks information) and the other is a security hazard on the client (your server is rock-solid, but the attacker manages to trick the client into giving up information he has legitimate access to). As one might expect, the server hazards require that you inspect the server-side code, and the client hazards require that you inspect the client-side code. The two don't really cross over, expect that aspects of one may suggest underlying security holes in the other. </p>
<p>Hope this helps! :-)</p>
http://stackoverflow.com/questions/89579/can-you-reliably-set-or-delete-a-cookie-during-the-server-side-processing-of-an-a/89632#896325Answer by 64BitBob for Can you reliably set or delete a cookie during the server side processing of an Ajax (XHR) call?64BitBob2008-09-18T03:00:35Z2008-09-18T03:00:35Z<p>XMLHttpRequest always uses the Web Browser's connection framework. This is a requirement for AJAX programs to work correctly as the user would get logged out if the XHR object lacked access to the browser's cookie pool. </p>
<p>It's theoretically possible for a web browser to simply share session cookies without using the browser's connection framework, but this has never (to my knowledge) happened in practice. Even the Flash plugin uses the Web Browser's connections. </p>
<p>Thus the end result is that it IS safe to manipulate cookies via AJAX. Just <strong>keep in mind</strong> that the AJAX call might never happen. They are not guaranteed events, so don't count on them.</p>
http://stackoverflow.com/questions/88093/how-many-game-updates-per-second/88167#881677Answer by 64BitBob for How many game updates per second?64BitBob2008-09-17T22:02:24Z2008-09-17T22:02:24Z<p>None of the above. For the smoothest gameplay possible, your game should be time-based, not frame-locked. Frame-locking works for simple games where you can tweak the logic and lock down the framerate. It doesn't do so well with modern 3D titles where the framerate jumps all over the board and the screen may not be VSynced. </p>
<p>All you need to do is figure out how fast an object should be going (i.e. virtual units per second), compute the amount of time since the last frame, scale the number of virtual units to match the amount of time that has passed, then add those values to your object's position. Voila! Time-based movement.</p>
http://stackoverflow.com/questions/87909/setting-page-title-from-a-swf/88131#881311Answer by 64BitBob for Setting Page Title from a SWF64BitBob2008-09-17T21:58:02Z2008-09-17T21:58:02Z<p>Sure. This should fix you up:</p>
<pre><code>getURL('javascript:var x = (document.getElementsByTagName("head")[0].getElementsByTagName("title")[0].firstChild.nodeValue = "This is a test!");');
</code></pre>
<p>Just replace "This is a test!" with your new title.</p>
http://stackoverflow.com/questions/87935/endian-ness-of-new-macs-are-all-pc-platforms-the-same-now/88045#880451Answer by 64BitBob for endian-ness of new macs - are all pc platforms the same now?64BitBob2008-09-17T21:50:01Z2008-09-17T21:50:01Z<p>You seem to forget the endianness transcends processor architectures. There are plenty of algorithms and protocols that demand a particular byte order. For example, I spent two weeks trying to get an MD5 hashing algorithm to work, only to realize that I had assumed network byte order (Big Endian) while Ronald Rivest had assumed (without stating so in the RFC) that the implementor would use Little Endian byte order.</p>
<p>Remind me to hurt that man sometime. :-P</p>
http://stackoverflow.com/questions/86083/any-good-recommendations-for-mp3-sound-libraries-for-java/86123#861232Answer by 64BitBob for Any good recommendations for MP3/Sound libraries for java?64BitBob2008-09-17T18:23:58Z2008-09-17T18:23:58Z<p>JLayer should do everything you need. It's not dead, it's just stable. The author finished it up quite a long time ago and the MP3 format has not seen much change since. You'll notice that his <a href="http://www.javazoom.net/mp3spi/mp3spi.html" rel="nofollow">MP3SPI</a> codebase is a little more recent. What MP3SPI does, is that translates JLayer's abilities into JavaSound APIs. Thus you can take any JavaSound code, add MP3SPI to the classpath, and expect that MP3 files will start working. It's pretty nifty. :)</p>
http://stackoverflow.com/questions/86036/is-stack-overflow-a-good-place-for-finding-top-notch-developers/86064#860640Answer by 64BitBob for Is Stack Overflow a good place for finding top-notch developers?64BitBob2008-09-17T18:17:10Z2008-09-17T18:17:10Z<p>Joel also said that those who are good at their jobs already have a job. That's why they're so hard to find. </p>
<p>You can find good prospects in a lot of places. I'm sure that Stack Overflow provides one more option. The key, however, is to find good prospects that need a job at the moment. That's a heck of a lot tougher.</p>
<p>An ancillary aspect to that is not to weed out the best programmers before they ever get to the tech interview. I've seen more than enough headhunters and HR folks who couldn't tell a good candidate from their arse and trash-bin anyone who's remotely competent. You'll need competent staff in those positions if you actually want to see some resumes worth hiring.</p>
http://stackoverflow.com/questions/85605/can-anyone-recommend-a-simple-java-logging-framework/85665#856651Answer by 64BitBob for Can anyone recommend a simple Java logging framework?64BitBob2008-09-17T17:35:05Z2008-09-17T17:35:05Z<p>You may find this article to be of interest:</p>
<p><a href="http://java.sys-con.com/node/44698" rel="nofollow">http://java.sys-con.com/node/44698</a></p>
<p>In particular, it shows how to configure Java Logging to intercept the System.out and System.err streams on a Thread-by-Thread basis. That will allow you to convert all your existing output to a fancy logging system, but without the hassle of adding a LoggerOutputStream to the top of every class.</p>
http://stackoverflow.com/questions/85414/how-do-you-port-a-virtual-machine-from-vmware-to-virtualbox/85477#854770Answer by 64BitBob for How do you port a virtual machine from VMWare to VirtualBox?64BitBob2008-09-17T17:12:11Z2008-09-17T17:12:11Z<p>If the network is unavailable, you may want to check your VirtualBox configuration and make sure you have a network card configured. If you do, then the next stop would be the OS running in the virtual machine. An unfortunate fact of some operating systems is that they don't always appreciate hardware changes. If the OS is not auto-detecting the change to the network card, you may need to reconfigure it to support the new card. </p>
<p>Another possibility is that you were using a fixed IP address. VirtualBox uses a couple of schemes for networking that are a bit different than VMWare. You may need to change the IP inside the VM to match the expected subnet. </p>
<p>Outside the VM, you need to use either a bridged networking device or configure ports <a href="http://blogs.sun.com/manoj/entry/netowkring_with_virtualbox" rel="nofollow">virtual ports</a> through the NAT system if you want to gain access to your Virtual Machine.</p>
http://stackoverflow.com/questions/226455/can-anyone-explain-thread-monitors-and-wait/226479#226479Comment by 64BitBob on Can anyone explain thread monitors and wait?64BitBob2008-10-24T16:07:45Z2008-10-24T16:07:45ZI was downvoted to -2. So your +1 is probably working. You could have still selected it as the winning answer, but I see you were more impressed with Robin's. Not to worry, though. It was my fault for initially misunderstanding the question. Thanks for your concern! :-)http://stackoverflow.com/questions/226977/what-is-loose-coupling-please-provide-examples/227036#227036Comment by 64BitBob on What is "loose coupling?" Please provide examples.64BitBob2008-10-23T15:10:11Z2008-10-23T15:10:11ZOwen, baby steps my friend. If he doesn't understand coupling, how is he going to understand what a factory pattern buys him? This code example puts him on the right track. The intent is that he'll better understand the problem and realize how to abstract out the creation of the objects.http://stackoverflow.com/questions/226455/can-anyone-explain-thread-monitors-and-wait/226479#226479Comment by 64BitBob on Can anyone explain thread monitors and wait?64BitBob2008-10-22T16:30:20Z2008-10-22T16:30:20ZSorry, I misunderstood. Answer has been updated. Does that answer your question better?http://stackoverflow.com/questions/223038/using-a-cmyk-psd-without-photoshop/223211#223211Comment by 64BitBob on Using a CMYK PSD without Photoshop64BitBob2008-10-21T21:59:31Z2008-10-21T21:59:31ZIrfanView was what I finally figured out as well. Thanks for the tip!http://stackoverflow.com/questions/223040/what-methods-do-wikis-use-for-merging-concurrent-edits/223061#223061Comment by 64BitBob on What methods do wikis use for merging concurrent edits?64BitBob2008-10-21T19:27:13Z2008-10-21T19:27:13ZMediaWiki shows you the diffs between your version and the last stored version along with the full text of both versions. Presumably, this helps you resolve the conflict manually. Depending on the edit, I imagine it is occasionally easier to copy your work to notepad and start over. http://stackoverflow.com/questions/89579/can-you-reliably-set-or-delete-a-cookie-during-the-server-side-processing-of-an-a/89632#89632Comment by 64BitBob on Can you reliably set or delete a cookie during the server side processing of an Ajax (XHR) call?64BitBob2008-09-18T20:01:24Z2008-09-18T20:01:24ZMy pleasure. I have also done quite a bit of research in this area while creating a mutliplayer game API for Flash and Javascript. Thanks to the 2 connection limit imposed by the HTTP RFC, it quickly became apparent that I was using the browser's connections. The cookies confirmed this info.http://stackoverflow.com/questions/96160/web-dev-where-to-store-state-of-a-shopping-cart-like-object/96222#96222Comment by 64BitBob on Web Dev - Where to store state of a shopping-cart-like object? 64BitBob2008-09-18T19:59:15Z2008-09-18T19:59:15ZCookies are limited to 4K. That may not be enough data, depending on the size of the shopping cart. http://stackoverflow.com/questions/92786/what-would-be-the-best-place-to-start-learning-ajax-i-have-perl-as-a-backend/92807#92807Comment by 64BitBob on What would be the best place to start learning AJAX (I have Perl as a backend)64BitBob2008-09-18T14:06:13Z2008-09-18T14:06:13ZThis is bad advice. Your best place to start is with XMLHttpRequest. Once you're clear on the capabilities of the API, then you can decide on a framework if you need one.http://stackoverflow.com/questions/89736/does-my-javascript-code-have-any-security-vulnerabilities/89887#89887Comment by 64BitBob on Does my JavaScript code have any security vulnerabilities?64BitBob2008-09-18T05:12:07Z2008-09-18T05:12:07ZIf you haven't written any server side code, then you're fine. The code should work as you expect it to.http://stackoverflow.com/questions/89736/does-my-javascript-code-have-any-security-vulnerabilities/89887#89887Comment by 64BitBob on Does my JavaScript code have any security vulnerabilities?64BitBob2008-09-18T04:37:55Z2008-09-18T04:37:55ZIf, of course, your server is simply flat HTML and ZIP files, then you're fine. Still a Rube Goldberg invention, though, :-)http://stackoverflow.com/questions/89736/does-my-javascript-code-have-any-security-vulnerabilities/89887#89887Comment by 64BitBob on Does my JavaScript code have any security vulnerabilities?64BitBob2008-09-18T04:36:14Z2008-09-18T04:36:14Z(cont...) What if I passed "<a href="http://www.progfiles.com/downloadPage.html?../../../../../etc/passwd"" rel="nofollow">progfiles.com/downloadPage.html?../../…</a>; to your application? Would I manage to get a copy of the system's "passwd" file? If I would, then your code has a security hole.http://stackoverflow.com/questions/89736/does-my-javascript-code-have-any-security-vulnerabilities/89887#89887Comment by 64BitBob on Does my JavaScript code have any security vulnerabilities?64BitBob2008-09-18T04:34:47Z2008-09-18T04:34:47ZI could tailor the snippets better if I knew what language you were writing your server code in. Effectively what they do is create a File object around a path on the server's file system. I presume you would then open file for reading using that object. Think about this situation (cont...)http://stackoverflow.com/questions/89620/do-anyone-do-test-cases-for-pojos/89623#89623Comment by 64BitBob on Do anyone do test cases for pojos?64BitBob2008-09-18T04:07:56Z2008-09-18T04:07:56ZIf it's been tested, it probably STILL has a bug. Test-driven methodology is great for eliminating obvious errors and regressions, but it sucks at finding errors that are not anticipated. Think of it more as a coat of polish. How much polishing you do is a matter of preference. http://stackoverflow.com/questions/84967/usable-jsp-servlet-hosting/88491#88491Comment by 64BitBob on Usable JSP/Servlet Hosting64BitBob2008-09-18T03:49:26Z2008-09-18T03:49:26ZI love the idea of EC2! Unfortunately, it falls down flat when we're talking about off-the-shelf software. Since I can't deploy something I didn't write myself, the utility is limited for my needs. And it's not just the servlet container. It's also the DB, logging system, classpath, etc.http://stackoverflow.com/questions/89752/hierachy-recordset-in-ms-accessComment by 64BitBob on Hierachy recordset in ms access64BitBob2008-09-18T03:45:56Z2008-09-18T03:45:56ZAck! I wish I could click the "offensive" link. :-P Take it from an old dinosaur. Just don't do it. Hierarchical databases always cause more trouble than they solve.