User Andrew - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:27:21Z http://stackoverflow.com/feeds/user/826 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48006/is-it-worth-investing-time-in-learning-to-use-emacs 21 Is it worth investing time in learning to use emacs? Andrew 2008-09-07T01:22:09Z 2009-11-28T17:46:11Z <p>Right up front: I do <em>not</em> want to start a religious war.</p> <p>I've used <em>vi</em> for as long as I can remember, and the few times I've tried to pick up <em>emacs</em> I've been so lost so quickly I've given up. Lots of people find emacs very powerful, however. Its programmability is somewhat legendary. I'm primarily doing Solaris+Java development, and I'd like to ask a simple question: will my productivity increase if I invest time in getting my head around emacs? Is the functionality that it offers over <em>vim</em> going to be paid back in productivity increases in a reasonable timeframe?</p> <p><em>Repeat: I don't want a "my editor is better than yours". I just want a yes or no answer as to whether it's worth investing the time or not. Will my productivity really increase?</em></p> http://stackoverflow.com/questions/1801751/how-to-create-installer-for-solaris/1803056#1803056 0 Answer by Andrew for How to create installer for solaris Andrew 2009-11-26T11:08:16Z 2009-11-26T11:08:16Z <p>Solaris packaging is the way to go. It's a little odd when you first look at it, but it's actually not too difficult once you get your head around it.</p> http://stackoverflow.com/questions/1801485/providing-suggested-solutions-in-error-messages/1801552#1801552 1 Answer by Andrew for Providing suggested solutions in error messages Andrew 2009-11-26T04:36:53Z 2009-11-26T04:36:53Z <p>It's hard for the solution to an <strong>error</strong> being presented. There are so many possibilities and as @silky pointed out, some just cannot be diagnosed.</p> <p><strong>Warnings</strong> are a different beast. In many situations modern compilers use these to say "I think you meant X when you said Y; you might want to check that."</p> http://stackoverflow.com/questions/1501853/jira-code-validation-commit-hook-for-git 1 JIRA code validation commit hook for 'git' Andrew 2009-10-01T04:10:27Z 2009-11-09T14:39:16Z <p>Does anyone have a git commit hook I can use that will ensure a JIRA issue number appears in the checkin message? I've got no experience driving JIRA from a git commit hook so any help would be appreciated -- working source even more so!</p> http://stackoverflow.com/questions/1698312/adding-up-values-from-a-sql-query/1698325#1698325 12 Answer by Andrew for Adding Up Values From A SQL Query Andrew 2009-11-08T23:30:17Z 2009-11-08T23:30:17Z <p>Isn't it as simple as:</p> <pre><code>select sum(meta_value) from (table) where meta_key = 'views' </code></pre> http://stackoverflow.com/questions/1698226/using-a-class-in-its-constructor-c-does-it-smell/1698235#1698235 1 Answer by Andrew for Using a class in its constructor C# - Does it smell? Andrew 2009-11-08T23:04:26Z 2009-11-08T23:04:26Z <p>It doesn't look right to me. Smells fragile.</p> <p>Have you considered looking at either a builder or factory pattern to create the relevant objects and establish the relationships between them? It might provide a safer way forward.</p> http://stackoverflow.com/questions/1694184/what-do-you-look-for-in-a-bug-tracker/1694681#1694681 0 Answer by Andrew for What do you look for in a bug tracker? Andrew 2009-11-07T22:36:53Z 2009-11-07T22:36:53Z <p>An API. Mandatory.</p> <p>You MUST be able to catch and automatically submit bugs into your bug tracker from applications running in the field.</p> http://stackoverflow.com/questions/1692203/why-do-i-get-a-constant-too-large-error/1692216#1692216 4 Answer by Andrew for Why do I get a "constant too large" error? Andrew 2009-11-07T06:30:15Z 2009-11-07T06:30:15Z <p>A long long is 64 bits and thus holds a maximum value of 2^64, which is 9223372036854775807 as a signed value and 18446744073709551615 as an unsigned value. Your value is bigger, hence it's a constant value that's too large.</p> <p>Pick a different data type to hold your value.</p> http://stackoverflow.com/questions/1692142/how-to-learn-c-pointers/1692208#1692208 1 Answer by Andrew for How to learn C pointers? Andrew 2009-11-07T06:25:49Z 2009-11-07T06:25:49Z <p>Try your hand at some assembly language. This will show you really, really quickly what pointers actually are.</p> http://stackoverflow.com/questions/1692188/dynamic-memory-allocation-in-c/1692199#1692199 2 Answer by Andrew for Dynamic Memory Allocation in C++ Andrew 2009-11-07T06:23:19Z 2009-11-07T06:23:19Z <p>I'm assuming this is related to .NET managed C++ because standard C++ has no sense of "dispose".</p> <p>Delete will release the memory used to store the object; this memory returns to the heap and can be used for other storage requirements.</p> <p>Dispose will give the object the chance to release resources it acquired such as file handles, etc. Standard C++ would see this sort of task done in the destructor.</p> http://stackoverflow.com/questions/1684806/tfs-basic-for-non-visual-studio-projects/1684849#1684849 1 Answer by Andrew for TFS Basic for Non-Visual Studio Projects Andrew 2009-11-06T01:32:56Z 2009-11-06T01:32:56Z <p>You might also look at Atlassian's offerings. JIRA + Confluence + Fisheye + Bamboo is a killer combination. (No, I don't work for them -- just a huge fan of their products).</p> http://stackoverflow.com/questions/1263990/how-does-a-user-control-pass-focus-to-a-control-on-the-parent-form 0 How does a user control pass focus to a control on the parent form? Andrew 2009-08-12T02:58:20Z 2009-10-28T16:20:37Z <p>I'm working on a user control that will accept and validate an address. The addresses are all within a specific domain (in particular, Australia).</p> <p>In the address user control I've got three fields: suburb, state and postcode (aka zip code).</p> <p>When the user types part of a suburb name and hits TAB and moves into the state field, I query the database to see if I can make sense of the partial suburb. If I can, I fill in the complete suburb, state and postal code for them. As an example, there's only one suburb in Australia called "BORONIA", so the user can type "BORON", hit TAB and the form is populated with "BORONIA", "VIC" and "3155".</p> <p>The issue I've got is that after I've filled these fields in I want to skip over the state and postal code fields and move on to the next control on the form. Because these address fields are in a user control, I effectively want to set focus to the next control on the parent form.</p> <p>I know what that control is, but neither .Focus() nor .Select() appears to move the focus. The database query and field filling is done in the Enter event of the state field.</p> <p>I had an earlier version of the same address handling logic that was NOT a user control: it was all inline on the data entry form, and in that situation everything worked fine. In the Enter method of the state field I could pass control to the next field.</p> <p>When I've refactored this into a user control, however, it's failing. Can anyone nudge me in the right direction?</p> <p><strong>EDIT:</strong> I should note that I can pass the focus to other controls within my user control, so I know that the basic logic is correct. That's why I believe this is about user controls and parent controls, not my control selection and .Select() call.</p> http://stackoverflow.com/questions/1442015/about-c-pointer/1442032#1442032 -1 Answer by Andrew for about C++ pointer Andrew 2009-09-18T00:23:53Z 2009-09-18T00:23:53Z <p>What environment are you working in? Compiler version?</p> http://stackoverflow.com/questions/1441984/how-can-i-know-whether-an-instance-of-a-class-already-exists-in-memory/1442004#1442004 1 Answer by Andrew for How can I know whether an instance of a class already exists in memory? Andrew 2009-09-18T00:15:25Z 2009-09-18T00:15:25Z <p>I think you're after the <a href="http://en.wikipedia.org/wiki/Singleton%5Fpattern" rel="nofollow">singleton</a> pattern.</p> http://stackoverflow.com/questions/1437260/is-there-a-fast-way-to-update-many-records-in-sql/1437296#1437296 2 Answer by Andrew for Is there a fast way to update many records in SQL? Andrew 2009-09-17T07:46:49Z 2009-09-17T07:46:49Z <p>You might want to create a temporary table that holds the translation values and update based on that.</p> <p>For example:</p> <pre><code>create table #TRANSLATIONS ( from varchar(32), to varchar(32) ) </code></pre> <p>Then, insert the translation values:</p> <pre><code>insert into #TRANSLATIONS (from,to) values ('cat','dog') </code></pre> <p>Finally, update based on that:</p> <pre><code>update MYTABLE set myvalue = t.to where myvalue = t.from from MYTABLE m, #TRANSLATIONS t </code></pre> <p>(Untested, off the top of my head).</p> http://stackoverflow.com/questions/24216/resharper-vs-coderush/1424315#1424315 1 Answer by Andrew for Resharper vs. CodeRush Andrew 2009-09-14T23:02:12Z 2009-09-14T23:02:12Z <p>Is there any performance difference between the two? I was a long time ReSharper user but finally gave up when I couldn't stand the sluggish performance any longer. The more complex my project (forms, etc) got, the slower the machine got. I uninstalled it and performance was way, way better. Is CodeRush as sluggish?</p> http://stackoverflow.com/questions/1419957/allowing-variable-length-lists-in-yacc 0 Allowing variable length lists in yacc Andrew 2009-09-14T06:25:58Z 2009-09-14T06:41:06Z <p>I'd like to be able to parse the following structure:</p> <pre><code>blah { "string-1", "string-2", ..., "string-n" } </code></pre> <p>I'm using flex to tokenize, and that's working perfectly. I'm using yacc (bison) for the parsing.</p> <p>What's the recommended way to allow this structure? Right now, in my test.y file, I've got:</p> <pre><code>blah_command: BLAH OPEN_BRACE string_list CLOSE_BRACE { printf( "String list is %s\n", $3 ); } string_list: /* empty */ | STRING { return $1; } | STRING COMMA string_list { strcat($1, ","); strcat($1, $3); } </code></pre> <p>I suspect the strcat() is a really, really bad idea. I'm a real novice when it comes to lex/yacc (about 3 hours experience) so a smack on the wrist and a pointer in the right direction would be great.</p> <p>EDIT: The goal of this is to allow me to build a test harness for an external application. The lexing/parsing will be used to interpret a test script that the user provides. One command allows the user to send a message to the application, then I read the multi-line response and compare with the variable length list of strings the user has provided in the script. The fragment I've posted above is the way I figured I'd let the user define the possible response.</p> <p>For example:</p> <pre><code>blah { "COMMAND EXECUTED CORRECTLY" } </code></pre> <p>or</p> <pre><code>blah { "QUERY COMPLETE IN .0034 SECONDS", "1 RECORD FOUND:", "FOO=12345", "--END OF LIST--" } </code></pre> http://stackoverflow.com/questions/1090475/listviewgroup-not-sorting-correctly 0 ListViewGroup not sorting correctly Andrew 2009-07-07T05:18:51Z 2009-09-12T02:58:24Z <p>I'm using a ListView control in a C# WinForms application. Items in the list are added to a ListViewGroup (in this case, grouping by country). The one thing that isn't working as expected is that the column sorting appears to be strange.</p> <p>I've hooked into the ListViewItemSorter property of the ListView and everything sorts perfectly except when the country column is sorted in descending order (that is, Z-A). Regardless of how the list sort occurs the groups show in ascending order.</p> <p>Can anyone give me a nudge in the right direction?</p> <p><strong>EDIT</strong>: FWIW, .NET 3.5 on Vista.</p> http://stackoverflow.com/questions/1387263/c-hide-base-static-member/1387269#1387269 2 Answer by Andrew for C++: Hide base static member Andrew 2009-09-07T01:59:05Z 2009-09-07T02:36:35Z <p>Perhaps:</p> <pre><code>class B : private A { ... }; </code></pre> <p>This will hide everything though, not just statics.</p> http://stackoverflow.com/questions/1376792/c-template-syntax-error 1 c++ template syntax error Andrew 2009-09-04T01:24:55Z 2009-09-04T01:28:42Z <p>Hi all;</p> <p>My C++ is a little rusty having worked in Java and C# for the last half dozen years. I've got a stupid little error that I just cannot figure out.</p> <p>I've pared the code down as much as possible.</p> <pre><code>#include &lt;list&gt; template&lt;class T&gt; class Subscriber { virtual void published( T t ) = 0; }; template &lt;class T&gt; class PubSub { private: std::list&lt; Subscriber&lt;T&gt;* &gt; subscribers; public: void publish( T t ); }; template&lt;class T&gt; void PubSub&lt;T&gt;::publish( T t ) { for( std::list&lt; Subscriber&lt;T&gt;* &gt;::iterator i = subscribers.begin(); i != subscribers.end(); ++i ) i-&gt;published( t ); } </code></pre> <p>When I try and compile this (by including this header file in a code file), I get the following error:</p> <pre><code>../util/pubsub.h: In member function ‘void PubSub&lt;T&gt;::publish(T)’: ../util/pubsub.h:18: error: expected `;' before ‘i’ ../util/pubsub.h:18: error: ‘i’ was not declared in this scope </code></pre> <p>What am I missing here?</p> http://stackoverflow.com/questions/1315534/why-is-my-destructor-never-called/1315542#1315542 6 Answer by Andrew for Why is my destructor never called? Andrew 2009-08-22T08:56:02Z 2009-08-22T08:56:02Z <p>Class A should have a virtual destructor. Without that, derive class destructors won't be called.</p> http://stackoverflow.com/questions/1157558/getting-to-guice-created-objects-from-dumb-data-objects 2 Getting to Guice created objects from dumb data objects Andrew 2009-07-21T06:26:56Z 2009-07-21T06:53:28Z <p>I've taken the plunge and used Guice for my latest project. Overall impressions are good, but I've hit an issue that I can't quite get my head around.</p> <p>Background: It's a Java6 application that accepts commands over a network, parses those commands, and then uses them to modify some internal data structures. It's a simulator for some hardware our company manufactures. The changes I make to the internal data structures match the effect the commands have on the real hardware, so subsequent queries of the data structures should reflect the hardware state based on previously run commands. </p> <p>The issue I've encountered is that the command objects need to access those internal data structures. Those structures are being created by Guice because they vary depending on the actual instance of the hardware being emulated. The command objects are not being created by Guice because they're essentially dumb objects: they accept a text string, parse it, and invoke a method on the data structure.</p> <p>The only way I can get this all to work is to have those command objects be created by Guice and pass in the data structures via injection. It feels really clunky and totally bloats the constructor of the data objects.</p> <p>What have I missed here?</p> http://stackoverflow.com/questions/173018/ghostdoc-like-plugin-for-intellij-idea 1 Ghostdoc-like plugin for IntelliJ IDEA Andrew 2008-10-06T02:05:23Z 2009-07-16T03:25:52Z <p>I've become lazy in my old age. For my C# work I've become quite reliant on Roland Weigelt's excellent <a href="http://www.roland-weigelt.de/ghostdoc/" rel="nofollow">GhostDoc</a> plugin for Visual Studio.</p> <p>Is anyone aware of a similar plugin for Java work in IntelliJ IDEA?</p> http://stackoverflow.com/questions/1112472/adding-help-icon-to-winforms-form-titlebar 1 Adding help icon to WinForms form titlebar Andrew 2009-07-10T23:49:23Z 2009-07-11T00:28:00Z <p>Some Windows native applications have a question mark icon on the title bar. It's usually at the right edge, just near the close button. How can I do this in a C# WinForms application? I'd like a solution that works in Windows XP onward.</p> http://stackoverflow.com/questions/998448/how-to-set-image-type-column-to-null-in-sql-server-using-parameters-in-c/1090949#1090949 0 Answer by Andrew for how to set image type column to null in sql server using parameters in c# Andrew 2009-07-07T08:05:16Z 2009-07-07T08:05:16Z <p>An alternative is to not use a parameter when you're setting it to null. Instead, you can hardcode '=null' in the SQL command and skip parameters completely.</p> http://stackoverflow.com/questions/1054809/how-do-i-parse-a-string-using-c-and-regular-expressions/1054813#1054813 1 Answer by Andrew for How do I parse a string using C# and regular expressions? Andrew 2009-06-28T12:16:08Z 2009-06-28T12:16:08Z <p>Use String.Split(), which yields a String[], then pick up element zero.</p> http://stackoverflow.com/questions/1054611/gracefully-closing-multithreading-application/1054731#1054731 3 Answer by Andrew for Gracefully closing multithreading application? Andrew 2009-06-28T11:14:25Z 2009-06-28T11:14:25Z <p>Your mutex wait should involve a timeout. Each thread's outer loop can check for a 'please close now' flag. To shut down, set the 'please close now' flag for each thread, then use 'join' to wait for each thread to finish.</p> http://stackoverflow.com/questions/1036704/would-this-regular-expression-work/1036723#1036723 1 Answer by Andrew for Would this regular expression work? Andrew 2009-06-24T06:38:23Z 2009-06-24T06:38:23Z <p><a href="http://www.regexbuddy.com/" rel="nofollow">Regex buddy</a> is your friend.</p> http://stackoverflow.com/questions/994161/what-are-the-best-affordable-c-audio-libraries/994209#994209 0 Answer by Andrew for What are the best affordable c++ audio libraries? Andrew 2009-06-15T01:18:59Z 2009-06-15T01:18:59Z <p>I'd have a really close look at <a href="http://sox.sourceforge.net/" rel="nofollow">sox</a>. It's excellent. We're using the sox C++ library to do real time transformation of RTP streams. Works well.</p> http://stackoverflow.com/questions/985889/protect-against-accidental-deletion/985899#985899 7 Answer by Andrew for Protect against accidental deletion Andrew 2009-06-12T09:50:14Z 2009-06-12T09:50:14Z <p>There's actually pretty good justification for having critical files in your home directory checked into source control. As well as protecting against the situation you've just encountered it's nice being able to version control .bashrc, etc.</p> http://stackoverflow.com/questions/1698330/webdesign-jpg-or-png-which-one-is-the-best-for-web Comment by Andrew on webdesign - jpg or png, which one is the best for web Andrew 2009-11-08T23:34:30Z 2009-11-08T23:34:30Z Your English is fine. No need to apologise. http://stackoverflow.com/questions/1695278/is-34kb-or-34-kb-more-correct/1695284#1695284 Comment by Andrew on Is "34KB" or "34 KB" more correct? Andrew 2009-11-08T04:18:29Z 2009-11-08T04:18:29Z Pretty sure kibis are what I feed my cat. Or is that kibbles? http://stackoverflow.com/questions/1692203/why-do-i-get-a-constant-too-large-error/1692216#1692216 Comment by Andrew on Why do I get a "constant too large" error? Andrew 2009-11-07T22:35:51Z 2009-11-07T22:35:51Z Quite true. In my defence: my understanding is that Visual C++ defines a long long as 64 bits, and the OP specifically tagged the question as Visual C++. http://stackoverflow.com/questions/1602980/with-modern-os-schedulers-does-it-still-make-sense-to-manually-lock-processes-to/1603028#1603028 Comment by Andrew on With modern OS schedulers, does it still make sense to manually lock processes to specific CPUs/cores? Andrew 2009-10-21T19:36:54Z 2009-10-21T19:36:54Z @joseph, you can. Right click a task, pick &quot;Set affinity...&quot;. You get a list of processors and you tick the checkbox next to those that are allowed to run the task in question. http://stackoverflow.com/questions/1485393/outsourcing-and-software-engineering Comment by Andrew on Outsourcing and Software Engineering Andrew 2009-09-28T04:21:33Z 2009-09-28T04:21:33Z Are you worried about having a job that's then outsourced to someone offshore, or are you looking for a job where you're the outsourcer that takes someone elses job? http://stackoverflow.com/questions/1442015/about-c-pointer/1442033#1442033 Comment by Andrew on about C++ pointer Andrew 2009-09-18T00:25:08Z 2009-09-18T00:25:08Z Well picked, AraK. http://stackoverflow.com/questions/1437260/is-there-a-fast-way-to-update-many-records-in-sql/1437296#1437296 Comment by Andrew on Is there a fast way to update many records in SQL? Andrew 2009-09-17T09:53:43Z 2009-09-17T09:53:43Z Like I said -- untested, off the top of my head. :-) Doesn't the 'where' clause implement the join? http://stackoverflow.com/questions/1419957/allowing-variable-length-lists-in-yacc/1419986#1419986 Comment by Andrew on Allowing variable length lists in yacc Andrew 2009-09-14T06:43:41Z 2009-09-14T06:43:41Z This makes sense. I'll pursue this... http://stackoverflow.com/questions/1419957/allowing-variable-length-lists-in-yacc/1419980#1419980 Comment by Andrew on Allowing variable length lists in yacc Andrew 2009-09-14T06:42:24Z 2009-09-14T06:42:24Z Sure; I understand that. But when I strcat(), I'm modifying memory. Which memory, and where? Is this a buffer overflow in the making? http://stackoverflow.com/questions/1419957/allowing-variable-length-lists-in-yacc/1419980#1419980 Comment by Andrew on Allowing variable length lists in yacc Andrew 2009-09-14T06:36:22Z 2009-09-14T06:36:22Z What I don't know is what $1 actually represents (ie, memory wise) so I have no idea what I'm strcat'ing to. http://stackoverflow.com/questions/1396679/telephone-user-identification-process Comment by Andrew on Telephone user identification process Andrew 2009-09-08T22:36:48Z 2009-09-08T22:36:48Z This is more of a system integration issue than programming per se. Might be better on superuser.com. http://stackoverflow.com/questions/1387263/c-hide-base-static-member/1387269#1387269 Comment by Andrew on C++: Hide base static member Andrew 2009-09-07T02:36:59Z 2009-09-07T02:36:59Z Fixed. Thanks, @strager. http://stackoverflow.com/questions/1387252/database-design-circular-dependency/1387270#1387270 Comment by Andrew on Database Design: Circular dependency Andrew 2009-09-07T02:02:23Z 2009-09-07T02:02:23Z You could easily take this one step further and have a PRODUCT_ATTRIBUTES table that lists the attributes associated with a product -- one of which could be 'FLAGSHIP'. This allows for multiple attributes if required. http://stackoverflow.com/questions/1376792/c-template-syntax-error/1376794#1376794 Comment by Andrew on c++ template syntax error Andrew 2009-09-04T01:48:04Z 2009-09-04T01:48:04Z Thanks. Worked perfectly. http://stackoverflow.com/questions/1352587/code-golf-morse-code Comment by Andrew on Code Golf: Morse code Andrew 2009-08-30T10:19:28Z 2009-08-30T10:19:28Z Looking forward to a COBOL entry. ;-)