User Francis Beaudet - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:06:58Zhttp://stackoverflow.com/feeds/user/14604http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/602937/using-the-g-c-compiler-from-cygwin/602951#6029512Answer by Francis Beaudet for Using the g++ C++ compiler from cygwinFrancis Beaudet2009-03-02T16:24:22Z2009-03-02T16:24:22Z<p>I am assuming you are using the Windows Shell here. If you invoke the compiler from a cygwin Bash shell, all the paths should be set for you. </p>
http://stackoverflow.com/questions/254639/jdbc-when-can-i-close-what/254652#2546521Answer by Francis Beaudet for jdbc: when can i close whatFrancis Beaudet2008-10-31T19:26:31Z2008-10-31T19:42:01Z<p>The answer depends on your JDBC driver unfortunately. What you wrote there might work.</p>
<p>However, the general rule is that you close your statement only when you are done with the corresponding resultset. </p>
<p>EDIT: I realize that you had a second question where you asked about the effects of not closing the statements/Resultsets and so on. The effects also depend on your JDBC driver but, it could lead to significant resource leaks.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202757#2027573Answer by Francis Beaudet for Coding in Other (Spoken) LanguagesFrancis Beaudet2008-10-14T20:52:33Z2008-10-14T20:58:20Z<p>Well, As others pointed-out, the keywords and system calls would likely remain in English. </p>
<p>However, understanding the keywords of the language is only a small part in understanding the code. Variable names, function names and comments all risk being in the native language of the author.</p>
<p><strong>Edit</strong>: I just flashed-back to my youth where I went in the mapping tables of my TRS-80 built-in BASIC to switch the keywords to French. I could change all the keywords but I couldn't make any of them larger. Made for funny programs. </p>
http://stackoverflow.com/questions/200918/how-do-you-control-architecture-in-an-agile-project/200956#2009560Answer by Francis Beaudet for How do you control architecture in an agile project?Francis Beaudet2008-10-14T12:33:10Z2008-10-14T12:33:10Z<p>Without doing big design up-front, there is usually a basic design that applies to the each project. Usually, this defines basic layers to respect in the design of the application. Most other design decisions are made by each developer.</p>
<p>Our development process is based on short development bursts with frequent peer review. The quality of each developer's architecture decision is validated at peer-review time. This also includes validating that the code follows the <em>product architecture</em>.</p>
<p>Depending on the type of project and the tools that are available, we also use tools like <a href="http://innig.net/macker/" rel="nofollow">macker</a> to automatically validate the integrity of the layer-cake. </p>
http://stackoverflow.com/questions/187619/is-there-a-javascript-solution-to-generating-a-table-of-contents-for-a-page/187664#1876643Answer by Francis Beaudet for Is there a JavaScript solution to generating a "table of contents" for a page?Francis Beaudet2008-10-09T15:01:56Z2008-10-09T15:01:56Z<p>JQuery comes to mind as a fast and easy solution. A quick google search for <em>jquery table of contents</em> yields two promising results:</p>
<ul>
<li><a href="http://solidgone.org/jqtoc" rel="nofollow">jqTOC</a></li>
<li><a href="http://www.packtpub.com/article/using-jquery-script-for-creating-dynamic-table-of-contents" rel="nofollow">Article on how to do this manually</a></li>
</ul>
http://stackoverflow.com/questions/129777/how-do-you-deal-with-clients-who-have-no-processes-have-no-methodology-and-ask-f/129865#12986527Answer by Francis Beaudet for How do you deal with clients who have no processes, have no methodology and ask for things to be done for yesterday?Francis Beaudet2008-09-24T20:46:29Z2008-09-24T20:46:29Z<p>Something similar happened to me recently. I was asked by the owner of a company to bring order to the development arm of his company. This a manufacturing company that takes orders online. Everything else in the company was well tuned except for the software aspect which was having all sort of issues.</p>
<p>After trying to talk to everyone and trying to get everyone lined-up to be more productive for a few weeks, I was getting nowhere. And then it dawned on me. What the owner of the company wanted was for me to go all <a href="http://www.foodtv.ca/ramsayskitchennightmares/" rel="nofollow">Gordon Ramsay</a> on his team.</p>
<p>So we went to the operations guy and asked him to revoke the developers access to production. Also move the source into a repository under our control where they had no write access. We instituted a policy where the only code that could get committed had to go in via a patch; open-source style. This slowed down everyone significantly but there was no more rogue code making it to production.</p>
<p>As far as crazy demands to get things done yesterday, we solved that by starting to say no. More precisely, we started scheduling these requests for specific release dates instead of saying yes and doing them whenever we could. So far, no one has complained. I think that the only reason why everything was asked to be done yesterday is historical. No one ever really said no before.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102774#10277420Answer by Francis Beaudet for What was your first home computer?Francis Beaudet2008-09-19T15:22:44Z2008-09-19T17:16:37Z<p><a href="http://en.wikipedia.org/wiki/TRS-80_Color_Computer" rel="nofollow">TRS-80 Color Computer</a> First edition with the chiclets keyboard.</p>
<p><img src="http://www.ntrautanen.fi/computers/other/images/tandy_trs80.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/96349/automatically-verify-my-websites-links-are-pointing-to-urls-that-exist/96383#963830Answer by Francis Beaudet for Automatically verify my website's links are pointing to urls that exist?Francis Beaudet2008-09-18T20:09:37Z2008-09-18T20:09:37Z<p>I used Xenu's Link Sleuth in the past. It will crawl your site and tell you which links point to nowhere. It is not super fancy but it works.</p>
<p><a href="http://en.wikipedia.org/wiki/Xenu%27s_Link_Sleuth" rel="nofollow">http://en.wikipedia.org/wiki/Xenu%27s_Link_Sleuth</a></p>
<p>The Wikipedia page lists a whole bunch of other products.</p>
http://stackoverflow.com/questions/94606/how-do-you-handle-poor-quality-code-from-a-third-party-contractor-in-another-coun/94891#948916Answer by Francis Beaudet for How do you handle poor quality code from a third party contractor in another country?Francis Beaudet2008-09-18T17:48:49Z2008-09-18T17:48:49Z<p>First of all, I don't think that this is a problem that is specific to having work done offshore. Most developers like to write code and not read it. So, it really doesn't depend where the work is done, if you have a team of developers that inherits a chuck of code from another team. It is very likely that the receiving team will declare that the code is crap.</p>
<p>If the product is of dubious quality and it has a lot of externally visible defects, then it is different.</p>
<p>I think that a good way to avoid this is to make the team that wrote the code responsible to fix it. At their expense, under warranty. Outsourcing firms that provide time & material programming services usually don't offer that. Outsourcing firms that provide a good warranty might provide a better service and charge a price that is much closer to what it should really cost. Otherwise they won't stay in business too long. This will bring the in-house programming team back into play and it becomes a more reasonable business decision as to who does the work.</p>
<p>Negotiating an outsourcing contract with a warranty is a lot harder than just throwing money over the wall for man-hours. But this is something that a manager might understand. Everything else they buy for the company has some sort of warranty. Why not the software?</p>
http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/92295#922950Answer by Francis Beaudet for How do you vent stress as a programmer?Francis Beaudet2008-09-18T12:58:50Z2008-09-18T12:58:50Z<p>I usually keep a home-improvement project on the go. Repaint this, reframe that, hang this, take that down.</p>
<p>I find that manual work is really rewarding because it is very concrete. It has a start and it has an end. It contrasts well with the more abstract work that I do day-in day out.</p>
<p>Doing something social also helps a lot. I play boardgames. Which really are an excuse to sit around a table with real people and have a drink.</p>
http://stackoverflow.com/questions/86998/whats-the-best-way-for-a-developer-to-start-his-her-own-business/87109#871090Answer by Francis Beaudet for What's the best way for a developer to start his/her own business?Francis Beaudet2008-09-17T20:11:29Z2008-09-17T20:11:29Z<p>Often, the difficult thing is finding a valuable problem to solve. A problem that people will be happy to pay money to have solved. And then, validating that this problem can be solved with software. You can also find a problem that is caused by software.</p>
<p>In the first case, you're likely looking at writing a product. In the other case, you are probably looking at offering a service.</p>
<p>One thing that going into business taught me is that starting a new business is not the best way to get into a mode where you will write "good" software. At least, not all the time. If you become an entrepreneur, you will have to make compromises. And often, this means that you will have to make sacrifices with your architecture or design. You can still deliver a quality product or a good service. But when you are an entrepreneur, getting there is usually more important than taking the high road.</p>
http://stackoverflow.com/questions/84306/have-you-ever-faced-an-ethical-issue-when-creating-an-application/85590#855903Answer by Francis Beaudet for Have you ever faced an ethical issue when creating an application?Francis Beaudet2008-09-17T17:25:38Z2008-09-17T17:25:38Z<p>I had been engaged to write a browser plugin that would insert adds in the text as you browse. My customer had convinced me to do it because it was part of one of those schemes where you get paid to voluntarily be the target of those adds.</p>
<p>However, when the project was completed, the customer asked me to implement a rootkit to make the application "stealthy". I should have known better when I started the project. Then, it became a no-brainer... I walked away.</p>
<p>They found someone else that didn't have a problem writing a rootkit. I am not too proud of this but I know my code is out there somewhere bugging people. I also know that it was re-purposed to do keyword scanning in a spyware app. Yep... I'm really proud of that :(</p>