User Will Hartung - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T00:16:49Z http://stackoverflow.com/feeds/user/13663 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1836351/thoughts-on-abandoning-proprietary-framework-for-a-larger-open-source-project/1837257#1837257 0 Answer by Will Hartung for Thoughts on Abandoning Proprietary Framework for A Larger Open Source Project Will Hartung 2009-12-03T02:22:01Z 2009-12-03T02:22:01Z <p>I see a couple of cons of switching over.</p> <p>First, of course, there's:</p> <blockquote> <p>We will have to port all the existing code we have in our custom application to the new system</p> </blockquote> <p>Followed by:</p> <blockquote> <p>We will have to port all the existing code we have in our custom application to the new system</p> </blockquote> <p>and, last, but, not least:</p> <blockquote> <p>We will have to port all the existing code we have in our custom application to the new system</p> </blockquote> <p>You were talking about "money in the overhead column", and rewriting working tested code in to new working tested code doesn't add a whole lot of value.</p> <p>If you're talking about introducing a new framework for a brand new, unrelated project, or one that uses little of the existing code base, then, sure, knock yourself out. That's a fine opportunity to switch frameworks, platforms, languages, etc.</p> <p>But an existing, shipping, mature code base with existing knowledgeable folks working on it?</p> <p>That's a hard pill to swallow, personally.</p> <p>If you want folks to follow standards and conventions, then ... follow standards and conventions. Since you have a system that allows folks the "freedom to what they want", make "following standards and conventions" something they want to do.</p> <p>It's always better to transition a system incrementally that throw the whole baby, bathwater, soap, basin and towels out the window just to go back and redo the exact same thing again.</p> <p>Everyone wants to rewrite code, I want to do it. Our framework needs a "do over" here. But then we go "yea, but..." and what do we get in the end? N Months of effort to get back to where we are now. That doesn't do much in a world where time to market matters.</p> http://stackoverflow.com/questions/1816809/how-do-i-get-a-flood-fill-algorithm-to-cope-with-closed-circles/1816831#1816831 2 Answer by Will Hartung for How do I get a flood fill algorithm to cope with closed circles? Will Hartung 2009-11-29T21:28:25Z 2009-11-29T21:28:25Z <p>You could always resample the image after every flood fill, and restart it whenever you find a color that matches the original background.</p> <p>Flood fill algorithms are designed to start in one spot, and from there fill a constrained area, an area of similar colors. The circle does not match that background color, so the fill algorithm doesn't "jump" it to find others.</p> <p>The solution is to flood different areas.</p> <p>Here is a very crude, recursive, slow flood fill algorithm (from memory, untested):</p> <pre><code>public void floodfill(Image img, int x, int y, Color oldColor, Color newColor) { // Check boundary if (img.contains(x, y)) { // Get current pixel color Color currentColor = img.getColor(x, y); // Check color match if (currentColor.equals(oldColor)) { // Set to new color img.setColor(x, y, newColor); // Start again on each of the neighbors floodFill(img, x - 1, y, oldColor, newColor); floodFill(img, x + 1, y, oldColor, newColor); floodFill(img, x, y - 1, oldColor, newColor); floodFill(img, x, y + 1, oldColor, newColor); } } } </code></pre> http://stackoverflow.com/questions/1811562/rolling-my-own-version-control/1811578#1811578 6 Answer by Will Hartung for Rolling my own "Version Control" Will Hartung 2009-11-28T04:40:38Z 2009-11-28T04:40:38Z <p>To be honest, most version control started with the most basic of utilities: diff. diff and diff3 are, in many ways, the heart of a VC system, as they are convenient ways to collect the changes from time to time.</p> <p>If that's too involved, you can simply make continual copies of the older files, stored within named directories, but you can see how this can get rather large, rather fast.</p> <p>So, you can then, instead, checksum the files to be checked in. Then you can compare the new files to the existing files, if the checksum matches, you can either choose to not save it at all, or do a byte level compare just to make sure the files are different (since checksums are hashes, hashes can overlap, though, it's unlikely you will have a collision).</p> <p>If you're going to do this, then each changeset can be the new, changed files, (full copies), plus a list of files "from before". This handles files that get deleted (simply don't list them in the list of files "from before").</p> <p>Obviously, it's a crude system in terms of implementation, but it's straightforward. Many source code control system actually started as a collection of unix shell scripts, then redone in C for performance reasons.</p> http://stackoverflow.com/questions/1793026/client-server-socket-security/1810637#1810637 1 Answer by Will Hartung for Client Server socket security Will Hartung 2009-11-27T21:08:52Z 2009-11-27T21:08:52Z <p>You're being paranoid. You're talking about data moving across an, ideally, secured internal network.</p> <p>Can information be sniffed? Yea, it can. But it's sniffed by someone who has already breached network security and got within the firewall. That can be done in innumerable ways.</p> <p>Basically, for the VAST majority of businesses, no reason to encrypt internal traffic. There are almost always far far easier ways of getting information, from inside the company, without even approaching "sniffing" the network. Most such "attacks" are from people who are simply authorized to see the data in the first place, and already have a credential.</p> <p>The solution is not to encrypt all of your traffic, the solution is to monitor and limit access, so that if any data is compromised, it is easier to detect who did it, and what they had access to. </p> <p>Finally, consider, the sys admins, and DBAs pretty much have carte blanche to the entire system anyway, as inevitably, someone always needs to have that kind of access. It's simply not practical to encrypt everything to keep it away from prying eyes.</p> <p>Finally, you're making a big ado about something that is just as likely written on a sticky tacked on the bottom of someone's monitor anyway.</p> http://stackoverflow.com/questions/1752394/jsp-and-dynamically-agregated-css/1752707#1752707 2 Answer by Will Hartung for JSP and dynamically agregated css Will Hartung 2009-11-17T23:52:10Z 2009-11-17T23:52:10Z <p>If you were kind, your CSS request would follow some kind of aggregation pattern.</p> <pre><code>&lt;link rel="stylesheet" type="text/css" href="core.css?part1&amp;part2&amp;part3"&gt; </code></pre> <p>And then, your result would be kind enough to set the caching headers properly, the ETag, and honor the "If-Modified-Since" header (perhaps based on the latest change date of the files you decide to include).</p> http://stackoverflow.com/questions/1733501/unix-script-not-working-in-java-process-runtime-exec/1733529#1733529 0 Answer by Will Hartung for Unix Script not working in Java Process Runtime.exec() Will Hartung 2009-11-14T06:48:12Z 2009-11-14T06:48:12Z <p>I assume the user that Tomcat is running under has unrestricted access to sudo? And that it's not being prompted for a password?</p> http://stackoverflow.com/questions/1726054/is-it-possible-to-use-jsp-jstl-to-generate-dynamic-css-javascript-files/1726237#1726237 2 Answer by Will Hartung for Is it possible to use JSP/JSTL to generate dynamic css/javascript files? Will Hartung 2009-11-12T23:51:10Z 2009-11-12T23:51:10Z <p>What you want to do is assign the *.css servlet mapping to the JSPServlet.</p> <p>In most containers, you will see a mapping like this (this is from Glassfish, in it's default-web.xml):</p> <pre><code> &lt;servlet&gt; &lt;servlet-name&gt;jsp&lt;/servlet-name&gt; &lt;servlet-class&gt;org.apache.jasper.servlet.JspServlet&lt;/servlet-class&gt; &lt;init-param&gt; &lt;param-name&gt;xpoweredBy&lt;/param-name&gt; &lt;param-value&gt;true&lt;/param-value&gt; &lt;/init-param&gt; &lt;load-on-startup&gt;3&lt;/load-on-startup&gt; &lt;/servlet&gt; &lt;servlet-mapping&gt; &lt;servlet-name&gt;jsp&lt;/servlet-name&gt; &lt;url-pattern&gt;*.jsp&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; </code></pre> <p>Here, it is declaring the JSP servlet, and mapping "*.jsp" to it. So, in this case, the JSP servlet reference name is, simply 'jsp'.</p> <p>So you would want to add:</p> <pre><code>&lt;servlet-mapping&gt; &lt;servlet-name&gt;jsp&lt;/servlet-name&gt; &lt;url-pattern&gt;*.css&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; </code></pre> <p>When you do that, "suddenly" ALL of your CSS files are, effectively, JSPs, so you can do with them whatever you want.</p> <p>The detail is I don't know if 'jsp' is the same for ALL containers, so your web.xml MAY NOT be portable.</p> <p>But that's the gist of what you want to do. If you don't want ALL CSS to be JSPs, you could put the files in their own directory, and map that to the JSP servlet. Then ANYTHING you put in there would be a JSP (css, js, etc.)</p> http://stackoverflow.com/questions/1726130/go-code-contribution-license-and-patent-implications/1726206#1726206 1 Answer by Will Hartung for Go code contribution: license and patent implications? Will Hartung 2009-11-12T23:43:43Z 2009-11-12T23:43:43Z <p>This is a common practice nowadays.</p> <p>Effectively, through the Contributors Agreement you are sharing copyright with Google.</p> <p>That means, in the end, Google has copyright over the entire codebase. This gives them the right to relicense the codebase however they want should they see fit. (Copyright owner determines license).</p> <p>The primary goal of the CA is to ensure and assert that the contributor has the rights they are granting to the project (patents, copyright, etc.).</p> <p>Some projects, for example, would want a patent grant, but are not interested in any copyright, as they have no intention of relicensing the project.</p> <p>Mind, since the license is BSD, a copyright grant is really just a formality, because of how liberal the BSD license is in the first place.</p> http://stackoverflow.com/questions/1720222/what-is-the-simplest-license-key-generator-i-can-develop-myself-in-1-day/1720256#1720256 1 Answer by Will Hartung for What is the simplest license key generator I can develop myself in 1 day? Will Hartung 2009-11-12T06:14:46Z 2009-11-12T06:14:46Z <p>Put the capabilities of the product (number of users, Host IP, date of expiration, whatever) in a plain text file. Sign the file with a public key, then check the signature at runtime.</p> <p>If they're motivated they can decompile the code, yank out the checks or whatever, but it'll deter tampering, and it'll look all nice and official.</p> http://stackoverflow.com/questions/1714466/database-table-with-3-5-million-entries-how-can-we-improve-performance/1719142#1719142 1 Answer by Will Hartung for Database table with 3.5 million entries - how can we improve performance? Will Hartung 2009-11-12T00:47:26Z 2009-11-12T00:47:26Z <p>The solution to this is to grab a BTREE/ISAM library and use that (like BerkelyDB). Using ISAM this is a trivial task.</p> <p>Using ISAM, you would set your start key to the number, do a "Find Next", (to find the block GREATER or equal to your number), and if it wasn't equal, you'd "findPrevious" and check that block. 3-4 disk hits, shazam, done in a blink.</p> <p>Well, it's A solution.</p> <p>The problem that is happening here is that SQL, without a "sufficiently smart optimizer", does horrible on this kind of query.</p> <p>For example, your query:</p> <pre><code>SELECT uid FROM `geoip_blocks` WHERE startipnum &lt; 1406658569 and endipnum &gt; 1406658569 limit 1 </code></pre> <p>It's going to "look at" ALL of the rows that are "less than" 1406658569. ALL of them, then it's going to scan them looking for ALL of the rows that match the 2nd criteria.</p> <p>With a 3.5m row table, assuming "average" (i.e. it hits the middle), welcome to a 1.75m row table scan. Even worse, and index table scan. Ideally MySQl will "give up" and "just" table scan, as it's faster.</p> <p>Clearly, this is not what you want.</p> <p>@Andomar's solution is basically forcing you to "block" to data space, via the "network" criteria. Effectively breaking your table in to 255 pieces. So, instead of scanning 1.75m rows, you get to scan 6800 rows, a marked improvement at a cost of you breaking your blocks up on the network boundary.</p> <p>There is nothing wrong with range queries in SQL.</p> <pre><code>SELECT * FROM table WHERE id between X and Y </code></pre> <p>is a, typically, fast query, as the optimizer can readily delimit the range of rows using the index.</p> <p>But, that's not your query, because you are not ranging you main ID in this case (startipnum).</p> <p>If you "know" that your block sizes are within a certain range (i.e. none of your blocks, EVER, have more than, say, 1000 ips), then you can block your query by adding "WHERE startipnum between {ipnum - 1000} and {ipnum + 1000}". That's not really different than the network blocking that was proposed, but here you don't have to maintain it as much. Of course, you can learn this with:</p> <pre><code>SELECT max(endipnum - startipnum) FROM table </code></pre> <p>to get an idea what your largest range is.</p> <p>Another option, which I've seen, have never used, but is actually, well, perfect for this, is to look at <a href="http://dev.mysql.com/doc/refman/5.0/en/spatial-extensions.html" rel="nofollow">MySql's Spatial Extensions</a>, since that's what this really is.</p> <p>This is designed more for GIS applications, but you ARE searching for something in ranges, and that's a lot of what GIS apps do. So, that may well be a solution for you as well.</p> http://stackoverflow.com/questions/1709283/how-can-i-sort-a-coordinate-list-for-a-rectangle-counterclockwise/1709344#1709344 0 Answer by Will Hartung for How can I sort a coordinate list for a rectangle counterclockwise? Will Hartung 2009-11-10T16:40:08Z 2009-11-10T16:40:08Z <p>So, you have 4 points.</p> <p>You always start with the NW point.</p> <p>You know that the points are sorted, just not in which direction.</p> <p>It's a simple test of the first two points whether the list is clockwise or counter clockwise.</p> <p>if (pt1.y != pt2.y) then direction = clockwise.</p> <p>If you detect that the points are clockwise, simple reverse the last 3 points in the list.</p> <p>So.</p> <p>Counter clockwise points: (0,1), (0,0), (1,0), (1,1)</p> <p>Clockwise points: (0,1), (1,1), (1,0), (0,0)</p> <p>You can see if you reverse pts2-4 your clockwise list becomes counterclockwise.</p> <p>EDIT: I had my points starting from the NE, fixt.</p> http://stackoverflow.com/questions/1697078/what-do-regular-people-think-of-programming/1697082#1697082 8 Answer by Will Hartung for What do regular people think of programming? Will Hartung 2009-11-08T16:40:50Z 2009-11-08T16:40:50Z <p>When people hear you're a programmer, they think you can fix their computer and then never leave you alone.</p> http://stackoverflow.com/questions/1691064/what-is-a-good-coding-platform-to-use-for-telephone-coding-interview/1691151#1691151 0 Answer by Will Hartung for What is a good (coding) platform to use for telephone coding interview? Will Hartung 2009-11-06T23:10:23Z 2009-11-06T23:10:23Z <p>GotoMeeting and Notepad.</p> <p>Why do you want to see them type?</p> http://stackoverflow.com/questions/1682581/do-any-java-libraries-provide-a-random-access-queue-implementation/1682792#1682792 2 Answer by Will Hartung for Do any Java libraries provide a random access Queue implementation? Will Hartung 2009-11-05T18:57:10Z 2009-11-05T18:57:10Z <p>How fast are the events coming in and out of this queue?</p> <p>On the one hand, you can have a "sufficiently large" circular buffer.</p> <p>While it is technically "bounded", you can make it "unbounded" by growing it as necessary.</p> <p>By the same token, you can "shrink" it down in terms of overall capacity when it's "quiet".</p> <p>But, for many applications a 100, 1000, or even 10000 item capacity circular buffer is effectively unbounded.</p> http://stackoverflow.com/questions/1674785/should-a-two-to-many-data-relationship-be-treated-as-many-to-many/1674822#1674822 7 Answer by Will Hartung for Should a two-to-many data relationship be treated as many-to-many? Will Hartung 2009-11-04T16:06:09Z 2009-11-04T16:06:09Z <p>Just use the two columns, otherwise you'd just need to qualify it in the joiner table. It's not as if this is a sleeping time bomb and suddenly one day you'll discover you need to have a real many to many.</p> http://stackoverflow.com/questions/1658922/converting-a-scheme-expression-to-a-string/1658954#1658954 3 Answer by Will Hartung for Converting a Scheme expression to a string Will Hartung 2009-11-02T00:50:50Z 2009-11-02T00:50:50Z <p>The expression: '(lambda (x) x)</p> <p>Is a quoted list.</p> <p>The expression (lambda (x) x)</p> <p>Is some kind of compiled, opaque, executable, internal object of the runtime.</p> <p>symbol->string simply converts a symbol to a string, which is a sequence of characters.</p> <p>If you're working with a list, you can simply walk the list and print the individual components out. In fact (write '(lambda (x) x)) will simply print the list out.</p> <p>Many schemes have something akin to (with-output-to-string ... ) that returns a string of all the output written to the standard port.</p> <p>However, if you do (write (lambda (x) x)), you'll get who knows what. You'll get whatever the implementation provides when dumping an executable function type. Some may print a "disassembly" showing the source code. Others may simply print "#function" or something equally useless.</p> <p>In short, if you just want to print out a list, there are all sorts of mechanisms for that.</p> <p>If you want to print out the source code of a compiled function, that's a completely different problem, very implementation dependent, and may well be impossible.</p> http://stackoverflow.com/questions/426712/have-you-ever-bought-a-commercial-implementation-of-a-programming-language-for-pe/1646886#1646886 0 Answer by Will Hartung for Have you ever bought a commercial implementation of a programming language for personal programming projects? Will Hartung 2009-10-29T22:07:13Z 2009-10-29T22:07:13Z <p>Hell yes, how did we ever get anything accomplished back in the day without it?</p> <ul> <li>BASIC-XL for the Atari (very nice)</li> <li>MAC/65 for the Atari (very nicer)</li> <li>ValForth for the Atari (verier nicer, that was a sweet system)</li> <li>ACTION! for the Atari (veriest nicest)</li> </ul> <p>Those were, what, $50, $100 each? ValForth was $199 I think...can't remember.</p> <ul> <li>Aztec C for the Mac (with unixy clone-ish stuff like fake sh and vi), $499 I think at the time. (Thank god for having 2 400K drives...)</li> <li><p>LightSpeed Pascal and LightSpeed C for the Mac, they weren't that pricey -- definitely cheaper than Aztec, $200 each I think -- very nice systems.</p></li> <li><p>Turbo Pascal for C/PM, and PC ($29 bucks, big deal)</p></li> <li><p>Smalltalk V/286 ($199? I think?)</p></li> <li><p>Visual C++ 1.0 (Forget what it ran, $99? $199?)</p></li> </ul> <p>The NeXTStation came with a compiler, so, no money there, save, for you know, the actual computer <em>cough</em>.</p> <ul> <li>Harlequin Lispworks, Professional ($499 at the time I think)</li> </ul> <p>I think that was the last time I personally paid for a dev kit, though I plopped down the $99 for a signing key for the iPhone.</p> <p>Does the $20 Fig Forth listing for the PDP-11 that we typed in count?</p> <p>Sheesh -- kids today.</p> http://stackoverflow.com/questions/1642122/dynamically-creating-asynchronous-message-queues-in-java/1642148#1642148 0 Answer by Will Hartung for Dynamically creating asynchronous message queues in Java Will Hartung 2009-10-29T07:41:49Z 2009-10-29T07:41:49Z <p>JMS itself as a spec is rather silent on the issue. Most implementations allow you to do this, just not through JMS itself, but using their own API. But you won't be able to hook up something formal like an MDB to a dynamic queue. Rather you'll need to manage your own connections and listeners.</p> http://stackoverflow.com/questions/832142/good-examples-of-gui-design-for-business-oriented-heavy-data-entry-crud-applic/844332#844332 10 Answer by Will Hartung for Good examples of GUI design for business-oriented, heavy data-entry (CRUD) applications Will Hartung 2009-05-09T23:36:32Z 2009-10-27T21:32:09Z <p>I don't have any examples to point to. In truth, many of these screens may be hard to find on the web for the simple fact that most of them tend to be "ugly". These kinds of screens are rarely pretty.</p> <p>I can offer some tips, from long history working with these things.</p> <ol> <li><p><strong>Consistency.</strong> Make everything "work the same", and work the same all the time. Basically, you should be able to do your entry looking at the form, not the screen. All those flashes and subtotals and colors are nice after they keyed the form in, but not during entry itself. There you basically need audio alerts to let them know "something is wrong". The classic "ticky-ticky-ticky-ticky-beep-beep-beep-beep" scenario as the user discovers that they entered a field wrong 4 fields back. The users aren't quite blind, but they're not going to be looking at your screen. The data is on the form.</p></li> <li><p><strong>It's better to work modally, and STOP THEM for ERRORs than let them keep going.</strong> For large forms, scanning all of that information and looking for errors after the fact is very difficult. Stop them when they're wrong so they can fix it and move forward rather than coming back to fix it at the end. The more business rules and validation and enforcement you can have on the form, the better. Popups, alerts, pickers, if it needs their attention, modal modal modal. They're not working with clay here. They're not authoring the great american novel or modeling the global economy.</p></li> <li><p><strong>Summarize the results for spot checks.</strong> For example, keying in an order, they should be able to look at the order total and line item count to see if they got the order in "correctly" as a sort of checksum rather than having to scan their entry field by field. Most workflows have an inevitable cross check phase where they go through their entry to verify the data, but that should be after the "raw keying" of the data. People work faster when they're in a "bulk entry" mode rather than spot checking each one, each time they key it in. It's breaks their rhythm. Make detecting and correcting the exceptions easier after basic validation and keying is done. If some fields are more important than others (and you know which ones those are), visually highlighting them on the screen AND on the paper form works wonders.</p> <p>If the forms and such are designed well (both the computer forms and the paper entry forms), errors should be difficult to enter (like the wrong customer, or wrong item, etc.). You might have a typo in some notes or special instructions, but, not so much everywhere else. If they miskey an item or amount, odds are the order won't total properly so the simple checksum will help them catch it.</p></li> <li><p>Going back to "consistency", <strong>make sure things like pickers and such all operate the same.</strong> Try to keep the special functions to a minimum, as it simplifies training and lets users just "flow" in to their work.</p></li> <li><p><strong>Keyboard shortcuts and navigation are a requirement, not an option.</strong> A real pain point here can be detail areas (i.e. table structures). You may need a shortcut to enter and exit the table strcutures. You may have seen a lot of examples where you can "Tab" in to the table, but not tab back out. Have a dedicated "meta-tab" key to move in and out of sections. Requiring the mouse to navigate out of a section is a no no. </p></li> <li><p><strong>Have a single hot key for pickers.</strong> Ideally, they won't have to use these too often. Maybe for customer lookup, most of the other codes they're inevitably memorize or they'll be keyed on the entry form. Make the pickers filterable.</p></li> <li><p><strong>Scrolling is the devil. Scrolling is evil. <em>No Scrolling!</em></strong> Paging better than scrolling because "fields don't move", they're always "in the same spot" on the screen. How often have you "scrolled" and had to search to pick up "where you started" before the scroll to regain context. Even for pick lists paging works very well because the page change lets them know they actually "did something" visually. Many times you scroll a row and "gee did I really?" Single line scrolling can be too subtle. For large entry forms, multi-pages beats long, scrolling treatises every day of the week. If your forms are that big, make sure you have a hot key to move forward and backwards through the form, and make sure there is some context information on each page (customer name, order number, whatever...simple header).</p></li> <li><p><strong>Robust querying.</strong> "Query by example" as it's known is one of the best mechanisms (i.e. they fill it the form "what they know" and forms come back). Folks need to find data by just crazy criteria, if most every field is queryable, this lets them do that without you second guessing what they will or won't need. Informix 4GL used to have a spectacular QBE system (<code>&gt; 04/01/09</code> for dates after Apr 1 2009, <code>12345|23456</code> for item codes 12345 or 23456). A good QBE expression will most likely not validate in a typical field, it's a special case. (Which is why you rarely see QBE today, it takes too much work -- but it is OH so nice.)</p></li> <li><p>Remember, <strong>users don't know <em>WHY</em> or <em>HOW</em> they do things, they only know <em>WHAT</em> to do.</strong> They know <em>"when I want to do A, I hit key <kbd>Y</kbd>"</em> they don't know WHY it's Y, where Y is located, the keys X an Z might do similar things to A because they're grouped together. No, they don't know your command taxonomy. They don't know your abstractions. They know to do A, hit <kbd>Y</kbd>. Want to Bold a word? Type <kbd>Ctrl</kbd>-<kbd>B</kbd>. Maybe <kbd>Ctrl</kbd>-<kbd>I</kbd> to italicize a word is obvious to you because of the mnemonic, it's not to most users. Maybe the <kbd>Ctrl</kbd>-<kbd>B</kbd> and <kbd>Ctrl</kbd>-<kbd>I</kbd> are on the <code>Format</code> menu, nicely grouped. Doesn't matter. <kbd>Ctrl</kbd>-<kbd>B</kbd> == Bold, how do I do Italics?</p></li> </ol> <p>The downside of these interfaces is training. They do take training in order for them to be used. But, in truth, for any reasonably complicated business, the user is going to need training on far more than just the keying process anyway. The entry screen isn't going to teach them the business policies, business rules, etc. You can enforce these in the application, but the user is going to need to know them on their own anyway.</p> <p>But that's OK, because in the long run it's simply more efficient. The game here is getting the data from the user efficiently and presenting it to them in a consistent way. I won't say "logical" way, as, while logic may be logic, it may not be the users logic. So, you can be logical if you want, call it what you want, but be consistent to your users.</p> <p>Another anecdote, we used to 10 key return data. This tended to be just lists of number, like an item code and a quantity. For our purposes it's faster to simply have the users key this data twice in a row than anything else. It catches typos, transpositions, etc. Combined with batch checksums makes the keying go that much faster. These guys only looked at the screens when they started, when they finished, and if they got an error.</p> <p>Finally, no matter what, your screens and procedures <em>WILL</em> change. Whatever form you're using this year, will change next year. That's just reality, so, FYI, be ready for it.</p> <p>Good luck with your project.</p> http://stackoverflow.com/questions/1616638/replace-two-or-more-spaces-within-a-text-file-with-a/1616639#1616639 -1 Answer by Will Hartung for Replace two or more spaces within a text file with a ; Will Hartung 2009-10-24T00:57:04Z 2009-10-24T00:57:04Z <p>Try:</p> <pre><code>sed -e 's/ */;/g' file </code></pre> http://stackoverflow.com/questions/1614724/is-learning-lisp-useful-at-all-these-days/1614792#1614792 6 Answer by Will Hartung for Is learning LISP useful at all these days? Will Hartung 2009-10-23T17:13:25Z 2009-10-23T17:13:25Z <p>Depends on the book. Which book?</p> <p>Common Lisp is worth learning today because it's one of the few languages that pretty much "does everything". If there's some mainstream or obscure programming idiom or technique, odds are Common Lisp has it already in some form. About the only thing CL lacks is continuations (many argue it doesn't need them, but that's not helpful if you want to explore them).</p> <p>Anyone spending any serious time writing in Common Lisp will come out Changed in some way, typically for the better, IMHO.</p> <p>Even if you can't carry all of the Lispy concepts you learn and use in to other environments, knowing about them and how they work is still useful.</p> http://stackoverflow.com/questions/1607551/soap-or-rest-as-a-client/1610878#1610878 3 Answer by Will Hartung for SOAP or REST as a Client Will Hartung 2009-10-23T00:54:13Z 2009-10-23T00:54:13Z <p>You're making a flawed assumption.</p> <p>You say:</p> <blockquote> <p>If you were to write an Application and have a choice between two Web Service APIs that are similar in every way except one is SOAP and the other is REST, which would you choose and why?</p> </blockquote> <p>The truth be told, a SOAP API will very likely be completely different from a REST system, so you can't really compare at this level.</p> <p>REST is an architecture, not a protocol. SOAP is a protocol, but not an architecture. While possible, it's unlikely you would create a REST architecture on top of the SOAP protocol, as the SOAP payloads don't offer a lot to a REST system.</p> <p>SOAP systems tend to be more RPC based, REST systems are Resource based. The difference is significant between these two, operationally and in design.</p> <p>As far as using SOAP vs XML/JSON over HTTP (what many people mistakenly conflate with REST), the primary benefit of a SOAP system is the tooling available to make interfacing to and publishing from systems much easier.</p> <p>Today, many IDEs and servers can readily publish and consume SOAP web services.</p> <p>In Java, publish a SOAP interface can be little more that sticking "@WebService" in a file and deploying it. Consuming a web service little more than pointing the IDE at a WSDL (conveniently created for you when the web service is published), clicking a button, and having the tools create the proxies necessary to marshal data and communicate with the service.</p> <p>XML/JSON over HTTP has a benefit that you will likely skip much of the boiler plate that makes automating SOAP "easy". Javascript, of course, is quite adept at consuming JSON, so if you're client space includes Web Browsers, that can be a factor.</p> <p>Boiled down, if you talking Browser to Server, XML/JSON over HTTP works pretty well, an actual REST architecture can work well as well.</p> <p>If you're talking RPC between servers, then SOAP is much easier to implement because of the tooling available today.</p> http://stackoverflow.com/questions/1592124/is-it-ok-to-return-application-octet-stream-from-a-rest-interface/1592377#1592377 1 Answer by Will Hartung for Is it ok to return application/octet-stream from a REST interface ? Will Hartung 2009-10-20T04:04:48Z 2009-10-22T03:00:35Z <p>From the sounds of this, this sounds much more like an RPC call. Specifically, "here's a list of URLs, send me back an archive".</p> <p>That process is not particularly RESTful, as REST is not an RPC based system.</p> <p>What you need to do is treat the archives as reources, and a way to create and then serve them up.</p> <p>For example you could:</p> <pre><code>POST /archives Content-Type: application/json { "image1": "http://ww.o.com/1.gif", "image2": "http://www.foo.be/2.gif" } </code></pre> <p>As a result, you would get</p> <pre><code>HTTP/1.1 201 Created Location: http://example.com/archives/1234 Content-Type: application/json </code></pre> <p>Then, you could make a request to <a href="http://example.com" rel="nofollow">http://example.com</a>:</p> <pre><code>GET /archives/1234 Accept: multipart/mixed </code></pre> <p>Here, you will get the actual archive in a single request (like you want), only it's a multipart formatted result. (multipart/x-zip would work too, that's a zip file)</p> <p>If you did:</p> <pre><code>GET /archives/1234 Accept: application/json </code></pre> <p>You would get back the JSON you sent originally (so you could, perhaps, edit and update the archive, something you may not want to support sending up the binary images).</p> <p>To change it you would simply POST back the update:</p> <pre><code>PUT /archives/1234 Content-Type: application/json { "image1": "http://ww.o.com/1.gif", "image2": "http://www.foo.be/2.gif", "image3": "http://www.foo2.foo/4.gif" } </code></pre> <p>The resource is /archives/1234, that's its name.</p> <p>It has two representations in this case: the JSON version, and the actual, binary archive. Your service distinguishes between the two using the content type specified in the Accept header. That header is the client telling you what it wants.</p> <p>When you're done with the archive, simply DELETE it</p> <pre><code>DELETE /archives/1234 </code></pre> <p>Or you can have the server expire the resource at some later time.</p> http://stackoverflow.com/questions/1592757/when-is-messaging-e-g-jms-an-alternative-for-multithreading/1592833#1592833 3 Answer by Will Hartung for When is messaging (e.g. JMS) an alternative for multithreading ? Will Hartung 2009-10-20T06:39:09Z 2009-10-20T06:39:09Z <p>In an EJB container, actually, there is no alternative, since you're not allowed to create your own threads in an EJB container. JMS is doing all of that work for you, at a cost of running it through the queue processor. You could also create a Java Connector, which has a more intimate relationship with the container (and thus, can have threads), but it's a lot more work.</p> <p>If the overhead of using the JMS queue isn't having a performance impact, then it's the easiest solution.</p> http://stackoverflow.com/questions/1591041/http-preauthorization/1591089#1591089 1 Answer by Will Hartung for HTTP Preauthorization Will Hartung 2009-10-19T20:51:36Z 2009-10-19T20:51:36Z <p>The problem is that the authorization state is maintained in the browser, and there's no real way to tell the browser it's authorized.</p> <p>Most systems rely on a Cookie system, but BASIC/DIGEST HTTP AUTH are HTTP headers. So, only the browser can set those.</p> <p>I should say, for normal every day requests -- you might (I'm not sure) be able to set the headers in an XHR.</p> http://stackoverflow.com/questions/548301/what-is-caching/548332#548332 1 Answer by Will Hartung for What is caching? Will Hartung 2009-02-14T01:43:35Z 2009-10-18T16:44:34Z <p>There's a couple of issues.</p> <p>One, is granularity. Your application can have very fine levels of caching over and above what the database does. For example, the database is likely to simply cache pages of data, not necessarily specific rows.</p> <p>Another thing is that the application can store data in its "native" format, whereas the DB obviously only caches in its internal format.</p> <p>Simple example.</p> <p>Say you have a User in the database, which is made of the columns: USERID, FIRSTNAME, LASTNAME. Very simple.</p> <p>You wish to load a User, USERID=123, in to your application. What are the steps involved?</p> <p>1) Issuing the database call 2) Parsing the request(SELECT * FROM USER WHERE USERID = ?) 3) Planning the request (i.e. how is the system going to fetch the data) 4) Fetching the data from the disk 5) Streaming the data from the database to the application 6) Converting the Database data to application data (i.e. USERID to an integer, say, the names to Strings.</p> <p>The database cache will, likely, caches steps 2 and 3 (that's a statement cache, so it won't parse or replan the query), and caches the actual disk blocks.</p> <p>So, here's the key. Your user, USER ID 123, name JESSE JAMES. You can see that this isn't a lot of data. But the database is caching disk blocks. You have the index block (with the 123 on it), then the data block (with the actual data, and all of the other rows that fit on that block). So what is nominally, say, 60-70 bytes of data actually has a caching and data impact on the DB of, probably, 4K-16K (depends on block size).</p> <p>The bright side? If you need another row that's nearby (say USER ID = 124), odds are high the index and data are already cached.</p> <p>But even with that caching, you still have to pay the cost to move the data over the wire (and it's alway over the wire unless you're using a local DB, then that's loopback), and you're "unmarshalling" the data. That is, converting it from Database bits to language bits, to Application bits.</p> <p>Now, once the Application get its USER ID 123, it stuff the value in a long lived hash map.</p> <p>If the application ever wants it again, it will look in the local map, the application cache, and save the lookup, wire transport, and marshalling costs.</p> <p>The dark side of application caching is synchronization. If someone comes in and does a "UPDATE USER SET LASTNAME="SMITH" WHERE USERID=123", your application doesn't "know that", and thus the cache is dirty.</p> <p>So, then there's a bunch of details in handling that relationship to keep the application in sync with the DB.</p> <p>Having a LOT of database cache is very nice for large queries over a "hot" set of data. The more memory you have, the more "hot" data you can have. Up to the point if you can cache teh entire DB in RAM, you eliminate the I/O (at least for reads) delay of moving data from the disk to a RAM buffer. But you still have the transport and marshalling costs.</p> <p>The Application can be much more selective, such as caching more limited subsets of data (DBs just cache blocks), and having the data "closer" to the application ekes out that much better performance.</p> <p>The down side is that not everything is cached in the Application. The database tends to store data more efficiently, overall, than the application. You also lack a "query" language against your app cached data. Most folks simply cache via a simple key and go from there. Easy to find USERID 123, harder for "ALL USERS NAMED JESSE".</p> <p>Database caching tends to be "free", you set a buffer number and the DBMS handles the rest. Low impact, reduces overall I/O and disk delays.</p> <p>Application caching is, well, application specific.</p> <p>It works very well for isolated "static" data. That's very easy. Load a bunch of stuff in to lookup tables at startup and restart the app if they change. That's easy to do.</p> <p>After that complexity starts to increase as you add in "dirty" logic, etc.</p> <p>What it all comes down to, tho, is that as long as you have a Data API, you can cache incrementally.</p> <p>So, as long as you call "getUser(123)" everywhere rather than hitting the DB, then you can later come back and add caching to "getUser" without impacting your code.</p> <p>So, I always suggest some kind of Data Access Layer in everyone's code, to provide that bit of abstraction and interception layer.</p> http://stackoverflow.com/questions/1574090/many-to-many-and-writing-a-semi-smart-matching-algorithm/1574178#1574178 0 Answer by Will Hartung for Many to many and writing a semi-smart matching algorithm Will Hartung 2009-10-15T18:23:17Z 2009-10-15T23:06:37Z <p>You shouldn't do it this way.</p> <p>A better way is to normalize your data, and then simply match it</p> <p>if "auto" == "automobile", then change all of the "automobile" to "auto". Much like you would convert everything from mixed case to upper or lowercase.</p> <p>Store the actual value, "normalize" the data and store that too, then you can match the normalized data.</p> <p>This also allows you to have "arbitrarily" sophisticated normalization rules than what is available in SQL, and you also run it only once, rather than for every query.</p> <p>Edit -- for comment.</p> <p>How about this then.</p> <p>I still think you can normalize it with out a lot of work. Some work, yes, but not a huge amount.</p> <p>Run through all of the data, and do some basic free form text processing. Normalize case, stemming, throw out "uninteresting" words, or "stop" words as they're called. You can find the basics for this kind of processing on the web. It's not crushingly difficult.</p> <p>In the end, you will have a list of unique words for your text. You should scan this list, no doubt you will find other words you may want to strip out as "stop" words. If you find some "obvious" synonyms, you can make a synonym map as part of your normalization process. Up to you. There will likely not be an insane amount of "interesting" words, in the end.</p> <p>A nice thing to do at this point is to create an inverted index table. For example, if you have 3 entries with the word "auto", you have 3 rows in your inverted index table:</p> <pre><code>"auto", 123 "auto", 456 "auto", 789 </code></pre> <p>If you ever want to find what rows have "auto", you join to that index table.</p> <p>Now, you're iterating across your dataset.</p> <p>You convert your text, using the above technique, i.e. normalize the text, and now have a list of "interesting" words.</p> <p>You use your inverted index to find all of the qualifying rows that are even potential candidates for a match, i.e. all rows that have at least one of the words in your "interesting" list.</p> <p>Finally, you then normalize the text of these rows, do an intersection of your set of interesting words vs their interesting set. That gives you the number of matching words. You can then do something as simply as "number of matching words / number of words in candidate" to a basic percentage rating.</p> <p>You can see, you can do some of this processing on the fly, you can store a lot the intermediate results (like the normalized text), or simply take the rows that are above a threshold (say, 75% score), and stick them in your joining table.</p> <p>Also, this work can be done iteratively. You don't have to reprocess the entire data set again.</p> <p>When you get a new row, find those rows that have shared words, then rescore THEM as well as the new one. When a row is deleted, simply remove the inverted index entries along with your joiner entry. When a row is updated, simply "delete" it first, then "add" it back. (i.e. remove all of the old relationships, then rescore the updated row and those with shared words).</p> <p>Should be pretty quick in the end.</p> http://stackoverflow.com/questions/1553594/what-is-the-good-approach-to-build-a-new-compiler/1567020#1567020 1 Answer by Will Hartung for What is the good approach to build a new compiler ? Will Hartung 2009-10-14T15:19:23Z 2009-10-14T15:19:23Z <p>I managed to write a compiler without any particular book (though I had read some compiler books in the past, just not in any real detail).</p> <p>The first thing you should do is play with any of the "Compiler compiler" type tools (flex, bison, antlr, javacc) and get your grammar working. Grammars are mostly straightforward, but there's always nitty bits that get in the way and make a ruin of everything. Especially things like expressions, precedence, etc.</p> <p>Some of the older simpler language are simpler for a reason. It makes the parsers "Just Work". Consider a Pascal variant that can be processed solely through recursive decent.</p> <p>I mention this because without your grammar, you have no language. If you can't parse and lex it properly, you get nowhere very fast. And watching a dozen lines of sample code in your new language get turned in to a slew of tokens and syntax nodes is actually really amazing. In a "wow, it really works" kind of way. It's literally almost an "it all works" or "none of it works" kind of thing, especially at the beginning. Once it actually works, you feel like you might be able to really pull it off.</p> <p>And to some extent that's true, because once you get that part done, you have to get your fundamental runtime going. Once you get "a = 1 + 1" compiled, the bulk of the new work is behind your and now you just need to implement the rest of the operators. It basically becomes an exercise of managing lookup tables and references, and having some idea where you are at any one time in the process.</p> <p>You can run out on your own with a brand new syntax, innovative runtime, etc. But if you have the time, it's probably best to do a language that's already been done, just to understand and implement all of the steps, and think about if you were writing the language you really want, how you would do what you're doing with this existing one differently.</p> <p>There are a lot of mechanics to compiler writing and just doing the process successfully once will give you a lot more confidence when you want to come back and do it again with your own, new language.</p> http://stackoverflow.com/questions/1560891/asynchronous-javascript-question-fire-an-forget/1560912#1560912 1 Answer by Will Hartung for Asynchronous JavaScript Question -- Fire an Forget Will Hartung 2009-10-13T15:19:40Z 2009-10-13T15:19:40Z <p>You're likely sending it all in one shot and having the server break it up. Many browsers have connection limits that restrict how many requests they can have pending with the server, you may be bumping in to that.</p> <p>Sending it all to a proxy that then divvy's it up means a single connection that can be shut down immediately once it's sent. But then you'll also need some polling mechanism to get the partial results back (if that's what you're after), so that complicates the problem as well.</p> http://stackoverflow.com/questions/1560840/parser-crawler-algorithm-question/1560893#1560893 0 Answer by Will Hartung for parser/crawler algorithm question Will Hartung 2009-10-13T15:15:46Z 2009-10-13T15:15:46Z <p>Well the first step is to rely on the HTTP Caching headers. That tells you if the page has changed at all.</p> <p>Not all sites cache friendly, but many are.</p> <p>Once past that, you're kind of out of luck as you need to parse the page just to get the data to see if it's changed. You can skip any post processing at that point, but you still have to eat the fetching and parsing phase, which are likely the costliest part anyway.</p> http://stackoverflow.com/questions/1794223/ideas-for-computer-science-project-with-corba-or-ice/1794272#1794272 Comment by Will Hartung on Ideas for computer science project with CORBA or ICE Will Hartung 2009-11-25T04:18:58Z 2009-11-25T04:18:58Z The goal is that you never have that exception thrown, that the redundant back end and, perhaps, error correction, prevent the client from failing. http://stackoverflow.com/questions/1793815/get-diffrence-between-two-times-unix-epoc/1793836#1793836 Comment by Will Hartung on Get Diffrence Between Two Times (Unix Epoc) Will Hartung 2009-11-25T00:06:31Z 2009-11-25T00:06:31Z Counting down $diff at the same time here. Arguably it should be $ys = $diff / $y; $diff = $diff - $ys * YEARS_IN_SECONDS, or whatever the constant is. http://stackoverflow.com/questions/1720014/what-operating-systems-will-free-the-memory-leaks/1720025#1720025 Comment by Will Hartung on What Operating Systems Will Free The Memory Leaks? Will Hartung 2009-11-12T06:20:28Z 2009-11-12T06:20:28Z It's true on all modern operating systems that aren't running on restricted devices (low end 8 bit embedded controllers, for example). The primary factor the enabled this capability was Virtual Memory and hardware memory management units (MMUs). Any system can do it, but the VM/MMU subsystems make it a LOT easier. And &quot;protected&quot; memory is not a requirement to pull this off. The older Mac OS, for example, didn't have memory protection (one process could stomp on the memory image of another), but processes didn't link when they exited either (they could still leak internally of course). 7 to go http://stackoverflow.com/questions/1674719/why-does-javas-hashtables-get-method-take-an-object-as-a-parameter Comment by Will Hartung on Why does Java's Hashtable's get method take an Object as a parameter? Will Hartung 2009-11-04T16:02:37Z 2009-11-04T16:02:37Z I feel your pain, I've been bit by this one before. Lost couple a hours tracking it down. http://stackoverflow.com/questions/1640427/mac-text-editor-that-support-ssh-keys/1640465#1640465 Comment by Will Hartung on Mac Text Editor that Support SSH Keys Will Hartung 2009-10-28T22:31:49Z 2009-10-28T22:31:49Z I've done this on Linux, and it's a great facility as you can then use any editor or IDE that you want transparently. Things get kinda wonky when the link goes down, but there are workarounds for that. http://stackoverflow.com/questions/832142/good-examples-of-gui-design-for-business-oriented-heavy-data-entry-crud-applic/844332#844332 Comment by Will Hartung on Good examples of GUI design for business-oriented, heavy data-entry (CRUD) applications Will Hartung 2009-10-27T22:11:26Z 2009-10-27T22:11:26Z Thanx for the formatting, @voyager, looks great. http://stackoverflow.com/questions/1622085/how-to-obtain-rest-resource-with-different-finder-methods/1622099#1622099 Comment by Will Hartung on How to obtain REST resource with different finder "methods"? Will Hartung 2009-10-26T07:19:03Z 2009-10-26T07:19:03Z @Darrel - Those suffer the same problem. The key concern here is that the XML and JSON are semantically identical, they ARE the same resource. The trick is that they have different representations. Many would argue that GET /resource.xml is the same as GET /resource with an Accept: application/xml header. The real game here, though, is ensuring that your caching is correct. Making sure that both resources have identical cache policies. For example, you may want to ensure that both the JSON and XML representations expire at the same time, etags change similarly, etc. Only 0 characters are left. http://stackoverflow.com/questions/1622085/how-to-obtain-rest-resource-with-different-finder-methods/1622170#1622170 Comment by Will Hartung on How to obtain REST resource with different finder "methods"? Will Hartung 2009-10-25T22:27:39Z 2009-10-25T22:27:39Z You shouldn't have a single resource with multiple names. If you want aliases, those aliases can send redirects to the actual resource. So, GET /company/msft returns a 301 &quot;Redirect Permanently&quot;, and the URL of the actual resource. http://stackoverflow.com/questions/1622085/how-to-obtain-rest-resource-with-different-finder-methods/1622099#1622099 Comment by Will Hartung on How to obtain REST resource with different finder "methods"? Will Hartung 2009-10-25T22:24:43Z 2009-10-25T22:24:43Z It's not RESTful because resources should have unique names. If you have several queries that return &quot;the same thing&quot;, then they should return the unique name of the resource that can then be fetched rather than the resource itself. Having a unique name is important for cache coherency in a REST architecture. One name, one cache policy, one &quot;place&quot; to get it, change it, etc. http://stackoverflow.com/questions/1592124/is-it-ok-to-return-application-octet-stream-from-a-rest-interface/1592377#1592377 Comment by Will Hartung on Is it ok to return application/octet-stream from a REST interface ? Will Hartung 2009-10-22T03:00:51Z 2009-10-22T03:00:51Z You're right, I've swapped them now http://stackoverflow.com/questions/1592124/is-it-ok-to-return-application-octet-stream-from-a-rest-interface/1592141#1592141 Comment by Will Hartung on Is it ok to return application/octet-stream from a REST interface ? Will Hartung 2009-10-20T03:46:51Z 2009-10-20T03:46:51Z As mentioned, the problem isn't the payload, it's the content type. Ideally, the content types describe the data as well as possible. A Multipart is much more suitable here. It also allows you to mix the the images (say, combine PNGs and JPGs). And the cost is minimal overhead for the new metadata. http://stackoverflow.com/questions/1574142/how-to-interview-a-customer-to-take-requirements/1574170#1574170 Comment by Will Hartung on How to interview a customer to take requirements? Will Hartung 2009-10-15T18:27:44Z 2009-10-15T18:27:44Z Let's rephrase that. &quot;Always&quot;. Always, always, always. It is UP TO YOU to find when requirements contradict each other, and how they are to be resolved. Make sure you record all of these &quot;what if&quot; scenarios. Be wary of &quot;that will never happen&quot; answers. Even if it will &quot;never happen&quot;, you (and they) need to deal with it when it does. Every &quot;if&quot; has an &quot;else&quot;, so to speak. http://stackoverflow.com/questions/1558321/how-to-generate-random-numbers-in-microcontrollers-efficiently/1558327#1558327 Comment by Will Hartung on How to generate random numbers in microcontrollers efficiently? Will Hartung 2009-10-13T06:14:43Z 2009-10-13T06:14:43Z No real time clock on your controller? That can act as a seed. http://stackoverflow.com/questions/1545530/linux-bash-memory-leak-when-redirecting-stdio Comment by Will Hartung on Linux BASH memory leak when redirecting stdio Will Hartung 2009-10-09T19:08:27Z 2009-10-09T19:08:27Z does it fail with any other shell? I can't see how bash could be doing this, being as it's parsing a file name, opening the file, and forking you program with the descriptor. http://stackoverflow.com/questions/1526281/an-algorithm-for-splitting-a-sequence-in-equally-spaced-non-colliding-subsequenc Comment by Will Hartung on An algorithm for splitting a sequence in equally spaced, non colliding subsequences. Will Hartung 2009-10-06T15:33:29Z 2009-10-06T15:33:29Z If have a sequence that's shot at 30 FPS, why would the subsequences have a slower frame rate? Wouldn't they just all be 30 FPS, but simply fewer frames? A good distribution of 30 frames would be 4 sequences of 8,7,8,7 frame respectively.