User Captain Toad - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:48:53Z http://stackoverflow.com/feeds/user/15664 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/82022/are-net-languages-really-making-any-kind-of-dent-in-consumer-desktop-application/82289#82289 2 Answer by Captain Toad for Are .NET languages really making any kind of dent in consumer desktop applications? Captain Toad 2008-09-17T11:50:40Z 2009-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 &amp; 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#178277 1 Answer by Captain Toad for How to implement Querystring authentication Captain Toad 2008-10-07T12:50:20Z 2008-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 &amp; 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#140619 3 Answer by Captain Toad for How do I detect if my program runs in an Active Directory environment? Captain Toad 2008-09-26T16:43:52Z 2008-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#82321 2 Answer by Captain Toad for What's Your Motto As A Developer/Programmer? Captain Toad 2008-09-17T11:58:44Z 2008-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#82243 1 Answer by Captain Toad for A potentially dangerous Request.Form value was detected from the client Captain Toad 2008-09-17T11:41:07Z 2008-09-17T11:41:07Z <p>If you're just looking to tell your users that &lt; 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>