User Andrew - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T11:27:21Zhttp://stackoverflow.com/feeds/user/826http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48006/is-it-worth-investing-time-in-learning-to-use-emacs21Is it worth investing time in learning to use emacs?Andrew2008-09-07T01:22:09Z2009-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#18030560Answer by Andrew for How to create installer for solarisAndrew2009-11-26T11:08:16Z2009-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#18015521Answer by Andrew for Providing suggested solutions in error messagesAndrew2009-11-26T04:36:53Z2009-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-git1JIRA code validation commit hook for 'git'Andrew2009-10-01T04:10:27Z2009-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#169832512Answer by Andrew for Adding Up Values From A SQL QueryAndrew2009-11-08T23:30:17Z2009-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#16982351Answer by Andrew for Using a class in its constructor C# - Does it smell?Andrew2009-11-08T23:04:26Z2009-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#16946810Answer by Andrew for What do you look for in a bug tracker?Andrew2009-11-07T22:36:53Z2009-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#16922164Answer by Andrew for Why do I get a "constant too large" error?Andrew2009-11-07T06:30:15Z2009-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#16922081Answer by Andrew for How to learn C pointers?Andrew2009-11-07T06:25:49Z2009-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#16921992Answer by Andrew for Dynamic Memory Allocation in C++Andrew2009-11-07T06:23:19Z2009-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#16848491Answer by Andrew for TFS Basic for Non-Visual Studio ProjectsAndrew2009-11-06T01:32:56Z2009-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-form0How does a user control pass focus to a control on the parent form?Andrew2009-08-12T02:58:20Z2009-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-1Answer by Andrew for about C++ pointerAndrew2009-09-18T00:23:53Z2009-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#14420041Answer by Andrew for How can I know whether an instance of a class already exists in memory?Andrew2009-09-18T00:15:25Z2009-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#14372962Answer by Andrew for Is there a fast way to update many records in SQL?Andrew2009-09-17T07:46:49Z2009-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#14243151Answer by Andrew for Resharper vs. CodeRushAndrew2009-09-14T23:02:12Z2009-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-yacc0Allowing variable length lists in yaccAndrew2009-09-14T06:25:58Z2009-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-correctly0ListViewGroup not sorting correctlyAndrew2009-07-07T05:18:51Z2009-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#13872692Answer by Andrew for C++: Hide base static memberAndrew2009-09-07T01:59:05Z2009-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-error1c++ template syntax errorAndrew2009-09-04T01:24:55Z2009-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 <list>
template<class T> class Subscriber
{
virtual void published( T t ) = 0;
};
template <class T> class PubSub
{
private:
std::list< Subscriber<T>* > subscribers;
public:
void publish( T t );
};
template<class T> void PubSub<T>::publish( T t )
{
for( std::list< Subscriber<T>* >::iterator i = subscribers.begin(); i != subscribers.end(); ++i )
i->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<T>::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#13155426Answer by Andrew for Why is my destructor never called?Andrew2009-08-22T08:56:02Z2009-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-objects2Getting to Guice created objects from dumb data objectsAndrew2009-07-21T06:26:56Z2009-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-idea1Ghostdoc-like plugin for IntelliJ IDEAAndrew2008-10-06T02:05:23Z2009-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-titlebar1Adding help icon to WinForms form titlebarAndrew2009-07-10T23:49:23Z2009-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#10909490Answer by Andrew for how to set image type column to null in sql server using parameters in c#Andrew2009-07-07T08:05:16Z2009-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#10548131Answer by Andrew for How do I parse a string using C# and regular expressions?Andrew2009-06-28T12:16:08Z2009-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#10547313Answer by Andrew for Gracefully closing multithreading application?Andrew2009-06-28T11:14:25Z2009-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#10367231Answer by Andrew for Would this regular expression work?Andrew2009-06-24T06:38:23Z2009-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#9942090Answer by Andrew for What are the best affordable c++ audio libraries?Andrew2009-06-15T01:18:59Z2009-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#9858997Answer by Andrew for Protect against accidental deletionAndrew2009-06-12T09:50:14Z2009-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-webComment by Andrew on webdesign - jpg or png, which one is the best for webAndrew2009-11-08T23:34:30Z2009-11-08T23:34:30ZYour English is fine. No need to apologise.http://stackoverflow.com/questions/1695278/is-34kb-or-34-kb-more-correct/1695284#1695284Comment by Andrew on Is "34KB" or "34 KB" more correct?Andrew2009-11-08T04:18:29Z2009-11-08T04:18:29ZPretty 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#1692216Comment by Andrew on Why do I get a "constant too large" error?Andrew2009-11-07T22:35:51Z2009-11-07T22:35:51ZQuite 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#1603028Comment by Andrew on With modern OS schedulers, does it still make sense to manually lock processes to specific CPUs/cores?Andrew2009-10-21T19:36:54Z2009-10-21T19:36:54Z@joseph, you can. Right click a task, pick "Set affinity...". 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-engineeringComment by Andrew on Outsourcing and Software EngineeringAndrew2009-09-28T04:21:33Z2009-09-28T04:21:33ZAre 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#1442033Comment by Andrew on about C++ pointerAndrew2009-09-18T00:25:08Z2009-09-18T00:25:08ZWell picked, AraK.http://stackoverflow.com/questions/1437260/is-there-a-fast-way-to-update-many-records-in-sql/1437296#1437296Comment by Andrew on Is there a fast way to update many records in SQL?Andrew2009-09-17T09:53:43Z2009-09-17T09:53:43ZLike 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#1419986Comment by Andrew on Allowing variable length lists in yaccAndrew2009-09-14T06:43:41Z2009-09-14T06:43:41ZThis makes sense. I'll pursue this...http://stackoverflow.com/questions/1419957/allowing-variable-length-lists-in-yacc/1419980#1419980Comment by Andrew on Allowing variable length lists in yaccAndrew2009-09-14T06:42:24Z2009-09-14T06:42:24ZSure; 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#1419980Comment by Andrew on Allowing variable length lists in yaccAndrew2009-09-14T06:36:22Z2009-09-14T06:36:22ZWhat 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-processComment by Andrew on Telephone user identification processAndrew2009-09-08T22:36:48Z2009-09-08T22:36:48ZThis 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#1387269Comment by Andrew on C++: Hide base static memberAndrew2009-09-07T02:36:59Z2009-09-07T02:36:59ZFixed. Thanks, @strager.http://stackoverflow.com/questions/1387252/database-design-circular-dependency/1387270#1387270Comment by Andrew on Database Design: Circular dependencyAndrew2009-09-07T02:02:23Z2009-09-07T02:02:23ZYou 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#1376794Comment by Andrew on c++ template syntax errorAndrew2009-09-04T01:48:04Z2009-09-04T01:48:04ZThanks. Worked perfectly.http://stackoverflow.com/questions/1352587/code-golf-morse-codeComment by Andrew on Code Golf: Morse codeAndrew2009-08-30T10:19:28Z2009-08-30T10:19:28ZLooking forward to a COBOL entry. ;-)