User Huntrods - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:52:32Z http://stackoverflow.com/feeds/user/33977 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/315470/why-do-people-ask-for-computer-it-help-if-you-tell-them-youre-a-programmer/315613#315613 91 Answer by Huntrods for Why do people ask for computer (IT) help if you tell them you're a programmer? Huntrods 2008-11-24T21:46:22Z 2009-10-31T17:47:11Z <p>After years of getting burned by this stuff...</p> <ul> <li>if you fix it, then you are now RESPONSIBLE for every problem they ever have again on their computer - for all eternity</li> <li>if you don't fix it (i.e. crashed hard drive), then you are either STUPID for not fixing it, or AT FAULT for being the last to touch it.</li> </ul> <p>SO NOW, I simply reply to EVERY query with:</p> <p>"Gee. I don't know. But if you find someone who can fix that, let me know. I could sure use a good "fix-it" person myself".</p> <p>They almost always leave you alone after that. ;-)</p> http://stackoverflow.com/questions/1596913/best-way-to-read-data-from-another-website 0 Best way to read data from another website Huntrods 2009-10-20T19:52:54Z 2009-10-21T08:32:53Z <p>Here's the situation:</p> <p>I have a web application (Java servlets) at "mycompany.com". A business partner is going to supply me with data from his application at "yourcompany.com".</p> <p>His application is driven by a web form (POST). I know nothing about his application other than the results will always be returned via a web page.</p> <p>For example, if I create a static HTML form with a submit button and send it to his web site, I get the results in my browser.</p> <p>I can create that web form in my application, but now - how to I read the results from his web site?</p> <p>Any ideas?</p> <p>-R</p> http://stackoverflow.com/questions/717666/what-are-some-of-the-best-special-purpose-mailing-lists-forums-for-programmers 0 What are some of the best special-purpose mailing lists / forums for programmers? Huntrods 2009-04-04T19:37:30Z 2009-10-09T05:03:12Z <p>In addition to (and prior to) Stack Overflow, there are quite a few special-purpose mailing lists and forums out there for programmers.</p> <p>In my case, there's the Tomcat mailing list (i.e. users@tomcat.apache.org), the mysql mailing list (i.e. mysql@lists.mysql.com) and the many forums at java.sun.com. Then there are those used for more hardware-specific tasks (like ones for the NSLU2, etc.).</p> <p>THe benefit of these lists is that questions are specific to the platform (i.e. Tomcat, MySql, the NSLU2, etc.) and also tend to have a great collection of experts and developers.</p> <p>What are some of the ones you subscribe to and/or use most frequently, aside from Stack Overflow?</p> <p>-Richard</p> http://stackoverflow.com/questions/527140/java-poi-anyone-been-able-to-extract-numbers-from-formula-cells 0 Java POI - anyone been able to extract numbers from formula cells? Huntrods 2009-02-09T04:51:51Z 2009-10-01T20:00:02Z <p>I've been using Java POI for some time now, but have encountered a new problem, and I'm wondering if anyone has found a solution.</p> <p>When you read a spreadsheet, you need to know the type of cell in order to use the proper read method.</p> <p>So you get the cell type, then call the appropriate read method to get the cell's contents.</p> <p>This works for all cells except for the FORMULA cell, where the value is a number. If it's text, you can read it just fine. But if the resulting value is a number, then all you get from the cell is a blank string.</p> <p>I've been through the javadocs for POI, and am using the correct data type (HSSFRichTextString), but still no joy.</p> <p>Anyone have a solution?</p> <p>P.S. this behavior of POI does bug me as there should be a default cell.toString() method that would return the string representation of ANY cell type, say defaulting to the cell's value property. (sort of like the paste-special where you can choose "value").</p> <p>PPS: As asked - I'm using Java 6 (1.6.0_06) and poi-3.0.2-FINAL-20080204.jar</p> http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/754454#754454 1 Answer by Huntrods for What technologies are you using even though they are embarassingly out of date? Huntrods 2009-04-16T01:31:54Z 2009-08-26T14:38:05Z <p>I'm not sure that it "should have been replaced", but I still have my working copy of <a href="http://en.wikipedia.org/wiki/Brief%5F%28text%5Feditor%29" rel="nofollow">Brief</a> (the DOS editor) and still us it quite regularly.</p> <p>Note - I'm referring to the version produced by Underware (the original maker), and NOT the P.O.S. version that Borland put after buying them up - prior to killing it.</p> <p>I spent a lot of time in the mid-80's learning the macro language, and made a lot of really useful macros for it - and still use many of them today under Windows XP (in the command window).</p> <p>-R</p> http://stackoverflow.com/questions/296056/how-fanatically-do-you-eliminate-code-duplication/296551#296551 5 Answer by Huntrods for How fanatically do you eliminate Code Duplication? Huntrods 2008-11-17T19:16:32Z 2009-08-23T12:20:01Z <p>I have always adhered to the principle that the first duplication (i.e. original plus one copy) is not usually worth the effort to remove. This is because original plus one copy is probably a "one off", and you don't gain enough from removing them to justify the work.</p> <p>However, as soon as I start to make a second copy, I then rewrite all three to remove the duplication. That's because it has now (in my opinion) moved from "one off" to "trend". It becomes more likely that I'll use the code again so the effort to remove the duplicates is now worth it.</p> <p>I hesitate to call the process "refactoring", because that's a buzzword from the XP camp, and I was doing this back in the early '80s with FORTRAN and C.</p> <p>Good programming practice is ageless (and usually trendy-less, too).</p> <p>Cheers,</p> <p>-Richard</p> http://stackoverflow.com/questions/1260475/is-this-an-over-the-top-question-for-senior-java-developer-role/1261437#1261437 0 Answer by Huntrods for Is this an over-the-top question for Senior Java developer role? Huntrods 2009-08-11T16:16:52Z 2009-08-11T16:16:52Z <p>You don't discuss any other questions, but given the "fairly long quiz" statement, it sounds like some generic "all inclusive" quiz they send out to everyone who's resume didn't hit the shredder on round one.</p> <p>It does NOT sound like a particularly "high quality" employer, IMO.</p> <p>As others have said - unless you are in need of this job, I'd just toss the thing and reply with "I don't do 'fishing expedition' quizzes". If enough job seekers would refuse to go along with this stuff, it might help putting and end to this stuff.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/1202128/what-career-can-i-hope-for-if-i-like-algorithms/1202351#1202351 7 Answer by Huntrods for What career can I hope for if I like algorithms? Huntrods 2009-07-29T19:00:01Z 2009-07-29T19:00:01Z <p>You didn't mention your background, but there are several paths you could follow, and they are not necessarily exclusive (i.e. you could follow multiple paths).</p> <p>First, if you have your degree in IT, seriously consider getting a Master's degree. This is the KEY to being able to teach later in your career if you choose. Teaching is a great way to pass your enthusiasm on to a new generation of programmers. Don't just think "University Professor" (you pretty much need a Ph.D. for that), but other teaching positions are great as well - i.e. College Instructor (often needing that Masters degree), Continuing Education Instructor / Teacher (great way to get your feet wet).</p> <p>Also, much of the scientific programming will often involve algorithms and code tuning. Great careers in scientific programming.</p> <p>Game houses use algorithms and (again) code tuning).</p> <p>ALSO - seriously consider giving some time to an Open Source project. There are thousands of open source projects out there, and they are usually welcoming of programming help. Algorithms and code tuning are a great way to get involved, as these are sometimes not considered as "sexy" as other aspects of the project, and don't get as many folks helping out.</p> <p>But most important - KEEP YOUR EYES OPEN and continue to follow your passion. We NEED passionate programmers.</p> <p>Cheers,</p> <p>-Richard</p> http://stackoverflow.com/questions/1174271/what-happens-when-open-source-software-has-two-or-more-licenses/1174297#1174297 -1 Answer by Huntrods for What happens when open source software has two or more licenses? Huntrods 2009-07-23T20:32:45Z 2009-07-23T20:32:45Z <p>In my opinion - to be safe, it is best to use the more restrictive license. That way, should anyone protest, you would not be in violation of that (the more restrictive) license.</p> <p>Some might argue the other case - that by having a more restrictive license AND a less restrictive license allows the less restrictive license to "open the door", so to speak.</p> <p>In the real world, there are examples that go both ways. Again, my advice is tending towards the risk-averse approach (a.k.a. cover yourself).</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/1168836/advise-about-next-learning-move/1168950#1168950 1 Answer by Huntrods for advise about next learning move Huntrods 2009-07-23T00:17:23Z 2009-07-23T00:17:23Z <p>I tend to agree with the answers already posted, but a few additional thoughts.</p> <p>If you are asking specifically "should I learn patterns or data structures", I would have to say DATA STRUCTURES.</p> <p>Data Structures are one of the core foundations upon which most programming is based. Patterns are (IMO) a current fad (giving cutsy-pie names to stuff we've been doing forever). Patterns will get you an interview at some trendoid code factory, but will not make you as good a programmer as someone who understands data structures. Sometimes, the fundamentals are just that important.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/1168829/is-code-clearness-killing-application-performance/1168940#1168940 -1 Answer by Huntrods for Is code clearness killing application performance? Huntrods 2009-07-23T00:13:51Z 2009-07-23T00:13:51Z <p>I know of no current case where a good compiler will not produce fast, efficient code if given clean, well-written source code.</p> <p>Now if you use some form of code generator, it would depend on the "goodness" of the source output of the generator. Certainly in the past I have seen code generators that created tons and tons of garbage code for seemingly simple operations. I think the tool designers were suffering from "everything AND kitchen sink" disease. Modern tools should be leaner, but it pays to check the tool before plunking down big bucks.</p> <p>Again, if you write your own code, every compiler I am aware of today will take good, clean code and create well-optimized, fast executables. (unless you turn off all the optimization for debugging purposes or something like that).</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/1168274/real-world-uses-for-obfuscation/1168918#1168918 0 Answer by Huntrods for Real world uses for obfuscation Huntrods 2009-07-23T00:07:50Z 2009-07-23T00:07:50Z <p>I've used code obfuscation in a real-life project. I have developed enterprise software (Java servlets). With servlets, the compiled classes MUST reside on the server in order to function (WAR / JAR files). In most cases, they reside on servers that I can either a) control, or b) trust the operators.</p> <p>However, one client insisted the application reside on THEIR server for "intranet" use. Since the client had a history of "less than stellar" ethics, I took the precaution of running the compiled Java through an obfuscator first. I also tested the result fairly well to ensure the decompiled code was pretty much unusable.<p> <p>You might ask "why deal with such a client?", but the overall marketing of this particular application was outside my control, though any security concerns were not. This was a best compromise solution for the particular case</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/1160511/would-you-hire-a-developer-who-doesnt-know-how-to-use-regular-expressions/1160597#1160597 4 Answer by Huntrods for Would you hire a developer who doesn't know how to use regular expressions? Huntrods 2009-07-21T17:30:44Z 2009-07-21T17:30:44Z <p>Well, first things first.</p> <p>Hire a developer for what? What's the job description - what project types, what language(s), what other skills required?</p> <p>Even if you mean someone who just codes, then you first have to answer - WHY do they need to know regexp for the job?</p> <p>If the job does not need regexp experience, then it's not an issue. Same as if they don't know SQL (and won't be needing it for the job), or Perl, or Ruby, or COBOL or FORTRAN or any of a thousand other things that some jobs require but others simply don't.</p> <p>Regexp by and of itself usually only really means that they were "doing stuff" in the unix world with Perl or scripts or similar stuff. While that can be incredibly useful in context, out of context it's no more valuable than anything else if you don't actually need it for the job description.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/1144703/what-should-the-penalty-response-for-missing-a-deadline-be/1145037#1145037 1 Answer by Huntrods for What should the penalty/response for missing a deadline be? Huntrods 2009-07-17T18:50:22Z 2009-07-17T18:50:22Z <p>You ask "what should the penalty be...". It would appear you are asking from the perspective of "inside the company".</p> <p>In real life, the penalties are often swift and severe - loss of business, lawsuits, bad reputation in the industry. These are the REAL penalties imposed by clients who were promised something by a certain date that was not fulfilled.</p> <p>Internally, you can often do whatever you like. But once you start involving paying clients, then managing those clients becomes a critical part of the overall job.</p> <p>Penalties such as I described can often be avoided (or lessened) by "on top" communication with the client. If the client wants something added (so-called feature creep), then this should immediately be answered with the impact these changes will have on the project (costs more, delivered later, whatever). The client should be encouraged to triage all such requests against their deadlines and projected costs (i.e. let the client manage feature creep, not you).</p> <p>If other things change the delivery time, then as soon as you know there will be slippage, you must inform the client. If done early, clients are remarkably willing to work with you. But if you don't say anything until it's too late, they are less likely to forgive... especially should they discover you knew a significant time earlier and didn't tell them.</p> <p>Cheers,</p> <p>-Richard</p> http://stackoverflow.com/questions/1139195/how-does-a-senior-developer-maintain-his-skills/1139302#1139302 8 Answer by Huntrods for How does a senior developer maintain his skills? Huntrods 2009-07-16T18:09:04Z 2009-07-16T18:09:04Z <p>Don't beat yourself up to badly over this.</p> <p>The young pups may know the syntax and libraries of this new stuff better than you, but if you are (were) a programmer of any caliber, then you should have tons of "tips and techniques" that lead to code efficiencies and other benefits that these pups simply do not know.</p> <p>Experience CAN count if it's based on learning best practices, avoiding errors, finding and fixing problems quickly (NOTHING beats someone who can figure out an obscure problem quickly), and so on.</p> <p>Still - the best programmers are also frequently the "life long" learners of the bunch. If you aren't still reading programming books "just for fun", then get started.</p> <p>Cheers,</p> <p>-Richard</p> http://stackoverflow.com/questions/1077444/handling-difficult-clients/1077593#1077593 2 Answer by Huntrods for Handling difficult clients Huntrods 2009-07-03T02:52:54Z 2009-07-03T02:52:54Z <p>Sounds like a few of my clients from my early years consulting. A couple of points from my perspective...</p> <ol> <li>The client quite possibly acts this way because IT IS VERY SUCCESSFUL FOR THEM. That is, by abusing neophyte contractors, they get stuff done on their schedule, can re-negotiate contracts on the fly (or never even have to bother with contracts), can pay what they want when the job is done ('cause they never did get to that contract)... AND YOU, BEING THE NEWBY, WILL TAKE IT ALL WITHOUT MUCH COMPLAINT. Why? Because you are deathly afraid they will somehow get you "blacklisted" if you protest too much later on.</li> </ol> <p>They figure they have you over a barrel. You are new, want to get into contract work, and are hesitant. They have probably done well exploiting this in the past, so why change?</p> <p>YOU HAVE TO REALIZE... BUSINESS IS BUSINESS. If you think these folks do NOT play hardball when it comes to THEM negotiating contracts for THEIR work, then you are quite mis-informed. SO YOU HAVE TO PLAY HARDBALL NOW. RIGHT NOW. BEFORE YOU DO ANOTHER THING FOR THEM.</p> <p>Your time is valuable. You can and should be prepared to charge for EVERYTHING you do, and then (if it's a good client), be prepared to rebate or discount stuff back to them. BUT NEVER DO ANY WORK FOR FREE. This goes for proposals that are more than just a quick estimate, and (of course) all actual work.</p> <p>I agree with other posts - HAVE YOUR OWN CONTRACT READY TO PRESENT TO THEM. This avoids getting an "indentured slave" contract shoved in your face at the last minute. You will NEVER be able to negotiate your way out of a bad contract that's offered to you - the first contract offered sets the tone, and then you are playing catch-up if it's not good for you.</p> <p>Best of luck, but you really need to do some prep work before going out on your own. Get a limited company set up (for billing, taxes and liability), and then get a good contract written. You don't need a lawyer for this - there are good books out there with the starting materials you need.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/960183/how-to-tell-someone-that-their-mods-to-my-program-are-not-good/960226#960226 1 Answer by Huntrods for How to tell someone that their mod's to my program are not good? Huntrods 2009-06-06T18:09:39Z 2009-06-06T18:09:39Z <p>Frankly, I think this is a political problem, not a coding problem. Specifically...</p> <ol> <li>WHO SAID THIS PERSON WAS A "STAR"? If this is the same person you described in your other question, then you already have your answer there: THIS PERSON IS <em>NO</em> "STAR".</li> </ol> <p>So then you get into the other effects of politics...</p> <ol> <li>Who is claiming this person to be a star? Why can you not just tell the person "this is crap code"? Who is protecting them / defending them were you to do that? Can you do that or would you get blasted / demoted / put on the "to be laid off" pile?</li> </ol> <p>You are asking questions that cannot really be answered in isolation. IF the code is crap, then throw it away and do it correctly yourself. IF there are <em>reasons</em> that you cannot do that, then you need to ask yourself if the benefits of this place outweigh the negatives.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/951948/noclassdeffounderror-while-accessing-graphicsenvironment-getlocalgraphicsenviro/952103#952103 2 Answer by Huntrods for NoClassDefFoundError while accessing GraphicsEnvironment.getLocalGraphicsEnvironment on Tomcat. Huntrods 2009-06-04T17:50:13Z 2009-06-04T17:50:13Z <p>It <em>was</em> running a week ago, and now it is not.</p> <p>THEREFORE, YOU CHANGED SOMETHING BETWEEN "working" and "not working".</p> <p>Go back to the working config (if you can), and rigorously track what you changed. If you don't have a backup of the working config, then meticulously go back through what you've done between working and non-working until you find what you changed.</p> <p>It may not be code - it could be a config file, etc.</p> <p>Best of luck,</p> <p>-R</p> http://stackoverflow.com/questions/885859/comparing-data-from-mysql-backups/886048#886048 0 Answer by Huntrods for comparing data from mysql backups Huntrods 2009-05-20T03:43:37Z 2009-05-20T03:43:37Z <p>If you do your backups using mysqldump, then your backup files will be standard text files. You can then use any decent text file compare utility (i.e. diff on a unix system) to see the differences.</p> <p>One nice thing about this is the table schema is dumped along with the data. </p> <p>Another benefit is that the backup is version and machine independant - you can restore onto any running copy of MySQL.</p> <p>The downside is the data part of the dump is written as maximum length lines, so some text editors will choke on it.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/871566/why-do-you-obfuscate-your-code/871601#871601 0 Answer by Huntrods for Why do you obfuscate your code? Huntrods 2009-05-16T03:17:36Z 2009-05-16T03:17:36Z <p>If I am delivering Java Swing apps to clients, I always obfuscate the class files before distribution.</p> <p>You can never be too careful - I once pointed a decent Java decompiler (I used the JD Java Decompiler - <a href="http://www.djjavadecompiler.com/" rel="nofollow">http://www.djjavadecompiler.com/</a> ) at my class files and was rewarded with an almost perfect reproduction of the original code. That was rather unnerving, so I started obfuscating my production code ever since. I use Klassmaster myself (<a href="http://www.zelix.com/klassmaster/" rel="nofollow">http://www.zelix.com/klassmaster/</a>)</p> <p>Cheers,</p> <p>-Richard</p> http://stackoverflow.com/questions/860671/how-to-format-multiple-tables-for-vertical-alignment 0 How to format multiple tables for vertical alignment Huntrods 2009-05-13T22:05:31Z 2009-05-14T05:28:29Z <p>I have inherited some HTML code and have been asked to align the two tables so the text lines up between the two columns.</p> <p>There is an outer table that provides a two-column look to this thing, then two inner tables (one for each column). Each inner table contains boxes that hold text. It is these boxes of text that the client wants aligned between the two columns.</p> <p>I can think of some ways to make the lines of text "match" across the two columns, but nothing simple or elegant.</p> <p>Here's the html code:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Test&lt;/title&gt; &lt;/head&gt; &lt;body &gt; &lt;table width="100%" border="1" cellspacing="2" cellpadding="0"&gt; &lt;tr&gt; &lt;td width="50%"&gt; &lt;hr align="left" /&gt; &lt;p&gt;&lt;center&gt;&lt;strong&gt;Left Side&lt;/strong&gt;&lt;/center&gt;&lt;/p&gt; &lt;table width="100%" border="1" cellspacing="2" cellpadding="0"&gt; &lt;tr&gt; &lt;td width="5%"&gt; &lt;strong&gt;1:&lt;/strong&gt; &lt;/td&gt; &lt;td width="90%"&gt; blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="5%"&gt; &amp;nbsp; &lt;/td&gt; &lt;td width="90%"&gt; &lt;hr align="left" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="5%"&gt; &lt;strong&gt;2:&lt;/strong&gt; &lt;/td&gt; &lt;td width="90%"&gt; blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="5%"&gt; &amp;nbsp; &lt;/td&gt; &lt;td width="90%"&gt; &lt;hr align="left" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;td width="50%"&gt; &lt;hr align="left" /&gt; &lt;p&gt;&lt;center&gt;&lt;strong&gt;Right Side&lt;/strong&gt;&lt;/center&gt;&lt;/p&gt; &lt;table width="100%" border="1" cellspacing="2" cellpadding="0"&gt; &lt;tr&gt; &lt;td width="5%"&gt; &lt;strong&gt;1:&lt;/strong&gt; &lt;/td&gt; &lt;td width="90%"&gt; blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="5%"&gt; &amp;nbsp; &lt;/td&gt; &lt;td width="90%"&gt; &lt;hr align="left" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="5%"&gt; &lt;strong&gt;2:&lt;/strong&gt; &lt;/td&gt; &lt;td width="90%"&gt; blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="5%"&gt; &amp;nbsp; &lt;/td&gt; &lt;td width="90%"&gt; &lt;hr align="left" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>EDIT: Further clarification and restrictions on this thing.</p> <ol> <li><p>It's created by a servlet program, so the ordering of the two columns is loop based. That is, one loop writes the first (left) column, then another loop writes the second (right) column. They are not "blendable" loops - they must run one after the other, severely restricting what I'm allowed to do with the formatting.</p></li> <li><p>The client has specified "no javascript" in the servlets. It is a firm restriction.</p></li> </ol> <p>I can use CSS, but the two loops (left, then right) are fixed.</p> <p>Thanks,</p> <p>-R</p> http://stackoverflow.com/questions/842431/am-i-charging-enough-i-think-i-may-have-put-myself-in-a-weird-situation/842542#842542 4 Answer by Huntrods for Am I charging enough? I think I may have put myself in a weird situation... Huntrods 2009-05-09T02:28:09Z 2009-05-11T05:18:59Z <blockquote> <p>Company Y loves my work and has gained new jobs because of it. They want more of my time and have offered me a 6 month contract, paid a fixed monthly rate regardless of hours (they assume 40ish per week). I'd still be working remotely. </p> </blockquote> <p>Are you sure about this? Anytime I was asked to work "fixed monthly rate" it was a none-too-subtle way of trying to get a lot of "free" hours (effectively a massive rate cut).</p> <p>I don't know any consulting project where you can just quit at 40 hrs, especially if the client gets a "push" where they need stuff sooner rather than later... the urgency is always theirs, and frequently manufactured rather than "real".</p> <p>So, if they want you AND want a discount, give them maybe $70/hr for an HOURLY contract over the 6 months. That way they get a discount, and you get protection from overtime and any urgency that may arise.</p> <p>Anything else and you WILL get hosed. Almost guaranteed.</p> http://stackoverflow.com/questions/806659/what-are-the-best-habits-of-highly-effective-programmers/809007#809007 9 Answer by Huntrods for What are the best habits of highly effective programmers? Huntrods 2009-04-30T20:52:30Z 2009-04-30T20:52:30Z <p>Dig deep into the question when a client requests something. Don't assume because they ask for a program they actually NEED a program. Be willing to ask questions until you get down to the actual business problem they want to solve. Then look at ALL the possible solutions, including those that don't even require a computer.</p> <p>Not every problem is a programming problem.</p> <p>-R</p> http://stackoverflow.com/questions/799469/do-consulting-companies-focus-on-code-quality/799814#799814 4 Answer by Huntrods for Do consulting companies focus on code quality? Huntrods 2009-04-28T21:01:52Z 2009-04-28T21:01:52Z <p>Early in my consulting career, I saw a sign in a shop that said "You can have it fast, you can have it cheap, you can have it high quality. Pick any two."</p> <p>That pretty much says it in a nutshell. Consulting is about balancing the priorities, costs and expectations.</p> <p>So yes, you can have a consulting company focused on quality code - but only at the expense of one of the other two items in the above list.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/765459/how-can-you-do-c-when-your-embedded-compiler-doesnt-have-operator-new-or-stl-s/765599#765599 5 Answer by Huntrods for How can you do C++ when your embedded compiler doesn't have operator new or STL support? Huntrods 2009-04-19T15:46:22Z 2009-04-19T15:46:22Z <p>I think you are approaching the problem from a viewpoint that is less than optimum.</p> <p>You are focusing on the compiler (or lack thereof) instead of focusing on the HARDWARE.</p> <p>The most probable answer to your main questions is "because the hardware doesn't support all that C++ stuff". Embedded hardware (microcontrolers) are noted for the customization of the hardware design - memory maps, interrupt handlers, I/O, etc.</p> <p>In my opinion, you should FIRST spend some time with the hardware book for the microcontroller, learning the ins and outs of the device - i.e. how it was designed and for what primary purpose. Some were designed for fast memory manipulation, some for fast I/O handling, some for A/D type work, some for signal processing. The type of microcontroller dictates the assembler instructions they wrote for it, and that dictates what any higher-level compiler can do efficiently.</p> <p>If this is important, spend some time to look at the assembler as well - it will tell you what the designers considered important. It will also tell you a lot about how much you can get from a high-level compiler.</p> <p>Generally, microcontrollers don't support C++ because the design really doesn't care about objects, or fancy memory handling (from the C++ perspective). It can be done, but you are often trying to pound a round peg in a square hole to get constructors and destructors (and 'new' and 'delete') to work in the micro environment.</p> <p>IF you have a C compiler for this unit, consider it a blessing. A good C compiler is often "more than enough" to create excellent embedded software.</p> <p>Cheers,</p> <p>-Richard</p> http://stackoverflow.com/questions/760711/how-to-find-niche-companies-to-work-for/761293#761293 1 Answer by Huntrods for How to find niche companies to work for Huntrods 2009-04-17T17:05:22Z 2009-04-17T17:05:22Z <p>Check out companies that work in the audio world - they have been using DSP's in digital audio for decades now.</p> <p>Also check out your automotive sector for embedded work.</p> <p>There are embedded controllers in almost everything now - autos, home appliances, industrial controllers, etc.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/712018/how-to-help-java-tomcat-processes-to-regain-used-memory/712085#712085 1 Answer by Huntrods for How to help java tomcat processes to regain used memory? Huntrods 2009-04-02T23:57:18Z 2009-04-02T23:57:18Z <p>Sounds like you need to get details of what's using up the stack. For that I recommend JMAP (<a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/jmap.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/jmap.html</a>) which you can run on the process ID (PID) to see what's using memory. Take JMAP snapshots several times when the application is running and see what classes are not freeing up the stack.</p> <p>Cheers,</p> <p>-Richard</p> http://stackoverflow.com/questions/673785/how-do-you-involve-people-that-dont-want-what-you-are-making/674080#674080 2 Answer by Huntrods for How do you involve people that don't want what you are making Huntrods 2009-03-23T16:25:56Z 2009-03-23T16:25:56Z <p>Sounds to me like you are doing what management SAYS instead of trying to solve their problem. You are assuming management actually knows what they want and have immediately decided that coding a new spreadsheet as per management's directive is the solution.</p> <p>Why not take a step BACK and analyze the actual problem, and then try and solve THAT instead of pissing off your user base?</p> <p>As others have said - you could write an application that would easily read the current excel spreadsheets and scrape the data into a database for the management folks. Assuming the current spreadsheet captures the data required, that's all you really need to do. You can even automate this process easily if you need it automated.</p> <p>It's all about finding solutions to the WORK FLOW or DATA FLOW instead of just jumping in and writing code (even if its' just a spreadsheet).</p> <p>-R</p> http://stackoverflow.com/questions/649220/do-you-compile-and-run-code-very-often-or-write-large-code-pieces-at-once/649248#649248 1 Answer by Huntrods for Do you compile and run code very often or write large code pieces at once? Huntrods 2009-03-16T04:15:42Z 2009-03-16T04:15:42Z <p>I have always used the approach - "write a little, then compile and test". If I'm starting from scratch, I will create an empty program shell, compile and run it. Then start adding code.</p> <p>This goes for any code I write - EVEN THE UNIT TESTS.</p> <p>It only takes one time (in my experience) trying to debug 150 lines of "stuff", trying ot find the hidden bug to cure you of that illness. ;-)</p> <p>It's also how I've been teaching programming since I started in 1990.</p> <p>Cheers,</p> <p>-R</p> http://stackoverflow.com/questions/611233/am-i-obligated-to-fix-a-software-error-after-i-left-a-company/612000#612000 0 Answer by Huntrods for Am I obligated to fix a software error after I left a company? Huntrods 2009-03-04T19:10:17Z 2009-03-04T19:10:17Z <p>The best way to approach this, in my opinion, is to contact the client directly and offer to fix the bug for a standard hourly rate. You could elect to charge either what the client paid to the horrible (IMO) company you worked for, or you could elect to charge the hourly rate you were paid. Either way, you should charge for the fix.</p> <p>Since you have no contractual relationship with either the old company or the client, you are probably quite free to contact the client and negotiate this fix. Heck, if you want to do it "gratis", that's fine as well - BUT MAKE SURE THE CLIENT IS THE ONE GETTING THE DEAL.</p> <p>If you go through the old company, you will be screwed. I can pretty much guarantee this.</p> <p>As for your reputation, consider this: your old boss has probably ALREADY trashed you to the client and to whomever else he sees. This kind of boss is all too common in the sweat-shops that masquerade as contract programming establishments. But don't fret - everyone in the industry probably already knows this person and HIS reputation likely increases yours with every complaint he makes about you. (really!).</p> <p>As for your rep with the client, the best way to ensure it remains (or gets back to) good is to contact them directly and fix the problem as per the above.</p> <p>If the old company complains, remind them of the "no contract between us" since you left.</p> <p>Best wishes,</p> <p>-R</p> http://stackoverflow.com/questions/1683434/detecting-database-tampering-is-it-possible/1683474#1683474 Comment by Huntrods on Detecting database tampering, is it possible? Huntrods 2009-11-05T21:13:22Z 2009-11-05T21:13:22Z Sorry - but if you <i>really</i> have an evil admin, you have far bigger problems than this one. Trying to over-complexify the tamper detection to thwart this hypothetical evil admin is probably less efective than just implementing a simple tamper detection system. It all depends on WHO you think you are going to catch, I guess. http://stackoverflow.com/questions/1637952/should-entry-level-programmers-be-able-to-answer-fizzbuzz/1638001#1638001 Comment by Huntrods on Should entry level programmers be able to answer FizzBuzz? Huntrods 2009-10-28T16:53:30Z 2009-10-28T16:53:30Z But - in the &quot;real world&quot; of coding, how often are we faced with hard deadlines that create intense pressure to finish? So the notion that the time limit creates false pressure in the interview is in fact the opposite - we want candidates that do not freeze under pressure. http://stackoverflow.com/questions/1607553/getting-your-programming-developer-team-up-to-speed/1607728#1607728 Comment by Huntrods on Getting your programming/developer team up to speed Huntrods 2009-10-22T16:02:02Z 2009-10-22T16:02:02Z First paragraph is excellent. Worst thing a new hire can do is to imply &quot;the reason I'm not up to speed yet is because I am going to blame the old tools&quot;. Companies want to see people who can DO STUFF - even with older tools. THEN you can start making suggestions. -R http://stackoverflow.com/questions/1596913/best-way-to-read-data-from-another-website/1596979#1596979 Comment by Huntrods on Best way to read data from another website Huntrods 2009-10-20T22:49:15Z 2009-10-20T22:49:15Z I totally agree, but his site is not going to get updated any time soon. What I get is what I get. &lt;joy&gt; http://stackoverflow.com/questions/1596913/best-way-to-read-data-from-another-website Comment by Huntrods on Best way to read data from another website Huntrods 2009-10-20T22:48:27Z 2009-10-20T22:48:27Z I'm supposed to process the info coming back from the other site in my application. http://stackoverflow.com/questions/1260475/is-this-an-over-the-top-question-for-senior-java-developer-role/1260559#1260559 Comment by Huntrods on Is this an over-the-top question for Senior Java developer role? Huntrods 2009-08-11T16:13:18Z 2009-08-11T16:13:18Z Agree with all but the printing part. It's not worth the waste of paper or toner. ;-) http://stackoverflow.com/questions/1168274/real-world-uses-for-obfuscation/1168298#1168298 Comment by Huntrods on Real world uses for obfuscation Huntrods 2009-07-23T00:02:17Z 2009-07-23T00:02:17Z This approach does, however, cover your ass in the likely event they delay payment, or start contesting the invoice, or flat-out refuse to pay (I've seen that happen too often once these types get the source code)... -R http://stackoverflow.com/questions/1147587/games-for-learning/1147802#1147802 Comment by Huntrods on Games for learning Huntrods 2009-07-18T16:25:24Z 2009-07-18T16:25:24Z I must really disagree with your basic statements here. There is a huge area in education development now specifically related to &quot;game based learning&quot;. -R http://stackoverflow.com/questions/1144703/what-should-the-penalty-response-for-missing-a-deadline-be/1145037#1145037 Comment by Huntrods on What should the penalty/response for missing a deadline be? Huntrods 2009-07-17T20:03:36Z 2009-07-17T20:03:36Z If there are external perties involved, then (hopefully) management is already fully aware of penalties and in fully communication with the external parties. If not, you may already be in deep trouble. Then internal penalties will be moot. http://stackoverflow.com/questions/1077444/handling-difficult-clients/1077593#1077593 Comment by Huntrods on Handling difficult clients Huntrods 2009-07-05T02:25:29Z 2009-07-05T02:25:29Z One gets accused of being a pessimist, but that's not really true. I am an optimist who has seen too much reality. In this case, it's the red flags (like terse replies to valid questions) that start setting off &quot;been there, done that&quot; red flags. Cheers, -R http://stackoverflow.com/questions/1074338/how-do-you-coach-a-slow-developer/1074418#1074418 Comment by Huntrods on How do you coach a slow developer? Huntrods 2009-07-02T16:26:27Z 2009-07-02T16:26:27Z the cake is a lie! http://stackoverflow.com/questions/951503/how-to-sugar-coat-that-you-dont-have-work-experience-with-a-particular-tool-or-l/951537#951537 Comment by Huntrods on How to sugar coat that you don't have work experience with a particular tool or language? Huntrods 2009-06-04T17:15:47Z 2009-06-04T17:15:47Z After the 3rd or 4th technology that you don't know, it gets really, REALLY tiresome to the interviewer. If the person was SO interested in learning it, then why the hell didn't they bother? http://stackoverflow.com/questions/871566/why-do-you-obfuscate-your-code/871601#871601 Comment by Huntrods on Why do you obfuscate your code? Huntrods 2009-05-17T03:10:29Z 2009-05-17T03:10:29Z We have people who would very much like to reverse engineer our code and put out a competing product. -R http://stackoverflow.com/questions/860671/how-to-format-multiple-tables-for-vertical-alignment/860909#860909 Comment by Huntrods on How to format multiple tables for vertical alignment Huntrods 2009-05-14T23:08:12Z 2009-05-14T23:08:12Z I was able to convince the client to allow a rewrite of the loops so that this approach could be used. Didn't take long, and now I have provided what they wanted. -R http://stackoverflow.com/questions/860671/how-to-format-multiple-tables-for-vertical-alignment/860909#860909 Comment by Huntrods on How to format multiple tables for vertical alignment Huntrods 2009-05-14T17:56:10Z 2009-05-14T17:56:10Z Correct. The left column must be entirely created, then the right column. I can access the code to some degree, but cannot change this specific detail of the code. (cannot access that component).