User Clayton - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:52:45Z http://stackoverflow.com/feeds/user/22201 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/183882/interesting-compiler-projects/184093#184093 7 Answer by Clayton for Interesting compiler projects Clayton 2008-10-08T18:16:48Z 2009-10-14T14:57:23Z <p>With an 8-week timeframe, you're going to need to be careful about "scope creep". That is don't be too ambitious, esp. if this project includes other aspects of compiler construction (lexing/parsing), or if you're still learning the tools (debugger, yacc) and intermediate data structures (DAG).</p> <p>That said, my first suggestion would be to try some Live Variable Analysis. The algorithms are pretty well established, so you'd pretty much just need to code it up specific to your data structures, etc.</p> <p>This would let you do a limited form of Dead Code Removal. That is, if you detect that a variable is declared but never used, don't allocate space for it. If you detect that a value is set but never read, don't generate the set.</p> <p>Live Variable Analysis can help with Register Allocation too, so you might be able to tackle that too if there's time, and you should be able to re-use some of what you build for Dead Code Removal.</p> http://stackoverflow.com/questions/881871/how-to-convince-your-fellow-developer-to-write-short-methods/882522#882522 2 Answer by Clayton for How to convince your fellow developer to write short methods? Clayton 2009-05-19T12:42:05Z 2009-05-19T12:42:05Z <p>If you've tried to explain good design and people just aren't getting it, or are just refusing to get it, then stop trying. It's not worth the effort. All you'll get is a bad rep for yourself. Some people are just hopeless.</p> <p>Basically what it comes down to is that some programmers just aren't cut out for development. They can understand code that's already written, but they can't create it on their own.</p> <p>These folks should be steered toward a support role, but they shouldn't be allowed to work on anything new. Support is a good place to see lots of different code, so maybe after a few years they'll come to see the benefits of good design.</p> <p>I do like the idea of Code Reviews that someone else suggested. These sloppy programmers should not only have their own code reviewed, they should sit in on reviews of good code as well. That will give them a chance to see what good code is. Possibly they've just never seen good code.</p> http://stackoverflow.com/questions/733842/what-are-the-real-world-applications-of-singleton-pattern/733929#733929 0 Answer by Clayton for What are the real world applications of Singleton Pattern Clayton 2009-04-09T12:03:55Z 2009-04-09T12:03:55Z <p>One way I've used Singleton is to implement a "main controller" object for an application. This was a bit like the Application object you get with VBA.</p> <p>This object performed various startup and shutdown tasks. It also provided access to application-wide settings and services. This included values of command-line parameters and the logging service, among others.</p> http://stackoverflow.com/questions/662041/theory-examples-of-reversible-parsers/664716#664716 0 Answer by Clayton for Theory, examples of reversible parsers? Clayton 2009-03-20T01:42:36Z 2009-03-20T01:42:36Z <p>That sounds a lot like the back end of a non-optimizing compiler that has it's target language the same as it's source language.</p> <p>One question would be whether you require the "unparsed" code to be identical to the original, or just functionally equivalent.</p> <p>For example, would it be OK for the output to use a different indentation style than the original? That information wouldn't normally be stored in the AST because it's not semantically important.</p> <p>One thing to look at would be automatic code refactoring tools.</p> http://stackoverflow.com/questions/660757/micromanagement-of-your-time-on-support-talking-with-marketing-people/660953#660953 1 Answer by Clayton for Micromanagement of your time on support (talking with marketing people) Clayton 2009-03-19T03:22:18Z 2009-03-19T03:30:33Z <p>Make your 30 min presentation about showing progress on the things these folks care about. You'll have to determine exactly what those things are, but if they're a marketing dept you can be sure money and customer satisfaction are on the list. Don't get into technical details about how you did something, just tell them what you did, what it cost (in time or money), and why it was a good thing to do.</p> <p>Talk to them about numbers of new and closed tickets, and how you're preventing repeat tickets for the same issue. Show them that progress is being made on long-term efforts such as a planned hardware upgrade or new application roll-out.</p> <p>For long-term work you need to announce expected milestone dates up ahead, then report that you met those dates. If you think you're going to miss a date, say so well before you actually miss it, explain what happened, and announce the new date. If you think you might make the date but you're not sure, just announce that it's "at risk", then say what you're doing to try to bring it in on time. If those efforts don't bring things back on schedule, announce that the date will not be met.</p> <p>If you just let the date pass without comment it looks like you either forgot about the deadline or you're trying to hide a mistake. Either way is unprofessional and disrespectful of people who are relying on your work to do their own. If you're up front about it at least you give other people a heads-up in time for them to adjust their own schedules.</p> <p>If they're asking for more "data", find out what they mean by "data". If these are marketing people they might be looking for cost analysis, or explanation about how the work benefits existing customers or helps drive new sales.</p> <p>30 min every day sounds excessive for a status update. I'd see about getting that down to 30 min once or twice per week. The only way daily updates makes sense to me is if they really do want you to walk them through technical details, or if you're reporting on a large volume of work done by staff who report through you. If there are open critical issues maybe those should be reported daily, but I'd think you could get through that in 5 minutes, then get back to actually fixing them.</p> <p>Also, see if you can get them to accept a written status report instead of verbal. It may seem like more work at first, but it's not really once you've done a few. If they go for that, make the report look "professional", but not a marketing brochure or a doctoral dissertation. Format it so someone can scan it quickly and get the main points right away, then drill down for more detail on certain items they really care about. Guidelines for Resumes might help with this part.</p> <p>A chart showing decreases in defect counts or ticket turnaround times could be helpful. Obviously you want decrease in these numbers, but if you get an increase report that too, but be ready to explain the cause and tell how you're working to get the numbers back down. Categorize the different kinds of issues you work on and reporting separate counts/trends for the different categories.</p> <p>A selling point of the written report is that you have a record of what was said for future reference. That is, if there are questions about an up-tick in a certain kind of ticket, you might be able to look back and show that the same thing happened the last two times you upgraded a certain app, that it was a temporary blip, and how long it took to get back to normal.</p> <p>This might not replace a verbal update altogether, but you could limit the verbal update to high-priority issues, places where you need to bring in extra help, notification of starts or ends of major efforts, etc.</p> <p>Also, tell them not only what you've completed, but what's coming next, and if possible when you expect the new items to finish. For example, if you said in this week's report that you're going to be upgrading a certain server next week, next week you should report that that was done, or explain why not. Over time you can show how you're planning your activities and following through on your plans in a timely manner.</p> <p>EDIT: Reading the question again I think I may have misunderstood. Are they asking you to provide an accounting of what you were working on during each 30min period during the day? Or are they asking for a 30 min report on what you did during the whole day?</p> <p>If they want "time accounting" in 30 min increments you can probably find some freeware to help track that. I don't use one myself, but I've heard of simple apps that are basically "stopwatches". You can set up timers for different tasks, and switch between them with a single click. They're mostly meant for tracking billable hours, but that almost seems like what they're asking for.</p> http://stackoverflow.com/questions/660695/what-should-be-taught-in-a-fundamentals-of-programming-course-at-university/660837#660837 2 Answer by Clayton for What should be taught in a "Fundamentals of programming" course at university? Clayton 2009-03-19T02:12:15Z 2009-03-19T02:12:15Z <p>I agree that C should be the first language, assuming the student is on track for a CS major. Someone who is only going to take a few programming classes as part of another major could safely go with less technically demanding languages like VB. Learning C doesn't seem to make much sense unless you're going to have things like OS or Network Programming and Compilers later.</p> <p>Even starting with C, a first programming course should concentrate on the basics like data types, functions, parameter passing, flow-control structures, and possibly arrays and structs.</p> <p>Pointers used for anything besides a way to do "pass by reference" should wait for a 2nd class, as should algorithms more complicated than array searching/sorting. That way students can concentrate on designing good code and esp. learning their way around editors and debuggers.</p> <p>OO languages etc. can come later too. There's no sense diving into that stuff right away.</p> <p>I guess part of this will depend on the talent level of the students though. First year students at MIT or Stanford are typically going to be able to handle a lot more than those at 2nd tier state colleges.</p> http://stackoverflow.com/questions/483249/how-to-make-intersystems-cache-use-the-new-compiled-class-instead-of-the-older-on/635021#635021 1 Answer by Clayton for How to make Intersystems Caché use the new compiled class instead of the older one? Clayton 2009-03-11T15:23:13Z 2009-03-11T15:23:13Z <p>Here are a couple of things to try:</p> <p>Instead of loading/compiling each class separately, load both without compiling, then compile both at once.</p> <p>Like this:</p> <pre><code>W $SYSTEM.OBJ.Load("C:\Test.Base.cls.xml") W $SYSTEM.OBJ.Load("C:\Test.Extended.cls.xml") W $SYSTEM.OBJ.CompileList("Test.Base.cls,Test.Extended.cls","ckf") </code></pre> <p>The "k" flag tells the compiler to keep the generated source for the classes (.INT files). That will let you see what Cache actually generated (In Studio: View->View Other Code). Your methods get compiled into tags prefixed with "z", so method ABC becomes tag zABC. There's also a timestamp in the compiled source that can help confirm that it actually did something.</p> <p>The "b" flag might help too. (Include sub-classes).</p> http://stackoverflow.com/questions/193982/what-is-your-best-funniest-annoying-performance-tuning-experience/630665#630665 2 Answer by Clayton for What is your best/funniest/annoying performance tuning experience? Clayton 2009-03-10T15:02:11Z 2009-03-10T15:02:11Z <p>Around 1996 the company I worked for was trying to build VB GUI for it's legacy app. When the first customer went live on the new UI they found that it took over 2 minutes for the "launch pad" to open. This launch pad had no real functionality. It just showed a user-specific set of buttons that would invoke the screens that did the real work.</p> <p>Since this was not detected until after deployment to the customer, there was a lot of pressure to get it fixed right away. I got drafted onto a "performance strike team" that was supposed to figure out what was wrong and get it fixed.</p> <p>When we traced the network traffic we found that the main problem was that the launch pad was querying the server 21 times just to get the date/time. Other data such as the user's privs was also fetched repeatedly.</p> <p>This happened mainly because the development team was so compartmentalized. There was no "architecture" to speak of, just a big pile of code. There were several functional-area groups which all contributed code to that piece, but they weren't talking to each other. Apparently no one was doing much in the way of testing or profiling either. The launch pad pretty much had to be rewritten from scratch.</p> <p>Getting this fixed was a nightmare, esp. because the customer was screaming about wanting their money back ($100K+) and top-level execs were getting involved.</p> <p>There were loads of other problems with that app, pretty much all tracing back to poor planning and worse communication. That app was a miserable failure. They sold a few licenses, but it was intended to be the future direction for the company. When I left 5 years later, most of the customer base was still running on dumb terminals or in terminal emulators.</p> http://stackoverflow.com/questions/627742/what-is-the-fastest-way-to-compare-two-byte-arrays/627830#627830 0 Answer by Clayton for What is the fastest way to compare two byte arrays? Clayton 2009-03-09T20:12:33Z 2009-03-09T20:12:33Z <p>I see two things that might help:</p> <p>First, rather than always accessing the 2nd array as item.Bytes, use a local var to point directly at the array. That is, before starting the loop, do something like this:</p> <pre><code> array2 = item.Bytes </code></pre> <p>That will save the overhead of dereferencing from the object each time you want a byte. That could be expensive in VB, esp. if there's a Getter method on that property.</p> <p>Also, use a "definite loop" instead of "for each". You already know the length of the arrays, so just code the loop using that value. This will avoid the overhead of treating the array as a collection. The loop would look something like this:</p> <pre><code>for i = 1 by 1 to max if (array1(i) &lt;&gt; array2(i)) exit for next </code></pre> http://stackoverflow.com/questions/610458/why-isnt-calling-a-static-method-by-way-of-an-instance-an-error-for-the-java-com/612307#612307 0 Answer by Clayton for Why isn't calling a static method by way of an instance an error for the Java compiler? Clayton 2009-03-04T20:33:46Z 2009-03-04T21:56:19Z <p>I just consider this:</p> <pre><code>instanceVar.staticMethod(); </code></pre> <p>to be shorthand for this:</p> <pre><code>instanceVar.getClass().staticMethod(); </code></pre> <p>If you always had to do this:</p> <pre><code>SomeClass.staticMethod(); </code></pre> <p>then you wouldn't be able to leverage inheritance for static methods.</p> <p>That is, by calling the static method via the instance you don't need to know what concrete class the instance is at compile time, only that it implements staticMethod() somewhere along the inheritance chain.</p> <p>EDIT: This answer is wrong. See comments for details.</p> http://stackoverflow.com/questions/611233/am-i-obligated-to-fix-a-software-error-after-i-left-a-company/611305#611305 0 Answer by Clayton for Am I obligated to fix a software error after I left a company? Clayton 2009-03-04T16:20:29Z 2009-03-04T16:20:29Z <p>I can't see how you'd possibly be obligated, unless it's specified in a contract you had with your previous employer. Howerver, you might want to consider helping out anyway.</p> <p>If it's a relatively simple issue, you could just give them some hints so they can fix it themselves.</p> <p>If it's too complicated for that you could do the work yourself, but you should be paid for your time. If you want to be nice you could charge your former rate. If you want to discourage this kind of thing in the future, double it. That will put them in a "take it or leave it" position.</p> <p>Be careful though. Your new employer might not appreciate moonlighting.</p> http://stackoverflow.com/questions/602464/how-do-you-handle-checks-to-see-if-a-user-changed-something-in-a-dialog/607874#607874 0 Answer by Clayton for How do you handle checks to see if a user changed something in a dialog Clayton 2009-03-03T19:52:49Z 2009-03-03T19:52:49Z <p>Personally I'd go with Option 2. The cost of creating the cloned "original values" object would be minimal, unless you've got a very large number of fields, or unless some contain large data objects (large text blocks, images, etc.).</p> <p>A key benefit is that you wouldn't get a "false positive" when the user changes a value then changes it back.</p> <p>Also, this would let you implement a Reset function so the user can discard all of their changes without having to Cancel and restart.</p> <p>If you don't want to maintain a full "clone", consider just saving old values for the fields that change. If the user changes one back, remove it from your OldValues structure. If you have a lot of fields this would make your Reset faster, since you'd only have to restore the fields that exist in OldValues.</p> http://stackoverflow.com/questions/606305/what-is-the-best-source-code-comparison-tool/606499#606499 2 Answer by Clayton for What is the Best Source Code Comparison Tool? Clayton 2009-03-03T14:06:12Z 2009-03-03T14:06:12Z <p>I've had good luck with Beyond Compare.</p> <p><a href="http://www.scootersoftware.com/" rel="nofollow">http://www.scootersoftware.com/</a></p> http://stackoverflow.com/questions/603311/reflection-terminal-emulator-integration-with-ie 0 Reflection Terminal Emulator - Integration with IE Clayton 2009-03-02T17:52:57Z 2009-03-03T14:01:55Z <p>I'm trying to implement some integration between a legacy app running in the Reflection Terminal Emulator and a browser-based app running in IE.</p> <p>I'm using Host Initiated Scripts so that maintenance and deployment issues are isolated to the legacy app. All scripts will be generated in the legacy app and transmitted to Reflection using escape sequences.</p> <p>I am currently able to:</p> <ol> <li>Launch IE</li> <li>Set options such as hiding toolbars</li> <li>Navigate to a URL</li> <li>Transmit status info back to the legacy app</li> <li>Wait for a "close" signal from the legacy app</li> <li>Close IE</li> </ol> <p>Here's VBA code to do that:</p> <pre><code> Sub Main Dim CR as String CR = CHR$(rcCR) Dim objIE as Object Set objIE = CreateObject("InternetExplorer.Application") objIE.ToolBar = false objIE.Navigate("http://www.google.com/") objIE.Visible = true Session.Transmit "OK" & CR Session.WaitForString "CLOSE", 0, rcAllowKeystrokes objIE.Quit End Sub </code></pre> <p>The problem with this is that the script continues to run until it gets the close command from the legacy app.</p> <p>What I want to do is use one script to launch the browser, and another to either close it or re-use it for another URL. However, I haven't been able to find a way to save my reference to IE across script calls. Declaring objIE as Global outside Sub Main didn't help. The Session object does persist across script calls, but it doesn't appear to have a property that I can use for this purpose. (Session does have a UserData property, but that's a String, not an Object.)</p> <p>Here's an example of what I'd like to do:</p> <p>Script 1 - Open IE &amp; Leave it Open:</p> <pre><code> Sub Main Dim CR as String CR = CHR$(rcCR) Dim objIE as Object Set objIE = CreateObject("InternetExplorer.Application") objIE.ToolBar = false objIE.Navigate("http://www.google.com/") objIE.Visible = true Session.Transmit "OK" & CR End Sub </code></pre> <p>Script 2 - Send original IE window to a new URL</p> <pre><code> Sub Main Dim CR as String CR = CHR$(rcCR) Dim objIE as Object Set objIE = FindOriginalIE() objIE.Navigate("http://www.stackoverflow.com/") Session.Transmit "OK" & CR End Sub </code></pre> <p>Script 3 - Close IE</p> <pre><code> Sub Main Dim CR as String CR = CHR$(rcCR) Dim objIE as Object Set objIE = FindOriginalIE() objIE.Quit Session.Transmit "OK" & CR End Sub </code></pre> <p>The part that I can't figure out is how to implement the FindOriginalIE() function used in Scripts 2 and 3.</p> <p>I tried using GetObject() instead of CreateObject(), but that got me nowhere. GetObject() won't open a new IE window, or find an existing one. I suspect this is because I'm running under Citrix, but I'm not sure.</p> <p>My only leads right now are to try using IE's hWND to reconnect to the original window, or to use DDE instead of OLE. I haven't had much luck with either of those however, mainly because of a lack of documentation.</p> <p>So, my questions are:</p> <ol> <li>Is what I'm trying to do possible using OLE? That is, is there a way to persist my handle to IE across host initiated script calls?</li> <li>Should I expect GetObject() to work, or is that a dead end?</li> <li>Is it possible to use the Win32 API in a host initiated script to re-connect to IE using hWND?</li> </ol> <p>Any links to related articles, sample code, or other insights are greatly appreciated.</p> http://stackoverflow.com/questions/603283/what-is-the-best-java-image-processing-library-approach/603358#603358 1 Answer by Clayton for What is the best java image processing library/approach? Clayton 2009-03-02T18:04:21Z 2009-03-02T18:04:21Z <p>For commercial tools, you might want to try Snowbound.</p> <p><a href="http://www.snowbound.com/" rel="nofollow">http://www.snowbound.com/</a></p> <p>My experience with them is somewhat dated, but I found their Java Imaging API to be a lot easier to use than JAI and a lot faster.</p> <p>Their customer support and code samples were very good too.</p> http://stackoverflow.com/questions/561729/can-the-diamond-problem-be-really-solved/561786#561786 4 Answer by Clayton for Can the Diamond Problem be really solved? Clayton 2009-02-18T16:15:55Z 2009-02-18T16:15:55Z <p>There is no Diamond Problem with Interface-based inheritance.</p> <p>With Class-based inheritance, the multiple extended classes can have different implementation of a method, so there's ambiguity as to which method is actually used at runtime.</p> <p>With Interface-based inheritance there's only one implemenation of the method, so there's no ambiguity.</p> <p>EDIT: Actually, the same would apply to Class-based inheritance for methods declared as Abstract in the superclass.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455461#455461 1 Answer by Clayton for How do you stop yourself from refactoring working but awful code? Clayton 2009-01-18T16:59:01Z 2009-01-18T16:59:01Z <p>I used to refactor code whenever I came across something I didn't like, but not anymore. I found from experience that it's just not worth it. There are better things you could spend your time on.</p> <p>The main reason I don't refactor anymore is the risk of introducing a new bug. The worse the old code is, the higher the chance that you're going to make a mistake. For example, the old code might have an unintended side effect. That could be considered a coding error, and you'd remove it in your rewrite. However, code that calls into your rewritten function may be relying on that side effect.</p> <p>I work on a lot of really ugly legacy code that's mostly uncommented and for which there are no specs. The code just does what it does, and no one can really say why. They just know it seems to work. As horrible as it is, this code does it's job, so it's best to just leave it alone.</p> <p>That said, I do believe bad code should be rewritten. I just don't think that programmers should do this kind of thing on their own. It should be treated as a project, with defined scope, timelines, test plans, etc., just like implementation of a new feature.</p> http://stackoverflow.com/questions/453684/use-hashtable-vector-or-hashmap-or-arraylist-in-java/453718#453718 0 Answer by Clayton for Use Hashtable, Vector or HashMap or ArrayList in Java Clayton 2009-01-17T17:58:42Z 2009-01-17T18:12:33Z <p>It seems to me that the only times you'd need the Collection itself to be thread safe are:</p> <ul> <li>If the Collection is visible from outside the class (Public or default scope)</li> <li>If you're returning a handle to the collection from a method</li> <li>If the collection is a static member of your class</li> </ul> <p>All of those are probably a bad ideas design-wise.</p> <p>A better approach would be to make the collection itself Private or Protected, and access it via synchronized methods. In the case of the static member, if you had a need to do that, a Singleton would be a better way to go.</p> http://stackoverflow.com/questions/446358/storing-a-large-number-of-images/446653#446653 2 Answer by Clayton for Storing a large number of images Clayton 2009-01-15T13:07:20Z 2009-01-15T13:07:20Z <p>I worked on an Electronic Document Management system a few years ago, and we did pretty much what Gamecat and wic suggested.</p> <p>That is, assign each image a unique ID, and use that to derive a relative path to the image file. We used MOD similar to what wic suggested, but we allowed 1024 folders/files at each level, with 3 levels, so we could support 1G files.</p> <p>We stripped off the extension from the files however. The DB records contained the MIME Type, so extension was not needed.</p> <p>I would not recommend storing the full URL in the DB record, only the Image ID. If you store the URL you can't move or restructure your storage without converting your DB. A relative URL would be ok since that way you can at least move the image repository around, but you'll get more flexibility if you just store the ID and derive the URL.</p> <p>Also, I would not recommend allowing direct references to your image files from the web. Instead, provide a URL to a server-side program (e.g., Java Servlet), with the Image ID being supplied in the URL Query (<code>http://url.com/GetImage?imageID=1234</code>).</p> <p>The servlet can use that ID to look up the DB record, determine MIME Type, derive the actual location, check for security restrictions, logging, etc.</p> http://stackoverflow.com/questions/382623/what-are-your-3-most-important-programming-patterns-and-why/442899#442899 0 Answer by Clayton for What are your 3 most important programming patterns, and why? Clayton 2009-01-14T13:21:24Z 2009-01-14T13:21:24Z <p>I know this isn't really what you asked, but I'm going to list some anti-patterns.</p> <p>I think these are the "most important" not because they're good, but because they're so pervasive and have such a big (negative) effect.</p> <ul> <li><p>Spaghetti Code - incomprehensible, poorly structured, unmaintainable code.</p></li> <li><p>Cargo Cult Programming - blindly duplicating what others have done without real understanding</p></li> <li><p>Coding By Exception - adding code for new each special case as it's discovered</p></li> </ul> http://stackoverflow.com/questions/440417/whats-the-proper-background-process-behaviour-for-a-non-gui-java-app/440477#440477 3 Answer by Clayton for What's the proper background process behaviour for a non-GUI Java app? Clayton 2009-01-13T19:41:12Z 2009-01-13T19:41:12Z <p>I'd only use sleep() if there's no work to be done. For example, if you're doing something like polling a task queue periodically and there's nothing there, sleep for a while then check again, etc.</p> <p>If you're just trying to make sure you don't hog the CPU but you're still doing real work, you could call Thread.yield() periodically. That will relinquish control of the CPU and let other threads run, but it won't put you to sleep. If other processes don't need the CPU you'll get control back and continue to do your work.</p> <p>You can also set your thread to a low priority: myThread.setPriority(Thread.MIN_PRIORITY);</p> <p>As Ishmael said, don't do this in your main thread. Create a "worker thread" instead. That way your UI (GUI or CLI) will still be responsive.</p> http://stackoverflow.com/questions/420500/helpful-math-classes-for-programmers/420684#420684 1 Answer by Clayton for Helpful math classes for programmers Clayton 2009-01-07T15:15:09Z 2009-01-07T15:15:09Z <p>If you're planning to go on to grad school for CS, I'd highly recommend a class in Number Theory.</p> <p>Number Theory is heavy on proofs, and you do a lot of that in CS classes like Formal Languages, Theory Of Computation, and Analysis of Algorithms.</p> <p>This won't help much with programming classes though.</p> http://stackoverflow.com/questions/407518/code-golf-leibniz-formula-for-pi/407706#407706 2 Answer by Clayton for Code Golf: Leibniz formula for Pi Clayton 2009-01-02T18:52:42Z 2009-01-02T18:52:42Z <p>Here's a solution in MUMPS.</p> <pre><code>pi(N) N X,I S X=1 F I=3:4:N-2 S X=X-(1/I)+(1/(I+2)) Q 4*X </code></pre> <p>Parameter N indicates how many repeated fractions to use. That is, if you pass in 5 it will evaluate 4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11)</p> <p>Some empirical testing showed that N=272241 is the lowest value that gives a correct value of 3.14159 when truncated to 5 decimal points. You have to go to N=852365 to get a value that rounds to 3.14159.</p> http://stackoverflow.com/questions/407235/updating-an-application-with-100-uptime/407383#407383 6 Answer by Clayton for Updating an application with 100% uptime Clayton 2009-01-02T16:48:18Z 2009-01-02T16:48:18Z <p>There's no such thing as 100% up time. Even the best systems measure downtime as "5 nines", which means 99.999% up time.</p> <p>Also, a key point: this measurements applies to <em>unscheduled</em> down time, as in failures. It does not include time when you bring the system down on purpose for scheduled maintenance.</p> <p>In any case, the goal is to install/update software without incurring downtime, scheduled or otherwise. If dynamic reload isn't supported by the web server natively, your solution seems correct, but I think that is built into a lot of servers these days. That is, you'd just need to drop your new files onto the server and it would automatically see that something had changed and start using them.</p> <p>However, depending on the nature of the change that might cause problems with session state. That is, existing user sessions could end up with objects stored in session that aren't compatible with your new code. Again, possibly the servers are smart enough to keep cached copies of the original code around until all sessions using the old code have terminated, but maybe you need to handle that yourself. Your "shadow server" approach should handle that nicely.</p> http://stackoverflow.com/questions/383833/question-about-the-java-garbage-collector-nulls-and-memory-leaking/384005#384005 -1 Answer by Clayton for Question about the Java Garbage Collector, nulls and memory leaking. Clayton 2008-12-21T02:07:50Z 2008-12-21T02:14:22Z <p>Here's some code to demonstrate how a stray handle into the middle of a list structure can keep the GC from cleaning up completely:</p> <pre><code>import java.lang.ref.*; public class MemoryLeak1 { MyListItem leakedItem = null; WeakReference[] refs = null; public static void main(String[] args) { WeakReference ref = null; MyListItem item = null; MemoryLeak1 leak = new MemoryLeak1(); int i; leak.doit(); // create a memory leak System.gc(); // force the gc to run; // At this point the list has been explicitly cleared, // has gone out of scope, and the GC has run. // However, leak.leakedItem is still holding a // reference to an item in the list, so anything // reachable from that item is still alive. // show what's still around... for (i = 0; i &lt; 10; i++) { ref = leak.refs[i]; item = (MyListItem)ref.get(); if (item == null) { System.out.println("" + i + " = null"); } else { System.out.println("" + i + " = " + (String)item.thing); } } System.out.println("---------------------"); // now let's free some additional items... for (i = 1; i &lt;= 3; i++) { item = leak.leakedItem; leak.leakedItem = item.next; leak.leakedItem.prev = null; item.prev = null; item.next = null; } item = null; System.gc(); // force the gc to run again // this time we should get fewer items for (i = 0; i &lt; 10; i++) { ref = leak.refs[i]; item = (MyListItem)ref.get(); if (item == null) { System.out.println("" + i + " = null"); } else { System.out.println("" + i + " = " + (String)item.thing); } } System.out.println("---------------------"); // now clear the last reference leak.leakedItem = null; System.gc(); // force the gc to run again // this time we should none for (i = 0; i &lt; 10; i++) { ref = leak.refs[i]; item = (MyListItem)ref.get(); if (item == null) { System.out.println("" + i + " = null"); } else { System.out.println("" + i + " = " + (String)item.thing); } } System.out.println("---------------------"); } public void doit() { this.refs = new WeakReference[10]; MyList list = new MyList(); MyListItem item = null; // add strings to the list. // set each into the array of soft refs // set a ptr to the 6th item in an instance variable for (int i = 0; i &lt; 10; i++) { item = new MyListItem(); item.thing = new String("string" + i); list.insert(item); if (i == 5) this.leakedItem = item; this.refs[i] = new WeakReference(item); } // clear the list, but don't clear the // additional ptr to the 6th item list.clear(); } } class MyList { MyListItem head = null; MyListItem tail = null; void clear() { head = null; tail = null; } void insert(MyListItem item) { if (head == null) { // empty list item.next = null; item.prev = null; tail = item; head = item; } else if (head == tail) { // one item in list item.next = head; item.prev = null; tail = head; head = item; } else { // multiple items in list item.next = head; item.prev = null; head = item; } } MyListItem remove() { MyListItem item = tail; if (item != null) { tail = item.prev; if (tail == null) { head = null; } else { tail.next = null; } item.next = null; item.prev = null; } return item; } } class MyListItem { MyListItem next = null; MyListItem prev = null; Object thing = null; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/383858#383858 1 Answer by Clayton for Factorial Algorithms in different languages Clayton 2008-12-20T23:08:02Z 2008-12-20T23:08:02Z <p>In MUMPS:</p> <pre><code>fact(N) N F,I S F=1 F I=2:1:N S F=F*I QUIT F </code></pre> <p>Or, if you're a fan of indirection:</p> <pre><code>fact(N) N F,I S F=1 F I=2:1:N S F=F_"*"_I QUIT @F </code></pre> http://stackoverflow.com/questions/383833/question-about-the-java-garbage-collector-nulls-and-memory-leaking/383837#383837 3 Answer by Clayton for Question about the Java Garbage Collector, nulls and memory leaking. Clayton 2008-12-20T22:44:00Z 2008-12-20T22:44:00Z <p>That will work fine. The GC will detect that the nodes are not reachable, so they'll all get cleaned up.</p> http://stackoverflow.com/questions/23886/sql-pronunciation/350563#350563 1 Answer by Clayton for SQL Pronunciation Clayton 2008-12-08T19:23:57Z 2008-12-08T19:23:57Z <p>The first time I heard it pronounced "sequel" was in reference to Microsoft SQL Server, so I always figured that was invented by Microsoft's marketting department.</p> <p>Personally, when referring to the language I pronounce it "ess cue ell".</p> <p>The only time I use the "sequel" pronunciation is in reference to "Sequel Server", though lately I'm tending towards "Squeal Server", which is just as valid.</p> http://stackoverflow.com/questions/342052/how-to-increment-a-java-string-through-all-the-possibilities/342110#342110 -1 Answer by Clayton for How to increment a java String through all the possibilities? Clayton 2008-12-04T21:15:56Z 2008-12-04T21:21:18Z <p>It's not much of a "trick", but this works for 4-char strings. Obviously it gets uglier for longer strings, but the idea is the same.</p> <pre><code>char array[] = new char[4]; for (char c0 = 'a'; c0 &lt;= 'z'; c0++) { array[0] = c0; for (char c1 = 'a'; c1 &lt;= 'z'; c1++) { array[1] = c1; for (char c2 = 'a'; c2 &lt;= 'z'; c2++) { array[2] = c2; for (char c3 = 'a'; c3 &lt;= 'z'; c3++) { array[3] = c3; String s = new String(array); System.out.println(s); } } } } </code></pre> http://stackoverflow.com/questions/315546/only-one-return-statement-per-method-even-in-this-scenario/315683#315683 1 Answer by Clayton for Only one return statement per method, even in this scenario? Clayton 2008-11-24T22:06:42Z 2008-11-24T22:06:42Z <p>I strongly believe in "one entry / one exit", with the exception of validating inputs at the top of the function. That has to happen before the real work of the function begins though.</p> <p>I think this rule was intended to stop people from exiting in the middle of code that's doing real work simply because they think they're "done".</p> <p>The problem with multiple returns is that you can't be sure that required exit processing will be performed, such as closing a socket or releasing some other resource.</p> http://stackoverflow.com/questions/1192573/computer-science-problems-that-have-yet-to-be-solved/1197396#1197396 Comment by Clayton on Computer Science problems that have yet to be solved Clayton 2009-08-05T23:52:59Z 2009-08-05T23:52:59Z Just re-read the section on CT from my old Formal Languages book (Sudkamp 91), and it does agree with your statement that CT is not a mathematical theorm. It doesn't say it's a statement about the physical world though, but rather that it's an attempt to define algorithmic computation. Basically it says that a TM can implement any algorithm, and that if a TM cannot be constructed to implement a solution for a problem, that problem is not &quot;decidable&quot;, which is rougly the same as &quot;solveable&quot;. http://stackoverflow.com/questions/1192573/computer-science-problems-that-have-yet-to-be-solved/1197475#1197475 Comment by Clayton on Computer Science problems that have yet to be solved Clayton 2009-08-05T23:39:18Z 2009-08-05T23:39:18Z Or is an expensive and essentially pointless excercise with no hope of success? http://stackoverflow.com/questions/1192573/computer-science-problems-that-have-yet-to-be-solved/1197396#1197396 Comment by Clayton on Computer Science problems that have yet to be solved Clayton 2009-08-05T23:35:31Z 2009-08-05T23:35:31Z I would not consider a TM that access an Oracle a proper TM any more than I'd consider an FSA that has access to a stack a proper FSA. In any case, I believe the formal CT thesis relies on the formal definition of a TM. That said, what CT proposes is that even if you did have an Oracle, the functioning of that Oracle could be described by a TM, assuming the Oracle solves problems algorithmically, as opposed to some form of &quot;magic&quot;. I don't think even Quantum Algorithms would qualify as &quot;magic&quot;. They're faster, but they're still algorithms. As soon as you invoke magic all bets ar off. http://stackoverflow.com/questions/900273/what-would-a-pnp-proof-be-like-hypothetically/901834#901834 Comment by Clayton on What would a P=NP proof be like, hypothetically? Clayton 2009-07-29T01:41:10Z 2009-07-29T01:41:10Z Good article on Quantum Computing: <a href="http://www.scientificamerican.com/article.cfm?id=the-limits-of-quantum-computers" rel="nofollow">scientificamerican.com/article.cfm?id=the-limits-&hellip;</a> This states that QC cannot solve NP-complete problems, or at least will not &quot;collapse the complexity class&quot;. http://stackoverflow.com/questions/1192573/computer-science-problems-that-have-yet-to-be-solved/1197396#1197396 Comment by Clayton on Computer Science problems that have yet to be solved Clayton 2009-07-29T01:29:33Z 2009-07-29T01:29:33Z How so? It's a statement about the computability of certain functions. Granted, the thesis is stated in terms of being solvable by a Turing Machine, but that's not the same as a physical computer. For example, a TM is allowed to have infinite memory. It can have only a finite set of states, but the number of states is not strictly bounded, so you can have &quot;as many as you want&quot;. http://stackoverflow.com/questions/1192573/computer-science-problems-that-have-yet-to-be-solved/1197521#1197521 Comment by Clayton on Computer Science problems that have yet to be solved Clayton 2009-07-29T01:22:01Z 2009-07-29T01:22:01Z That's not an unsolved problem. It has been proven to be NP-Complete, but that's not the same as unsolved. A brute force solution is to simply calculate the length of all possible routes, then pick the shortest one. That's computationally expensive to the point of being impractical, but it is a solution. http://stackoverflow.com/questions/446358/storing-a-large-number-of-images/446653#446653 Comment by Clayton on Storing a large number of images Clayton 2009-03-24T17:05:20Z 2009-03-24T17:05:20Z @MikeJ: You could create a separate class for access to the images. That class would know how to derive a path from an id, etc. It could also contain a cache, possibly as a hashtable that you manage yourself, or maybe a canned cache class. Servlet would get images from this object, not from disk. http://stackoverflow.com/questions/660695/what-should-be-taught-in-a-fundamentals-of-programming-course-at-university/660714#660714 Comment by Clayton on What should be taught in a "Fundamentals of programming" course at university? Clayton 2009-03-19T02:15:59Z 2009-03-19T02:15:59Z I like this list, but I wouldn't spend more than one or two class periods on the first 2 items. That's nice background info, but if this is a programming class you need to get to the programming petty quickly. A later class should get into digital logic and machine architecture in detail. http://stackoverflow.com/questions/633878/how-do-you-explain-orthogonality-to-a-non-technical-person/634055#634055 Comment by Clayton on How do you explain orthogonality to a non-technical person? Clayton 2009-03-11T11:40:09Z 2009-03-11T11:40:09Z +1 for hitting the nail on the head. I deal with people like this all the time. They're supposedly experts in project management or the core business, but in reality they're just glorified secretaries. I know there are good PMs/Business Analysts our there, but they're few and far between. http://stackoverflow.com/questions/610458/why-isnt-calling-a-static-method-by-way-of-an-instance-an-error-for-the-java-com/612307#612307 Comment by Clayton on Why isn't calling a static method by way of an instance an error for the Java compiler? Clayton 2009-03-05T01:19:34Z 2009-03-05T01:19:34Z @Bill: good suggestion - done. http://stackoverflow.com/questions/610458/why-isnt-calling-a-static-method-by-way-of-an-instance-an-error-for-the-java-com/610674#610674 Comment by Clayton on Why isn't calling a static method by way of an instance an error for the Java compiler? Clayton 2009-03-05T00:02:28Z 2009-03-05T00:02:28Z @Jon: I ran a similar test and confirmed your findings. Based on that I agree that it's wrong for Java to allow static methods to be called from an instance var. No capability is gained (as I originally thought), but the potential for confusion or error is increased. http://stackoverflow.com/questions/610458/why-isnt-calling-a-static-method-by-way-of-an-instance-an-error-for-the-java-com/612307#612307 Comment by Clayton on Why isn't calling a static method by way of an instance an error for the Java compiler? Clayton 2009-03-04T23:56:06Z 2009-03-04T23:56:06Z @Jon: I'm going to leave it here. I learn as much from mistakes as anything else, so it might help someone else to see this. Thanks for your help. http://stackoverflow.com/questions/610458/why-isnt-calling-a-static-method-by-way-of-an-instance-an-error-for-the-java-com/612307#612307 Comment by Clayton on Why isn't calling a static method by way of an instance an error for the Java compiler? Clayton 2009-03-04T21:44:40Z 2009-03-04T21:44:40Z Does this mean I have to downvote my own post? http://stackoverflow.com/questions/610458/why-isnt-calling-a-static-method-by-way-of-an-instance-an-error-for-the-java-com/612307#612307 Comment by Clayton on Why isn't calling a static method by way of an instance an error for the Java compiler? Clayton 2009-03-04T21:43:44Z 2009-03-04T21:43:44Z @Jon: I stand corrected. instance.getClass().staticMethod() wouldn't compile. instance.staticMethod() went to the declared class, not the actual class. It seems there's no way to call a static method of an instance var's superclass from the instance, at least not without resorting to Reflection. http://stackoverflow.com/questions/610458/why-isnt-calling-a-static-method-by-way-of-an-instance-an-error-for-the-java-com/612307#612307 Comment by Clayton on Why isn't calling a static method by way of an instance an error for the Java compiler? Clayton 2009-03-04T21:01:54Z 2009-03-04T21:01:54Z @Jon: I was under the impression that getClass() would give you the actual class of the object, not the declared type of the variable. Javadoc is unclear on this issue, so I'm going to test it.