User Nicolas Marchildon - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T18:57:36Zhttp://stackoverflow.com/feeds/user/9843http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1239253/is-there-a-way-to-get-the-list-of-sql-statements-that-were-previously-executed-as1Is there a way to get the list of SQL statements that were previously executed as part of a given transaction in PostgreSQL?Nicolas Marchildon2009-08-06T14:28:15Z2009-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-binding5What is the best OpenGL java binding?Nicolas Marchildon2008-09-15T20:09:44Z2008-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-addressable5How do you make a Swing/JFace/SWT GUI addressable?Nicolas Marchildon2008-11-19T16:59:46Z2008-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-in1Is it possible to simulate installation of Debian packages, still marking them installed?Nicolas Marchildon2008-09-26T15:45:50Z2008-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#1404193Answer by Nicolas Marchildon for How can I simulate ext3 filesystem corruption?Nicolas Marchildon2008-09-26T16:05:13Z2008-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#1239285Comment 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 Marchildon2009-08-15T01:04:13Z2009-08-15T01:04:13ZThis 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#1239435Comment 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 Marchildon2009-08-06T17:55:20Z2009-08-06T17:55:20ZThis 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#284817Comment by Nicolas Marchildon on What is a git topic branch?Nicolas Marchildon2009-06-27T15:12:28Z2009-06-27T15:12:28ZI 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/…</a>http://stackoverflow.com/questions/313722/googlemaps-getlatlng-did-you-mean-suggestion/313726#313726Comment by Nicolas Marchildon on GoogleMaps getLatLng Did you mean suggestionNicolas Marchildon2009-01-02T04:18:11Z2009-01-02T04:18:11ZThis 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#140426Comment by Nicolas Marchildon on Is it possible to simulate installation of Debian packages, still marking them installed?Nicolas Marchildon2008-09-29T18:12:26Z2008-09-29T18:12:26ZCan you point me to one of these scripting interfaces you mention?