User Steven A. Lowe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T02:36:45Zhttp://stackoverflow.com/feeds/user/9345http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1516790/best-way-to-address-required-overtime-during-an-interview/1885395#18853951Answer by Steven A. Lowe for Best way to address required overtime during an interviewSteven A. Lowe2009-12-11T02:02:34Z2009-12-11T02:02:34Z<p>this is really two questions:</p>
<ul>
<li>do you expect overtime <em>all the time</em></li>
<li>do you <em>pay</em> for hours over 40/week</li>
</ul>
<p>if the answers are "yes" and "no", it's a "Sweat Shop", and may be in violation of the labor laws [IANAL,YMMV]; do not take this job unless you want to have no life and burn out early and often</p>
http://stackoverflow.com/questions/1875139/how-to-decide-build-from-scratch-or-reverse-engineer-off-the-shelf-solution/1875328#18753280Answer by Steven A. Lowe for How to decide: build from scratch or reverse engineer off the shelf solutionSteven A. Lowe2009-12-09T17:04:09Z2009-12-09T17:04:09Z<p>it all comes down to features, constraints, extensibility, and cost</p>
<p>if the off-the-shelf product has all three and costs less than what it would take you to write it, then buy it.</p>
http://stackoverflow.com/questions/1864406/service-layer-to-automatically-identify-database-to-use/1864421#18644210Answer by Steven A. Lowe for Service Layer to Automatically identify database to useSteven A. Lowe2009-12-08T03:40:55Z2009-12-08T03:40:55Z<p>requesting the database connect-string can also be a Service</p>
http://stackoverflow.com/questions/774335/is-this-really-ddd/1857767#18577671Answer by Steven A. Lowe for Is this really DDD?Steven A. Lowe2009-12-07T04:15:14Z2009-12-07T04:15:14Z<p>to me, what makes DDD different from "mere" model-driven design is the notion of "aggregate roots", i.e. an application is <em>only allowed to hold references to aggregate roots</em>, and in general you will only have a repository for the aggregate root class, not the classes that the aggregate root uses</p>
<p>this cleans up the code considerably; the alternative is repositories for every model class, which is "merely" a layered design, not DDD</p>
http://stackoverflow.com/questions/1857733/tdd-as-a-defect-reduction-strategy/1857759#18577590Answer by Steven A. Lowe for TDD as a defect-reduction strategySteven A. Lowe2009-12-07T04:11:38Z2009-12-07T04:11:38Z<p>if you don't have tests to reproduce defects, how do you know that "defect reduction" has taken place?</p>
<p>of course you <em>do</em> have tests - they're just manual, and thus tedious and time-consuming to reproduce...</p>
http://stackoverflow.com/questions/1854028/bought-web-design-table-structure-or-css-layout/1854075#18540758Answer by Steven A. Lowe for Bought web design - table structure or CSS layout?Steven A. Lowe2009-12-06T00:45:56Z2009-12-06T00:45:56Z<p>sounds like a <em>graphic designer</em>, not a <em>web designer</em></p>
<p>always be specific about the format of deliverables</p>
http://stackoverflow.com/questions/1853972/is-there-a-vb-net-program-that-can-modify-its-code-at-runtime/1854072#18540720Answer by Steven A. Lowe for Is there a vb.net program that can modify its code at runtime?Steven A. Lowe2009-12-06T00:44:11Z2009-12-06T00:44:11Z<p>yes - see prior two answers.</p>
<p>but don't, unless <em>there is no other way</em>; debugging will be a nightmare</p>
<p>consider plug-ins instead, if possible</p>
http://stackoverflow.com/questions/446894/why-should-i-use-json-with-asp-net/447149#4471491Answer by Steven A. Lowe for Why should I use JSON with ASP.NET?Steven A. Lowe2009-01-15T15:24:32Z2009-12-01T17:55:53Z<p>An Ajax call that returns a JSON object can be converted into a JavaScript object trivially, e.g.</p>
<pre><code>var jsObject = eval( "(" + ajaxCallReturningJson(whatever) + ")" );
</code></pre>
<p>This makes it very convenient for passing complex data to the client without having to make a custom representation or fool around with XML/XSLT.</p>
http://stackoverflow.com/questions/1814956/what-kind-of-recursion-can-be-resolved-without-stack/1814961#18149610Answer by Steven A. Lowe for What kind of recursion can be resolved without stack?Steven A. Lowe2009-11-29T08:01:26Z2009-11-29T08:01:26Z<p>if i understand what you're asking, i think the answer is: tail recursion</p>
<p>tail recursion is when a function calls itself as the last action</p>
http://stackoverflow.com/questions/1806300/what-to-do-in-a-job-with-little-coding-and-not-really-allowed-to-read-up-on-the-n/1806346#18063460Answer by Steven A. Lowe for What to do in a job with little coding and not really allowed to read up on the net?Steven A. Lowe2009-11-27T01:07:06Z2009-11-27T01:07:06Z<p>if possible, find something repetitive in your department and automate it - using your C# skills, of course</p>
<p>make a small asp.net application to track something apparently useful and tell people it's an experiment if they ask</p>
<p>best: ask your boss outright for some coding assignments - perhaps he/she has some small annoying thing that you can automate, or publish on their intranet</p>
http://stackoverflow.com/questions/1794547/how-can-i-make-an-are-you-sure-prompt-in-a-dos-batchfile/1794568#17945683Answer by Steven A. Lowe for How can I make an "are you sure" prompt in a DOS batchfile?Steven A. Lowe2009-11-25T04:12:50Z2009-11-25T04:12:50Z<p>try the <a href="http://www.computerhope.com/batch.htm#1" rel="nofollow">CHOICE command</a></p>
http://stackoverflow.com/questions/1785359/c-dynamic-return-type/1785391#17853910Answer by Steven A. Lowe for C#, dynamic return typeSteven A. Lowe2009-11-23T19:25:02Z2009-11-23T19:25:02Z<p>methods can only - as far as i know - return one type</p>
<p>so return object and cast is the logical alternative</p>
<p>however, note that if your design has forced you into this predicament, there may be a flaw in it; perhaps some more details can help us help you</p>
<p>note: jon skeet is immune from all such restrictions</p>
http://stackoverflow.com/questions/1780998/how-to-design-objects/1781169#17811692Answer by Steven A. Lowe for How to design objects?Steven A. Lowe2009-11-23T04:57:57Z2009-11-23T04:57:57Z<p>There are some good answers here, but possibly more than you were looking for. To address your specific questions briefly:</p>
<ul>
<li><p>How do I know when to make the car an object, or the wheel of a car an object, when both program structures would accomplish the goal?</p>
<p>When you need to distinguish one instance from another, then you need an object. The key distinction of an object is: it has identity.</p>
<p>Extending this answer slightly to classes, when the behaviors and/or properties of two similar objects diverge, you need a new class.</p>
<p>So, if you're modeling a traffic simulation that counts wheels, a Vehicle class with a NumberOfWheels property may be sufficient. If you're modeling a racing simulation with detailed road-surface and wheel-torque physics, each wheel probably needs to be an independent object.</p></li>
<li><p>How do I classify and categorize the parts of an object to determine whether or not they are better suited as simple attributes or variables of an object, or if they really need to be an object themselves?</p>
<p>The key distinctions are identity and behavior. A part with unique existence is an object. A part with autonomous behavior requires its own class.</p>
<p>For example, if you're creating a very simple car-crash simulation, NumberOfPassengers and DamageResistance may be sufficient properties of a generic Vehicle class. This would be enough to tell you if the car was totalled and the passengers survived. If your simulation is much more detailed, perhaps you want to know how far each passenger was thrown in a head-on collision, then you would need a Passenger class and distinct Passenger objects in each Vehicle.</p></li>
</ul>
http://stackoverflow.com/questions/287975/why-does-everything-seem-bigger-in-internet-explorer/287990#28799011Answer by Steven A. Lowe for Why does everything seem bigger in Internet Explorer?Steven A. Lowe2008-11-13T19:39:53Z2009-11-19T16:02:33Z<p>Perhaps your Internet connection is passing through Texas...</p>
http://stackoverflow.com/questions/1750883/sql-server-2000-stored-procedure-branching-with-parameters/1750966#17509661Answer by Steven A. Lowe for SQL Server 2000 stored procedure branching with parametersSteven A. Lowe2009-11-17T18:51:06Z2009-11-17T18:51:06Z<p>why fight against the obvious, simplest solution?</p>
<p>seriously, the branching solution make the intent clear, and can easily be understood by others.</p>
http://stackoverflow.com/questions/1701156/group-rows-in-a-table-design/1701386#17013861Answer by Steven A. Lowe for Group rows in a table - designSteven A. Lowe2009-11-09T14:38:02Z2009-11-17T17:34:22Z<p>the Tree table is a distinct entity, and deserves its own table even if the table is "all key". There may or may not be additional columns later, but omitting this table leaves your database denormalized, which is always a potential danger to data integrity</p>
<p>note that the concurrency issue you're concerned about is a no-brainer on most modern databases (use an auto-incremented identity type for the ID column), and would actually be worse without the Tree table, because you'd have to do a MAX(ID) scan on the whole <em>leaf</em> table</p>
http://stackoverflow.com/questions/357219/whats-your-favourite-character/357401#35740128Answer by Steven A. Lowe for What's your favourite character?Steven A. Lowe2008-12-10T20:01:55Z2009-11-16T16:59:29Z<p>NUL (ASCII zero)</p>
<p>Who doesn't like The Terminator?</p>
http://stackoverflow.com/questions/357219/whats-your-favourite-character/357393#3573935Answer by Steven A. Lowe for What's your favourite character?Steven A. Lowe2008-12-10T20:01:09Z2009-11-16T16:58:59Z<p>EOF</p>
<p>It's so...definitive!</p>
http://stackoverflow.com/questions/1726720/what-patterns-or-idioms-exist-for-gui-requring-user-to-provided-4-distinct-sets/1726773#17267731Answer by Steven A. Lowe for What patterns or idioms exist for GUI requring user to provided 4 distinct sets of login creditials?Steven A. Lowe2009-11-13T02:32:55Z2009-11-13T02:32:55Z<ul>
<li>present the user with one form with four sections</li>
<li>explain why you have to do this</li>
<li>reassure them that they only have to do this <em>once</em></li>
<li>validate each section independently</li>
<li>do not make them click on pop-up links, that's annoying</li>
</ul>
<p>"i have to ask you four questions. Please poke me in the eye to prompt me to ask each one"</p>
<p>lol</p>
http://stackoverflow.com/questions/1726746/what-is-the-fastest-serialization-method-for-net/1726766#17267660Answer by Steven A. Lowe for What is the fastest serialization method for .net?Steven A. Lowe2009-11-13T02:30:17Z2009-11-13T02:30:17Z<p>the answer depends radically on the kind and structure of the data to be serialized</p>
<p>if the data is a 30K array of bytes, write the whole thing to a binary stream as a single block, it can't get much faster than that</p>
<p>if the data is a 30K mesh of highly structured objects embedded in a mesh of interconnections...good luck!</p>
http://stackoverflow.com/questions/1722373/how-can-you-be-a-quality-programmer-in-a-programming-team/1722517#17225172Answer by Steven A. Lowe for How can you be a quality programmer in a programming team?Steven A. Lowe2009-11-12T14:22:06Z2009-11-12T14:22:06Z<p><a href="http://www.quotedb.com/quotes/2657" rel="nofollow">"This above all: to thine own self be true, and it must follow, as the night the day, thou canst not then be false to any man."</a></p>
http://stackoverflow.com/questions/1719516/being-a-developer-project-manager-and-everything-else-concurrently/1719572#17195721Answer by Steven A. Lowe for Being a developer, project manager and everything else concurrentlySteven A. Lowe2009-11-12T02:47:49Z2009-11-12T02:47:49Z<p>if you have unlimited resources and a waterfall methodology, those adages will be helpful in establishing a separation of concerns - unfortunately they can also work to establish fiefdoms and barriers to communications</p>
<p>in small organizations, wearing multiple hats is the norm - there is no other option.</p>
<p>It helps to focus activities in the context of one role or another, and not both simultaneously</p>
<p>on the other hand, there are quite good methodologies (XP/TDD for example) where the developer is expected to test his/her own code</p>
<p>it sounds -offhand- like your organization would benefit from using XP and increasing the exposure of developers to customers directly; whether your boss would agree with that statement or not depends on his/her point of view of the current situation!</p>
http://stackoverflow.com/questions/1715822/unit-test-for-thread-safe-ness/1715949#17159491Answer by Steven A. Lowe for Unit test for thread safe-ness?Steven A. Lowe2009-11-11T15:31:16Z2009-11-11T19:19:43Z<p>you'll have to construct a test case for each concurrency scenario of concern; this may require replacing efficient operations with slower equivalents (or mocks) and running multiple tests in loops, to increase the chance of contentions</p>
<p>without specific test cases, it is difficult to propose specific tests</p>
<p>some potentially useful reference material:</p>
<ul>
<li><a href="http://lnbogen.com/2007/06/25/WritingThreadSafetyTestsForInstanceData.aspx" rel="nofollow">Oren Ellenbogen's Blog</a></li>
<li><a href="http://www.bestbrains.dk/Blog/2007/09/14/TestDrivenThreadSafety.aspx" rel="nofollow">Vertical Slice Blog</a></li>
<li><a href="http://stackoverflow.com/questions/537014/using-tdd-to-drive-out-thread-safe-code">possible duplicate SO question</a></li>
</ul>
http://stackoverflow.com/questions/1713302/learning-to-create-beautiful-next-generation-gui/1713409#17134092Answer by Steven A. Lowe for Learning to create beautiful /next-generation GUISteven A. Lowe2009-11-11T06:22:15Z2009-11-11T06:22:15Z<p>the key to a stunning graphical user interface is twofold:</p>
<ol>
<li>it still has to be useful to the users, and that involves a lot of hard work, study, paper prototypes, user interviews, usability testing, et al.</li>
<li>hire a really really good graphic artist</li>
</ol>
<p>Neither step is optional. If you -the programmer- also happen to be a really good graphic artist, that's fine - but the vast majority are not, and no amount of fancy tools and photoshop tutorials will replace the talent and training that real artists bring to the table.</p>
<p>I don't mean to sound harsh, but most programmers are terrible GUI designers. Myself included. It's ok to leave art to the pros. ;-)</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/328443#328443-2Answer by Steven A. Lowe for What interview question weeds out 'bad' applicants?Steven A. Lowe2008-11-30T04:34:03Z2009-11-10T23:43:18Z<p>I don't bother with obscure language questions or general CS knowledge unless interviewing someone with very little experience. Instead, I go through their resume and for each significant "achievement" such as "wrote a whizbang processor in language foo" that they list I ask the following questions:</p>
<ul>
<li>What business need did this solve or business benefit did this provide?</li>
<li>What return on investment (ROI) did the business reap from your solution?</li>
<li>How was the ROI measured or estimated?</li>
</ul>
<p>In general:</p>
<ul>
<li>If they <em>don't know</em> then they're <strong>code monkeys</strong></li>
<li>If they <em>do know</em> then they're <strong>developers</strong></li>
</ul>
<p>[I prefer developers over code monkeys]</p>
http://stackoverflow.com/questions/1708253/well-established-scientific-truths-about-software-engineering/1708328#17083289Answer by Steven A. Lowe for Well-established scientific truths about software engineeringSteven A. Lowe2009-11-10T14:21:14Z2009-11-10T14:24:58Z<p>Testing can only show the existence of errors; it cannot establish the absence of errors.</p>
http://stackoverflow.com/questions/1708198/synchronising-sql-database-through-ado-net/1708342#17083420Answer by Steven A. Lowe for Synchronising SQL database through ADO.NetSteven A. Lowe2009-11-10T14:24:16Z2009-11-10T14:24:16Z<p><a href="http://msdn.microsoft.com/en-us/library/fk68ew7b.aspx" rel="nofollow">datatable.merge</a></p>
http://stackoverflow.com/questions/1704995/polluting-domain-types-by-implementing-infrastructure-related-interfaces/1705142#17051422Answer by Steven A. Lowe for Polluting domain types by implementing infrastructure-related interfacesSteven A. Lowe2009-11-10T01:36:10Z2009-11-10T01:36:10Z<p>implement an intermediate "View-Model" class:</p>
<ul>
<li>the View part knows how to talk to the user-interface (databinding, IComparable, et al)</li>
<li>it holds a reference to the Model (domain) object</li>
<li>it exposes the properties of the Model object (and relays change notifications if necessary)</li>
</ul>
http://stackoverflow.com/questions/1702895/patent-on-server-side-image-generation/1702950#17029501Answer by Steven A. Lowe for Patent on server side image generationSteven A. Lowe2009-11-09T18:46:45Z2009-11-09T18:46:45Z<p>an excellent example of a really stupid patent that should never have been granted</p>
<p>you should give this patent all the respect that it deserves ;-)</p>
http://stackoverflow.com/questions/1677811/need-help-translating-from-an-enum-class/1677826#16778263Answer by Steven A. Lowe for Need help translating from an enum classSteven A. Lowe2009-11-05T01:38:48Z2009-11-05T01:38:48Z<h1>Don't Do That</h1>
<p>There's no need to convert the enum to a string for a switch statement, use the enum values in the switch statement and foreach loop instead.</p>
<h1>Do This Instead</h1>
<pre><code>//this code was not tested, but hopefully you get the idea...
foreach(PlayerPosition pp in PlayerPosition.GetValues())
{
case PlayerPosition.Quarterback:
...
break;
...
}
</code></pre>
<h1>An Even Better Solution</h1>
<p>Would be to eliminate the switch statement entirely by taking advatage of polymorphism. How to do this depends on what exactly you're trying to do in the body of the switch statement.</p>
http://stackoverflow.com/questions/252257/why-arent-classes-sealed-by-default/252281#252281Comment by Steven A. Lowe on Why aren't classes sealed by default?Steven A. Lowe2009-12-08T19:47:03Z2009-12-08T19:47:03Z@[Phil]: so, every time you create a windows form, do you encapsulate a Form object instead of inherit from System.Windows.Form? Seems like a lot of extra work... Inheritance is fundamental; learn it, live it, love it ;-)http://stackoverflow.com/questions/1853987/id-love-suggestions-on-books-on-improving-leadership-skills-that-are-oriented-toComment by Steven A. Lowe on I'd love suggestions on books on improving leadership skills that are oriented towards geeks.Steven A. Lowe2009-12-06T00:43:11Z2009-12-06T00:43:11ZDale Carnegie "How to Win Friends and Influence People", "The One Minute Manager", "Getting Things Done" by David Allen, "Who Moved My Cheese", "Flawless Consulting"http://stackoverflow.com/questions/1830466/should-references-in-object-oriented-programming-languages-be-non-nullable-by-defComment by Steven A. Lowe on Should References in Object-Oriented Programming Languages be Non-Nullable by Default?Steven A. Lowe2009-12-02T03:39:04Z2009-12-02T03:39:04Za null <i>pointer</i> is dangerous. a null object reference is not; if you didn't use null to indicate an uninitialized object reference, you'd have to invent another sentinel value to serve the same purposehttp://stackoverflow.com/questions/1817730/legal-status-around-a-new-evidence-based-scheduling-toolComment by Steven A. Lowe on Legal status around a new evidence based scheduling tool?Steven A. Lowe2009-11-30T03:52:54Z2009-11-30T03:52:54Zjust ask joel...http://stackoverflow.com/questions/1810592/experienced-people-only-sockets-securityComment by Steven A. Lowe on Experienced People Only: Sockets SecuritySteven A. Lowe2009-11-27T20:57:20Z2009-11-27T20:57:20Znot a programming question, sorry. It sounds like you have nothing to gain and a lot to lose, not to mention making enemies out the senior guys, so ya gotta ask yourself: if they don't care why should you? The most likely source for an attack is inside the company. I would approach it that way: it's not a "Design Flaw" (that phrase will make instant enemies and it's kind of a punk attitude) it's an unstated assumption "we're safe behind the firewall". Which is generally true, except for rare hacks and less rare inside jobs. Tread carefully, you may have already burned bridges, and your cubiclehttp://stackoverflow.com/questions/1809659/windows-mobile-and-net-developmentComment by Steven A. Lowe on Windows mobile and .net development....Steven A. Lowe2009-11-27T16:40:56Z2009-11-27T16:40:56Zhave you tried google, and asking specific questions?http://stackoverflow.com/questions/1785359/c-dynamic-return-type/1785391#1785391Comment by Steven A. Lowe on C#, dynamic return typeSteven A. Lowe2009-11-23T20:40:02Z2009-11-23T20:40:02Z@[Robert Harvey]: Jon Skeet does not need a keyboard; he has a direct neural interface courtesy of Google UK....and if e e cummings bothers you, feel free to edit. ;-)http://stackoverflow.com/questions/1781149/how-to-create-an-audio-cd-using-c-or-java/1781171#1781171Comment by Steven A. Lowe on How to create an Audio CD using C# or JavaSteven A. Lowe2009-11-23T06:22:27Z2009-11-23T06:22:27Z@[Elie]: use lame - see <a href="http://lame.sourceforge.net/" rel="nofollow">lame.sourceforge.net</a>http://stackoverflow.com/questions/1503946/lookup-structure-for-handling-future-events-time-based/1520689#1520689Comment by Steven A. Lowe on Lookup structure for handling future events (time based)Steven A. Lowe2009-11-23T06:11:24Z2009-11-23T06:11:24Zasking another question in an answer doesn't work; SO is not a threaded-discussion forum. You could edit the original question or post this as another question (with a link to the original) and stand a much better chance of getting this new question answeredhttp://stackoverflow.com/questions/1781100/how-wpf-work-even-we-have-gdi-gdiand-directxComment by Steven A. Lowe on How WPF work even we have GDI, GDI+and DirectX? Steven A. Lowe2009-11-23T04:40:10Z2009-11-23T04:40:10ZGDI et al are all drawing libraries; WPF is a presentation layer, not a drawing libraryhttp://stackoverflow.com/questions/2134/do-sealed-classes-really-offer-performance-benefits/202584#202584Comment by Steven A. Lowe on Do sealed classes really offer performance Benefits?Steven A. Lowe2009-11-23T02:51:06Z2009-11-23T02:51:06Z@[Greg Beech]: opinion, not fact - being able to inherit from Thread to fix a heinous oversight in its design is NOT a bad thing ;-) And I think you're overstating LSP - the provabable property q(x) in this case is 'an unhandled exception destroys the program' which is not a "desirable property" :-)http://stackoverflow.com/questions/1750830/setting-up-a-distributed-computing-control-systemComment by Steven A. Lowe on Setting up a distributed computing control systemSteven A. Lowe2009-11-17T18:43:52Z2009-11-17T18:43:52Zentire books are devoted to answering this kind of question; please be more specifichttp://stackoverflow.com/questions/1726746/what-is-the-fastest-serialization-method-for-netComment by Steven A. Lowe on What is the fastest serialization method for .net?Steven A. Lowe2009-11-13T02:30:31Z2009-11-13T02:30:31Zplease be more specific; an example is always usefulhttp://stackoverflow.com/questions/1726677/is-perl-officially-dead/1726697#1726697Comment by Steven A. Lowe on Is Perl officially dead?Steven A. Lowe2009-11-13T02:26:59Z2009-11-13T02:26:59Zwhich begs the question "why not?" ;-) Then again, COBOL's still around, like a zombie looking for brains...http://stackoverflow.com/questions/1726730/users-need-to-create-dynamic-rules-that-apply-to-other-users-access-to-the-groupComment by Steven A. Lowe on Users need to create dynamic rules that apply to other users access to the groupSteven A. Lowe2009-11-13T02:22:08Z2009-11-13T02:22:08Zsounds trivial - what's the problem?