User ggervais - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:12:49Zhttp://stackoverflow.com/feeds/user/10687http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1800285/asp-net-mvc-castle-activerecord-show-sql-queries1ASP.NET MVC - Castle ActiveRecord - Show SQL queriesggervais2009-11-25T22:10:35Z2009-11-25T22:28:45Z
<p>I'm using ASP.NET MVC with <a href="http://www.castleproject.org/activerecord/index.html" rel="nofollow">Castle ActiveRecord</a> as my persistance layer.</p>
<p>I want to know if it's possible to show the SQL queries being executed on my MySQL server.</p>
<p>I know it's possible in a Web application using the "show_sql" property in the Castle XML configuration file, but I don't know how to do it using a Web application, since I don't have access to the Console.</p>
<p>I think I can use log4net to do it, but after some research using Google, I haven't been able to come up with a solution.</p>
http://stackoverflow.com/questions/125463/bad-oo-design-problem-i-need-some-general-functionality-in-java-but-dont-know2Bad OO design problem - I need some general functionality in Java but don't know how to implement itggervais2008-09-24T04:47:56Z2009-09-29T15:54:54Z
<p>Hello,</p>
<p>I'm developping a small UML Class editor in Java, mainly a personal project, it might end up on SourceForge if I find the time to create a project on it.</p>
<p>The project is quite advanced : I can create classes, move them around, create interfaces, create links, etc.</p>
<p>What I'm working on is the dialog box for setting class/interface properties and creating new classes/interfaces.</p>
<p>For example, I have a class that extends JDialog. This is the main "window" for editing classes and interfaces (well, there a class for each). It contains a JTabbedPane which in turn contain JPanels.</p>
<p>This JPanel are actually custom ones. I created an abstract class that extends JPanel. This class uses components (defined by its subclasses) and add their values to a JTable (also contained in the JPanel).</p>
<p>For example, if I want to edit a class' attributes, the JPanel will contain a JTextField for entering the name of the attribute as well as another one for entering its type. There is also a set of button for processing the data entered in these fields. When I click "Save", the data I entered in the JTextFields are added into the JTable (à la Enterprise Architect). The concreted class that extends the abstract one are responsible for defining control and deciding what do to with the data when a line is added or deleted from the JTable. The JTable management is, however, the responsability of the abstract class.</p>
<p>Here is my problem : in OO, a class has methods, and an interface has methods too. I told myself : I could use the same concrete custom JPanel (AttributesPanel (which extends the abstract JPanel class I created)) to store the methods for a class or and interface.</p>
<p>However, the class needs to keep a copy (as an attribute) of the class or interface I am working on. That way, when a method is added to it, I can call editedClass.addMethod() (or editedInterface.addMethod()). The problem is that I have no way of telling whether I work on a Class or and Interface.</p>
<p>The solution I found is ugly : keep an attribute editedClass and an attribute editedInterface in the AttributesPanel class. According to whether I am editing a class or interface, one of these attributes will be null while to other will not.</p>
<p>It is quite ugly if you ask me. In fact, I can hear my software engineering teachers in my head screaming in agony while burning (well, actually, freezing) in the ninth circle of Hell.</p>
<p>The quick way to fix this design problem would be to create an interface called "ObjectWithMethods", which my Class and Interface classes will implement. That way, I will only have to put an ObjectWithMethods parameter in my AttributesPanel class.</p>
<p>But does that mean that I should create a class named "ObjectWithAttributes", or "ObjectWithBlahBlah" ? I see some good "TheDailyWTF" potential here... Besides, I don't think I should modify my domain objects (a Class, Interface, Note, Relationship (for my UML editor)) or create an new Interface just for the sake of some UI consideration....</p>
<p>What do you think?</p>
<p>I you need more clarifications (because I am very tired right now and I tend to right quite badly (especially in English - my mother tongue is French) while in this state of mind...), just ask and I'll edit this question.</p>
<p>Cheers,</p>
<p>Guillaume.</p>
http://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pages1[ASP.NET] Access a content control in C# when using Master Pagesggervais2009-06-29T20:44:51Z2009-06-30T02:54:38Z
<p>Good day everyone,</p>
<p>I am building a page in ASP.NET, and using Master Pages in the process.</p>
<p>I have a Content Place Holder name "cphBody" in my Master Page, which will contain the body of each Page for which that Master Page is the Master Page.</p>
<p>In the ASP.NET Web page, I have a Content tag (referencing "cphBody") which also contains some controls (buttons, Infragistics controls, etc.), and I want to access these controls in the CodeBehind file. However, I can't do that directly (this.myControl ...), since they are nested in the Content tag.</p>
<p>I found a workaround with the FindControl method.</p>
<pre><code>ContentPlaceHolder contentPlaceHolder = (ContentPlaceHolder) Master.FindControl("cphBody");
ControlType myControl = (ControlType) contentPlaceHolder.FindControl("ControlName");
</code></pre>
<p>That works just fine. However, I am suspecting that it's not a very good design. Do you guys know a more elegant way to do so?</p>
<p>Thank you!</p>
<p>Guillaume Gervais. </p>
http://stackoverflow.com/questions/240774/mandatory-cloneable-interface-in-java2Mandatory cloneable interface in Javaggervais2008-10-27T17:40:18Z2009-05-14T03:11:52Z
<p>Hi everybody,</p>
<p>I'm having a small problem in Java. I have an interface called Modifiable. Objects implementing this interface are Modifiable.</p>
<p>I also have a ModifyCommand class (with the Command pattern) that receive two Modifiable objects (to swap them in a list further on - that's not my question, I designed that solution already).</p>
<p>The ModifyCommand class starts by making clones of the Modifiable objects. Logically, I made my Modifiable interface extends Cloneable. The interface then defines a clone() method that its implementing classes must redefine.</p>
<p>Then, in ModifyCommand, I can do : firstModifiableObject.clone(). My logic is that classes implementing Modifiable will have to redefine the clone method from Object, as they will be Cloneable (that's what I want to do).</p>
<p>The thing is, when I define classes implements Modifiable and I want to override clone(), it won't let me, stating that the clone() method from the Object class hides the one from Modifiable.</p>
<p>What should I do? I'm under the impression that "I'm doing it wrong"...</p>
<p>Thanks,</p>
<p>Guillaume.</p>
<p>Edit : it think I will forget the clone() thing. I will either a) assume that the object passed to the Modifiable object (implementing the interface) is already cloned or b) make another method called, for example, copy(), that would basically do a deep-copy of the Modifiable object (or maybe the Generic solution will work...).</p>
http://stackoverflow.com/questions/593463/extracting-raw-audio-waveform-from-an-mp31Extracting raw audio/waveform from an MP3ggervais2009-02-27T03:58:38Z2009-02-27T05:22:53Z
<p>Hi all,</p>
<p>This question has been in my mind for a few years and I never actually found the answer for this.</p>
<p>What I would like to do is extract the actual waveform/PCM of an MP3 file, so that I can play it using the soundcard (of course).</p>
<p>Ideally I would be experimenting some DSP effects.</p>
<p>My first step was to look into LAME, but I didn't find anything relevant about MP3 decoding in a program or stuff like that.</p>
<p>So I'm asking where I could find something like this.</p>
<p>What language should I use? I was thinking C, but maybe there are programming languages out there that would do the job more efficiently.</p>
<p>Thanks!</p>
<p>Guillaume.</p>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/243146#2431462Answer by ggervais for Hidden features of Perl?ggervais2008-10-28T12:48:30Z2009-02-23T06:49:20Z<p>You can replace the delimiter in regexes and strings with just about anything else. This is particularly useful for "leaning toothpick syndrome", exemplified here:</p>
<pre><code>$url =~ /http:\/\/www\.stackoverflow\.com\//;
</code></pre>
<p>You can eliminate most of the back-whacking by changing the delimiter. <code>/bar/</code> is shorthand for <code>m/bar/</code> which is the same as <code>m!bar!</code>.</p>
<pre><code>$url =~ m!http://www\.stackoverflow\.com/!;
</code></pre>
<p>You can even use balanced delimiters like {} and []. I personally love these. <code>q{foo}</code> is the same as <code>'foo'</code>.</p>
<pre><code>$code = q{
if( this is awesome ) {
print "Look ma, no escaping!";
}
};
</code></pre>
<p>To confuse your friends (and your syntax highlighter) try this:</p>
<pre><code>$string = qq'You owe me $1,000 dollars!';
</code></pre>
http://stackoverflow.com/questions/68548/winning-oo-programming-job-interviews-with-sysadmin-perl-linux-background1"Winning" OO programming job interviews with sysadmin/Perl/Linux background?ggervais2008-09-16T01:28:41Z2009-02-17T20:59:53Z
<p>Hey StackOverflow-ers,</p>
<p>I'm a student in software engineering in Montreal. For the last 3 years I've had a few interships (once per year). The first two (in the same company) were mostly sysadmin jobs, but I did get to do a few Perl programs (mostly log file analysing and statistics generation).</p>
<p>My other intership was in the IT security field. I did a huge CGI Perl script to analyse time spent by users on the Internet.</p>
<p>The thing is, what I really want to do is programming, but my interships were mostly sysadmins jobs with some programming (due to my previous experience with Linux and UNIX). </p>
<p>I have another internship this winter, however I would like it to be in the OO programming field, and SW engineering. </p>
<p>I have a background in system administration but I know OO quite well, due to my college courses and projects (C++, Java, VB.NET, ASP.NET, but not C# unfortunately :( ). </p>
<p>My question is this : how can compete, in interviews, having no previous work experience in the OO field (though I build some projects in Java, Swing, etc., and am learning JSP right now), with other students with OO experience in previous interships?</p>
<p>What should be my "selling points" ? I consider myself quite a good programmer, but my previous interviews didn't turn out well due to my lack of experience. In fact, I got an intership last winter in system administration, since, well... that's my background!</p>
<p>Any tips on how to convince a potential employer that I am the perfect candidate despite my lack of professional experience (but lots of personal knowledge (and interest)) ?</p>
<p>Thank you,</p>
<p>Guillaume.</p>
http://stackoverflow.com/questions/243217/which-coding-style-you-use-for-ternary-operator/243264#2432643Answer by ggervais for Which coding style you use for ternary operator?ggervais2008-10-28T13:23:05Z2008-10-28T13:23:05Z<p>I tend to enclose the condition in parentheses : (a == b) ? 1 : 0</p>
http://stackoverflow.com/questions/241579/what-is-the-easiest-or-most-effective-way-to-convert-months-abbreviation-to-a-nu/243133#243133-1Answer by ggervais for What is the easiest or most effective way to convert month's abbreviation to a number in Perl? (ie "jan" to 1)ggervais2008-10-28T12:42:48Z2008-10-28T12:42:48Z<p>Definitely a hash, as suggested by others.</p>
http://stackoverflow.com/questions/211034/storing-the-state-of-a-complex-object-with-memento-pattern-and-command2Storing the state of a complex object with Memento pattern (and Command)ggervais2008-10-17T03:57:35Z2008-10-17T12:43:58Z
<p>Hello,</p>
<p>I'm working on a small UML editor project, in Java, that I started a couple of months ago. After a few weeks, I got a working copy for a UML class diagram editor.</p>
<p>But now, I'm redesigning it completely to support other types of diagrams, such a sequence, state, class, etc. This is done by implementing a graph construction framework (I'm greatly inspired by Cay Horstmann work on the subject with the Violet UML editor).</p>
<p>Redesign was going smoothly until one of my friends told me that I forgot to add a Do/Undo functionnality to the project, which, in my opinion, is vital.</p>
<p>Remembering object oriented design courses, I immediately thought of Memento and Command pattern.</p>
<p>Here's the deal. I have a abstract class, AbstractDiagram, that contains two ArrayLists : one for storing nodes (called Elements in my project) and the other for storing Edges (called Links in my projects). The diagram will probably keep a stack of commands that can be Undoed/Redoed. Pretty standard.</p>
<p>How can I execute these commands in a efficient way? Say, for example, that I want to move a node (the node will be an interface type named INode, and there will be concrete nodes derived from it (ClassNode, InterfaceNode, NoteNode, etc.)). </p>
<p>The position information is held as an attribute in the node, so by modying that attribute in the node itself, the state is changed. When the display will be refreshed, the node will have moved. This is the Memento part of the pattern (I think), with the difference that the object is the state itself.</p>
<p>Moreover, if I keep a clone of the original node (before it moved), I can get back to its old version. The same technique applies for the information contained in the node (the class or interface name, the text for a note node, the attributes name, and so on).</p>
<p>The thing is, how do I replace, in the diagram, the node with its clone upon undo/redo operation? If I clone the original object that is referenced by the diagram (being in the node list), the clone isn't reference in the diagram, and the only thing that points to is the Command itself! Shoud I include mechanisms in the diagram for finding a node according to an ID (for example) so I can replace, in the diagram, the node by its clone (and vice-versa) ? Is it up to the Memento and Command patterns to do that ? What about links? They should be movable too but I don't want to create a command just for links (and one just for nodes), and I should be able to modify the right list (nodes or links) according to the type of the object the command is referring to.</p>
<p>How would you proceed? In short, I am having trouble representing the state of an object in a command/memento pattern so that it can be efficiently recovered and the original object restored in the diagram list, and depending on the object type (node or link).</p>
<p>Thanks a lot!</p>
<p>Guillaume.</p>
<p>P.S.: if I'm not clear, tell me and I will clarify my message (as always!).</p>
<p><strong>Edit</strong></p>
<p>Here's my actual solution, that I started implementing before posting this question.</p>
<p>First, I have an AbstractCommand class defined as follow :</p>
<pre><code>public abstract class AbstractCommand {
public boolean blnComplete;
public void setComplete(boolean complete) {
this.blnComplete = complete;
}
public boolean isComplete() {
return this.blnComplete;
}
public abstract void execute();
public abstract void unexecute();
}
</code></pre>
<p>Then, each type of command is implemented using a concrete derivation of AbstractCommand.</p>
<p>So I have a command to move an object :</p>
<pre><code>public class MoveCommand extends AbstractCommand {
Moveable movingObject;
Point2D startPos;
Point2D endPos;
public MoveCommand(Point2D start) {
this.startPos = start;
}
public void execute() {
if(this.movingObject != null && this.endPos != null)
this.movingObject.moveTo(this.endPos);
}
public void unexecute() {
if(this.movingObject != null && this.startPos != null)
this.movingObject.moveTo(this.startPos);
}
public void setStart(Point2D start) {
this.startPos = start;
}
public void setEnd(Point2D end) {
this.endPos = end;
}
}
</code></pre>
<p>I also have a MoveRemoveCommand (to... move or remove an object/node). If I use the ID of instanceof method, I don't have to pass the diagram to the actual node or link so that it can remove itself from the diagram (which is a bad idea I think).</p>
<p>AbstractDiagram diagram;
Addable obj;
AddRemoveType type;</p>
<pre><code>@SuppressWarnings("unused")
private AddRemoveCommand() {}
public AddRemoveCommand(AbstractDiagram diagram, Addable obj, AddRemoveType type) {
this.diagram = diagram;
this.obj = obj;
this.type = type;
}
public void execute() {
if(obj != null && diagram != null) {
switch(type) {
case ADD:
this.obj.addToDiagram(diagram);
break;
case REMOVE:
this.obj.removeFromDiagram(diagram);
break;
}
}
}
public void unexecute() {
if(obj != null && diagram != null) {
switch(type) {
case ADD:
this.obj.removeFromDiagram(diagram);
break;
case REMOVE:
this.obj.addToDiagram(diagram);
break;
}
}
}
</code></pre>
<p>Finally, I have a ModificationCommand which is used to modify the info of a node or link (class name, etc.). This may be merged in the future with the MoveCommand. This class is empty for now. I will probably do the ID thing with a mechanism to determine if the modified object is a node or an edge (via instanceof or a special denotion in the ID).</p>
<p>Is this is a good solution?</p>
http://stackoverflow.com/questions/125463/bad-oo-design-problem-i-need-some-general-functionality-in-java-but-dont-know/125549#1255490Answer by ggervais for Bad OO design problem - I need some general functionality in Java but don't know how to implement itggervais2008-09-24T05:24:17Z2008-09-24T05:24:17Z<p>Visitor? I saw this pattern very quickly a year ago. I'll check it out, thanks!</p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/125425#1254250Answer by ggervais for What is the one programming skill you have always wanted to master but haven't had time?ggervais2008-09-24T04:30:25Z2008-09-24T04:30:25Z<p>That's an excellent question!</p>
<p>I'd like to improve my OO skills. But that's likely to happen with my next internships and that's where my career is leading me. I have a Perl and Bash.</p>
<p>I would love to be able to think about an idea, out of nowhere, and be able to implement it. Like : "Wouldn't it be nice to have a program that can process and output ?", and then implement it.</p>
<p>I also would like to take the time to look into the source code of some OSS, like GNOME, Firefox, Pidgin, etc.</p>
http://stackoverflow.com/questions/89456/linux-servers/89582#895821Answer by ggervais for Linux Serversggervais2008-09-18T02:51:12Z2008-09-18T02:51:12Z<p>Debian.</p>
<p>I have experience with RH servers, but Debian is definitely my first choice. The APT package management is really superior to any other package management system.</p>
http://stackoverflow.com/questions/68548/winning-oo-programming-job-interviews-with-sysadmin-perl-linux-background/76261#762610Answer by ggervais for "Winning" OO programming job interviews with sysadmin/Perl/Linux background?ggervais2008-09-16T19:55:54Z2008-09-16T19:55:54Z<p>Thank you all for your support!</p>
<p>I'm not out of school yet ; I am still a full-time student! My university program is a cooperative one : I have to get 3 internships to get my diploma.</p>
<p>Let my explain briefly my background : this winter will be my 4th internship.</p>
<p>My first two were while I studied in CÉGEP, Quebec's post-high-school but pre-university schools.</p>
<p>The first one was pratically given to me by CÉGEP : a employer called in, searching for someone knowledgeable in Linux system administration. I fitted the job perfectly since I was the only student who knew Linux outside of school. My interview wasn't even a real one, since all the details had been discussed between my school and the employer : I knew that I was hired even before doing the interview.</p>
<p>The second one was in the same company, one year later, since I liked my first one very much.</p>
<p>Then I arrived at my university, where every student is required to have 3 internships to get his (or her) diploma. Having no real experience in computer science interviews (since my first internships were "given" to me), I did a few screw-ups when doing interviews for OO jobs. I finally managed to get an interview for a security / sysadmin / Perl programming job at Bombardier Aerospace. </p>
<p>My internship went well, but now I want a real software development job. All the people I know had one last winter, which mean I am disadvantaged in terms of experience.</p>
<p>However, I DO have programming experience. All my internship required me to do a substancial amount of programming, especially in Perl. My Perl skills are quite good, and I got to develop some nice tools for both companies I worked in. I solved real problems not seen in school (like how to parse efficiently 5 GB log files while keeping memory usage as low as possible).</p>
<p>Obviously, I can easily get an internship this winter if I apply on jobs in the sysadmin domain or Linux world. There are a few of them available each year and I've got a lot of experience in the field, but as stated previously, I would like my next internship to be in SW development.</p>
<p>I am currently working on a personal project in Java, which is a small UML class editor. So I get to deal with the Swing framework, listeners, MVC architecture, etc. This is not as big as what is being done in the "real world", but it a fun project and I am having a lot of fun doing it, and if I can get it quite advance in the next month, I will probably put in on SourceForge. In the same time I am learning JSP.</p>
<p>As for OO open source project, this is something I should be looking into. I probably won't have time for it right now, one month away from my first interviews, being a full-time student, but I am not putting this option away.</p>
<p>Anyway, thank you!</p>
http://stackoverflow.com/questions/1800285/asp-net-mvc-castle-activerecord-show-sql-queriesComment by ggervais on ASP.NET MVC - Castle ActiveRecord - Show SQL queriesggervais2009-11-25T22:25:40Z2009-11-25T22:25:40ZNo, but I know that you can configure Castle ActiveRecord to use it.http://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pages/1060536#1060536Comment by ggervais on [ASP.NET] Access a content control in C# when using Master Pagesggervais2009-07-06T15:47:01Z2009-07-06T15:47:01ZThank you! That's basically what I did, so it validates my method for me!http://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pagesComment by ggervais on [ASP.NET] Access a content control in C# when using Master Pagesggervais2009-06-29T22:50:23Z2009-06-29T22:50:23ZThe Content page's CodeBehind.http://stackoverflow.com/questions/593463/extracting-raw-audio-waveform-from-an-mp3/593604#593604Comment by ggervais on Extracting raw audio/waveform from an MP3ggervais2009-02-27T05:55:19Z2009-02-27T05:55:19ZYou, sir, are awesome! I skimmed your answer and it looks amazing! I'm going to check it out tomorrow.
Thanks!http://stackoverflow.com/questions/68548/winning-oo-programming-job-interviews-with-sysadmin-perl-linux-background/69083#69083Comment by ggervais on "Winning" OO programming job interviews with sysadmin/Perl/Linux background?ggervais2008-09-16T20:02:48Z2008-09-16T20:02:48ZI'm still a student! I'm not applying for "real" jobs, but for 16-weeks internships. I have some experience in programming, mostly in Perl, but I know what it is to deal with (angry) customers/users, lousy custumer support, and doing a project with deadline, changing requirements, and documentation.