User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:24:30Z http://stackoverflow.com/feeds/user/44633 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/400230#400230 12 Answer by perryneal for What is the best comment in source code you have ever encountered? perryneal 2008-12-30T13:18:35Z 2009-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#537510 0 Answer by perryneal for nullable var using implicit typing in c#? perryneal 2009-02-11T16:09:52Z 2009-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#537298 0 Answer by perryneal for SQL Select Convention perryneal 2009-02-11T15:22:06Z 2009-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#492013 0 Answer by perryneal for Does any programmer have to know C? Yes, why? No, why? perryneal 2009-01-29T15:19:24Z 2009-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#491871 0 Answer by perryneal for Sign of the times: what are you reading? perryneal 2009-01-29T14:47:22Z 2009-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#491601 1 Answer by perryneal for C#: Centering controls within a form in .NET (Winforms)? perryneal 2009-01-29T13:34:41Z 2009-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#488920 2 Answer by perryneal for OOP approach for inventory system perryneal 2009-01-28T19:07:42Z 2009-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#488624 3 Answer by perryneal for DDD vs TDD perryneal 2009-01-28T17:47:19Z 2009-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#488395 9 Answer by perryneal for Misuse of English in the computer literature..... perryneal 2009-01-28T16:43:49Z 2009-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#487793 1 Answer by perryneal for Would 2 tier be a valid choice for this scenario perryneal 2009-01-28T14:23:54Z 2009-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#487673 1 Answer by perryneal for How do you write code at home? perryneal 2009-01-28T13:49:54Z 2009-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 -3 Answer by perryneal for More efficient way to determine if a string starts with a token from a set of tokens? perryneal 2009-01-27T19:26:41Z 2009-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#484734 0 Answer by perryneal for Rename a column or append a column? that is the question... perryneal 2009-01-27T19:00:08Z 2009-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#484380 1 Answer by perryneal for Do you print hard copies of requirements, design documents and code? perryneal 2009-01-27T17:35:25Z 2009-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#484060 0 Answer by perryneal for Advice for transitioning to object orient programming from VB 6 'style' perryneal 2009-01-27T16:22:29Z 2009-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#483848 0 Answer by perryneal for Convert Enum to String perryneal 2009-01-27T15:27:06Z 2009-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#465266 0 Answer by perryneal for What's the best way to add custom functionality to existing code in C#? perryneal 2009-01-21T13:25:41Z 2009-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#458030 0 Answer by perryneal for how to get monitor/display device names using WinAPI/C# perryneal 2009-01-19T15:44:02Z 2009-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#424408 1 Answer by perryneal for C# Book Suggestion perryneal 2009-01-08T14:27:03Z 2009-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#417806 1 Answer by perryneal for ASP .NET and C# perryneal 2009-01-06T19:36:23Z 2009-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#417543 0 Answer by perryneal for quick-and-dirty vs. good design perryneal 2009-01-06T18:01:47Z 2009-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#417242 0 Answer by perryneal for how to parse string for capitalized words perryneal 2009-01-06T16:36:35Z 2009-01-06T16:56:42Z <pre><code>string foo = "Mimi loves Toto and Tata hate Mimi so Toto killed Tata"; char[] separators = {' '}; IList&lt;string&gt; capitalizedWords = new List&lt;string&gt;(); 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#417259 0 Answer by perryneal for Filtering lists using LINQ perryneal 2009-01-06T16:43:16Z 2009-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#416909 0 Answer by perryneal for Insert Picture into SQL Server 2005 Image Field using only SQL perryneal 2009-01-06T15:14:37Z 2009-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#416579 1 Answer by perryneal for How to determine whether an IP is from the same LAN programatically in .NET C# perryneal 2009-01-06T13:50:11Z 2009-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 &lt; 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#414304 1 Answer by perryneal for LINQ to SQL, Stored Procedure problem handling an INT32 field that can also be NULL perryneal 2009-01-05T19:58:12Z 2009-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#414263 0 Answer by perryneal for Why the name "Decorator" for the Decorator design pattern? perryneal 2009-01-05T19:48:00Z 2009-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#407177 0 Answer by perryneal for Is staying employed as a programmer completely luck? perryneal 2009-01-02T15:43:57Z 2009-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#403177 1 Answer by perryneal for How to catch a SQL server hacker? perryneal 2008-12-31T15:11:19Z 2008-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#403051 1 Answer by perryneal for Visual Studio Upgrade Advice 2008 / 2010 perryneal 2008-12-31T14:20:18Z 2008-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#487793 Comment by on Would 2 tier be a valid choice for this scenario 2009-01-30T16:04:27Z 2009-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#491871 Comment by on Sign of the times: what are you reading? 2009-01-29T14:48:08Z 2009-01-29T14:48:08Z Oops - didn't see Ionut G. Stan's response. http://stackoverflow.com/questions/491399/c-centering-controls-within-a-form-in-net-winforms/491601#491601 Comment by on C#: Centering controls within a form in .NET (Winforms)? 2009-01-29T13:55:03Z 2009-01-29T13:55:03Z AMEN! 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#488457 Comment by on Misuse of English in the computer literature..... 2009-01-29T13:17:46Z 2009-01-29T13:17:46Z @rtperson: I agree. Pretty much all we do as humans is &quot;social&quot;. 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#488395 Comment by on Misuse of English in the computer literature..... 2009-01-29T13:15:24Z 2009-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-literature Comment by on Misuse of English in the computer literature..... 2009-01-28T17:35:47Z 2009-01-28T17:35:47Z Well Klyde, you definitely struck a nerve here. http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488477#488477 Comment by on Misuse of English in the computer literature..... 2009-01-28T17:30:34Z 2009-01-28T17:30:34Z @Klyde: EXCELLENT point. I heard a NPR segment on teaching kids to use the proper language &quot;set&quot; 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#488395 Comment by on Misuse of English in the computer literature..... 2009-01-28T17:25:50Z 2009-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#488457 Comment by on Misuse of English in the computer literature..... 2009-01-28T17:22:54Z 2009-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#488457 Comment by on Misuse of English in the computer literature..... 2009-01-28T17:21:51Z 2009-01-28T17:21:51Z It's wonderful to hear an educated response. But, isn't there something to said for taking the &quot;high road&quot; and learning to speak &quot;proper&quot; 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#488353 Comment by on Misuse of English in the computer literature..... 2009-01-28T17:17:24Z 2009-01-28T17:17:24Z Hyphenating can be a nightmare. http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488395#488395 Comment by on Misuse of English in the computer literature..... 2009-01-28T17:13:13Z 2009-01-28T17:13:13Z @Rob: Okay, I stand corrected on &quot;disrespected&quot; although I don't agree with the usage. http://stackoverflow.com/questions/488303/misuse-of-english-in-the-computer-literature/488395#488395 Comment by on Misuse of English in the computer literature..... 2009-01-28T17:10:46Z 2009-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#488395 Comment by on Misuse of English in the computer literature..... 2009-01-28T16:58:36Z 2009-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#487457 Comment by on Technology changes that you'd never want to reverse 2009-01-28T16:57:15Z 2009-01-28T16:57:15Z My 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.