User Nicolas Marchildon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T16:36:38Z http://stackoverflow.com/feeds/user/9843 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810614/getting-all-classes-from-a-package/1930598#1930598 0 Answer by Nicolas Marchildon for Getting all Classes from a Package Nicolas Marchildon 2009-12-18T20:47:45Z 2009-12-18T20:47:45Z <p>Using <a href="http://www.johanneslink.net/projects/cpsuite.jsp" rel="nofollow">Johannes Link's ClasspathSuite</a>, I was able to do it like this:</p> <pre><code>import org.junit.extensions.cpsuite.ClassTester; import org.junit.extensions.cpsuite.ClasspathClassesFinder; public static List&lt;Class&lt;?&gt;&gt; getClasses(final Package pkg, final boolean includeChildPackages) { return new ClasspathClassesFinder(new ClassTester() { @Override public boolean searchInJars() { return true; } @Override public boolean acceptInnerClass() { return false; } @Override public boolean acceptClassName(String name) { return name.startsWith(pkg.getName()) &amp;&amp; (includeChildPackages || name.indexOf(".", pkg.getName().length()) != -1); } @Override public boolean acceptClass(Class&lt;?&gt; c) { return true; } }, System.getProperty("java.class.path")).find(); } </code></pre> <p>The ClasspathClassesFinder looks for class files and jars in the system classpath.</p> <p>In your specific case, you could modify acceptClass like this:</p> <pre><code>@Override public boolean acceptClass(Class&lt;?&gt; c) { return ICommand.class.isAssignableFrom(c); } </code></pre> <p>One thing to note: be careful what you return in acceptClassName, as the next thing ClasspathClassesFinder does is to load the class and call acceptClass. If acceptClassName always return true, you'll end up loading every class in the classpath and that may cause an OutOfMemoryError.</p> http://stackoverflow.com/questions/1501853/jira-code-validation-commit-hook-for-git/1885202#1885202 1 Answer by Nicolas Marchildon for JIRA code validation commit hook for 'git' Nicolas Marchildon 2009-12-11T01:06:20Z 2009-12-11T01:06:20Z <p>First, make the hook executable:</p> <pre><code>chmod a+x .git/hooks/commit-msg </code></pre> <p>Append the following lines, substituting PROJECT with your project's code.</p> <pre><code>test "" != "$(grep 'PROJECT-' "$1")" || { echo &gt;&amp;2 "ERROR: Commit message is missing Jira issue number." exit 1 } </code></pre> http://stackoverflow.com/questions/1239253/is-there-a-way-to-get-the-list-of-sql-statements-that-were-previously-executed-as 1 Is there a way to get the list of SQL statements that were previously executed as part of a given transaction in PostgreSQL? Nicolas Marchildon 2009-08-06T14:28:15Z 2009-08-07T05:48:02Z <p>I'm in a situation where I have many connections that are "IDLE in transaction". I spotted them myself. I could kill them, but that wouldn't prevent them from happening again. In fact, it happens regularily.</p> <p>Is there a way to get the list of SQL statements that were previously executed as part of a given transaction?</p> <p>If I could get that, it would be a hell lot easier to figure out the misbehaving client.</p> http://stackoverflow.com/questions/66446/what-is-the-best-opengl-java-binding 5 What is the best OpenGL java binding? Nicolas Marchildon 2008-09-15T20:09:44Z 2008-12-05T22:09:49Z <p>I am trying to achieve better performance for my Java SWT application, and I just found out it is possible to use OpenGL in SWT. It seems there are more than one Java binding for OpenGL. Which one do you prefer?</p> <p>Note that I have never used OpenGL before, and that the application needs to work on Windows, Linux and Mac OS X.</p> http://stackoverflow.com/questions/302606/how-do-you-make-a-swing-jface-swt-gui-addressable 5 How do you make a Swing/JFace/SWT GUI addressable? Nicolas Marchildon 2008-11-19T16:59:46Z 2008-11-22T13:52:21Z <p>I have a "fat" GUI that it getting fairly complex, and I would like to add links from a place to an other, and add back/forward buttons to ease navigation. It seems to me that this would be easier if my application was addressable: each composite could have its URI, and links would use that URI.</p> <p>Are there design patterns applicable to this problem?</p> <p>I could just look at the source code for Firefox or Eclipse, but these are huge projects and it would take a good amount of time making sense of it, so I'm asking here. Is there a simpler example somewhere?</p> <p>Of course it would be simpler if I had build a web app in the first place, but I'm not going to rewrite this huge app from scratch anytime soon.</p> http://stackoverflow.com/questions/140340/is-it-possible-to-simulate-installation-of-debian-packages-still-marking-them-in 1 Is it possible to simulate installation of Debian packages, still marking them installed? Nicolas Marchildon 2008-09-26T15:45:50Z 2008-10-01T03:16:33Z <p>Here's what I would like. Start with a virtual sytem with no installed packages. Then I invoke a tool similar to apt-get to ask it to compute the dependencies and mark all the packages that would be installed as installed. Let this be clear: it says the packages are installed, but they are no files actually installed.</p> <p>Then if I ask for more packages to be "installed", it may propose to add or remove other packages. It wouldn't actually remove packages, but obviously just mark them removed.</p> <p>Now, how would this be useful? I would like to be able to test the installation of packages on a bare Debian or Ubuntu system. I want to know if a package is installable given a certain scenario. To do this with actual installation would take a lot of disk space and time.</p> <p>APT has a "simulate" option, but it does not mark packages as installed.</p> http://stackoverflow.com/questions/140253/how-can-i-simulate-ext3-filesystem-corruption/140419#140419 3 Answer by Nicolas Marchildon for How can I simulate ext3 filesystem corruption? Nicolas Marchildon 2008-09-26T16:05:13Z 2008-09-26T16:05:13Z <p>If you already know what to modify, dd can read a file containing the bytes you want to write, and you tell it where to write them.</p> <p>To figure out where to write, debugfs from the e2fsprogs package could help you.</p> http://stackoverflow.com/questions/1239253/is-there-a-way-to-get-the-list-of-sql-statements-that-were-previously-executed-as/1239285#1239285 Comment by Nicolas Marchildon on Is there a way to get the list of SQL statements that were previously executed as part of a given transaction in PostgreSQL? Nicolas Marchildon 2009-08-15T01:04:13Z 2009-08-15T01:04:13Z This is not the same question at all. http://stackoverflow.com/questions/1239253/is-there-a-way-to-get-the-list-of-sql-statements-that-were-previously-executed-as/1239435#1239435 Comment by Nicolas Marchildon on Is there a way to get the list of SQL statements that were previously executed as part of a given transaction in PostgreSQL? Nicolas Marchildon 2009-08-06T17:55:20Z 2009-08-06T17:55:20Z This has a considerable performance hit, and requires full logging at all times. It would be easier if there was a function or a system view that can be called with a transaction ID. http://stackoverflow.com/questions/284514/what-is-a-git-topic-branch/284817#284817 Comment by Nicolas Marchildon on What is a git topic branch? Nicolas Marchildon 2009-06-27T15:12:28Z 2009-06-27T15:12:28Z I was looking for how to have two branches without common a ancestor commit and found this: <a href="http://madduck.net/blog/2007.07.11:creating-a-git-branch-without-ancestry/" rel="nofollow">madduck.net/blog/&hellip;</a> http://stackoverflow.com/questions/313722/googlemaps-getlatlng-did-you-mean-suggestion/313726#313726 Comment by Nicolas Marchildon on GoogleMaps getLatLng Did you mean suggestion Nicolas Marchildon 2009-01-02T04:18:11Z 2009-01-02T04:18:11Z This only applies when there are multiple results. The question is about the case when there is an error in the address and Google returns no results. http://stackoverflow.com/questions/140340/is-it-possible-to-simulate-installation-of-debian-packages-still-marking-them-in/140426#140426 Comment by Nicolas Marchildon on Is it possible to simulate installation of Debian packages, still marking them installed? Nicolas Marchildon 2008-09-29T18:12:26Z 2008-09-29T18:12:26Z Can you point me to one of these scripting interfaces you mention?