User Mark Worth - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T17:47:42Zhttp://stackoverflow.com/feeds/user/76080http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/791253/fastest-way-to-update-namespaces-resharper/1018275#10182750Answer by Mark Worth for Fastest way to update namespaces (resharper ?)Mark Worth2009-06-19T14:32:20Z2009-06-19T14:32:20Z<p>This isn't quite what you want to do ... but hopefully it's helpful.</p>
<p>Go to the class view, and rename the namespace using Ctrl+R,R. It will update that namespace in all the files/folders that it's used in. As long as your namespaces are consistant, it should acheive the same result as changing all the namespaces in a folder.</p>
<p>If your namespaces aren't consistant, and you're just tidying up then I'm afraid you've got a lot of clicking in front of you (or behind you as you've probably already done this).</p>
http://stackoverflow.com/questions/891187/xml-to-xml-using-xslt/892022#8920221Answer by Mark Worth for XML to XML using XSLTMark Worth2009-05-21T09:12:19Z2009-05-21T09:12:19Z<p>Try this:</p>
<pre><code><xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="UTF-8" indent="yes" omit-xml-declaration="no" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<!-- You don't actually need this template -->
<!-- but I think this was what you were trying to do -->
<xsl:template match="@*" priority="2">
<xsl:attribute namespace="{namespace-uri()}" name="{name()}"><xsl:value-of select="."/></xsl:attribute>
</xsl:template>
<xsl:template match="AccountName" priority="2">
<AccountName>acc_no</AccountName>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>As for the UTF issue, you are doing the right thing.</p>
<p>From www.w3.org/TR/xslt:
The encoding attribute specifies the preferred encoding to use for outputting the result tree. XSLT processors are required to respect values of UTF-8 and UTF-16.</p>
http://stackoverflow.com/questions/867949/is-a-versioning-system-or-code-repository-necessary-for-a-single-developer/868001#8680010Answer by Mark Worth for Is a versioning system or code repository necessary for a single developer?Mark Worth2009-05-15T10:48:07Z2009-05-15T10:48:07Z<p>Yes, you definitely need source control. It'll help if you need to go back to a previous version or accidently edit/delete files.</p>
<p>I'd say Continuous Integration wouldn't hurt either ... even for a one person project.</p>
http://stackoverflow.com/questions/865715/ajax-query-not-firing-because-its-generating-the-wrong-url/867810#8678100Answer by Mark Worth for Ajax query not firing, because it's generating the wrong URLMark Worth2009-05-15T09:52:07Z2009-05-15T09:52:07Z<p>Check to make sure that MicrosoftAjax.js isn't using the $ for it's own purposes.</p>
<p>If it is, you can find information on how to use something other than the $ on this <a href="http://docs.jquery.com/Using%5FjQuery%5Fwith%5FOther%5FLibraries" rel="nofollow">page</a></p>
<p>For example:
</p>
<pre><code>var $jQuery = jQuery.noConflict();
$jQuery(function() {
$jQuery("#year").change(function() {
var year = $jQuery("#year > option:selected").attr("value");
var rid = $jQuery("#rid").attr("value");
$jQuery.ajax({ ...
</code></pre>
<p>...
</p>
http://stackoverflow.com/questions/851733/user-tracking-in-asp-net/852087#8520871Answer by Mark Worth for User tracking in asp.net Mark Worth2009-05-12T10:15:11Z2009-05-12T10:15:11Z<p>Firstly, I'd consider whether you need to implement this functionality yourself, Google Analytics does a good job of tracking usage and is free. You can find it on <a href="http://www.google.com/analytics" rel="nofollow">http://www.google.com/analytics</a>, all you need to do is add a bit of javascript to all your pages. Your master page is a good place to do this.</p>
<p>If you're hellbent on doing this yourself, a good way to implement this is to use an HttpModule. An HttpModule gets invoked during every page request.</p>
<p>In the Init method of your HttpModule you can catch the BeginRequest and EndRequest events. You can look at the Request object in BeginRequest and the Response object in EndRequest. You can find the amount of data sent in the ContentLength property. You'll need to store whatever information you're after in a database. On the page that displays user activity, you'd simply retrieve these values from your database.</p>
<p>I'd seriously contemplate using Google Analytics though.</p>
http://stackoverflow.com/questions/851538/how-do-i-prevent-users-from-sharing-the-same-account-asp-net-mvc/851918#8519181Answer by Mark Worth for How do I prevent users from sharing the same account? (ASP.NET MVC)Mark Worth2009-05-12T09:23:19Z2009-05-12T09:23:19Z<p>Are you trying to stop multiple people using the same account at the same time or at different times?</p>
<p>You can stop the former by storing a GUID in a user's session and checking it against a value you've set in a cookie. No problem.</p>
<p>You just can't reliably stop the latter. Storing the IP will work to some extent, but most home users are allocated a new IP frequently (as previously stated by another comment). You could use an IP -> Location and check if the location varies frequently.</p>
<p>Unfortunately, savvy users will use a proxy server to defeat this mechanism too.</p>
http://stackoverflow.com/questions/803007/why-choose-an-xsl-transformation/848596#8485968Answer by Mark Worth for Why choose an XSL-transformation?Mark Worth2009-05-11T15:18:13Z2009-05-11T15:18:13Z<p>I've done significant development using XSLT and it has been both tremendously successful and a complete failure at two different sites.</p>
<p>A few thoughts before a conclusion:</p>
<ul>
<li><p>I don't think anyone would argue that XSLT is far more powerful than a template parsing engine, it's a functional language.</p></li>
<li><p>Although it's not as widely adopted as most procedural languages, it's still a real language that's being used out there for actual projects, people can be hired already with knowledge of XSLT and it's a transferable skill for your current staff.</p></li>
<li><p>XSLT has also been around for a while now, the implementations are mature, I'm sure this is the case for long running templating engines (like Velocity) but newer engines may be less robust.</p></li>
<li><p>Whatever template language you decide on it's unlikely to be as well documented as XSLT. Check out any of the Michael Kay Programmer's reference series for an example on how to do a great reference book.</p></li>
<li><p>Tool support is generally very good ... if you have a budget. XMLSpy and Stylus Studio have both been very useful for me in the past.</p></li>
<li><p>XSLT is not only hard but, more importantly, different. Most people are not Computer Science graduates formally trained in functional programming. The majority of programmers will write XSLT in a procedural style which will not harness any power of the language and give you a maintenance headache.</p></li>
<li><p>XSLT transforms can be slow and can take a lot of memory. You may have problems if you have a stylesheet with a large XML input.</p></li>
</ul>
<p>I love XSLT but whether you should use it or not comes down to a few points:</p>
<p>Are you committed to XSLT? Do you have serious in-house expertise in XSLT? Are you prepared to get some?</p>
<p>Is your data in XML? Does it make sense in XML? Do you have someone in-house who loves your data enough to make sure it's well structured and there's always an appropriate schema?</p>
<p>Unless the answer to those questions is yes and you have complex data that requires a complex rendering process, I wouldn't consider using XSLT ... especially if there's no experience in the team. Bad XSLT is much, much, much worse than a bad template. </p>
<p>However, it can render complex data in a maintainable fashion which would be impossible using many of today's templating engines.</p>
http://stackoverflow.com/questions/847326/whats-the-worst-part-about-software-development-as-a-career/847388#8473884Answer by Mark Worth for What’s the worst part about Software Development as a career?Mark Worth2009-05-11T09:39:09Z2009-05-11T09:39:09Z<ul>
<li>Social respect. No-one understands what you do or how hard it is to do. You won't be considered a professional in the same way a doctor or lawyer would be ... even if you earn more.</li>
<li>Failure. A lot of the projects you work on will fail for no fault of your own. I've worked long hours on a project only to be told the market has disappeared and the project is cancelled.</li>
<li>Hours. Some projects require large amounts of your life.</li>
<li>Physical inactivity. Better go to the gym if you don't want to get fat.</li>
<li>Working with non-technical people. Some people have just enough knowledge to think they are one of your peers. They are not.</li>
</ul>
<p>However, I love programming and plan to be in development for a long time yet.</p>
http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/777800#7778003Answer by Mark Worth for Is there a faster alternative to Google Analytics?Mark Worth2009-04-22T15:23:24Z2009-04-22T15:23:24Z<p>The problem you're experiencing is just standard I/O blocking whilst javascript loads.</p>
<p>Take a look at this solution: <a href="http://lyncd.com/2009/03/better-google-analytics-javascript/" rel="nofollow">http://lyncd.com/2009/03/better-google-analytics-javascript/</a></p>
<p>This should process the Google Analytics <em>after the page has loaded</em>.</p>
http://stackoverflow.com/questions/374084/does-google-analytics-make-a-major-effect-on-time-to-download-a-static-web-page/777786#7777860Answer by Mark Worth for does Google analytics make a major effect on time to download a static web page?Mark Worth2009-04-22T15:20:32Z2009-04-22T15:20:32Z<p>If you add the code to the bottom of the page then it probably won't make much of a difference.</p>
<p>If however, you want it to make no difference then I'd take a look at this link:</p>
<p><a href="http://lyncd.com/2009/03/better-google-analytics-javascript/" rel="nofollow">http://lyncd.com/2009/03/better-google-analytics-javascript/</a></p>
<p>It describes the approach that Steve Souders took to completely avoid any kind of I/O block.</p>
http://stackoverflow.com/questions/891187/xml-to-xml-using-xslt/892954#892954Comment by Mark Worth on XML to XML using XSLTMark Worth2009-05-22T12:59:38Z2009-05-22T12:59:38ZTry:
<xsl:strip-space elements="*"/>
to get rid of your whitespace.http://stackoverflow.com/questions/879608/asp-net-mvc-controller-parameter-not-being-gathered-from-formComment by Mark Worth on ASP.NET MVC - Controller parameter not being gathered from form?Mark Worth2009-05-19T08:19:11Z2009-05-19T08:19:11ZHow is your controller being instantiated?
I had this problem and I found that it was my SpringControllerFactory creating my controllers as singletons (and hence was always using the values from the first request).http://stackoverflow.com/questions/864908/using-mvccontribs-windsorcontrollerfactory-with-new-windsor-castle-2-0Comment by Mark Worth on Using MVCContrib's WindsorControllerFactory with new Windsor Castle 2.0Mark Worth2009-05-15T09:33:02Z2009-05-15T09:33:02ZI just had exactly the same problem! I chose to build MVCContrib myself though.