User Kevin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:44:14Z http://stackoverflow.com/feeds/user/1942 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/157438/password-cracking-windows-accounts 8 Password Cracking Windows Accounts Kevin 2008-10-01T12:54:16Z 2009-12-21T07:43:14Z <p>At work we have laptops with encrypted harddrives. Most developers here (on occasion I have been guilty of it too) leave their laptops in hibernate mode when they take them home at night. Obviously, Windows (i.e. there is a program running in the background which does it for windows) must have a method to unencrypt the data on the drive, or it wouldn't be able to access it. That being said, I always thought that leaving a windows machine on in hibernate mode in a non-secure place (not at work on a lock) is a security threat, because someone could take the machine, leave it running, hack the windows accounts and use it to encrypt the data and steal the information. When I got to thinking about how I would go about breaking into the windows system without restarting it, I couldn't figure out if it was possible.</p> <p>I know it is possible to write a program to crack windows passwords once you have access to the appropriate file(s). But is it possible to execute a program from a locked Windows system that would do this? I don't know of a way to do it, but I am not a Windows expert. If so, is there a way to prevent it? I don't want to expose security vulnerabilities about how to do it, so I would ask that someone wouldn't post the necessary steps in details, but if someone could say something like "Yes, it's possible the USB drive allows arbitrary execution," that would be great!</p> <p>EDIT: The idea being with the encryption is that you can't reboot the system, because once you do, the disk encryption on the system requires a login before being able to start windows. With the machine being in hibernate, the system owner has already bypassed the encryption for the attacker, leaving windows as the only line of defense to protect the data.</p> http://stackoverflow.com/questions/1917427/which-is-fast-comparison-convert-toint32stringvalueintvalue-or-stringvalue/1917458#1917458 0 Answer by Kevin for Which is fast comparison: Convert.ToInt32(stringValue)==intValue or stringValue==intValue.ToString() Kevin 2009-12-16T20:29:04Z 2009-12-16T20:29:04Z <p>Well for starters the first one which converts the int to a string won't throw an error if the string the int is being compared to isn't convertible to an int. </p> <p>If you are doing a lot of tests in a batch converting to a string will remove the problem of potentially having exceptions throw, because of conversion errors. Raising exceptions takes time and would slow down the second test. </p> http://stackoverflow.com/questions/1915333/c-web-application-event-handling/1915357#1915357 2 Answer by Kevin for C# web application event handling Kevin 2009-12-16T15:27:31Z 2009-12-16T15:27:31Z <p>I think you are probably going to want to look at the ASP.NET validation controls. They should be able to handle what you are wanting to do.</p> <p><a href="http://devhood.com/Tutorials/tutorial%5Fdetails.aspx?tutorial%5Fid=46" rel="nofollow">http://devhood.com/Tutorials/tutorial%5Fdetails.aspx?tutorial%5Fid=46</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/aa479045.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa479045.aspx</a></p> http://stackoverflow.com/questions/1909232/c-initializing-a-variable-with-using/1909245#1909245 0 Answer by Kevin for C#: Initializing a variable with "using" Kevin 2009-12-15T18:03:00Z 2009-12-15T18:08:48Z <p>After the using statement it will exit the scope which it is available in. The objects Dispose method will be called, but the object won't necessarily be garbage collected at that time. </p> <p>So what this means is that if you have items which are cleaned up (files closed etc.) in the object's Dispose() method, they will get cleaned up immediately after the using statement ends. If you have a finalizer (~YourClassName) in addition to this which does other things, you cannot guarantee that will get called at that time. </p> http://stackoverflow.com/questions/1902634/standalone-functions-in-asp-net/1902643#1902643 3 Answer by Kevin for Standalone functions in ASP.net Kevin 2009-12-14T18:33:10Z 2009-12-14T18:33:10Z <p>You can always use Extension Methods.</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb383977.aspx</a></p> <p>You can then add the methods on to the existing objects. </p> <p>You could also create a base class which all your pages inherit from and have that contain the methods you need. It's still part of a class, but you don't need to instantiate a new one, or use static methods.</p> http://stackoverflow.com/questions/1889749/parameter-converted-from-null-to-datetime-minvalue-when-called-using-invoke-in-c/1889767#1889767 3 Answer by Kevin for Parameter converted from null to DateTime.MinValue when called using Invoke in C# 2.0 Kevin 2009-12-11T17:54:24Z 2009-12-14T12:27:27Z <p>A DateTime variable can't be null. It's not a reference type, so there won't be a null reference exception.</p> <p>You could do: </p> <pre><code>private bool IsValidDay(ref DateTime? theDate) { if(theDate.HasValue)... } </code></pre> <p>Here's a link talking about nullable types: <a href="http://msdn.microsoft.com/en-us/library/1t3y8s4s%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/1t3y8s4s%28VS.80%29.aspx</a></p> <p>I think I get what you are asking.... in the case of your code (especially because of the ref parameter, you can't have variance on a parameter with ref or out). It has to pass in a DateTime object. It can't be anything else.....so the null argument has to be converted to something to get the function to work. </p> http://stackoverflow.com/questions/1889623/performance-loading-js-files/1889652#1889652 1 Answer by Kevin for performance loading js files Kevin 2009-12-11T17:37:34Z 2009-12-11T17:43:10Z <p>You want to place them all in one file. It cuts down on the number of trips to the server and reduces overhead. </p> <p>Placing them at the end of the document is generally recommended as that way the rest of the page downloads beforehand. </p> <p>Here's a link describing the best practices by Yahoo on where to include scripts and about minimizing trips to the server. <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">http://developer.yahoo.com/performance/rules.html</a></p> http://stackoverflow.com/questions/213380/the-necessity-of-hiding-the-salt-for-a-hash 20 The necessity of hiding the salt for a hash Kevin 2008-10-17T18:49:38Z 2009-12-10T22:50:29Z <p>At work we have two competing theories for salts. The products I work on use something like a user name or phone number to salt the hash. Essentially something that is different for each user but is readily available to us. The other product randomly generates a salt for each user and changes each time the user changes the password. The salt is then encrypted in the database.</p> <p>My question is if the second approach is really necessary? I can understand from a purely theoretical perspective that it is more secure than the first approach, but what about from a practicality point of view. Right now to authenticate a user, the salt must be unencrypted and applied to the login information. </p> <p>After thinking about it, I just don't see a real security gain from this approach. Changing the salt from account to account, still makes it extremely difficult for someone to attempt to brute force the hashing algorithm even if the attacker was aware of how to quickly determine what it was for each account. This is going on the assumption that the passwords are sufficiently strong. (Obviously finding the correct hash for a set of passwords where they are all two digits is significantly easier than finding the correct hash of passwords which are 8 digits). Am I incorrect in my logic, or is there something that I am missing?</p> <p><strong>EDIT:</strong> Okay so here's the reason why I think it's really moot to encrypt the salt. (lemme know if I'm on the right track). </p> <p>For the following explanation, we'll assume that the passwords are always 8 characters and the salt is 5 and all passwords are comprised of lowercase letters (it just makes the math easier).</p> <p>Having a different salt for each entry means that I can't use the same rainbow table (actually technically I could if I had one of sufficient size, but let's ignore that for the moment). This is the real key to the salt from what I understand, because to crack every account I have to do reinvent the wheel so to speak for each one. Now if I know how to apply the correct salt to a password to generate the hash, I'd do it because a salt really just extends the length/complexity of the hashed phrase. So I would be cutting the number of possible combinations I would need to generate to "know" I have the password + salt from 13^26 to 8^26 because I know what the salt is. Now that makes it easier, but still really hard. </p> <p>So onto encrypting the salt. If I know the salt is encrypted, I wouldn't try and decrypt (assuming I know it has a sufficient level of encryption) it first. I would ignore it. Instead of trying to figure out how to decrypt it, going back to the previous example I would just generate a larger rainbow table containing all keys for the 13^26. Not knowing the salt would definitely slow me down, but I don't think it would add the monumental task of trying to crack the salt encryption first. That's why I don't think it's worth it. Thoughts?</p> <p>Here is a link describing how long passwords will hold up under a brute force attack: <a href="http://www.lockdown.co.uk/?pg=combi" rel="nofollow">http://www.lockdown.co.uk/?pg=combi</a></p> http://stackoverflow.com/questions/315011/finding-a-dependency-of-a-sql-server-server-data-type 0 Finding a dependency of a SQL Server server data type Kevin 2008-11-24T18:39:17Z 2009-12-05T01:23:27Z <p>Is there a command, or a set of tables I can look at to determine which tables, stored procedures and views in SQL Server server 2005 have a certain user defined data type?</p> http://stackoverflow.com/questions/1848462/developing-a-website-for-3-mln-users-sharepoint-or-pure-asp-net/1848473#1848473 12 Answer by Kevin for Developing a website for 3 mln. users: SharePoint OR pure ASP.NET? Kevin 2009-12-04T17:30:43Z 2009-12-04T19:49:49Z <p>The answer is simple, you should go with what you know. If you prefer to do it in ASP.NET then, that is what you should go with. Trying to learn a new technology on that size of a project will almost certainty cause you severe problems when trying to develop it. Can sharepoint scale to that number of users, probably, but you don't know how to make it do that. That is the real key.</p> <p>They are correct SharePoint does have a lot of functionality out of the box, but that doesn't mean that it will make you more efficient, because you don't know all of the APIs etc. to access. </p> <p>Actually, if you want to know the way to cheat. If they force you into using it, you can run ASP.NET applications under SharePoint (well kind of). You can tell SharePoint to essentially ignore a path in the site and use regular ASP.NET as a web application just like any other site does. Really, this isn't using SharePoint, but it can get you out of a bind, in the "Needs to use SharePoint to make them happy scenario".</p> <p>Mayo suggested contacting MS. I have a feeling they already have a relationship with the bank and have provided some insight about the project. I would contact: <a href="http://www.mindsharp.com/" rel="nofollow">http://www.mindsharp.com/</a> and see if they can help you out. They are a training company, but I bet that the owners would be willing to help consult, and I haven't found anyone with more knowledge on SharePoint than Todd Bleeker.</p> http://stackoverflow.com/questions/1834852/software-development-crash-course/1834878#1834878 1 Answer by Kevin for Software development crash course Kevin 2009-12-02T18:30:04Z 2009-12-02T18:30:04Z <p>You want to look at <a href="http://www.construx.com/" rel="nofollow">Construx</a>. It's owned by Steve McConnell, the author of <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a>.</p> <p>You'll probably want to read <a href="http://rads.stackoverflow.com/amzn/click/1556159005" rel="nofollow">Rapid Development</a>.</p> http://stackoverflow.com/questions/1819568/c-thread-programming/1819577#1819577 1 Answer by Kevin for C# Thread Programming Kevin 2009-11-30T12:37:53Z 2009-11-30T12:37:53Z <p>The main one is that it has already been thoroughly debugged and tested. </p> <p>You can write your own and provide other functionality I suppose, but you really have to know what you are doing. I've seen people do it, but it in my opinion, there isn't much of a benefit for doing so. </p> http://stackoverflow.com/questions/1797933/anyone-have-benchmarks-speed-tests-comparing-classic-asp-vs-asp-net-2-0-or-3-5/1797983#1797983 1 Answer by Kevin for Anyone have benchmarks / speed tests comparing Classic ASP vs ASP.NET 2.0 or 3.5? Kevin 2009-11-25T16:05:45Z 2009-11-25T16:05:45Z <p>If you are talking about requests per second, you might want to look here:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms973813.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms973813.aspx</a></p> <p>Microsoft states asp.net is significantly faster than asp.</p> http://stackoverflow.com/questions/1797718/is-the-practice-of-programming-by-brian-w-kernighan-still-a-good-book/1797787#1797787 1 Answer by Kevin for Is `The Practice of Programming` by Brian W. Kernighan still a good book? Kevin 2009-11-25T15:41:38Z 2009-11-25T15:41:38Z <p>In short yes, it is still a very good book to read. It's not the be all end all of books, but it is definitely one I would add to the list of ones I would read.</p> http://stackoverflow.com/questions/1797332/creating-global-variables-in-asp-net-using-c/1797369#1797369 0 Answer by Kevin for Creating global variables in asp.net using C# Kevin 2009-11-25T14:43:35Z 2009-11-25T15:25:00Z <p>If you are using ASP.NET, I would look at using Session and Application state, since ASP.NET is stateless. This is assuming you are talking about storing "Global" information across requests and not just having a container to hold values which multiple objects can access during one requests. If my assumption is wrong, I would look at Jon's answer.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms972429.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms972429.aspx</a></p> <p>Based on the comments below, you are going to want to take a look at creating a singleton pattern.</p> <p><a href="http://www.dofactory.com/patterns/PatternSingleton.aspx" rel="nofollow">http://www.dofactory.com/patterns/PatternSingleton.aspx</a></p> <p>Before doing this though, I would really take a look at why you want to use it in a ASP.NET application as it can seriously hurt performance if implemented incorrectly. </p> <p>Since what you want to do surrounds db stuff I would also take a look at:</p> <p><a href="http://www.15seconds.com/Issue/040830.htm" rel="nofollow">http://www.15seconds.com/Issue/040830.htm</a> and <a href="http://msdn.microsoft.com/en-us/magazine/cc163854.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163854.aspx</a></p> http://stackoverflow.com/questions/1783822/format-of-for-loops/1783975#1783975 1 Answer by Kevin for format of for loops Kevin 2009-11-23T15:44:59Z 2009-11-23T18:59:22Z <p>I would never do this:</p> <pre><code>for(int i = 0; i != 5; ++i) </code></pre> <p>i != 5 leaves it open for the possibility that i will never be 5. It's too easy to skip over it and run into either an infinite loop or an array accessor error. </p> <pre><code>++i </code></pre> <p>Although a lot of people know that you can put ++ in front, there are a lot of people who don't. Code needs to be readable to people, and although it could be a micro optimization to make the code go faster, it really isn't worth the extra headache when someone has to modify the code and figure why it was done. </p> <p>I think Douglas Crockford has the best suggestion and that is to not use ++ or -- at all. It can just become too confusing (may be not in a loop but definitely other places) at times and it is just as easy to write i = i + 1. He thinks it's just a bad habit to get out of, and I kind of agree after seeing some atrocious "optimized" code. </p> <p>I think what crockford is getting at is with those operators you can get people writing things like:</p> <pre><code>var x = 0; var y = x++; y = ++x * (Math.pow(++y, 2) * 3) * ++x; alert(x * y); </code></pre> <p>//the answer is 54 btw.</p> http://stackoverflow.com/questions/1782932/access-is-denied-javascript-error/1782968#1782968 6 Answer by Kevin for 'Access is denied' Javascript error Kevin 2009-11-23T12:49:27Z 2009-11-23T12:49:27Z <p>You are trying to access a file on the hard drive which you aren't allowed to do from a page from a web server. </p> http://stackoverflow.com/questions/1771216/is-there-really-a-performance-hit-when-catching-exceptions/1771261#1771261 2 Answer by Kevin for Is there really a performance hit when catching exceptions Kevin 2009-11-20T15:32:48Z 2009-11-20T20:08:02Z <p>In C# raising exceptions do have an every so slight performance hit, but this shouldn't scare you away from using them. If you have a reason, you should throw an exception. Most people who have problems with using them cite the reason being because they can disrupt the flow of a program. </p> <p>Really if your reasons for not using them is a performance hit, your time can be better spent optimizing other parts of your code. I have never run into a situation where throwing an exception caused the program to behave so slowly that it had to be re-factored out (well the act of throwing the exception, not how the code treated it).</p> <p>Thinking about it a little more, with all that being said, I do try and use methods which avoid throwing exceptions. If possible I'll use TryParse instead of Parse, or use KeyExists etc. If you are doing the same operation 100s of times over and throwing many exception small amounts of inefficiency can add up.</p> http://stackoverflow.com/questions/1770974/best-practice-to-send-secure-information-over-e-mail/1771019#1771019 1 Answer by Kevin for Best practice to send secure information over e-mail? Kevin 2009-11-20T15:02:13Z 2009-11-20T15:02:13Z <p>In short no. Email by default is un-protected. You use encryption programs to protect the information inside, but that requires the end user to be able to decrypt it. </p> <p>The easiest way would probably be to create an ssl encrypted site where the user can log in and access the information.</p> http://stackoverflow.com/questions/1763899/asp-net-script-in-external-js-file/1763916#1763916 1 Answer by Kevin for Asp.Net script in external js file Kevin 2009-11-19T15:04:42Z 2009-11-19T15:13:35Z <p>You can't put <code>#&lt;%= gridResults.ClientID %&gt;</code>, because the gridresults.ClientID is specific to that asp.net page. </p> <p>You could do:</p> <pre><code>&lt;stript src="yourfile" type="text/javascript"&gt; &lt;!--link to external js file--&gt; &lt;script type="text/javascript"&gt; var grid = $("#&lt;%= gridResults.ClientID %&gt;"); yourfunction (grid); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1757992/web-service-vs-wcf-different-objects-when-consumed/1758028#1758028 2 Answer by Kevin for Web Service vs. WCF - different objects when consumed Kevin 2009-11-18T18:19:45Z 2009-11-18T18:19:45Z <p>You can still add web references.</p> <p>Do </p> <p>Add Service Refernce</p> <p>Hit the "Advanaced" button on the bottom left</p> <p>Hit "Add Web Reference" on the bottom left.</p> http://stackoverflow.com/questions/1757855/asp-net-2-0-or-3-5/1757880#1757880 2 Answer by Kevin for ASP.NET 2.0 or 3.5? Kevin 2009-11-18T17:56:22Z 2009-11-18T17:56:22Z <p>Yes, ASP.NET 2.0 and ASP.NET 3.5 are different. 3.5 is the most current non-beta release. Both 2.0 and 3.5 use the 2.0 runtime environment. </p> http://stackoverflow.com/questions/1757620/how-to-identify-that-iis-restarted/1757646#1757646 1 Answer by Kevin for How to Identify that IIS Restarted? Kevin 2009-11-18T17:20:46Z 2009-11-18T17:20:46Z <p>I would just put something int the application_start event in the global.asax</p> <p><a href="http://www.codetoad.com/asp.net%5Fglobalasax.asp" rel="nofollow">http://www.codetoad.com/asp.net%5Fglobalasax.asp</a></p> <p>Your app has restarted for some reason, and according to your description it'll have to clean all the sessions out of the db regardless if it is from IIS restarting, or the app pool getting recycled etc.</p> <p>You can't trust your application to set a flag that IIS has signaled a restart in your application_end event, because there are times when it won't fire. For example what happens if the server crashes, or if IIS gets killed outside of it's control (taskkill). </p> http://stackoverflow.com/questions/1755549/how-to-handle-an-exception-within-exception-handling-code/1755603#1755603 0 Answer by Kevin for How to handle an exception within exception handling code? Kevin 2009-11-18T12:19:21Z 2009-11-18T12:19:21Z <p>Quite honestly it all depends on the volatility of your logging mechanism, and how badly you want to log each error. There is always going to be the possibility that your logging will fail, because it is based on something external to your program working (e.g. Database being available, having access to the log file, event log not being full etc.). You should definitely wrap you logging in a try catch block if for no other reason to prevent a huge nasty error displaying to the user. </p> <p>Personally, I would put in multiple paths of logging. The first one maybe to the database (although I personally don't like logging errors to the db, I prefer log files), and a second to the event log along with trying to send an email stating something is wrong. There is no sure fire way to say my logging to an external source will absolutely never fail, but you can minimize that possibility, and make sure that no matter what happens the end user doesn't see a catastrophic failure error. </p> http://stackoverflow.com/questions/1748794/is-there-an-arraylist-in-javascript/1748800#1748800 9 Answer by Kevin for Is there an arraylist in Javascript? Kevin 2009-11-17T13:16:33Z 2009-11-17T13:16:33Z <p>just use array.push();</p> <pre><code>var array = []; array.push(); </code></pre> <p>This will add another item to it.</p> <p>To take one off, use <code>array.pop();</code></p> <p>Link to JavaScript arrays: <a href="http://www.hunlock.com/blogs/Mastering%5FJavascript%5FArrays" rel="nofollow">http://www.hunlock.com/blogs/Mastering%5FJavascript%5FArrays</a></p> http://stackoverflow.com/questions/1744946/merge-javascript-objects/1744962#1744962 3 Answer by Kevin for Merge JavaScript objects Kevin 2009-11-16T21:26:29Z 2009-11-17T13:01:06Z <p>This should work.</p> <pre><code>var array = [] array.push(yourObject); </code></pre> <p>this will put your object into an array, which should be used if you were putting of a collection of the same object into one. </p> <p>to merge different values into one object:</p> <pre><code>function makeObject(){ var obj = {}; obj['info'] = somevalue; //arguments [0] maybe obj['power'] = somevalue; obj['accuracy'] = somevalue; obj['type'] = somevalue; obj['category'] = somevalue; obj['pp_min'] = somevalue; obj['pp_max'] = somevalue; return obj; </code></pre> <p>}</p> <p>Here is a link also describing passing arguments like array into a function in JavaScript which could be useful in creating the merged object.</p> <p><a href="http://www.cherny.com/webdev/60/javascript-function-arguments-default-values-passing-objects-and-overloading" rel="nofollow">http://www.cherny.com/webdev/60/javascript-function-arguments-default-values-passing-objects-and-overloading</a></p> http://stackoverflow.com/questions/1745683/button-not-picking-up-c-code-behind-event-what-did-i-do-wrong/1745689#1745689 6 Answer by Kevin for Button not picking up c# code behind event, what did I do wrong? Kevin 2009-11-16T23:58:56Z 2009-11-17T00:11:43Z <p>you need a runat=server</p> <p>try this:</p> <pre><code>&lt;asp:button id="button" runat="server" onclick="click" cssclass="contact"&gt; </code></pre> <p>If you don't want to use the asp:button</p> <pre><code>&lt;button id="button" runat="server" OnServerClick="click" &gt; </code></pre> <p>Here is an article explaining it: <a href="http://ondotnet.com/pub/a/dotnet/2001/06/21/webforms.html?page=2" rel="nofollow">http://ondotnet.com/pub/a/dotnet/2001/06/21/webforms.html?page=2</a></p> <p>If you don't want to use a server side button at all, you could on the page_load event check which button did the submit action (through the request.form). You won't have an object to call the event handler, but you could but the code in another method and perform the same action.</p> http://stackoverflow.com/questions/1744739/passing-data-without-using-cookies-in-javascript/1744772#1744772 3 Answer by Kevin for Passing data without using cookies in Javascript. Kevin 2009-11-16T20:49:25Z 2009-11-16T20:57:47Z <p>You can pass it through a query string. </p> <p>This link will give you the code to get it using JavaScript.</p> <p><a href="http://www.bloggingdeveloper.com/post/JavaScript-QueryString-ParseGet-QueryString-with-Client-Side-JavaScript.aspx" rel="nofollow">http://www.bloggingdeveloper.com/post/JavaScript-QueryString-ParseGet-QueryString-with-Client-Side-JavaScript.aspx</a></p> <p>code snippet from the page:</p> <pre><code>function getQuerystring(key, default_) { if (default_==null) default_=""; key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); var regex = new RegExp("[\\?&amp;]"+key+"=([^&amp;#]*)"); var qs = regex.exec(window.location.href); if(qs == null) return default_; else return qs[1]; } </code></pre> http://stackoverflow.com/questions/1742927/what-type-of-collection-suits-to-webservices-at-net/1742936#1742936 0 Answer by Kevin for what type of collection suits to webservices at .Net? Kevin 2009-11-16T15:35:34Z 2009-11-16T15:35:34Z <p>I would use List of the objects you want to return. You can then specify if you want to to appear as array of T or List at the client (I would use List). </p> http://stackoverflow.com/questions/1742665/array-more-efficient-than-dictionary/1742679#1742679 0 Answer by Kevin for Array more Efficient than Dictionary Kevin 2009-11-16T14:59:37Z 2009-11-16T15:27:46Z <p>Your boss is correct. Since you are going to access it by the month number, you can have O(1) access to the value without the additional overhead of setting up the dictionary. </p> <p>So I just read that you are populating a drop down list. Instead of doing a look up to get the abbreviated name of the month, just put that as the drop down list value. </p> http://stackoverflow.com/questions/1929285/they-dont-hire-you-whats-the-best-followup/1929305#1929305 Comment by Kevin on They don't hire you - what's the best followup? Kevin 2009-12-18T16:41:27Z 2009-12-18T16:41:27Z what I meant was that sometimes they'll be very frank, and some people will get the response akin to: &quot;You have no business being a programmer.&quot; http://stackoverflow.com/questions/1929285/they-dont-hire-you-whats-the-best-followup/1929305#1929305 Comment by Kevin on They don't hire you - what's the best followup? Kevin 2009-12-18T16:34:55Z 2009-12-18T16:34:55Z You just have to be prepared for what they say. Sometimes not knowing the answer is a lot less painful than not knowing. http://stackoverflow.com/questions/1902634/standalone-functions-in-asp-net/1902643#1902643 Comment by Kevin on Standalone functions in ASP.net Kevin 2009-12-14T19:11:47Z 2009-12-14T19:11:47Z oh absolutely. You can't get around having classes, but I was trying to offer an alternative to the problem he was having. http://stackoverflow.com/questions/1889842/how-to-get-the-selected-value-in-a-dropdownlist-in-the-object-type-not-string/1889866#1889866 Comment by Kevin on How to get the selected value in a DropDownList in the Object Type (not string)? Kevin 2009-12-11T18:10:23Z 2009-12-11T18:10:23Z Nope, because the string is what is sent to the browser. http://stackoverflow.com/questions/1848462/developing-a-website-for-3-mln-users-sharepoint-or-pure-asp-net/1848473#1848473 Comment by Kevin on Developing a website for 3 mln. users: SharePoint OR pure ASP.NET? Kevin 2009-12-04T17:43:31Z 2009-12-04T17:43:31Z @ChaosPandion I would tend to agree, but if you are a SharePoint ninja, you could probably do a bang up job with it...It's just that most people aren't http://stackoverflow.com/questions/1799701/cant-get-anonymous-access-to-website Comment by Kevin on Can't get anonymous access to website Kevin 2009-11-25T20:29:17Z 2009-11-25T20:29:17Z Make sure that the account is not disabled. http://stackoverflow.com/questions/1797332/creating-global-variables-in-asp-net-using-c/1797369#1797369 Comment by Kevin on Creating global variables in asp.net using C# Kevin 2009-11-25T14:51:21Z 2009-11-25T14:51:21Z You can have both, I just didn't explicitly state application state. http://stackoverflow.com/questions/1783822/format-of-for-loops/1783975#1783975 Comment by Kevin on format of for loops Kevin 2009-11-23T18:35:34Z 2009-11-23T18:35:34Z @jalf whether or not you think that is true, there are people who still get tripped up by that. http://stackoverflow.com/questions/1783822/format-of-for-loops/1783975#1783975 Comment by Kevin on format of for loops Kevin 2009-11-23T16:22:08Z 2009-11-23T16:22:08Z @rmeador don't get me wrong, I totally agree with you that they should know it. My problem is that I can't code for what I think should be, I have to code for what is. I will say there are other times too where trying to be terse leads to possible assumptions that aren't correct. Mostly these are stupid things that taking up 2 lines instead of 1 would have become evident. Little stupid mistakes that could have been avoided. http://stackoverflow.com/questions/1763502/will-jon-skeets-book-c-in-depth-help-me-understand-this-code-better Comment by Kevin on Will Jon Skeet's Book, C# In Depth Help Me Understand This Code Better? Kevin 2009-11-19T14:09:36Z 2009-11-19T14:09:36Z I think that practicing what he says in the book would help you understand it better more than just reading it. http://stackoverflow.com/questions/1758963/why-is-this-div-column-not-going-all-the-way-to-the-right Comment by Kevin on Why is this div column not going all the way to the right? Kevin 2009-11-18T20:49:36Z 2009-11-18T20:49:36Z try removing this and see if it if lines up: padding-left: 10px; That might do it. http://stackoverflow.com/questions/1757992/web-service-vs-wcf-different-objects-when-consumed/1758028#1758028 Comment by Kevin on Web Service vs. WCF - different objects when consumed Kevin 2009-11-18T18:39:26Z 2009-11-18T18:39:26Z It depends if you are starting out new I would think about using WCF if at all possible. If you are upgrading an existing app to 2008, and it has a lot of web service references, you'll probably have to check and see what will change and affect you. WCF is pretty cool (definitely better than web services), but there are some gotchas. http://stackoverflow.com/questions/1757992/web-service-vs-wcf-different-objects-when-consumed/1758028#1758028 Comment by Kevin on Web Service vs. WCF - different objects when consumed Kevin 2009-11-18T18:27:43Z 2009-11-18T18:27:43Z Yeah, I figured you might say that, but I thought I would add it anyway just in case you didn't have a choice and needed to know how to do it. http://stackoverflow.com/questions/1756487/should-wcf-service-typically-be-singleton-or-not/1756505#1756505 Comment by Kevin on Should WCF service typically be singleton or not? Kevin 2009-11-18T14:49:02Z 2009-11-18T14:49:02Z +1 some of my coworkers found this out the hard way....in production. http://stackoverflow.com/questions/1755835/optional-parameter Comment by Kevin on optional parameter???? Kevin 2009-11-18T13:09:53Z 2009-11-18T13:09:53Z Which language would you be referring to?