User ninj - Stack Overflowmost recent 30 from stackoverflow.com2010-03-18T22:11:36Zhttp://stackoverflow.com/feeds/user/48229http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1963882/back-browser-must-not-go-in-previous-page-after-signed-out/1963922#19639221Answer by ninj for "Back" - browser must not go in previous page - after signed outninjhttp://stackoverflow.com/users/482292009-12-26T17:56:10Z2009-12-26T17:56:10Z<p>For a page not to be cached the browser needs to respond appropriately to caching instructions, but there is no guarantee that this will work on every browser! (An appropriately evil person could write their own browser to ignore caching information, or write a proxy to strip it out...)</p>
<p>So you can't get this to work 100% of the time, but you're always going to face the problem that a user can easily take a screenshot, print out a page, save a copy on their disk, etc. once you've fed a page to them anyway...</p>
http://stackoverflow.com/questions/1922040/resize-an-image-c/1922105#19221050Answer by ninj for Resize an Image C#ninjhttp://stackoverflow.com/users/482292009-12-17T14:20:12Z2009-12-17T14:20:12Z<p>You probably want to look at this stackoverflow question too:</p>
<p><a href="http://stackoverflow.com/questions/87753/resizing-an-image-without-losing-any-quality">http://stackoverflow.com/questions/87753/resizing-an-image-without-losing-any-quality</a></p>
http://stackoverflow.com/questions/1868316/should-iequatablet-icomparablet-be-implemented-on-non-sealed-classes/1874276#18742760Answer by ninj for Should IEquatable<T>, IComparable<T> be implemented on non-sealed classes?ninjhttp://stackoverflow.com/users/482292009-12-09T14:29:54Z2009-12-09T14:29:54Z<p>Most <code>Equals</code> implementations I've seen check the types of the objects being compared, if they aren't the same then the method returns false.</p>
<p>This neatly avoids the problem of a sub-type being compared against it's parent type, thereby negating the need for sealing a class.</p>
<p>An obvious example of this would be trying to compare a 2D point (A) with a 3D point (B): for a 2D the x and y values of a 3D point might be equal, but for a 3D point, the z value will most likely be different.</p>
<p>This means that <code>A == B</code> would be true, but <code>B == A</code> would be false. Most people like the <code>Equals</code> operators to be commutative, to checking types is clearly a good idea in this case.</p>
<p>But what if you subclass and you don't add any new properties? Well, that's a bit harder to answer, and possibly depends on your situation.</p>
http://stackoverflow.com/questions/1853257/exclude-app-config-from-source-control/1853655#18536551Answer by ninj for Exclude app.config from source control?ninjhttp://stackoverflow.com/users/482292009-12-05T22:21:54Z2009-12-05T22:21:54Z<p>For a long time I'd always thought that Microsoft made configuration management a complete pain in the ass.</p>
<p>Luckily now you can externalise settings in the <code>appSettings</code> and <code>connectionStrings</code> sections etc. by using the <code>file</code> property for appSettings and the <code>configSource</code> property for other sections.</p>
<p>The documentation for configSource is hidden away in <a href="http://msdn.microsoft.com/en-us/library/system.configuration.sectioninformation.configsource.aspx" rel="nofollow">MSDN</a> unfortunately, which is why I assume it isn't more widely known. The documentation provided is also rather bland, but there's a much better explanation here:</p>
<p><a href="http://peterkellner.net/2008/02/23/webconfigbestpractice/" rel="nofollow">Best Practices for Configuring ASP.NET ConnectionStrings and AppSettings in Web.Config</a></p>
<p>To paraphrase, you can do stuff like this:</p>
<pre><code><appSettings file="webAppSettings.config">
<add key="UseCache" value="True"/>
<add key="MapsKey" value="1234567890-AA"/>
<add key="SMTPServer" value="smtp.peterkellner.net"/>
</appSettings>
<connectionStrings configSource="WebConnectionString.config">
</connectionStrings>
</code></pre>
<p>You can use this method in conjunction with the template method to handle settings for difference environments too.</p>
http://stackoverflow.com/questions/1779397/c-design-pattern-how-to-write-code-based-on-highly-configurable-user-selection/1780627#17806270Answer by ninj for C# Design Pattern - How to write code based on highly configurable user selectionsninjhttp://stackoverflow.com/users/482292009-11-23T00:53:07Z2009-11-23T00:53:07Z<p>Are you simply asking if you can create an instance of a class based on a string (or maybe even a <code>Type</code> object)?
You can use <a href="http://msdn.microsoft.com/en-us/library/wccyzw83.aspx" rel="nofollow"><code>Activator.CreateInstance</code></a> for that.</p>
<pre><code>Type wheelType = Type.GetType("Namespace.WheelType");
Wheel w = Activator.CreateInstance(wheelType) as Wheel;
</code></pre>
<p>You'd probably want to checking around the classes that you wind up creating, but that's another story.</p>
http://stackoverflow.com/questions/565471/logging-for-asp-net-best-practices/565649#5656490Answer by ninj for Logging for ASP.NET - Best Practicesninjhttp://stackoverflow.com/users/482292009-02-19T14:52:05Z2009-07-20T17:35:07Z<p>If you are only looking for logging of exceptions that make it back to the user, try ELMAH:</p>
<p><a href="http://code.google.com/p/elmah/" rel="nofollow">http://code.google.com/p/elmah/</a></p>
<p>On the other hand, if you are looking to track the activity in you app, you can certainly try log4net. I prefer nLog myself, you can find it here:</p>
<p><a href="http://www.nlog-project.org/" rel="nofollow">http://www.nlog-project.org/</a></p>
<p>Both of these are open source.</p>
http://stackoverflow.com/questions/398037/asp-net-web-site-or-web-application/1133716#11337165Answer by ninj for ASP.NET: Web Site or Web Application?ninjhttp://stackoverflow.com/users/482292009-07-15T20:15:09Z2009-07-15T20:15:09Z<p>Unless you have a specific need for a dynamically compiled project, <strong>don't use a web site project</strong>.</p>
<p>Why? Because web site project will drive you up the wall when trying to change or understand your project. The static typing find features (e.g. find usages, refactor) in VS will all take forever on any reasonably size project. For further information, see the the SO question:
<a href="http://stackoverflow.com/questions/428436/slow-find-all-references-in-visual-studio">Slow “Find All References” in Visual Studio</a></p>
<p>I really can't see why they dropped web applications in VS2005 for the pain-inducing, sanity-draining, productivity carbuncle web site project type.</p>
http://stackoverflow.com/questions/1121836/how-to-render-a-user-the-local-time-using-a-utc-time-asp-net-ajax/1122480#11224800Answer by ninj for how to render a user the local-time using a UTC Time (asp.net & ajax)ninjhttp://stackoverflow.com/users/482292009-07-13T22:38:42Z2009-07-13T22:38:42Z<p>Why not output UTC dates in tags, and then use javascript to convert them to local time once the page has loaded?</p>
<p>This kind of assumes your visitors have to use javascript, which is a bit naughty from an accessibility standpoint.</p>
http://stackoverflow.com/questions/1092835/enabling-authentication-between-applications/1122422#11224220Answer by ninj for Enabling authentication between applicationsninjhttp://stackoverflow.com/users/482292009-07-13T22:23:33Z2009-07-13T22:23:33Z<p>Are you asking about single-sign-on? (i.e. someone authenticated on AppA should also be able to use AppB and AppC without re-authenticating)</p>
<p>You can do this by <a href="http://msdn.microsoft.com/en-us/library/eb0zx8fc.aspx" rel="nofollow">configuring the machineKey for your apps so they can share asp.net authentication tokens</a>.</p>
http://stackoverflow.com/questions/1045060/banbuilder-banned-word-list-generator-would-you-use-it-1BanBuilder Banned-Word List Generator - Would You Use It?ninjhttp://stackoverflow.com/users/482292009-06-25T17:02:33Z2009-06-25T17:31:03Z
<p>From <a href="http://banbuilder.com/" rel="nofollow">http://banbuilder.com/</a>:</p>
<blockquote>
<p>Why BanBuilder?</p>
<p>BanBuilder is designed to allow you to
customize your banned-words list, and
is constantly evolving. As people find
new ways around the banned words
(using symbols instead of letters, for
example), they get added to the
database. And its all free!</p>
</blockquote>
<p>The idea sounds great, but some people have added some words which probably shouldn't be banned, e.g. "unwed" probably isn't a swear word, nor one worth banning. Certainly banning "screw" from a DIY site isn't going to helpful either.</p>
<p>Can something like this be useful, given the wide range possible opinions people have?</p>
http://stackoverflow.com/questions/641148/application-start-not-firing/641152#6411520Answer by ninj for Application_Start not firing?ninjhttp://stackoverflow.com/users/482292009-03-13T01:24:55Z2009-03-13T01:24:55Z<p>I think the application start event only gets fired when the first request is made, are you hitting your website (i.e. making a request)?</p>
http://stackoverflow.com/questions/638300/is-it-worth-moving-from-java-to-c-for-someone-with-3-years-of-java-experience/638368#6383680Answer by ninj for Is it worth moving from Java to C#, for someone with 3 years of Java experience?ninjhttp://stackoverflow.com/users/482292009-03-12T12:18:16Z2009-03-12T12:18:16Z<p>A friend of mine is a java guy and was asked to do some coding in c#. He said it was like coding in java until Visual Studio showed him a squiggly line to tell him he'd got something wrong :)</p>
<p>Obviously you'll have no problem in picking up the language, but it will take you longer to learn about what the .net framework can and can't do for you compared to the java libraries.</p>
<p>Financially speaking, you should consult the web site sites which show relative salaries for someone in your position within the industry you are in (or interested in.)</p>
<p>For instance, both java and c# are used in the finance industry in the UK but Java appears to pay slightly higher (probably due to entrenched java systems hanging about.) Of course you'll want to bear in mind the relative trends, e.g. is java losing popularity with employers?</p>
http://stackoverflow.com/questions/539906/best-authentication-mechanism-for-flex-asp-net-and-soap-or-rest-web-services/637103#6371030Answer by ninj for Best authentication mechanism for Flex, ASP.NET and SOAP or REST web services?ninjhttp://stackoverflow.com/users/482292009-03-12T01:50:52Z2009-03-12T01:50:52Z<p>If you move your services to another place, then the standard ASP.net authentication cookie can be re-used if both web apps have the same machineKey in the web.config.</p>
<p>As far as I know, FLEX will honour the asp.net authentication cookies because it will make http requests through the browser, which will pass the http cookies (including the asp.net authentication ticket) like a normal http request.</p>
<p>Have you tried securing your website and services using normal asp.net authentication yet?</p>
http://stackoverflow.com/questions/634573/is-reflection-reverse-engineering/634652#6346522Answer by ninj for Is reflection reverse engineering?ninjhttp://stackoverflow.com/users/482292009-03-11T14:05:53Z2009-03-11T14:05:53Z<p>I would say Reflection is merely a tool. The use of reflection doesn't necessarily mean reverse engineering.</p>
<p>For example, if you use reflection to discover the signatures of all the public and protected methods in an assembly that wouldn't mean reverse engineering.</p>
<p>As for a legal standpoint, I suggest you have to look at the law you are worried about to find the definition of reverse engineering.</p>
http://stackoverflow.com/questions/633075/browser-timeouts-while-asp-net-application-keeps-running/633103#6331032Answer by ninj for browser timeouts while asp.net application keeps runningninjhttp://stackoverflow.com/users/482292009-03-11T02:20:59Z2009-03-11T02:20:59Z<p>Sounds like you're using IE and it is timing out while waiting for a response from the server.</p>
<p>You can find a technet article to adjust this limit:</p>
<p><a href="http://support.microsoft.com/kb/181050" rel="nofollow">http://support.microsoft.com/kb/181050</a></p>
<blockquote>
<h3>CAUSE</h3>
<p>By design, Internet Explorer imposes a
time-out limit for the server to
return data. The time-out limit is
five minutes for versions 4.0 and 4.01
and is 60 minutes for versions 5.x, 6,
and 7. As a result, Internet Explorer
does not wait endlessly for the server
to come back with data when the server
has a problem. Back to the top</p>
<h3>RESOLUTION</h3>
<p>In general, if a page does not return within a few
minutes, many users perceive that a
problem has occurred and stop the
process. Therefore, design your server
processes to return data within 5
minutes so that users do not have to
wait for an extensive period of time.</p>
</blockquote>
http://stackoverflow.com/questions/627866/what-is-the-best-method-for-changing-a-web-config-connectionstring-at-runtime/628053#6280530Answer by ninj for What is the best method for changing a web.config connectionstring at runtime?ninjhttp://stackoverflow.com/users/482292009-03-09T21:08:32Z2009-03-09T21:08:32Z<p>As Mitch says, you lose connection pooling if you have users login in with different credentials (if this causes different connection strings.)</p>
<p>If you're just worried about separating admin users from normal users, just have 2 connection strings, one for admins and one for normal users. Use <a href="http://msdn.microsoft.com/en-us/library/ms998314.aspx" rel="nofollow">asp.net role providers</a> to provide appropriate permissions to users.</p>
http://stackoverflow.com/questions/625721/c-subclass-with-same-method/625739#6257390Answer by ninj for C# Subclass with same method ninjhttp://stackoverflow.com/users/482292009-03-09T10:33:38Z2009-03-09T10:33:38Z<p>You said:</p>
<blockquote>
<p>The purpose of both methods is the same</p>
</blockquote>
<p>so yes, it does sounds that you've got a common method that you can put in the superclass.</p>
http://stackoverflow.com/questions/625619/meaningful-interaction-with-iis-smtp-server-in-net/625724#6257240Answer by ninj for Meaningful interaction with IIS SMTP Server in .Netninjhttp://stackoverflow.com/users/482292009-03-09T10:29:06Z2009-03-09T10:29:06Z<p>If your .net widget is bespoke, why not just throttle it's output to some (definable) throughput?</p>
<p>As an alternative you might be able to fiddle with some registry settings for the SMTP server.</p>
<p><a href="http://blog.rednael.com/CommentView,guid,dc20366c-3629-490a-a8ee-7e8f496ef58b.aspx" rel="nofollow">http://blog.rednael.com/CommentView,guid,dc20366c-3629-490a-a8ee-7e8f496ef58b.aspx</a></p>
<p>Apparently there are also some WMI counters (SMTP Server\Remote Queue Length and SMTP Server\Remote Retry Queue Length) that will give you useful information.</p>
<p><a href="http://www.tech-archive.net/Archive/Internet-Server/microsoft.public.inetserver.iis.smtp%5Fnntp/2008-02/msg00011.html" rel="nofollow">http://www.tech-archive.net/Archive/Internet-Server/microsoft.public.inetserver.iis.smtp_nntp/2008-02/msg00011.html</a></p>
http://stackoverflow.com/questions/613244/how-can-i-do-client-side-text-formatting-on-a-data-bound-field-inside-a-repeater/613263#6132630Answer by ninj for How can I do client side text formatting on a Data-bound field inside a repeater?ninjhttp://stackoverflow.com/users/482292009-03-05T01:19:34Z2009-03-05T01:19:34Z<p>Personally I would start by placing that kind of string processing on the server. I wouldn't actually consider it a problem until I saw some kind of significant performance hit.</p>
http://stackoverflow.com/questions/613234/asp-net-web-site-release-build-include-pdb-files-how-do-i-get-rid-of-them/613255#6132550Answer by ninj for ASP.net web site Release build include pdb files. How do i get rid of them?ninjhttp://stackoverflow.com/users/482292009-03-05T01:15:36Z2009-03-05T01:15:36Z<p>If you publish your web site (even to a spare directory in your filesystem) you can tell VS to only copy the files that you actually need to run your app.</p>
http://stackoverflow.com/questions/602023/web-application-user-authentication-across-domains/602302#6023020Answer by ninj for Web Application - User Authentication Across Domainsninjhttp://stackoverflow.com/users/482292009-03-02T13:11:01Z2009-03-02T13:11:01Z<p>Depending on how your app is constructed, you can fiddle with the machineKey in your web.config to allow for AJAX calls with single-sign-on (SSO).
This would involve an small asp.net app within the corporate network just to dish out authentication tokens and redirect to your hosted app.</p>
<p>If the two apps share the same machineKey then the asp.net authentication system will happily allow users into your hosted app.</p>
<p>There are problems with this approach:</p>
<ul>
<li>You introduce another dependency into your system (the authentication app within the corporate network.) It'll be a simple app, but you will face problems when trying to diagnose problems if you don't have access.</li>
<li>You need your hosted service to the in the same domain as the authentication app (so the authentication ticket in the HTTP cookie gets passed around.)</li>
<li>You'll also need an SSL certificate for your hosted service to secure the information. (Not really a downside per-se, you'd probably want to do this anyway.)</li>
<li>Because you and your client will have a shared machineKey, you will tie down an instance of your app to that particular client.</li>
</ul>
http://stackoverflow.com/questions/389276/should-i-continue-work-on-my-hobby-project/389469#3894690Answer by ninj for Should I continue work on my hobby project?ninjhttp://stackoverflow.com/users/482292008-12-23T17:13:13Z2008-12-23T17:13:13Z<p>In the case of this particular project, how would you compare it to <a href="http://projects.nikhilk.net/ScriptSharp/" rel="nofollow">Script#</a>?</p>
<p>If you are asking whether it is worthwhile for you to do a hobby project in general, I can't really answer that for you!</p>
http://stackoverflow.com/questions/1868316/should-iequatablet-icomparablet-be-implemented-on-non-sealed-classes/1874276#1874276Comment by ninj on Should IEquatable<T>, IComparable<T> be implemented on non-sealed classes?ninjhttp://stackoverflow.com/users/482292009-12-16T21:11:30Z2009-12-16T21:11:30ZOh, whoops. Good point, IEquatable<T> shouldn't really have to handle checking types (yes, it's icky to have to do so.)
I was implementing a helper class for Equals and IEquatable a while ago, and eventually I took the chicken way out - I narrowed the purpose of IEquatable<T> from "type safe equals" to "what makes things like generic dictionaries work". No need to seal the types if you take this way out...
http://stackoverflow.com/questions/633075/browser-timeouts-while-asp-net-application-keeps-running/633103#633103Comment by ninj on browser timeouts while asp.net application keeps runningninjhttp://stackoverflow.com/users/482292009-03-11T13:46:41Z2009-03-11T13:46:41Zkind of.
FF2 has a config setting called network.http.connect.timeout
FF2 and FF3 have a config setting called network.http.keep-alive.timeout, although I'm not entirely sure this will do what you want.
you can find all FF config entries here:
<a href="http://kb.mozillazine.org/About:config_entries" rel="nofollow">kb.mozillazine.org/About:config_entries</a>