User Wing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T09:26:44Zhttp://stackoverflow.com/feeds/user/958http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206323/how-to-execute-command-line-in-c-get-std-out-results9How To: Execute command line in C#, get STD OUT resultsWing2008-10-15T20:31:19Z2009-11-18T05:45:22Z
<p>How do I execute a command-line program from C# and get back the STD OUT results. Specifically, I want to execute DIFF on two files that are programmatically selected and write the results to a text box. Yes, I could figure this out for myself, but surely someone else has done something like it and I'm lazy...</p>
http://stackoverflow.com/questions/33510/what-is-the-best-approach-to-both-modularity-and-platform-independence2What is the best approach to both modularity and platform independence?Wing2008-08-28T22:03:58Z2008-10-10T07:51:56Z
<p>I hope this question does not come off as broad as it may seem at first. I am designing a software application in my <code><sarcasm></code><em>voluminous</em><code></sarcasm></code> spare time. I would like it to be both cross-platform and modular. At this point, because I am still in the planning phase, I can pick practically any language and toolset.</p>
<p>This makes things harder, not easier, because there are seemingly so many ways of accomplishing both of the goals (modularity, platform agnosticism). </p>
<p>My basic premise is that security, data storage, interaction with the operating system, and configuration should all be handled by a "container" application - but most of the other functionality will be supplied through plug-in modules. If I had to describe it at a high level (without completely giving away my idea), it would be a single application that can do many different jobs, all dedicated to the same goal (there are lots of disparate things to do, but all the data has to interact and be highly available).</p>
<p>This is not a new idea, and not particularly exotic. Yet I find myself wrestling with not so much how to do it (I can think of lots of ways), but which method is best.</p>
<p>For example, I know that Eclipse practically embodies what I am describing, but I find Java applications in general (and Eclipse is no exception) to be too large and slow for what I need. Ditto desktop apps written Python and Ruby (which are excellent languages!) </p>
<p>I don't mind recompiling the code base for different platforms as native exectables. Yet, C and C++ have their own set of issues.</p>
<p>As a C# developer, I have a preference for managed code. But I am not at all sold on Mono, yet (I could be convinced).</p>
<p>Does anyone have any ideas/experiences/ specific favorite frameworks to share?</p>
http://stackoverflow.com/questions/142202/should-a-programmer-go-back-to-school-if-he-she-doesnt-have-a-degree/142288#1422881Answer by Wing for Should a programmer go back to school if he/she doesn't have a degree?Wing2008-09-26T22:08:11Z2008-09-26T22:08:11Z<p>I have had an experience that may be helpful to you. I got into this business during the beginning of the Internet revolution, when a computer hobbyist with no formal degree (like me) could get a job just by demonstrating some basic coding skills. Piece of cake.</p>
<p>Years later (in 2003), I was "downsized" in a staff cut (I had become too senior and too expensive). In looking for another job, I discovered the market had tightened up considerably - too many people like me with experience but no degree, in addition to lots of job seekers with experience <em>and</em> a degree - many of us displaced by continuing fallout of the dot-com bubble bursting. Guess who had a harder time finding a job? Employers had to narrow the field somehow, with a glut of candidates from which to choose.</p>
<p>With a wife and kid to support, this started to frighten me, so I decided to go back to school part time and get that piece of paper - not so much to learn things I did not already know (I could frankly teach most of the classes I have taken) - but to make sure that lack of a degree would no longer be an obstacle.</p>
<p>I now work at arguably the most recognizable software company on the planet - not in what I would call a plum position, but not bad, either. There is room to climb, yet, and my degree (if I can ever finish the darned thing, at this pace!) should help me take advantage of those opportunities.</p>
<p>I don't know your individual situation, and maybe a careerer change is what you ultimately need. But if your circumstance is anything like mine, a degree will not hurt you. That's my opinion, for what it's worth.</p>
<p>I wish you well!</p>
http://stackoverflow.com/questions/21583/unit-testing-databases/21608#216083Answer by Wing for Unit-Testing DatabasesWing2008-08-22T01:46:32Z2008-08-22T01:46:32Z<p>The usual solution to external dependencies in unit tests is to use mock objects - which is to say, libraries that mimic the behavior of the real ones against which you are testing. This is not always straightforward, and sometimes requires some ingenuity, but there are several good (freeware) mock libraries out there for .Net if you don't want to "roll your own". Two come to mind immediately:</p>
<p><a href="http://www.ayende.com/" rel="nofollow">Rhino Mocks</a> is one that has a pretty good reputation.</p>
<p><a href="http://www.nmock.org/" rel="nofollow">NMock</a> is another.</p>
<p>There are plenty of commercial mock libraries available, too. Part of writing good unit tests is actually desinging your code for them - for example, by using interfaces where it makes sense, so that you can "mock" a dependent object by implmenting a "fake" version of its interface that nonetheless behaves in a predictable way, for testing purposes.</p>
<p>In database mocks, this means "mocking" your own DB access layer with objects that return made up table, row, or dataset objects for your unit tests to deal with. </p>
<p>Where I work, we typically make our own mock libs from scratch, but that doesn't mean you have to. </p>
http://stackoverflow.com/questions/17231/why-shouldnt-i-bet-the-future-of-the-company-on-shell-scripts/17260#172602Answer by Wing for Why shouldn't I "bet the future of the company" on shell scripts?Wing2008-08-20T00:29:22Z2008-08-20T00:37:34Z<p>Scripts are nothing more or less than computer programs. Some would argue that scripts are less sophisticated. These same folks will usually admit that you can write sophisticated code in scripting languages, but that these scripts are really not scripts any more, but full-fledged programs, by definition.</p>
<p>Whatever.</p>
<p>The correct answer, in my opinion, is "it depends". Which, by the way, is the same answer to the converse question of whether you should place your trust in compiled executables for mission critical applications.</p>
<p>Good code is good, and bad code is bad - whether it is written as a Bash script, a Windows CMD file, in Python, Ruby, Perl, Basic, Forth, Ada, Pascal, Common Lisp, Cobol, or compiled C.</p>
<p><em>Which is <strong>not</strong> to say that choice of language doesn't matter.</em> There are very good reasons, sometimes, for choosing a particular language or for compiling vs. interpreting (performance, scalability, capability, security, etc). But, all things being equal, I would trust a shell script written by a great programmer over an equivalent C++ program written by a doofus any day of the week.</p>
http://stackoverflow.com/questions/7388/best-ides-for-different-programming-languages/15625#156250Answer by Wing for Best IDE's for different programming languagesWing2008-08-19T03:07:02Z2008-08-19T03:07:02Z<p>Caveat: I'm a Windows developer, so the list is Windows-centric. All of the choices below are free/open source.</p>
<p>For .Net, it's hard to beat <a href="http://msdn.microsoft.com/en-us/vstudio/products/default.aspx" rel="nofollow">Visual Studio</a>, but <a href="http://www.icsharpcode.net" rel="nofollow">SharpDevelop</a> is very usable. It has come a long way in just a few years. It's open, extensible, and solid.</p>
<p>For C/C++, <a href="http://www.codeblocks.org/" rel="nofollow">CodeBlocks</a> does it for me. It has built-in support for all of the major free compilers, as well as several commercial ones. It's generally well designed, with lots of wizards, visual editors, and other creature comforts you generally only see in commercial products.</p>
<p><a href="http://www.eclipse.org" rel="nofollow">Eclipse</a>, I have heard, is unbeatable for Java development, but since I don't really do Java I cannot say from experience.</p>
<p>If you want a Delphi-like experience with Free Pascal, there is <a href="http://www.lazarus.freepascal.org/" rel="nofollow">Lazarus</a>. Lazerus is especially cool, because it re-creates most of what is so good about Delphi, but with a cross-platform, open-source environment.</p>
http://stackoverflow.com/questions/14165/strange-c-errors-with-code-that-has-min-max-calls/14175#141751Answer by Wing for Strange C++ errors with code that has min()/max() calls.Wing2008-08-18T04:19:12Z2008-08-18T04:36:08Z<p>I deleted my original response when I saw you post your answer. Good one! :-)</p>
<p>I also wanted to see some example code (I was suspecting a logic error, since the question seemed vague). But now that I see the solution, I understand the reason for posing the question the way you did. It's <em>one of those</em> issues...the kind you go nuts trying to solve until you finally hit the answer, then you bang your head on your desk for ten minutes.</p>
http://stackoverflow.com/questions/14155/windows-based-text-editors/14188#141885Answer by Wing for Windows-based Text EditorsWing2008-08-18T04:33:41Z2008-08-18T04:33:41Z<p>Commercial product (Windows): <a href="http://www.ultraedit.com/" rel="nofollow" title="Dylan: A Dynamic Object-Oriented Language">UltraEdit</a>.</p>
<p>Freeware (Windows): <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a>, <a href="http://www.pspad.com/" rel="nofollow" title="Dylan Reference Manual">PSPad</a>.</p>
<p>Cross-Platform: <a href="http://www.jedit.org/" rel="nofollow">JEdit</a>. It's written in Java and runs on almost anything.</p>
<p>If you don't mind taking a performance hit under Windows, JEdit has some amazing capabilities. For native performance on that platform, I would go with one of the others. I tend to switch back and forth between Notepad++ and PSPad. Notepad++ probably edges it out for most tasks. It has section folding, which is very handy. However, you did ask about products <em>other</em> than that one.</p>
http://stackoverflow.com/questions/14040/developer-testing-vs-qa-team-testing-what-is-the-right-division-of-work/14070#140709Answer by Wing for Developer testing vs. QA team testing - What is the right division of work?Wing2008-08-18T01:08:58Z2008-08-18T01:08:58Z<p>It's the difference between "black box" testing (where you know what the code us supposed to do, but not how it works), and "white box" testing (where knowing how it works drives how you test it). "Black box" testing is what most people think of when you mention Quality Assurance.</p>
<p>I work for a company where the QA team are also software developers. (That narrows the field <em>a lot</em> if you care to guess the company.) I know Joel's opinion, and my experience leads me to partially disagree: for the same reason that a "white hat" hacker is more effective finding security holes, certain kinds of errors are more effectively found by white box testers who know how to write code (and therefor what the common mistakes are - for example, resource management issues like memory leaks). </p>
<p>Also, since QA-oriented developers are part of the process from the initial design phase, they can theoretically help to drive higher-quality code throughout the process. Ideally, for each developer working on the project with a mental focus on functionality, you have an opposing developer with a mental focus on breaking the code (and thus making it better). </p>
<p>Seen in that light, it's less a matter of using developers for testers than it is kind of disconnected pair-programming where one developer has an emphasis on controlling quality. </p>
<p>On the other hand, a lot of testing (such as basic UI functionality) frankly doesn't need that kind of skill. That's where Joel has a point. </p>
<p>For many businesses, I could see a system where programming teams trade off code review and testing duties for each others' code. Members of the Business Logic team, for example, could spend an occasional tour testing and reviewing code for the UI team, and vice-versa. That way you're not "wasting" developer talent on full-time testing, but you are gaining the advantages of exposing the code to (hopefully) expert scrutiny and punishment. Then, a more traditional QA team can take up the "black box" testing.</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13548#135480Answer by Wing for Bootstrapping a languageWing2008-08-17T07:06:30Z2008-08-17T07:06:30Z<p>It's the Comp-Sci version of the chicken-and-egg paradox. I can't think of a way not to write the initial compiler in assembler or some other language. If it could have been done, I should Lisp could have done it. </p>
<p>Actually, I think Lisp almost qualifies. Check out the <a href="http://en.wikipedia.org/wiki/Lisp_(programming_language)" rel="nofollow">Wikipedia</a> entry on it: <a href="http://en.wikipedia.org/wiki/Lisp_(programming_language)" rel="nofollow"><a href="http://en.wikipedia.org/wiki/Lisp_" rel="nofollow">http://en.wikipedia.org/wiki/Lisp_</a>(programming_language)</a> </p>
<p>According to the article, the Lisp eval function could be implemented on an <a href="http://en.wikipedia.org/wiki/IBM_704" rel="nofollow">IBM 704</a> in machine code, with a complete compiler (written in Lisp itself) coming into being in 1962 at <a href="http://www.mit.edu/" rel="nofollow">MIT</a>.</p>
http://stackoverflow.com/questions/13471/are-there-any-mind-mapping-components-for-delphi-native-vcl-preferably/13542#135422Answer by Wing for Are there any "mind mapping" components for Delphi? (native VCL preferably)Wing2008-08-17T06:52:46Z2008-08-17T06:52:46Z<p>As a former Delphi developer, I sympathize. It used to be that you could find a free component with source for just about anything. You probably know about the <a href="http://delphi.icm.edu.pl/" rel="nofollow">Delphi Super Page</a> (my old go-to source for everything Delphi). I looked; no mind-mapping components, there. (Of course, the site has not been updated in about 2 years).</p>
<p>I do have a suggestion, though, but it's not optimal: <a href="http://staruml.sourceforge.net/en/" rel="nofollow">StarUML</a> was written in Delphi, and it contains custom components for creating UML diagrams. The source is available for download, and it seems to me that the UML primitives (boxes, lines, clouds and such) could be adapted to your purpose. The web site is <a href="http://staruml.sourceforge.net/en/" rel="nofollow"><a href="http://staruml.sourceforge.net/en/" rel="nofollow">http://staruml.sourceforge.net/en/</a></a>.</p>
<p>I know it's not ideal, but at least you would not have to start from scratch. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/13494/creating-a-good-developer-abstraction-layer/13506#135062Answer by Wing for Creating a good developer abstraction layer?Wing2008-08-17T04:05:44Z2008-08-17T04:05:44Z<p>It's a strange dynamic - on the one hand, a developer should never lose sight of the what the customer needs and wants. On the other hand, developers are usually not the best equipped to handle customers (a lot of us lack, um, people skills). </p>
<p>My previous employer hit upon what I thought was the best solution I've seen so far: they made developers "shadow" customer support people for a full day, one day out of the month. The dev could not interact directly with the customer (usually a good thing), but he/she could help the support person with the issue. </p>
<p>This had several benefits:</p>
<ol>
<li><p>To the developer: he or she gets to see and hear first-hand what the customer's "pain points" are.</p></li>
<li><p>To the support person: he or she gets the benefit of a software developer within earshot, who can sometimes recognize and fix a problem much faster, or at least expedite making the development department aware of it.</p></li>
<li><p>To the customer: who benefits from having two brains and two sets of eyes on the issue.</p></li>
</ol>
<p>Beyond that, there was a process of escalation that would eventually result in a bug, with a priority proportionate to the customers' pain.</p>
http://stackoverflow.com/questions/12537/what-tools-are-used-to-write-documentation/12954#129541Answer by Wing for What tools are used to write documentation?Wing2008-08-16T01:47:51Z2008-08-16T01:51:14Z<p>We also use <a href="http://www.codeplex.com/SHFB/Release/ProjectReleases.aspx?ReleaseId=10445" rel="nofollow">Sandcastle</a> and <a href="http://www.roland-weigelt.de/ghostdoc/" rel="nofollow">GhostDoc</a>, but for UML stuff on the Windows platform, there I have found nothing better in the "free" pricepoint than <a href="http://staruml.sourceforge.net/en/" rel="nofollow">StarUML</a>. </p>
<p>StarUML is a tremendous value. Development seems to have stagnated for the past 3 years, but it's a remarkably stable tool. I have used other freebies (like <a href="http://argouml.tigris.org/" rel="nofollow">ArgoUML</a>), but they have not proven as fast or as fully featured. It's not a replacement for a good commercial tool, but in most places I have worked, no one wants to shell out the money for something like <a href="http://www.sparxsystems.com.au/" rel="nofollow">Enterprise Architect</a>.</p>
http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program/12928#129280Answer by Wing for Best ways to teach a beginner to program?Wing2008-08-16T00:46:31Z2008-08-16T01:00:11Z<p>Plenty of things tripped me up in the beginning, but none more than simple mechanics. Concepts, I took to immediately. But miss a closing brace? Easy to do, and often hard to debug, in a non-trivial program.</p>
<p>So, my humble advice is: don't understimate the basics (like good typing). It sounds remedial, and even silly, but it saved me so much grief early in my learning process when I stumbled upon the simple technique of typing the complete "skeleton" of a code structure and then just filling it in.</p>
<p>For an "if" statement in Python, start with:</p>
<pre><code>if :
</code></pre>
<p>In C/C++/C#/Java:</p>
<pre><code>if ()
{
}
</code></pre>
<p>In Pascal/Delphi:</p>
<pre><code>If () Then
Begin
End
</code></pre>
<p>Then, type between the opening and closing tokens. Once this becomes a solid habit, so you do it without thinking, more of the brain is freed up to do the fun stuff. Not a very flashy bit of advice to post, I admit, but one that I have personally seen do a lot of good!</p>
<blockquote>
<p>Edit: [<a href="http://beta.stackoverflow.com/users/92/justin-standard" rel="nofollow" title="Araxis Merge">Justin Standard</a>]</p>
<p>Thanks for your contribution, Wing. Related to what you said, one of the things I've tried to help my brother remember the syntax for python scoping, is that every time there's a colon, he needs to indent the next line, and any time he thinks he should indent, there better be a colon ending the previous line.</p>
</blockquote>
http://stackoverflow.com/questions/12870/arrays-of-arrays-in-java/12899#128990Answer by Wing for Arrays of Arrays in JavaWing2008-08-15T23:56:20Z2008-08-15T23:59:53Z<p>I'm not a Java programmer, but getting away from Java and just thinking in terms that are more language agnostic - a cleaner way to do it might be to use either constants or enumerated types. This should work in any langauge that supports multi-dimensional arrays.</p>
<p>If using named constants, where, for example: </p>
<pre><code>int A = 0;
int B = 1;
int C = 2;
int D = 3;
int Spring = 0;
int Summer = 1;
int Winter = 2;
int Fall = 3;
...
</code></pre>
<p>Then the constants serve as more readable array subscripts:</p>
<pre><code>schedule[A][Winter]="M";
schedule[A][Spring]="tTS";
schedule[A][Summer]="Any";
schedule[A][Fall]="tTS";
schedule[B][Winter]="t";
</code></pre>
<p>Using enumerated types:</p>
<pre><code>enum groups
{
A = 0,
B = 1,
C = 2,
D = 3
}
enum seasons
{
Spring = 0,
Summer = 1,
Fall = 2,
Winter = 3
}
...
schedule[groups.A][seasons.Winter]="M";
schedule[groups.A][seasons.Spring]="tTS";
schedule[groups.A][seasons.Summer]="Any";
schedule[groups.A][seasons.Fall]="tTS";
schedule[groups.B][seasons.Winter]="t";
</code></pre>
http://stackoverflow.com/questions/87957/if-you-could-recommend-only-one-blog-on-software-testing-which-one-would-it-be/88000#88000Comment by Wing on If you could recommend only one blog on software testing, which one would it be?Wing2008-11-13T19:56:32Z2008-11-13T19:56:32ZWrong, wrong, wrong. That's part of the reason why software quality in general is so poor - it's because of this senseless attitide that testing is not part of development. I call bulls***.http://stackoverflow.com/questions/132983/who-is-your-programming-hero/133429#133429Comment by Wing on Who is your programming hero?Wing2008-09-26T23:55:35Z2008-09-26T23:55:35ZAmen! Anders is one of my favorite people in the business. He designs languages that just fit like a glove with sensibilities. Delphi was the first language I learned that taught me to actually <i>love</i> programming. I owe him my career.