User David Segonds - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T13:00:09Z http://stackoverflow.com/feeds/user/13673 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/163632/which-svg-toolkit-would-you-recommend-to-use-in-java 2 Which SVG toolkit would you recommend to use in Java? David Segonds 2008-10-02T17:45:28Z 2009-11-24T11:16:25Z <p>As a follow-up to another <a href="http://stackoverflow.com/questions/162991/selecting-proper-toolkit-for-a-2d-simulation-project-in-java">question</a>, I was wondering what would be the best way to use SVG in a Java project.</p> http://stackoverflow.com/questions/156275/what-is-the-equivalent-of-the-c-pairl-r-in-java 10 What is the equivalent of the C++ Pair<L,R> in Java? David Segonds 2008-10-01T04:48:41Z 2009-09-01T12:42:46Z <p>Is there a good reason why there is no Pair in Java? What would be the equivalent of this C++ construct? I would rather avoid reimplementing my own.</p> <p>It seems that 1.6 is providing something similar (AbstractMap.SimpleEntry), but this looks quite convoluted.</p> http://stackoverflow.com/questions/913642/qmake-and-qtinstallprefix-how-can-i-select-a-new-location-for-qt-library 1 qmake and QT_INSTALL_PREFIX. How can I select a new location for Qt library? David Segonds 2009-05-27T02:15:38Z 2009-05-27T06:16:57Z <p>I am new to qmake and I am trying to build an existing application. Qt was originally installed in /usr/local/lib/Qt-4.3.5 and 'qmake -query QT_INSTALL_PREFIX' returns that path.</p> <p>I have moved the Qt library to another location and the generated Makefiles are peppered with the /usr/local original path.</p> <p>How can I force qmake to use the new location I selected without recompiling Qt?</p> http://stackoverflow.com/questions/698661/how-important-is-french-when-working-in-france-coding-java/698694#698694 3 Answer by David Segonds for How important is French when working in France coding Java? David Segonds 2009-03-30T19:35:04Z 2009-03-30T19:35:04Z <p>I guess it depends on the company. I have been working for a French group for 16 years where all documentation (developer oriented and user oriented) was in English. The product was sold to French companies among others and everything was in English.</p> <p>As a developers or IT guy, you need to understand French to get along with your colleagues but you should be able to program in English in most cases.</p> http://stackoverflow.com/questions/555693/how-can-i-start-and-stop-services-on-a-remote-machine/555817#555817 1 Answer by David Segonds for How can I start and stop services on a remote machine? David Segonds 2009-02-17T07:38:41Z 2009-03-20T17:47:43Z <p>You may want to look into <a href="http://technet.microsoft.com/en-us/sysinternals/bb896649.aspx" rel="nofollow">PSTools</a> from <a href="http://technet.microsoft.com/en-us/sysinternals/default.aspx" rel="nofollow">SysInternals</a>. Those tools are freely available and can help you manage processes on a remote Windows machine.</p> <p>The tools included in the PsTools suite, which are downloadable as a package, are:</p> <pre> PsExec - execute processes remotely PsFile - shows files opened remotely PsGetSid - display the SID of a computer or a user PsInfo - list information about a system PsKill - kill processes by name or process ID PsList - list detailed information about processes PsLoggedOn - see who's logged on locally and via resource sharing PsLogList - dump event log records PsPasswd - changes account passwords PsService - view and control services PsShutdown - shuts down and optionally reboots a computer PsSuspend - suspends processes PsUptime - shows you how long a system has been running since its last reboot</pre> http://stackoverflow.com/questions/651562/good-tutorials-on-code-management/651729#651729 0 Answer by David Segonds for Good tutorials on code management? David Segonds 2009-03-16T19:02:52Z 2009-03-16T19:02:52Z <p>My favorite document on the subject remains <a href="http://www.perforce.com/perforce/bestpractices.html" rel="nofollow">High-level Best Practices in Software Configuration Management</a>. This is an excellent white paper that I still use as reference whenever I need to introduce colleagues to good SCM practices. Here is the abstract:</p> <blockquote> <p>When deploying new SCM (software configuration management) tools, implementers sometimes focus on perfecting fine-grained activities, while unwittingly carrying forward poor, large-scale practices from their previous jobs or previous tools. The result is a well-executed blunder. This paper promotes some high-level best practices that reflect the authors' experiences in deploying SCM. </p> </blockquote> http://stackoverflow.com/questions/631516/strlen-on-non-null-terminated-char-string/631523#631523 1 Answer by David Segonds for strlen() on non-null-terminated char string? David Segonds 2009-03-10T17:51:12Z 2009-03-10T17:51:12Z <p>It will return the number of characters encountered before '\0' is found.</p> http://stackoverflow.com/questions/613619/why-is-challenge-response-approach-a-poor-solution-for-forgotten-passwords/613685#613685 2 Answer by David Segonds for Why is challenge-response approach a poor solution for forgotten passwords? David Segonds 2009-03-05T05:41:54Z 2009-03-05T05:41:54Z <p>As explained in this <a href="http://blog.wired.com/27bstroke6/2008/09/palin-e-mail-ha.html" rel="nofollow">article</a>, Governor Palin e-mail account was recently hacked using answers to previously asked questions. From the article:</p> <blockquote> <p>As detailed in the postings, the Palin hack didn't require any real skill. Instead, the hacker simply reset Palin's password using her birthdate, ZIP code and information about where she met her spouse -- the security question on her Yahoo account, which was answered (Wasilla High) by a simple Google search.</p> </blockquote> http://stackoverflow.com/questions/609946/communication-problem-with-distributed-teams/610071#610071 1 Answer by David Segonds for Communication problem with Distributed teams David Segonds 2009-03-04T10:48:22Z 2009-03-04T10:48:22Z <p>Here is what we are doing to handle geographically distributed teams (China and Canada):</p> <ul> <li>Make sure that the same processes are used worldwide</li> <li>Centralize continuous integration system and SCM</li> <li>Conduct a weekly meeting where you review the week achievements, week challenges, and future plan. Have the development managers and product manager participate</li> <li>Implement scrum and run daily scrum of scrums</li> <li>Identify the bottlenecks and make sure that a person with enough authority resides in both offices</li> <li>Meet from time to time (every quarter or so)</li> <li>Train people to describe their problem precisely</li> <li>Pick up the phone if the problem is not resolved after to mail exhanges</li> <li>Escalate to manager if the problem is not solved quickly</li> <li>Trust the other office</li> </ul> http://stackoverflow.com/questions/609127/generating-a-tamper-proof-signature-of-some-data/609181#609181 1 Answer by David Segonds for Generating a Tamper Proof Signature of some data? David Segonds 2009-03-04T04:06:05Z 2009-03-04T04:06:05Z <p>You may want to leverage PGP by using <a href="http://www.gnupg.org/related%5Fsoftware/libraries.en.html" rel="nofollow">GPGME</a> (GnuPG Made Easy) a library designed to make access to GnuPG easier for applications. </p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/607406#607406 4 Answer by David Segonds for How to build a distributed robust linked list on several computers on the net? David Segonds 2009-03-03T17:48:22Z 2009-03-03T17:48:22Z <p>You may want to read this <a href="http://labs.google.com/papers/gfs.html" rel="nofollow">paper</a> on the Google File System. From the abstract:</p> <blockquote> <p>We have designed and implemented the Google File System, a scalable distributed file system for large distributed data-intensive applications. It provides fault tolerance while running on inexpensive commodity hardware, and it delivers high aggregate performance to a large number of clients. </p> </blockquote> http://stackoverflow.com/questions/607322/what-are-the-advantages-of-a-64-bit-processor/607354#607354 5 Answer by David Segonds for What are the advantages of a 64-bit processor? David Segonds 2009-03-03T17:31:50Z 2009-03-03T17:31:50Z <p>With a 64bit Operating System, you can address over 4GB of RAM. This is useful for some applications.</p> <p>For example, you can load a large data cube in memory and cut and slice it more effectively (seismic data or medical data for example).</p> http://stackoverflow.com/questions/607054/where-do-we-draw-the-line-with-vocabulary-when-naming/607077#607077 8 Answer by David Segonds for Where do we draw the line with vocabulary when naming? David Segonds 2009-03-03T16:20:34Z 2009-03-03T16:37:21Z <p>Precise is more important. The initial developer or you could have left a comment afterward to explain the naming if it is not a term that can easily be found in a dictionary or generally known to the audience.</p> http://stackoverflow.com/questions/606761/synchronize-clocks-over-internet/606789#606789 2 Answer by David Segonds for synchronize clocks over internet David Segonds 2009-03-03T15:15:46Z 2009-03-03T15:15:46Z <p>Did you try to have one of the machine as NTP server for the other? May be they won't be in sync with the 'real' time but this may bring you within the precision you require.</p> http://stackoverflow.com/questions/606631/problem-with-function-removing-accents-and-other-characters-in-php/606668#606668 3 Answer by David Segonds for Problem with function removing accents and other characters in PHP David Segonds 2009-03-03T14:49:56Z 2009-03-03T14:49:56Z <p>You may want to try <a href="http://uk.php.net/manual/en/function.iconv.php" rel="nofollow">iconv</a>. </p> http://stackoverflow.com/questions/606448/python-design-patterns/606455#606455 2 Answer by David Segonds for python design patterns David Segonds 2009-03-03T13:50:10Z 2009-03-03T13:50:10Z <p>Good <a href="http://www.youtube.com/watch?v=0vJJlVBVTFg" rel="nofollow">video</a> on the subject.</p> http://stackoverflow.com/questions/604917/is-qt-worth-learning/604969#604969 9 Answer by David Segonds for Is Qt worth learning? David Segonds 2009-03-03T03:14:19Z 2009-03-03T03:14:19Z <p>The teams have been involved in two companies have been using Qt for over seven years. If you need to develop a professional C++ desktop application that runs on Linux and Windows, I would not recommend any other options.</p> <p>Until now, the cost may have been an issue but with the upcoming Qt 4.5 free version for all, this won't be an issue.</p> <p>So, if you are likely to develop a cross-platform C++ GUI application, seriously consider learning Qt. You won't regret it.</p> http://stackoverflow.com/questions/597188/encryption-with-multiple-different-keys/597200#597200 8 Answer by David Segonds for Encryption with multiple different keys? David Segonds 2009-02-28T00:34:23Z 2009-02-28T08:59:01Z <p><a href="http://www.gnupg.org/" rel="nofollow">GnuPG</a> does multi-key encryption in standard.</p> <p>The following command will encrypt <code>doc.txt</code> using the public key for Alice and the public key for bob. Alice can decrypt using or private key. Bob can also decrypt using his private key.</p> <pre><code>gpg --encrypt --recipient alice@example.com \ --recipient bob@example.com doc.txt </code></pre> <p>This feature is detailed in the user guide section entitled "<a href="http://www.gnupg.org/gph/en/manual.html#AEN111" rel="nofollow">Encrypting and decrypting documents</a>"</p> http://stackoverflow.com/questions/596916/when-should-you-not-scrum/597035#597035 2 Answer by David Segonds for When should you not Scrum? David Segonds 2009-02-27T23:10:49Z 2009-02-27T23:10:49Z <p>I am a fervent Scrum practitioner. However, there is one instance when we are not using this methodology.</p> <p>If your project enters the deployment phase, where the only thing you are doing is fixing defects, for your Alpha and Beta phase, then using Scrum would be counterproductive. It is hard to estimate beforehand the complexity of a given fix and you have defects arriving all the time if your Alpha and Beta testers are doing their job properly. In that case, we have a scoring mechanism and we use cutoff values to know when to stop.</p> http://stackoverflow.com/questions/594589/getting-out-of-a-deep-career-rut/594620#594620 14 Answer by David Segonds for Getting out of a deep career rut David Segonds 2009-02-27T12:50:31Z 2009-02-27T12:50:31Z <p>Best book on the subject is "<a href="http://rads.stackoverflow.com/amzn/click/1580088678" rel="nofollow">What is the color of your parachute?</a>".</p> <p>Also, it is normal to feel incompetent sometimes. This is part of learning:</p> <ol> <li>unconscious incompetence</li> <li>conscious incompetence</li> <li>conscious competence</li> <li>unconscious competence</li> </ol> <p>Right now, you are in phase 2. This may sound artificial or theoretical but I believe instead quite real.</p> <p>Sometimes, it take a while to find one's path. </p> http://stackoverflow.com/questions/589015/what-is-the-most-difficult-type-of-software-to-write/589123#589123 6 Answer by David Segonds for What is the most difficult type of software to write? David Segonds 2009-02-26T04:36:50Z 2009-02-26T04:36:50Z <p>The most difficult software to write is software for which you don't have clear requirements from your customer (whoever the customer may be).</p> http://stackoverflow.com/questions/584824/guaranteed-lifetime-of-temporary-in-c/584837#584837 3 Answer by David Segonds for Guaranteed lifetime of temporary in C++? David Segonds 2009-02-25T05:43:03Z 2009-02-25T05:43:03Z <p>After the call to GetString returns.</p> http://stackoverflow.com/questions/581589/introducing-unit-testing-to-a-wary-team/581613#581613 2 Answer by David Segonds for Introducing unit testing to a wary team David Segonds 2009-02-24T12:46:06Z 2009-02-24T12:59:37Z <p>You could introduce them as smoke tests on your continuous integration system. The build is not valid if some tests have failed. You can only add few tests at first.</p> <p>Once the team sees that bugs are found when builds failed, it may help you push the notion of unit tests further.</p> http://stackoverflow.com/questions/577176/adding-unversioned-files-to-subversion/577180#577180 4 Answer by David Segonds for Adding unversioned files to subversion David Segonds 2009-02-23T10:38:20Z 2009-02-23T10:43:48Z <p>I would create a script that generates the configuration files when ran. This way, you do not need to worry about your SCM getting in the way.</p> http://stackoverflow.com/questions/576532/is-dying-is-awesome-preferred/576550#576550 1 Answer by David Segonds for Is "Dying is Awesome" preferred? David Segonds 2009-02-23T04:40:03Z 2009-02-23T04:40:03Z <p>What does your customer expects?</p> <p>It all comes back to that. If the customer can handle the program dying and they can restart it, so be it.</p> <p>Sometimes, it is better to let a process die and create another to handle requests.</p> <p>Sometimes, it is better to attempt to resolve the problem.</p> http://stackoverflow.com/questions/576372/identifying-cds/576383#576383 1 Answer by David Segonds for Identifying CDs David Segonds 2009-02-23T02:44:53Z 2009-02-23T02:44:53Z <p>You may want to look a the Wikipedia <a href="http://en.wikipedia.org/wiki/Cddb" rel="nofollow">article</a> to learn how CDDB work. Then you can look at <a href="http://libcddb.sourceforge.net/" rel="nofollow">libcddb</a> to implement what you want in C. The source code should give you plenty of clues in case C is not your language of choice.</p> http://stackoverflow.com/questions/576284/what-other-languages-should-i-learn-and-what-paradigms/576328#576328 1 Answer by David Segonds for What other languages should I learn? and what paradigms? David Segonds 2009-02-23T02:01:13Z 2009-02-23T02:01:13Z <p>You seem to have a great base here and given your breadth of knowledge, you should not have any problem picking up other languages.</p> <p>At this point, I would suggest you focus on architectural and design principles. I feel that it what distinguish a coder from a developer. It is great to know a language but you need to be able to put it to good use through the understanding of design patterns, design principles, abstraction through layers, etc.</p> <p>Don't forget expanding your horizons by understandting and evaluating the different programming methodologies that are suitable for the task at hand: Scrum, Waterfall, XP, etc.</p> <p>I found that <a href="http://www.se-radio.net/" rel="nofollow">SE-Radio</a> is a good way to introduce oneself to different paradigms and ways to combine existing knowledge to build fully functional applications.</p> http://stackoverflow.com/questions/575448/how-does-peer2peer-work-through-a-router/576082#576082 0 Answer by David Segonds for How does peer2peer work through a router? David Segonds 2009-02-22T23:35:05Z 2009-02-22T23:35:05Z <p>You may want to read up on <a href="http://en.wikipedia.org/wiki/NAT_traversal" rel="nofollow">NAT Traversal</a>. NAT traversal is a general term for techniques that establish and maintain TCP/IP network connections traversing network address translation (NAT) gateways.</p> http://stackoverflow.com/questions/573915/from-an-employers-perspective-breadth-or-depth-in-new-graduate/573976#573976 1 Answer by David Segonds for From an employer's perspective: Breadth or Depth in new graduate? David Segonds 2009-02-22T00:00:49Z 2009-02-22T00:00:49Z <p>When I am hiring developers, I am looking at the following:</p> <ul> <li>Experience in the field. How much do they relate to what we do</li> <li>Knowledge of the programming language we use</li> <li>Knowledge of OO Design</li> <li>Ability to solve problems</li> </ul> <p>Therefore, I guess that in our case the answer is breadth rather than depth. When hiring newly graduates I want to be able to capitalize on their ability to learn and pick up things quickly.</p> <p>My guess is by learning Lisp, you will increase your ability to learn and to look at problems from different perspective.</p> <p>This is very important for me as you never know what problem tomorrow will bring and you may need to use a different skill set.</p> <p>My developers are using a combination of programming language, scripting, matlab, profilers, etc.</p> <p>I appreciate when newly graduate not only understand how to do things but also why they do them and how it works internally. For example, do you know how virtual methods are implemented at the language level?</p> http://stackoverflow.com/questions/573849/whats-the-least-painful-way-to-transfer-local-subversion-changes-to-another-mach/573852#573852 1 Answer by David Segonds for What's the least painful way to transfer local Subversion changes to another machine? David Segonds 2009-02-21T22:47:12Z 2009-02-21T22:47:12Z <p>I would create a temporary branch for this purpose. This way, you are only using SVN tools at your disposal and you are not polluting the meta-meta or copying the artifacts.</p> <p>In addition, it looks like you are checking in your code at spaced interval and having a branch will also prevent data loss in case your hard drive crashes.</p> http://stackoverflow.com/questions/217578/point-in-polygon-aka-hit-test/217607#217607 Comment by David Segonds on Point in Polygon aka hit test David Segonds 2009-11-12T23:14:06Z 2009-11-12T23:14:06Z @emilio, if the point is far away from the triangle, I don't see how the angle formed by the point and two apices of the triangle will be 90 degrees. http://stackoverflow.com/questions/642870/changing-unix-group-for-files Comment by David Segonds on Changing unix group for files David Segonds 2009-03-13T14:07:39Z 2009-03-13T14:07:39Z This is not programming related. What are the permissions on the directory? http://stackoverflow.com/questions/613619/why-is-challenge-response-approach-a-poor-solution-for-forgotten-passwords/613685#613685 Comment by David Segonds on Why is challenge-response approach a poor solution for forgotten passwords? David Segonds 2009-03-07T01:03:11Z 2009-03-07T01:03:11Z Yes, more layers are better. http://stackoverflow.com/questions/618859/how-can-i-make-my-own-c-compiler-understand-templates-nested-classes-etc-str Comment by David Segonds on How can I make my own C++ compiler understand templates, nested classes, etc. strong features of C++? David Segonds 2009-03-06T16:26:56Z 2009-03-06T16:26:56Z @David Thornley: You are right, but honestly do you believe it applies in this case? http://stackoverflow.com/questions/618859/how-can-i-make-my-own-c-compiler-understand-templates-nested-classes-etc-str Comment by David Segonds on How can I make my own C++ compiler understand templates, nested classes, etc. strong features of C++? David Segonds 2009-03-06T13:35:07Z 2009-03-06T13:35:07Z It is interesting that you estimate that you will be able to reimplement features on your own that took years of specialists to implement. Wow! http://stackoverflow.com/questions/618353/how-can-i-send-useful-stackoverflow-articles-to-my-kindle Comment by David Segonds on How can I send useful Stackoverflow articles to my Kindle? David Segonds 2009-03-06T10:24:18Z 2009-03-06T10:24:18Z stackoverflow.uservoice.com ... http://stackoverflow.com/questions/611401/how-to-write-a-batch-file-to-read-a-specific-data-like-to-another-text-file Comment by David Segonds on How to write a batch file to read a specific data like to another text file? David Segonds 2009-03-04T17:58:30Z 2009-03-04T17:58:30Z Don't down vote. Mark as offensive instead. http://stackoverflow.com/questions/610023/timeout-expired Comment by David Segonds on Timeout expired David Segonds 2009-03-04T10:33:17Z 2009-03-04T10:33:17Z What is your question? http://stackoverflow.com/questions/605987/using-qt-and-boost-together Comment by David Segonds on Using Qt and Boost together David Segonds 2009-03-03T18:00:50Z 2009-03-03T18:00:50Z <a href="http://stackoverflow.com/questions/360160/mixing-qt-and-boost" rel="nofollow" title="mixing qt and boost">stackoverflow.com/questions/360160/&hellip;</a> http://stackoverflow.com/questions/607322/what-are-the-advantages-of-a-64-bit-processor/607354#607354 Comment by David Segonds on What are the advantages of a 64-bit processor? David Segonds 2009-03-03T17:35:34Z 2009-03-03T17:35:34Z Granted. This is the only reason that compels me to upgrade computers to 64bit. In major oil companies, 24Gb of RAM on the desktop is now common (Linux or Windows). http://stackoverflow.com/questions/607054/where-do-we-draw-the-line-with-vocabulary-when-naming/607077#607077 Comment by David Segonds on Where do we draw the line with vocabulary when naming? David Segonds 2009-03-03T16:38:00Z 2009-03-03T16:38:00Z Thank you for your feedback. I modified my answer accordingly. Or at least tried to. :-) http://stackoverflow.com/questions/607054/where-do-we-draw-the-line-with-vocabulary-when-naming/607077#607077 Comment by David Segonds on Where do we draw the line with vocabulary when naming? David Segonds 2009-03-03T16:29:27Z 2009-03-03T16:29:27Z This may sound silly but English being my second language, I had to look up 'idempotent'. I agree that in this particular case, depending on the audience (i.e. English speaking) the comment may not be warranted. In principle, the class should be commented to explain its purpose and responsibilities. http://stackoverflow.com/questions/606739/comparison-between-two-big-directories Comment by David Segonds on Comparison between two big directories David Segonds 2009-03-03T15:10:01Z 2009-03-03T15:10:01Z did you try 'diff -r'? How is this programming related? http://stackoverflow.com/questions/606704/list-daemons-in-ubuntu Comment by David Segonds on List daemons in Ubuntu? David Segonds 2009-03-03T15:02:03Z 2009-03-03T15:02:03Z netstat -a will list the daemon listening on TCP/IP ports. Investigating /etc/rc.d directories will give you an idea of what is running. However, this is not-programming related. http://stackoverflow.com/questions/606306/how-to-migrate-contacts-from-gmail-account-to-new-google-apps-based-mail-account Comment by David Segonds on How to migrate contacts from gmail account to new google apps based mail account? David Segonds 2009-03-03T13:10:11Z 2009-03-03T13:10:11Z I used Google sync with my Blackberry to achieve that and it is not programming related.