User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T20:24:30Zhttp://stackoverflow.com/feeds/user/44633http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/400230#40023012Answer by perryneal for What is the best comment in source code you have ever encountered?perryneal2008-12-30T13:18:35Z2009-04-06T11:34:00Z<p>Honest to God:</p>
<pre><code>// This is crap code but it's 3 a.m. and I need to get this working.
</code></pre>
http://stackoverflow.com/questions/537438/nullable-var-using-implicit-typing-in-c/537510#5375100Answer by perryneal for nullable var using implicit typing in c#?perryneal2009-02-11T16:09:52Z2009-02-11T16:09:52Z<p>My answer is kind of along these lines. "var" is implicitly typed. It figures out what type it is by the value supplied on the right-hand side of the assignment. If you tell it that it's nullable it has no idea what type to be. Remember, once it's assigned, that's the type it's going to be forever.</p>
http://stackoverflow.com/questions/537258/sql-select-convention/537298#5372980Answer by perryneal for SQL Select Conventionperryneal2009-02-11T15:22:06Z2009-02-11T15:22:06Z<p>I prefer the first version but with some indentation on the JOIN clause to show that it's part of the FROM clause.</p>
<p>I found this <a href="http://www.devguru.com/technologies/sqlsyntax/quickref/sql_syntax_intro.html" rel="nofollow">article</a> that gives some pretty good guidelines.</p>
http://stackoverflow.com/questions/491086/does-any-programmer-have-to-know-c-yes-why-no-why/492013#4920130Answer by perryneal for Does any programmer have to know C? Yes, why? No, why?perryneal2009-01-29T15:19:24Z2009-01-29T15:19:24Z<p>("slightly" tongue-in-check) You should learn it if, for no other reason, than it will make you <strong>love</strong> whatever language you're working in at that moment.</p>
http://stackoverflow.com/questions/475351/sign-of-the-times-what-are-you-reading/491871#4918710Answer by perryneal for Sign of the times: what are you reading?perryneal2009-01-29T14:47:22Z2009-01-29T14:47:22Z<p><a href="http://rads.stackoverflow.com/amzn/click/0321125215" rel="nofollow">Domain-Driven Design</a> by Eric Evans.</p>
http://stackoverflow.com/questions/491399/c-centering-controls-within-a-form-in-net-winforms/491601#4916011Answer by perryneal for C#: Centering controls within a form in .NET (Winforms)?perryneal2009-01-29T13:34:41Z2009-01-29T13:34:41Z<p>Both Mitch's and splattne's answers will work. Splattne's answer is, in my opinion, better as you can set it and forget it. Mitch's requires the code to be placed in the form's Resize event as well as in the form's Load event (a la VB6 days!).</p>
http://stackoverflow.com/questions/488840/oop-approach-for-inventory-system/488920#4889202Answer by perryneal for OOP approach for inventory systemperryneal2009-01-28T19:07:42Z2009-01-28T19:07:42Z<p>You sort of answered your own question. Check out the <a href="http://www.dofactory.com/Patterns/PatternState.aspx" rel="nofollow">State</a> pattern.</p>
http://stackoverflow.com/questions/488581/ddd-vs-tdd/488624#4886243Answer by perryneal for DDD vs TDDperryneal2009-01-28T17:47:19Z2009-01-28T17:47:19Z<p>I also don't think they're mutually exclusive I think you can use TDD to get to DDD.</p>
http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488395#4883959Answer by perryneal for Misuse of English in the computer literature.....perryneal2009-01-28T16:43:49Z2009-01-28T16:49:21Z<p>I have to agree with you. I'm not a fan of the bastardization of the English language. Maybe I'm just getting old and crotchety but I think if you "publish" something (which could be sending an e-mail, making a comment on Stack Overflow, or writing a blog) then you should use proper language and grammar.</p>
<p>I am daily mortified by otherwise EXTREMELY intelligent people in our professions that can't differentiate 'their', 'there', and 'they're'. There are so many grammar and spelling mistakes in some blogs that I can't concentrate on the content.</p>
<p>Personally, I can't stand "grok". I don't know WHAT it is about that word but it just grates on me every time I hear it. I guess I just don't grok "grok".</p>
<p>My other big one is "disrespect" and "impact". You are NOT "disrespected". You are shown disrespect or someone has disrespect for you. In spite of constant over-use, you are not "impacted" by something. Something has an impact on you.</p>
<p>The bottom line is that people will judge you by your speech. This is in NO way meant as a criticism of people that don't speak English as a native language. From what I've seen - they do MUCH better in my language than I'd EVER do in theirs.</p>
<p>Just my two cents worth.</p>
http://stackoverflow.com/questions/487705/would-2-tier-be-a-valid-choice-for-this-scenario/487793#4877931Answer by perryneal for Would 2 tier be a valid choice for this scenarioperryneal2009-01-28T14:23:54Z2009-01-28T14:23:54Z<p>A 2-tier solution may be easier to develop but it will be harder to maintain if the application is of any size and/or complexity.</p>
<p>If this application is going to be important to the business and in place for a significant length of time, I think you'll find the extra time spent separating your presentation, business logic, and data access into their own layers will be repaid when it comes time to fix things, alter the logic, or extend the application.</p>
<p>This is one of those questions where you'll probably get as many different opinions as answers.</p>
http://stackoverflow.com/questions/446474/how-do-you-write-code-at-home/487673#4876731Answer by perryneal for How do you write code at home?perryneal2009-01-28T13:49:54Z2009-01-28T13:49:54Z<p>Form your own company and check out Microsoft's new program <a href="http://www.microsoftstartupzone.com/BizSpark/Pages/At_a_Glance.aspx" rel="nofollow">BizSpark</a>!</p>
http://stackoverflow.com/questions/484796/more-efficient-way-to-determine-if-a-string-starts-with-a-token-from-a-set-of-tok/484847#484847-3Answer by perryneal for More efficient way to determine if a string starts with a token from a set of tokens?perryneal2009-01-27T19:26:41Z2009-01-27T19:51:28Z<p>NOTE: I'm not demonstrating using Exception handling to control program flow. Enum.Parse will throw an exception if the string name of the Enum doesn't exist. The Catch clause just returns the default CommandType of None like the questioner's sample code does.</p>
<p>If the object is just to return the actual Enum object given the string name couldn't you use:</p>
<pre><code>try
{
return (CommandType)Enum.Parse(typeof(CommandType), strCmdName, true);
}
catch (Exception)
{
return CommandType.None;
}
</code></pre>
http://stackoverflow.com/questions/484411/rename-a-column-or-append-a-column-that-is-the-question/484734#4847340Answer by perryneal for Rename a column or append a column? that is the question...perryneal2009-01-27T19:00:08Z2009-01-27T19:00:08Z<p><a href="http://www.infoq.com/presentations/ambler-database-refactoring" rel="nofollow">Here's</a> a good presentation on refactoring databases by Scott Ambler, the guy that literally wrote <a href="http://rads.stackoverflow.com/amzn/click/0321293533" rel="nofollow">the book</a> on refactoring databases.</p>
http://stackoverflow.com/questions/484367/do-you-print-hard-copies-of-requirements-design-documents-and-code/484380#4843801Answer by perryneal for Do you print hard copies of requirements, design documents and code?perryneal2009-01-27T17:35:25Z2009-01-27T17:35:25Z<p>I generally don't print out the requirements or other documentation unless I need to mark it up as I'm working. Say to check off that I've implemented all the requirements, etc.</p>
<p>I'm fine with a run-of-the-mill LaseerJet printer.</p>
http://stackoverflow.com/questions/481638/advice-for-transitioning-to-object-orient-programming-from-vb-6-style/484060#4840600Answer by perryneal for Advice for transitioning to object orient programming from VB 6 'style'perryneal2009-01-27T16:22:29Z2009-01-27T16:22:29Z<p>I was in your shoes a few years back. I remember reading an article that estimated you would spend anywhere from 6 months to a year just reading about object-oriented development before you would start to "get it".</p>
<p>I started by just trying to introduce objects in my day-to-day procedural programming. Then I tried getting as much processing out of the UI as I could. Then I tried creating "layers" for my business logic and data access. I understand a lot of your business logic may already be in the database but it wouldn't hurt to have a BL layer in place in case that changed. Right now it can pretty much function as a pass through.</p>
<p>I have Eric Evan's Domain-Driven Design still to read but a couple of books that have helped me are "<a href="http://rads.stackoverflow.com/amzn/click/0672326116" rel="nofollow">The Object-Oriented Thought Process</a>" and the one that I'm currently reading, "<a href="http://www.amazon.com/Microsoft%C2%AE-NET-Architecting-Applications-PRO-Developer" rel="nofollow">Microsoft .NET: Architecting Applications for the Enterprise</a>". This book, while maybe more than you really need right now, is the first that has helped me really understand the layers and how to implement them.</p>
<p>Anyway, good luck with your journey. Just remember, it's going to be a process, not a destination!</p>
http://stackoverflow.com/questions/483794/convert-enum-to-string/483848#4838480Answer by perryneal for Convert Enum to Stringperryneal2009-01-27T15:27:06Z2009-01-27T15:27:06Z<p>I don't know what the "preferred" method is (ask 100 people and get 100 different opinions) but do what's simplest and what works. GetName works but requires a lot more keystrokes. ToString() seems to do the job very well.</p>
http://stackoverflow.com/questions/465057/whats-the-best-way-to-add-custom-functionality-to-existing-code-in-c/465266#4652660Answer by perryneal for What's the best way to add custom functionality to existing code in C#?perryneal2009-01-21T13:25:41Z2009-01-21T13:25:41Z<p>Is it possible to make the method in the class library Virtual? This would allow you to override it where you want to but keep it "as is" otherwise.</p>
http://stackoverflow.com/questions/458011/how-to-get-monitor-display-device-names-using-winapi-c/458030#4580300Answer by perryneal for how to get monitor/display device names using WinAPI/C#perryneal2009-01-19T15:44:02Z2009-01-19T15:44:02Z<p>Check out WMI (Windows Management Instrumentation). It's not an easy library but it can tell you a ton of stuff about your system.</p>
http://stackoverflow.com/questions/424372/c-book-suggestion/424408#4244081Answer by perryneal for C# Book Suggestionperryneal2009-01-08T14:27:03Z2009-01-08T14:27:03Z<p>I liked <a href="http://rads.stackoverflow.com/amzn/click/1590598237" rel="nofollow">Pro C# with .NET 3.0</a></p>
http://stackoverflow.com/questions/417797/asp-net-and-c/417806#4178061Answer by perryneal for ASP .NET and C#perryneal2009-01-06T19:36:23Z2009-01-06T19:36:23Z<p>I was a straight VB6 developer when I started transitioning to VB.Net. I'd only done desktop applications - not a single thing in the web world. I started learning ASP.Net (job required it) and decided, at the same time, to switch to C#.</p>
<p>Re-did a couple of small applications that I'd previously written in VB6 and VB.Net in C# and just went on from there.</p>
http://stackoverflow.com/questions/417515/quick-and-dirty-vs-good-design/417543#4175430Answer by perryneal for quick-and-dirty vs. good designperryneal2009-01-06T18:01:47Z2009-01-06T18:01:47Z<p>
On the one hand you're not necessarily privy to all of the factors and pressures on the boss. Perhaps he/she knows this is a "one-off" and you won't be doing any business with this client.
</p>
<p>
The bottom line is that you're getting paid to implement whatever they tell you to implement. Yes, you have a responsibility to point out the pros and cons but, in the end, it's their decision.
</p>
<p>
But, to be safe, document EVERYTHING! If people start playing the blame game you can at least have your backside covered. (Might not do any good but always protect yourself.)
</p>
http://stackoverflow.com/questions/417122/how-to-parse-string-for-capitalized-words/417242#4172420Answer by perryneal for how to parse string for capitalized wordsperryneal2009-01-06T16:36:35Z2009-01-06T16:56:42Z<pre><code>string foo = "Mimi loves Toto and Tata hate Mimi so Toto killed Tata";
char[] separators = {' '};
IList<string> capitalizedWords = new List<string>();
string[] words = foo.Split(separators);
foreach (string word in words)
{
char c = char.Parse(word.Substring(0, 1));
if (char.IsUpper(c))
{
capitalizedWords.Add(word);
}
}
foreach (string s in capitalizedWords)
{
Console.WriteLine(s);
}
</code></pre>
http://stackoverflow.com/questions/417246/filtering-lists-using-linq/417259#4172590Answer by perryneal for Filtering lists using LINQperryneal2009-01-06T16:43:16Z2009-01-06T16:43:16Z<p><a href="http://programminglinq.com/blogs/marcorusso/archive/2008/01/14/the-not-in-clause-in-linq-to-sql.aspx" rel="nofollow">This</a> article might give you the answer.</p>
http://stackoverflow.com/questions/416881/insert-picture-into-sql-server-2005-image-field-using-only-sql/416909#4169090Answer by perryneal for Insert Picture into SQL Server 2005 Image Field using only SQLperryneal2009-01-06T15:14:37Z2009-01-06T15:14:37Z<p>
<a href="http://books.google.com/books?id=5_AEiJXbyiEC&pg=PA73&lpg=PA73&dq=t-sql+%22sql+server+2005%22+inserting+images&source=web&ots=tRykoAdid2&sig=Ev3xz-O3aqGl5rTdAUddz2VwZaM&hl=en&sa=X&oi=book_result&resnum=2&ct=result#PPA73,M1" rel="nofollow">This</a> might solve your problem.
</p>
<p>
As to verifying that it's there - you may have to write a small app that takes an id value and then goes and retrieves the image.
</p>
http://stackoverflow.com/questions/416524/how-to-determine-whether-an-ip-is-from-the-same-lan-programatically-in-net-c/416579#4165791Answer by perryneal for How to determine whether an IP is from the same LAN programatically in .NET C#perryneal2009-01-06T13:50:11Z2009-01-06T13:50:11Z<p>
This will get you the host name and the IP address. I'm assuming you know the IPs in your LAN so you should be able to determine if the IP address is outside the LAN that way:
</p>
<p>// Get the host name of local machine.<br />
strHostName = Dns.GetHostName();<br />
Console.WriteLine("Local Machine's Host Name: " + strHostName);<br /></p>
<p>// Using the host name, get the IP address list.<br />
IPHostEntry ipEntry = Dns.GetHostEntry(strHostName);<br />
IPAddress[] addr = ipEntry.AddressList;<br /></p>
<p>for (int i = 0; i < addr.Length; i++)<br />
{<br />
Console.WriteLine("IP Address {0}: {1} ", i, addr[i].ToString());<br />
}<br /></p>
http://stackoverflow.com/questions/414283/linq-to-sql-stored-procedure-problem-handling-an-int32-field-that-can-also-be-nu/414304#4143041Answer by perryneal for LINQ to SQL, Stored Procedure problem handling an INT32 field that can also be NULLperryneal2009-01-05T19:58:12Z2009-01-05T19:58:12Z<p>
Try declaring the int variables as nullable. I.e.
</p>
<pre><code>int? myInt;
</code></pre>
<p>
This way you can check them for null.
</p>
http://stackoverflow.com/questions/414251/why-the-name-decorator-for-the-decorator-design-pattern/414263#4142630Answer by perryneal for Why the name "Decorator" for the Decorator design pattern?perryneal2009-01-05T19:48:00Z2009-01-05T19:48:00Z<p>
Because you are adding new functionality to an existing object. In essence, you are "decorating" the object with the new functionality.
</p>
<p>
Hey, leave it to geeks to make up names.
</p>
http://stackoverflow.com/questions/407061/is-staying-employed-as-a-programmer-completely-luck/407177#4071770Answer by perryneal for Is staying employed as a programmer completely luck?perryneal2009-01-02T15:43:57Z2009-01-02T15:43:57Z<p>
Unfortunately (or fortunately depending on your preference), we're in a field that is constantly changing. This requires us to maintain a state of continual learning. I read somewhere that if a developer doesn't complete change their skill set every three years or so they're no longer marketable.
</p>
<p>
As to the point of trying to figure out which technology is going to be one that sticks around or gains enough "buzz" to become prevalent - read blogs and articles. After a while you figure out if a technology has what it takes to stick around and become prevalent enough to waste the few, precious brain cells we have remaining on learning. Then maybe try some small experimental projects in the technology. Even if you don't become proficient enough to be a master of the new skill, at least you're conversant on it and can speak knowledgeably about it when talking to prospective employers.
</p>
<p>
And while overseas outsourcing isn't a non-issue. I think it's overblown. Yes, some people do get replaced. But, as a whole, employers like to work with people they know and can see.
</p>
http://stackoverflow.com/questions/403135/how-to-catch-a-sql-server-hacker/403177#4031771Answer by perryneal for How to catch a SQL server hacker?perryneal2008-12-31T15:11:19Z2008-12-31T15:11:19Z<p>SQL Server 2005 added DDL and DML triggers so you can track who's modifying data as well as the data structure.</p>
http://stackoverflow.com/questions/402978/visual-studio-upgrade-advice-2008-2010/403051#4030511Answer by perryneal for Visual Studio Upgrade Advice 2008 / 2010perryneal2008-12-31T14:20:18Z2008-12-31T14:20:18Z<p>I agree with those suggesting adopting VS 2008 now. One thing to consider though is that WPF comes with a fairly high learning curve. I've had some limited exposure to WPF and Silverlight and am finding them to be a complete "mind change" from the WinForms model. Good luck.</p>
http://stackoverflow.com/questions/487705/would-2-tier-be-a-valid-choice-for-this-scenario/487793#487793Comment by on Would 2 tier be a valid choice for this scenario2009-01-30T16:04:27Z2009-01-30T16:04:27Z@kjack: Right. I probably should get better about differentiating between logical and physical layers.
http://stackoverflow.com/questions/475351/sign-of-the-times-what-are-you-reading/491871#491871Comment by on Sign of the times: what are you reading?2009-01-29T14:48:08Z2009-01-29T14:48:08ZOops - didn't see Ionut G. Stan's response.http://stackoverflow.com/questions/491399/c-centering-controls-within-a-form-in-net-winforms/491601#491601Comment by on C#: Centering controls within a form in .NET (Winforms)?2009-01-29T13:55:03Z2009-01-29T13:55:03ZAMEN! But, without that struggle we wouldn't appreciate what we have today.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488457#488457Comment by on Misuse of English in the computer literature.....2009-01-29T13:17:46Z2009-01-29T13:17:46Z@rtperson: I agree. Pretty much all we do as humans is "social". From laws and social mores. We talk/dress a certain way to fit in, whether it's as part of the hip-hop generation or the establishment.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488395#488395Comment by on Misuse of English in the computer literature.....2009-01-29T13:15:24Z2009-01-29T13:15:24Z@JPunyon: You're right! How could I POSSIBLY get my rednecks confused? Thanks.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literatureComment by on Misuse of English in the computer literature.....2009-01-28T17:35:47Z2009-01-28T17:35:47ZWell Klyde, you definitely struck a nerve here.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488477#488477Comment by on Misuse of English in the computer literature.....2009-01-28T17:30:34Z2009-01-28T17:30:34Z@Klyde: EXCELLENT point. I heard a NPR segment on teaching kids to use the proper language "set" for a given situation. What would be proper on the street isn't in the classroom, etc.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488395#488395Comment by on Misuse of English in the computer literature.....2009-01-28T17:25:50Z2009-01-28T17:25:50Z@Rob/@Klyde: I think the rate of change (or mutation) of our profession's language it directly caused by the pace of change of the technology in our field. Other professions do it too but not as fast as their fields don't change as fast.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488457#488457Comment by on Misuse of English in the computer literature.....2009-01-28T17:22:54Z2009-01-28T17:22:54Z(correction - popular) or compelling that they almost demand the change? Electronic mail which begat E-mail which begat email. The shortened version was just so much easier to use.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488457#488457Comment by on Misuse of English in the computer literature.....2009-01-28T17:21:51Z2009-01-28T17:21:51ZIt's wonderful to hear an educated response. But, isn't there something to said for taking the "high road" and learning to speak "proper" English? I commented in another response that I have no problems with a dynamic language but the changes should be so overwhelming (darned 300-character limit)http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488353#488353Comment by on Misuse of English in the computer literature.....2009-01-28T17:17:24Z2009-01-28T17:17:24ZHyphenating can be a nightmare.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488395#488395Comment by on Misuse of English in the computer literature.....2009-01-28T17:13:13Z2009-01-28T17:13:13Z@Rob: Okay, I stand corrected on "disrespected" although I don't agree with the usage.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488395#488395Comment by on Misuse of English in the computer literature.....2009-01-28T17:10:46Z2009-01-28T17:10:46Z@Fabian: I understand that language is a dynamic thing and changes over time. But, in my opinion, prospective changes should be so overwhelmingly popular or compelling that they almost demand a change in the status quo. Otherwise - keep what already exists.http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488395#488395Comment by on Misuse of English in the computer literature.....2009-01-28T16:58:36Z2009-01-28T16:58:36Z@klyde - I think Bill Engvall said it best. You just can't fix stupid.http://stackoverflow.com/questions/487440/technology-changes-that-youd-never-want-to-reverse/487457#487457Comment by on Technology changes that you'd never want to reverse2009-01-28T16:57:15Z2009-01-28T16:57:15ZMy move from VB6 to C# was a little more altruistic. I couldn't find any performance reasons that would hold water but the final thing I couldn't argue with is that, for whatever reason, C# developers get paid more! So I jumped with both feet.