User Captain Toad - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:48:53Zhttp://stackoverflow.com/feeds/user/15664http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/82022/are-net-languages-really-making-any-kind-of-dent-in-consumer-desktop-application/82289#822892Answer by Captain Toad for Are .NET languages really making any kind of dent in consumer desktop applications? Captain Toad2008-09-17T11:50:40Z2009-10-13T08:51:43Z<p>I've noticed that in <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a> more and more of my desktop apps are being highlighted in yellow (meaning they're .Net). As mentioned above, ATI's Catalyst is, Windows Live Mesh, many games have .Net update or config engines, as well as most of the bits I write that haven't quite made it into the public arena yet (because I don't have as much time as I'd like for coding & testing). Also, large parts of Visual Studio ARE .NET - at least according to Process Explorer.</p>
<p>I think that, as somebody mentioned above, there are a lot of desktop apps already out there that have older code-bases which their owners won't convert unless there's some fantastic value in doing so.</p>
http://stackoverflow.com/questions/178251/how-to-implement-querystring-authentication/178277#1782771Answer by Captain Toad for How to implement Querystring authenticationCaptain Toad2008-10-07T12:50:20Z2008-10-07T12:50:20Z<p>Could you not insert an encrypted user name bundled with the hash value of the password?</p>
<p>What I mean is, encrypt & encode the user name to always be a particular length or to have a known break character in it then append the passwords hash value. this way, you could break apart the query string easily while still having the user name and password securely encoded. A straight compare of the hash values would be enough, with the unencrypted, decoded user name to allow access.</p>
http://stackoverflow.com/questions/140579/how-do-i-detect-if-my-program-runs-in-an-active-directory-environment/140619#1406193Answer by Captain Toad for How do I detect if my program runs in an Active Directory environment?Captain Toad2008-09-26T16:43:52Z2008-09-26T16:43:52Z<p>Try getting Environment.UserDomainName and comparing it to Environment.MachineName. If the two are the same then it's likely that the user does not have a domain. If they are not the same then the user is logged into a domain which must have a directory server.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82321#823212Answer by Captain Toad for What's Your Motto As A Developer/Programmer?Captain Toad2008-09-17T11:58:44Z2008-09-17T11:58:44Z<p>Write it so that your Mum could use it</p>
http://stackoverflow.com/questions/81991/a-potentially-dangerous-request-form-value-was-detected-from-the-client/82243#822431Answer by Captain Toad for A potentially dangerous Request.Form value was detected from the client Captain Toad2008-09-17T11:41:07Z2008-09-17T11:41:07Z<p>If you're just looking to tell your users that < and > are not to be used BUT, you don't want the entire form processed/posted back (and lose all the input) before-hand could you not simply put in a validator around the field to screen for those (and maybe other potentially dangerous) characters?</p>