User Matt Lacey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:06:15Zhttp://stackoverflow.com/feeds/user/1755http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/132798/what-should-every-programmer-know110What should every programmer know?Matt Lacey2008-09-25T11:50:18Z2009-12-18T13:18:02Z
<p>Regardless of programming language(s) or operating system(s) used or the environment they develop for, what should every programmer know?</p>
<p>Some background:</p>
<p>I'm interested in becoming the best programmer I can. As part of this process I'm trying to understand what I don't know and would benefit me a lot if I did. While there are loads of lists around along the lines of "n things every [insert programming language] developer should know", I have yet to find anything similar which isn't limited to a specific language.</p>
<p>I also expect this information to be of interest and benefit to others.</p>
http://stackoverflow.com/questions/1769694/debug-static-file-requests-from-iis61Debug static file requests from IIS6Matt Lacey2009-11-20T10:48:54Z2009-11-20T10:48:54Z
<p>How can I debug what is being returned by IIS(6) when the response goes through proxies before getting to the browser?</p>
<p>I have requests for static files which are being sent with the 'Accept-encoding: gzip' header. These are being gzipped correctly. However, if a 'Via: ' header (to redirect the response via a proxy) is also included the content is not received gzipped by the browser.</p>
<p>I want to know if the issue is with IIS not applying the compression or related to something the proxy is doing.</p>
<p>How can I investigate this problem?</p>
<p>This is related to <a href="http://stackoverflow.com/questions/1762808/iis6-not-doing-gzip-compression-when-including-via-header-in-request">http://stackoverflow.com/questions/1762808/iis6-not-doing-gzip-compression-when-including-via-header-in-request</a>.</p>
http://stackoverflow.com/questions/1762808/iis6-not-doing-gzip-compression-when-including-via-header-in-request1IIS6 not doing gzip compression when including Via header in requestMatt Lacey2009-11-19T11:57:29Z2009-11-19T11:57:29Z
<p>I have some static content going through a CDN. I am using IIS6's built in compression (gzip & deflate) for static content and this is working fine when I request it. However, when the CDN makes the initial request for the content, it is not being returned compressed. They therefore don't have compressed content to forward to people requesting it. (Yes this raises the issue of people requesting [the zipped] content from the CDN with a browser that can't handle the compression. - We'll put that to one side for now though)</p>
<p>Here's an example of requesting without the 'Via' header:</p>
<pre>
HEAD /flash/swfobject.js HTTP/1.1
User-Agent: curl/7.19.7 (i386-pc-win32)
Host: localhost:9120
Accept: */*
Connection: Keep-Alive
accept-encoding: gzip
</pre>
<p>And it returns a compressed response: </p>
<pre>
HTTP/1.1 200 OK
Content-Length: 4357
Content-Type: application/x-javascript
Content-Encoding: gzip
Expires: Wed, 01 Jan 2020 00:00:00 GMT
Last-Modified: Wed, 18 Nov 2009 15:36:52 GMT
Accept-Ranges: bytes
Vary: Accept-Encoding
Server: Microsoft-IIS/6.0
Date: Thu, 19 Nov 2009 10:27:50 GMT
</pre>
<p>However, if I include a 'Via' header in the request (as the CDN does) then the result comes back uncompressed:</p>
<p>Request: </p>
<pre>
HEAD /flash/swfobject.js HTTP/1.1
User-Agent: curl/7.19.7 (i386-pc-win32)
Host: localhost:9120
Accept: */*
Connection: Keep-Alive
Via: 1.1 204.160.105.17:80 (Footprint 4.5/FPMCP)
accept-encoding: gzip
</pre>
<p>Response: </p>
<pre>
HTTP/1.1 200 OK
Content-Length: 14602
Content-Type: application/x-javascript
Expires: Wed, 01 Jan 2020 00:00:00 GMT
Last-Modified: Wed, 18 Nov 2009 15:36:54 GMT
Accept-Ranges: bytes
Server: Microsoft-IIS/6.0
Date: Thu, 19 Nov 2009 10:29:52 GMT
</pre>
<p><em>Yes these demos use 'localhost' in the request. I get the same result using the actual domain name from various machines on various networks though.</em></p>
<p>Two questions then:</p>
<p>1 - Could this be IIS not applying the compression due to the extra header? and if so what can I do about it?</p>
<p>2 - How can I tell if the proxy is decompressing the content before returning it?</p>
<p>Bonus question 3 - What can I do to investigate this problem further?</p>
<p>I am aware of question 332049, but that has the header in the response, not the request.</p>
http://stackoverflow.com/questions/1741785/find-out-date-of-nth-weeks-monday-in-php/1741835#17418351Answer by Matt Lacey for Find out date of nth week's monday in PHP?Matt Lacey2009-11-16T12:18:21Z2009-11-16T12:18:21Z<p>An idea to get you started:</p>
<ul>
<li>take first day of year</li>
<li>add 7 * X days</li>
<li>use strtodate, passing in "last Monday" and the date calculated above.</li>
</ul>
<p>May need to add one day to the above.</p>
<p>Depending on the way you are calculating week numbers and the start of the week this may sometimes be out. (i.e. if the monday in the first week of the year was actually in the previous year!)</p>
<p>TEST THIS THOROUGHLY - but I've used a similar approach for similar calcualtions in the past.</p>
http://stackoverflow.com/questions/1702004/why-wont-google-accept-my-sitemap-xml-url-not-allowed-this-url-is-not-allowe/1702088#17020880Answer by Matt Lacey for Why won't google accept my Sitemap.xml? "URL not allowed This url is not allowed for a Sitemap at this location."Matt Lacey2009-11-09T16:22:14Z2009-11-09T16:22:14Z<p>What does the <a href="http://www.validome.org/google/" rel="nofollow">Google Sitemap validator</a> say?</p>
http://stackoverflow.com/questions/1646453/nonsilent-delivery-of-a-wmrm-drm-license-via-asp-net-mvc0nonsilent delivery of a WMRM DRM license via ASP.NET MVC?Matt Lacey2009-10-29T20:47:17Z2009-11-09T16:17:42Z
<p>Is it possible to do nonsilent delivery of a WMRM DRM license via ASP.NET (ideally MVC)?</p>
<p>I have silent delivery working fine.</p>
<p>All the <a href="http://msdn.microsoft.com/en-us/library/bb649429%28VS.85%29.aspx" rel="nofollow">samples</a> <a href="http://msdn.microsoft.com/en-us/library/bb649408%28VS.85%29.aspx" rel="nofollow">from the SDK</a> (WMRM10.1) are in asp - of which I have no experience (I went from PHP to ASP.NET).</p>
<p>It looks like I need to implement the actual issuance in vbscript or JavaScript included with the html. Is this right?</p>
<p>Does anyone have an example of doing nonsilent license issuance in JavaScript/ASP.NET?</p>
http://stackoverflow.com/questions/1646453/nonsilent-delivery-of-a-wmrm-drm-license-via-asp-net-mvc/1702059#17020590Answer by Matt Lacey for nonsilent delivery of a WMRM DRM license via ASP.NET MVC?Matt Lacey2009-11-09T16:17:42Z2009-11-09T16:17:42Z<p>I eventually got this working using a view very similar to this:</p>
<pre><code><%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<LicenceViewModel>" %>
<html>
<head>
<script language="JavaScript" type="text/javascript">
function Storev71License()
{
LicenseObj.StoreLicense('<%= Model.Licence %>');
}
</script>
</head>
<body onload="Storev71License()">
<object classid="clsid:A9FC132B-096D-460B-B7D5-1DB0FAE0C062" height="0" id="LicenseObj" width="0">
<embed mayscript type="application/x-drm-v2" hidden="true">
</object>
<p>You have received a license for this movie. Click Play.</p>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1700447/using-wurfl-to-detect-mobile-screen-resolution/1700626#17006262Answer by Matt Lacey for Using Wurfl to detect mobile screen resolution?Matt Lacey2009-11-09T12:12:17Z2009-11-09T12:12:17Z<p>WURFL is as accurate as the data in it. Generally it is very good though.</p>
<p>Which version of the WURFL data are you using?<br>
What device and browser are you trying to get the screen dimensions for? (What is the user agent?)<br>
What value(s) are you getting?<br>
What value(s) were you expecting?</p>
http://stackoverflow.com/questions/1700280/compact-framework-2-0-detecting-enter-key-in-a-textbox/1700462#17004620Answer by Matt Lacey for compact framework 2.0 detecting enter key in a textboxMatt Lacey2009-11-09T11:29:53Z2009-11-09T11:29:53Z<p>The device may not be handling the button press in a way that is accessible to you.</p>
<p>Have you checked that the event is actually being triggered? </p>
<p>If not, you may want to look at other events or possibly capturing <a href="http://msdn.microsoft.com/en-us/library/microsoft.windowsce.forms.hardwarebutton.aspx" rel="nofollow">HardwareButton</a> presses instead.</p>
http://stackoverflow.com/questions/1680191/display-anything-during-initial-buffering-of-embedded-windows-media-player0Display anything during initial buffering of embedded Windows Media Player?Matt Lacey2009-11-05T12:16:42Z2009-11-05T12:16:42Z
<p>I have a streaming movie playing on a page through an embedded Windows Media Player.<br>
Rather than having it display in plain black during the initial buffering period, is it possible to display: the first frame; or a separate image; or even a wait/progress cursor during this time?</p>
<p>Or is the only option to show that something is happening by including the StatusBar?</p>
<p>I undestand that flash players display the first frame during the initial buffering. Unfortunately I have to use Windows Media Player to stream WMV content for this project.</p>
http://stackoverflow.com/questions/1660536/ux-design-for-disabled-controls-w-the-touch-interface/1662025#16620250Answer by Matt Lacey for UX Design for Disabled Controls w/ the Touch InterfaceMatt Lacey2009-11-02T15:40:44Z2009-11-02T15:40:44Z<p>Not an official solution but here's how I'll approach this until a better solution is available:</p>
<ul>
<li>Make the item look disabled but still be clickable. </li>
<li>Add an overlay icon (of a question or similar) so it looks more than just disabled. </li>
<li>When clicked, display the message that would have been in the tooltip. Preferably in a non modal way and that doesn't require acknowledgement.</li>
</ul>
http://stackoverflow.com/questions/1644045/return-307-temporary-redirect-in-asp-net-mvc2Return 307 Temporary Redirect in ASP.NET MVCMatt Lacey2009-10-29T14:15:18Z2009-11-01T03:43:49Z
<p>Is it possible to return a <code>307 Temporary Redirect</code> from a controller in ASP.NET MVC?</p>
<p>I <em>sometimes</em> need to re-<code>POST</code> the values submitted from one form to another URI.</p>
<p>Using JavaScript to do the selection on the client side (thereby bypassing this issue) is not an option.</p>
<p>Redirecting via a <code>GET</code> is not an option as posted data includes an 8k string which is likely to mean that the URI would be too long for some (many?) browsers.</p>
<p>Is this even possible?</p>
http://stackoverflow.com/questions/1655514/single-cab-for-pocket-pc-and-smartphone-versions-of-same-application/1655549#16555490Answer by Matt Lacey for Single CAB for pocket pc and smartphone versions of same application Matt Lacey2009-10-31T20:34:32Z2009-10-31T20:34:32Z<p>Yes this is possible.<br />
Have you tried it?<br />
Are you experiencing a specific problem when you try?</p>
http://stackoverflow.com/questions/1596518/automated-link-checker-for-system-testing/1655528#16555283Answer by Matt Lacey for Automated link-checker for system testingMatt Lacey2009-10-31T20:27:55Z2009-10-31T20:27:55Z<p>I use <a href="http://home.snafu.de/tilman/xenulink.html" rel="nofollow">Xenu's Link Sleuth</a> for this sort of thing. Quickly check for no deadlinks etc. on a/any site. Just point it at any URI and it'll spider all links on that site.</p>
<p>Desription from site: </p>
<blockquote>
<p>Xenu's Link Sleuth (TM) checks Web
sites for broken links. Link
verification is done on "normal"
links, images, frames, plug-ins,
backgrounds, local image maps, style
sheets, scripts and java applets. It
displays a continously updated list of
URLs which you can sort by different
criteria. A report can be produced at
any time.</p>
</blockquote>
<p>It meets all you're requirements apart from being scriptable as it's a windows app that requires manually starting.</p>
http://stackoverflow.com/questions/1646451/how-to-decide-when-to-script-something-rather-than-do-it-manually/1646462#16464622Answer by Matt Lacey for How to decide when to script something rather than do it manually?Matt Lacey2009-10-29T20:49:37Z2009-10-29T20:49:37Z<p>Reasons I have for scripting include</p>
<p>When:</p>
<ul>
<li><p>you do it the second time</p></li>
<li><p>it becomes more than one step</p></li>
<li><p>it's easy to get wrong</p></li>
<li><p>it's easy to forget how to do it manually</p></li>
</ul>
http://stackoverflow.com/questions/1627081/automating-subversion-with-c/1627098#16270980Answer by Matt Lacey for Automating Subversion with C#Matt Lacey2009-10-26T20:17:13Z2009-10-26T20:17:13Z<p>Can't you just use the commandline from your app?</p>
<p>See <a href="http://svnbook.red-bean.com/en/1.4/svn.ref.svn.html" rel="nofollow">http://svnbook.red-bean.com/en/1.4/svn.ref.svn.html</a></p>
http://stackoverflow.com/questions/1614520/what-are-common-file-extensions-for-web-programming-languages/1615206#16152060Answer by Matt Lacey for What are common file extensions for web programming languages?Matt Lacey2009-10-23T18:37:49Z2009-10-23T20:48:30Z<p>Going old school: <strong>.cgi</strong></p>
<p>Typically written in <strong>C</strong> or <strong>Perl</strong></p>
http://stackoverflow.com/questions/1615164/reload-a-reference-on-the-fly-c-net/1615182#16151820Answer by Matt Lacey for Reload a reference on the fly (C# .NET)Matt Lacey2009-10-23T18:31:18Z2009-10-23T18:31:18Z<p>The <a href="http://www.codeplex.com/MEF" rel="nofollow">Managed Extensibility Framework</a> will allow you to do this.</p>
http://stackoverflow.com/questions/1571804/how-to-save-one-file-from-one-path-to-another-path-without-removing-file-from-or/1571810#15718101Answer by Matt Lacey for How to save one file from one path to another path? Without removing file from original path using C#.Matt Lacey2009-10-15T11:34:47Z2009-10-15T11:34:47Z<p>Have you tried <a href="http://msdn.microsoft.com/en-us/library/system.io.file.copy.aspx" rel="nofollow">File.Copy</a> ?</p>
http://stackoverflow.com/questions/1571752/where-can-i-get-a-simple-table-of-time-zones-for-use-in-sql-server/1571788#15717881Answer by Matt Lacey for Where can I get a simple table of time zones for use in SQL server?Matt Lacey2009-10-15T11:29:47Z2009-10-15T11:29:47Z<p>Get it from the OS.</p>
<p>In that you've tagged this asp.net have a look at <a href="http://msdn.microsoft.com/en-us/library/bb397781.aspx" rel="nofollow">this example of how to enumerate timezones</a>.</p>
http://stackoverflow.com/questions/1559806/net-mobile-web-application-easy-way-of-server-side-browser-detection/1571209#15712090Answer by Matt Lacey for .net mobile web application - easy way of server side browser detectionMatt Lacey2009-10-15T09:19:17Z2009-10-15T09:19:17Z<p>Have a look at using the <a href="http://mdbf.codeplex.com/" rel="nofollow">Mobile Device Browser File</a>. This is Microsoft's new alternative to Mobile Device Capabilities</p>
http://stackoverflow.com/questions/1559892/why-shouldnt-i-give-outsiders-access-to-my-database/1559943#155994311Answer by Matt Lacey for Why shouldn't I give outsiders access to my database?Matt Lacey2009-10-13T12:36:24Z2009-10-13T14:01:44Z<p>An API:</p>
<ul>
<li>Makes it easier to montior and control usage (implementing 'limited queries per X' for DB users may be harder)</li>
<li>Allows for presenting simpler structures to the user than may be used in the DB.</li>
<li>Means the user doesn't have to understand your DB structure.</li>
<li>Allows for DB portability. (Oh you've grown massive and now need to implement: sharding, move to bigtable, etc. - With an API the user doesn't need to know)</li>
<li>Allows for different (better? / variable?) caching of requests.</li>
<li>Means you don't have to pay for extra DB users (If that's how the DB is licensed.)</li>
</ul>
http://stackoverflow.com/questions/1042457/how-to-find-out-the-mobile-model-using-wap-page/1048597#10485973Answer by Matt Lacey for How to find out the mobile model using WAP pageMatt Lacey2009-06-26T11:23:42Z2009-10-13T08:24:23Z<p>There are a number of solutions for determining mobile device, based on the UserAgent making the request. (Some solutions use other factors as well.)</p>
<p>Try looking at:</p>
<p><a href="http://wurfl.sourceforge.net/" rel="nofollow">WURFL</a></p>
<p><a href="http://mdbf.codeplex.com/" rel="nofollow">MDBF</a></p>
<p><a href="http://deviceatlas.com/" rel="nofollow">DeviceAtlas</a></p>
<p><a href="http://www.detectright.com/" rel="nofollow">DetectRight</a></p>
<p><a href="http://www.volantis.com/" rel="nofollow">Volantis</a></p>
<p><a href="http://www.mobileaware.com/" rel="nofollow">MobileAware</a></p>
<p><a href="http://www.moviladetection.com/" rel="nofollow">Movila</a></p>
<p><a href="http://en.wikipedia.org/wiki/UAProf" rel="nofollow">UAProf</a></p>
<p>The technology you are using to create your pages will also affect which of the above is the best solution for you.</p>
http://stackoverflow.com/questions/1551129/learn-to-design-a-website-user-interface/1551237#15512372Answer by Matt Lacey for Learn to design a website user-interfaceMatt Lacey2009-10-11T17:36:11Z2009-10-11T17:36:11Z<p>Before you start looking at web design it's important to understand the common conventions used in design and have a comprehension of what leads to good usability.</p>
<p>To learn about web usability and best practices I'd recommend:</p>
<p><a href="http://www.useit.com/" rel="nofollow">http://www.useit.com/</a></p>
<p><a href="http://oreilly.com/catalog/9780596008031" rel="nofollow">Designing Interfaces</a> by Jenifer Tidwell is an excellent resource for understanding common user interface patterns. </p>
<p>If you're learning, now is not the time to start experimenting with new concepts. Learn the common ways of doing things and the reasons that they are used/popular.</p>
http://stackoverflow.com/questions/1542401/whats-the-appropriate-unicode-character-to-flag-users-on-the-website/1542459#15424593Answer by Matt Lacey for What's the appropriate Unicode character to flag users on the website?Matt Lacey2009-10-09T08:01:33Z2009-10-10T18:50:31Z<p>What about Skull & CrossBones?</p>
<h1>☠</h1>
<p>Some other possibles at: <a href="http://www.alanwood.net/unicode/miscellaneous%5Fsymbols.html" rel="nofollow">http://www.alanwood.net/unicode/miscellaneous_symbols.html</a></p>
http://stackoverflow.com/questions/1538644/c-determine-if-a-number-is-prime/1538695#15386951Answer by Matt Lacey for C - determine if a number is primeMatt Lacey2009-10-08T15:52:33Z2009-10-08T15:52:33Z<p>Check the modulus of each integer from 2 up to the root of the number you're checking.</p>
<p>If modulus equals zero then it's not prime.</p>
<p>pseudo code:</p>
<pre><code>bool IsPrime(int target)
{
for (i = 2; i <= root(target); i++)
{
if ((target mod i) == 0)
{
return false;
}
}
return true;
}
</code></pre>
http://stackoverflow.com/questions/1537638/can-i-include-the-table-name-in-the-result-of-an-sql-query/1537652#15376522Answer by Matt Lacey for Can I include the table name in the result of an SQL query?Matt Lacey2009-10-08T13:02:03Z2009-10-08T13:02:03Z<p>Try:</p>
<pre><code>select id, 'Actor' as Career, Name
from Actor
union
select id, 'Singer' as Career, Name
from Singer
</code></pre>
http://stackoverflow.com/questions/1537212/c-windows-mobile-device-information/1537602#15376022Answer by Matt Lacey for c# windows mobile device informationMatt Lacey2009-10-08T12:52:54Z2009-10-08T12:52:54Z<p>If you really need the IMEI, have a look at this blog:</p>
<p><a href="http://dotnetslackers.com/Community/blogs/ruslantrifonov/archive/2007/07/10/%5F2200%5FHow-To%5F2200%5F-Series%5F3A00%5F-Retrieving-IMSI-and-IMEI-on-Windows-Mobile.aspx" rel="nofollow">http://dotnetslackers.com/Community/blogs/ruslantrifonov/archive/2007/07/10/_2200_How-To_2200_-Series_3A00_-Retrieving-IMSI-and-IMEI-on-Windows-Mobile.aspx</a></p>
<p>it contains a download which demonstrates using <a href="http://msdn.microsoft.com/en-us/library/ms862517.aspx" rel="nofollow">lineGetGeneralInfo</a> via TAPI to retrieve IMEI & IMSI.</p>
http://stackoverflow.com/questions/1537527/merging-2-sql-queries/1537569#15375690Answer by Matt Lacey for Merging 2 SQL QueriesMatt Lacey2009-10-08T12:44:29Z2009-10-08T12:44:29Z<p>Without using a union you could create a temporary table, write the results of the two queries into it and then query the temporary table.</p>
<p>I suspect that you shouldn't be doing this, but rather working out why the union isn't working for you.</p>
<p>What have you tried?</p>
<p>What happened?</p>
http://stackoverflow.com/questions/1537503/how-to-change-the-animation-speed-of-a-windows-controls-wpf-progressbar/1537559#15375590Answer by Matt Lacey for How to Change the Animation Speed of a Windows.Controls (WPF) ProgressBarMatt Lacey2009-10-08T12:42:10Z2009-10-08T12:42:10Z<p>If you want something specific you could always create you're own control that looks like a progress bar and animate as desired.</p>
<p>However, if it's a short process you may want to reconsider the need to display progress or display it in a different way.</p>
http://stackoverflow.com/questions/1769694/debug-static-file-requests-from-iis6Comment by Matt Lacey on Debug static file requests from IIS6Matt Lacey2009-12-04T15:04:50Z2009-12-04T15:04:50ZEventually gave up on this. Couldn't find a way of determining if what IIS6 does with/because of the Via header. The general response from asking this elsewhere was upgrade to IIS7.http://stackoverflow.com/questions/1769694/debug-static-file-requests-from-iis6Comment by Matt Lacey on Debug static file requests from IIS6Matt Lacey2009-11-24T11:24:13Z2009-11-24T11:24:13Z@Christopher_G_Lewis It could be that this is what's happening but how could I test this? I can't find any docs on IIS header processing. Know of any?http://stackoverflow.com/questions/1755571/web-page-executionComment by Matt Lacey on Web Page executionMatt Lacey2009-11-18T12:21:50Z2009-11-18T12:21:50ZHow are you stopping page_load when you click?
How are you doing your timings?
How do you know that the first page finished loading?
What is the second page actually doing?
Where is the time spent when loading the second page? (on the server or on the client?)http://stackoverflow.com/questions/1017150/migrate-from-c-net-2-0-to-php-so-the-hash-value-of-the-password-how-to-resolve/1017900#1017900Comment by Matt Lacey on migrate from C#.net 2.0 to php so the hash value of the password - how to resolve?Matt Lacey2009-11-10T11:39:45Z2009-11-10T11:39:45Z+1 for helping me identify the cause of a similar problemhttp://stackoverflow.com/questions/1684992/how-to-open-a-file-up-with-openfiledialog-in-windows-mobileComment by Matt Lacey on How to open a file up with openFileDialog in windows mobile?Matt Lacey2009-11-09T11:10:18Z2009-11-09T11:10:18ZWhat is the file you are trying to open?
Have you tried creating a new file and tried opening that?
http://stackoverflow.com/questions/507818/how-to-organize-minification-and-packaging-of-css-and-js-files-to-speed-up-websit/508142#508142Comment by Matt Lacey on How to organize minification and packaging of css and js files to speed up website?Matt Lacey2009-11-04T15:51:31Z2009-11-04T15:51:31ZTHe question was for a minifier and packer. Doing both of these as well as compressing will give the best performance.http://stackoverflow.com/questions/1596518/automated-link-checker-for-system-testing/1655528#1655528Comment by Matt Lacey on Automated link-checker for system testingMatt Lacey2009-11-03T09:55:37Z2009-11-03T09:55:37ZIt's not open source, but it is free (it includes some advertising links in reports which I;ve always happily ignored.)http://stackoverflow.com/questions/1644045/return-307-temporary-redirect-in-asp-net-mvc/1644073#1644073Comment by Matt Lacey on Return 307 Temporary Redirect in ASP.NET MVCMatt Lacey2009-10-30T09:46:01Z2009-10-30T09:46:01ZI've ended up doing some redesign to avoid this whole issue. Some great solutions though. Thanks FinnNkhttp://stackoverflow.com/questions/1644045/return-307-temporary-redirect-in-asp-net-mvc/1644073#1644073Comment by Matt Lacey on Return 307 Temporary Redirect in ASP.NET MVCMatt Lacey2009-10-29T14:55:33Z2009-10-29T14:55:33ZUsing a RouteHandler seems like a nice way to solve this kind of problem though. - Just not when there's logic involved.http://stackoverflow.com/questions/1644045/return-307-temporary-redirect-in-asp-net-mvc/1644073#1644073Comment by Matt Lacey on Return 307 Temporary Redirect in ASP.NET MVCMatt Lacey2009-10-29T14:54:12Z2009-10-29T14:54:12ZI need to <i>sometimes</i> make the redirects based on the data that's passed. Accessing the model (where the logic is) from the routehandler seems wrong. Having [a copy of] the logic in the routehandler seems even worse.http://stackoverflow.com/questions/1615164/reload-a-reference-on-the-fly-c-net/1615182#1615182Comment by Matt Lacey on Reload a reference on the fly (C# .NET)Matt Lacey2009-10-23T18:39:47Z2009-10-23T18:39:47ZCombine use of MEF with the ApplicationRestartRecoveryManager to easily force a restart of the app then.http://stackoverflow.com/questions/182298/subversion-versus-vault/182480#182480Comment by Matt Lacey on Subversion versus VaultMatt Lacey2009-10-23T10:35:06Z2009-10-23T10:35:06Z@Serge Yes this was a result of the configuration used by the company I was working with at the time.http://stackoverflow.com/questions/1571249/windows-mobile-and-windows-live-id-authentication-web-serviceComment by Matt Lacey on Windows Mobile and Windows Live ID Authentication (Web Service)Matt Lacey2009-10-15T09:36:06Z2009-10-15T09:36:06ZDo you mean using Windows Live Id as a form of OpenID?http://stackoverflow.com/questions/1565434/howto-find-net-version/1565454#1565454Comment by Matt Lacey on Howto find .NET version?Matt Lacey2009-10-14T10:37:02Z2009-10-14T10:37:02Z'CSC' will only work from the Visual Studio command prompt (by default). It wil also only give you the maximum version of the .NET framework that version of the compiler targets. - If you have VS2005 & VS2008 installed the different versions of CSC will report different versions.http://stackoverflow.com/questions/1559921/how-to-wrap-html-tag-around-image-tagComment by Matt Lacey on how to wrap html tag around image tag?Matt Lacey2009-10-13T12:38:12Z2009-10-13T12:38:12ZWhy would you want to do that?