User Will Dean - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T04:26:05Z http://stackoverflow.com/feeds/user/987 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1053509/image-fromfile-is-very-slow-any-alternatives-optimizations/1789795#1789795 0 Answer by Will Dean for Image.FromFile is very SLOW. Any alternatives, optimizations? Will Dean 2009-11-24T12:33:23Z 2009-11-25T00:07:37Z <p>You don't say how much bigger than 256x256 the images actually are - modern digital cameras images are <em>much</em> bigger than this.</p> <p>Disk I/O can be <em>very</em> slow, and I would suggest you first get a rough idea how many megabytes of data you're actually reading.</p> <p>Then you can decide if there's a subtle 'Image.FromFile' problem or a simple 'this is how slow my computer/drives/anti-virus scanner/network actually is' problem.</p> <p>A simple test of the basic file I/O performance would be do to File.ReadAllBytes() for each image instead of Image.FromFile() - that will tell you what proportion of the time was spent with the disk and what with the image handling - I suspect you'll find it's largely disk, at which point your only chance to speed it up might be one of the techniques for getting JFIF thumbnails out of files. Or perhaps one can imagine clever stuff with partial reads of progressive JPEGs, though I don't know if anyone does that, nor if your files are progressive (they're probably not).</p> <p>I don't really know how fast you need these to load, but if the problem is that an interactive application is hanging while you load the files, then think of ways to make that better for the user - perhaps use a BackgroundWorker to load them asynchronously, perhaps sort the images by ascending file-size and load the small ones first for a better subjective performance.</p> http://stackoverflow.com/questions/1728313/is-it-possible-to-have-a-single-physical-usb-device-appear-as-two-separate-device/1728424#1728424 0 Answer by Will Dean for Is it possible to have a single physical USB device appear as two separate device classes? Will Dean 2009-11-13T10:35:27Z 2009-11-13T10:42:33Z <p>You don't have to do anything complicated here, it's just a matter of getting the descriptors right.</p> <p>Just provide an interface descriptor for each 'function' you want (obviously you'll need all the other descriptors which go with that 'function'), and the OS will sort out all the composite device stuff.</p> <p>I would suggest if you're going to do any even slightly serious USB development that you get a USB analyser - not only can you analyse your own stuff, but you can also plug in other people's kit and see how they did their descriptors... </p> http://stackoverflow.com/questions/311710/how-do-i-sum-a-list-of-arrays 7 How do I sum a list<> of arrays Will Dean 2008-11-22T20:03:53Z 2009-10-26T16:18:52Z <p>I have a List&lt; int[] > myList, where I know that all the int[] arrays are the same length - for the sake of argument, let us say I have 500 arrays, each is 2048 elements long. I'd like to sum all 500 of these arrays, to give me a single array, 2048 elements long, where each element is the sum of all the same positions in all the other arrays.</p> <p>Obviously this is trivial in imperative code:</p> <pre><code>int[] sums = new int[myList[0].Length]; foreach(int[] array in myList) { for(int i = 0; i &lt; sums.Length; i++) { sums[i] += array[i]; } } </code></pre> <p>But I was wondering if there was a nice Linq or Enumerable.xxx technique?</p> http://stackoverflow.com/questions/1623938/using-winforms-default-exception-handler-with-wpf-apps 1 Using winforms default exception handler with WPF apps Will Dean 2009-10-26T09:48:52Z 2009-10-26T10:15:38Z <p>For simple 'internal use only' apps, Winforms has a useful default exception handler, which allows an 'ignore', and tells you what the exception was. </p> <p>WPF apps don't seem to get this nice exception handling - you always have to exit the application.</p> <p>Obviously I can write my own default exception handler for WPF, but is there a simple way to use the one which must already be in the framework for Winforms, but with WPF?</p> http://stackoverflow.com/questions/1623938/using-winforms-default-exception-handler-with-wpf-apps/1624028#1624028 1 Answer by Will Dean for Using winforms default exception handler with WPF apps Will Dean 2009-10-26T10:14:14Z 2009-10-26T10:14:14Z <p>OK, I poked around in the Winforms source, and it turns out that the standard Winforms exception dialog is public. So you need to use a WPF-style DispatcherUnhandledException handler, and do something like this:</p> <pre><code>void App_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) { using (ThreadExceptionDialog dlg = new ThreadExceptionDialog(e.Exception)) { DialogResult result = dlg.ShowDialog(); if (result == DialogResult.Abort) { Environment.Exit(-1); } else if (result == DialogResult.Cancel) { e.Handled = true; } } } </code></pre> <p>You need to add a reference to System.Windows.Forms, and may need to play with the namespaces slightly on your application class, but other people might find it useful for simple utility apps.</p> http://stackoverflow.com/questions/1555545/const-correctness-question-in-c/1555620#1555620 0 Answer by Will Dean for Const Correctness Question in C++ Will Dean 2009-10-12T16:37:14Z 2009-10-12T16:37:14Z <p>Yes, it's just unsafe.</p> <p>The tools don't have any (straightforward) way of knowing that the 'const' on Foo::GetOrSet is going to apply to the same instance of Foo as Foo::GetInstance().</p> <p>'Singleton' isn't a policy which means anything to the compiler.</p> http://stackoverflow.com/questions/1555559/net-console-applications-possible-to-create-labels-and-regions/1555593#1555593 1 Answer by Will Dean for .NET Console Applications, possible to create labels and regions? Will Dean 2009-10-12T16:33:35Z 2009-10-12T16:33:35Z <p>Have a look at <a href="http://msdn.microsoft.com/en-us/library/system.console.setcursorposition.aspx" rel="nofollow">Console.SetCursorPosition</a> </p> http://stackoverflow.com/questions/1504804/using-ironpython-to-learn-the-net-framework-is-this-bad/1551802#1551802 4 Answer by Will Dean for Using IronPython to learn the .NET framework, is this bad? Will Dean 2009-10-11T21:15:48Z 2009-10-11T21:15:48Z <p>If I wanted to just "learn the framework", I would do it in C# or VB for two main reasons:</p> <ol> <li><p>Intellisense - the framework is huge, and being offered suggestions for function overloads is one of the ways to find new stuff. There's almost no good intellisense for the framework with IronPython at the moment (Michael Foord has done some work on building the appropriate info for Wing, but I haven't tried it myself).</p></li> <li><p>Code samples - pretty much all the educational material that exists about the .NET framework is given with C# or VB. You'll be much more on your own with IronPython.</p></li> </ol> http://stackoverflow.com/questions/1540214/can-python-be-used-for-client-side-web-development/1540490#1540490 3 Answer by Will Dean for Can Python be used for client side web development? Will Dean 2009-10-08T21:06:35Z 2009-10-08T21:06:35Z <p>Have a look at this:</p> <p><a href="http://www.trypython.org/" rel="nofollow">http://www.trypython.org/</a></p> <p>It's an interactive python console + tutorial written with Silverlight+IronPython.</p> http://stackoverflow.com/questions/1453393/legit-uses-of-the-offsetof-macro-in-c-c/1454557#1454557 2 Answer by Will Dean for Legit Uses of the offsetof Macro in C / C++ Will Dean 2009-09-21T13:39:27Z 2009-09-21T13:39:27Z <p>One of the ways I've used it in embedded systems is where I have a struct which represents the layout of non-volatile memory (e.g. EEPROM), but where I don't want to actually create an instance of this struct in RAM. You can use various nice macro tricks to allow you to read and write specific fields from the EEPROM, where offsetof does the work of calculating the address of a field within the struct.</p> <p>With regard to 'evil', you have to remember that lots of stuff which was traditionally done in 'C' programming, particularly on resource-limited platforms, now looks like evil hackery when viewed from the luxurious surrounding of modern computing.</p> http://stackoverflow.com/questions/802940/why-cant-i-set-readonly-on-a-fluent-nhibernate-references-mapping 1 Why can't I set ReadOnly on a Fluent NHibernate References() mapping? Will Dean 2009-04-29T15:36:08Z 2009-08-30T16:25:22Z <p>In Fluent NHibernate, References() returns an object which doesn't support the 'ReadOnly()' method.</p> <p>I'm trying to create this sort of mapping (i.e. one where an update is not propagated to the referred item):</p> <pre><code>&lt;many-to-one update="false" insert="false" name="DestinationSheet" column="DestinationSheetNumber" /&gt; </code></pre> <p>On normal (map()) mappings, those two attributes can be set with ReadOnly().</p> <p>I'd like to be doing something like this:</p> <pre><code>References(x =&gt; x.DestinationSheet). ColumnName("DestinationSheetNumber").ReadOnly(); </code></pre> <p>I can manually add the update and insert attributes using SetAttributes(), and that works fine, but I am concerned that the fact that ReadOnly() is not present on References() is a clue that I shouldn't be trying to do this.</p> <p>Does anyone know why ReadOnly() is not available in this context?</p> http://stackoverflow.com/questions/127137/sample-code-for-r/127176#127176 -7 Answer by Will Dean for Sample Code for R? Will Dean 2008-09-24T13:38:20Z 2009-07-26T07:31:19Z <p>Steve McIntyre at <a href="http://www.climateaudit.org/" rel="nofollow">http://www.climateaudit.org/</a> is a big fan of R and often posts working code.</p> <p>There is a <a href="http://www.climateaudit.org/?cat=57" rel="nofollow">scripts category</a>, and the <a href="http://www.climateaudit.org/?page%5Fid=372" rel="nofollow">Statistics and R</a> lists some other resources</p> http://stackoverflow.com/questions/732127/generating-non-anti-aliased-fonts-with-winforms 0 Generating non-anti-aliased fonts with WinForms Will Dean 2009-04-08T22:24:02Z 2009-07-04T10:00:02Z <p>I have a requirement to generate a bitmap containing some characters rendered without anti-aliasing or ClearType.</p> <p>In Win32-land, I would have created a font with lfQuality set to NONANTIALIASED_QUALITY and drawn with that.</p> <p>I have tried to do this with WinForms in the following manner:</p> <pre><code> using(Font smoothFont = new Font("Arial", 30, GraphicsUnit.Pixel)) { LOGFONT lf = new LOGFONT(); smoothFontToLogFont(lf); lf.lfQuality = NONANTIALIASED_QUALITY; using (Font roughFont = Font.FromLogFont(lf)) { </code></pre> <p>But roughFont still seems to render ClearTyped text.</p> <p>Should I give up with WinForms and just do this in C, or is there something I'm missing here? (My LOGFONT class and associated lfQuality defs come straight from the framework source, so I'm happy they're correct)</p> http://stackoverflow.com/questions/381077/cvslistbox-notification-after-delete 1 CVSListBox notification after delete Will Dean 2008-12-19T14:20:00Z 2009-06-30T01:00:00Z <p>I've just added one of the new (MFC Feature Pack) CVSListBox controls to a project. The list of items in the control is tracked by some other objects in my application, so I need to take lots of notifications from the list-box when anything changes so that I can update other stuff. For those that don't know the control, there is a button bar which offers basic add/delete/reorder functionality.</p> <p>The CVSListBox control offers overridable virtual functions for things like adding or renaming items, and changing their order - all this works nicely.</p> <p>However, for deleting items, the only override is OnBeforeRemoveItem, which is called BEFORE an item is removed, and from which one has to return TRUE/FALSE to permit the remove. Once the remove has occurred, there's no specific notification.</p> <p>What's the best way to get notification AFTER a remove?</p> <p>Obviously it's possible to hack something horrible here, in that there will be a selection-changed event after a remove, and it would be possible to hold a flag from the before-remove to say that the next selection-changed is special. But I feel like I'm missing something cleaner and more obvious. Any suggestions?</p> http://stackoverflow.com/questions/705250/is-there-a-jquery-plugin-which-combines-draggable-and-selectable 2 Is there a JQuery plugin which combines Draggable and Selectable Will Dean 2009-04-01T12:22:46Z 2009-06-28T20:16:21Z <p>I'm looking to implement a web interface with a number of items which can be selected and dragged around to position them, <strong>either in groups or singly</strong>. Rather like the Windows Desktop, really.</p> <p>We're using JQuery already, so additions to that would be first choice. JQuery UI Draggables and Selectables individually do much of what we want, but don't really work together to give the sort of effect we're looking for.</p> <p>I am completely overwhelmed by the JQ plugin site (it's 'popular' algorithm doesn't seem very useful), and would welcome guidance as to the best way to avoid a lot of wheel-reinvention here, as I would guess that this metaphor has already been done.</p> http://stackoverflow.com/questions/830651/how-are-you-using-ironpython 3 How are you using IronPython? Will Dean 2009-05-06T17:00:36Z 2009-05-30T15:29:37Z <p>I'm keen to drink some modern dynamic language koolaid, so I've believed all the stuff on Michael Foord's blog and podcasts, I've bought his book (and read some of it), and I added an embedded IPy runtime to a large existing app a year or so ago (though that was for someone else and I didn't really use it myself).</p> <p>Now I need to do some fairly simple code generation stuff, where I'm going to call a few methods on a few .net objects (custom, C#-authored objects), create a few strings, write some files, etc. </p> <p>The experience of trying this leaves me feeling like the little boy who thinks he's the only one who can see that The Emperor has no clothes on. If you're using IronPython, I'd really appreciate knowing how you deal with the following aspects of it:</p> <ul> <li>Code editing - do you use the .NET framework <em>without</em> Intellisense?</li> <li>Refactoring - I know a load of 'refactoring' is about working around language-related busywork, so if Python is sufficiently lightweight then we won't need that, But things like renames seem to me to be essential to iteratively developing quality code regardless of language.</li> <li>Crippling startup time - One of the things which is supposed to be good about interpreted languages is the lack of compile time leading to fast interactive development. Unfortunately I can compile a C# application and launch it quicker than IPy can start up.</li> <li>Interactive hacking - the IPy console/repl is supposed to be good for this, but I haven't found a good way to take the code you've interactively arrived at and persist it into a file - cut and paste from the console is fairly miserable. And the console seems to hold references to .NET assemblies you've imported, so you have to quit it and restart it if you're working on the C# stuff as well. Hacking on C# in something like LinqPad seems a much faster and easier way to try things out (and has proper Intellisense). Do you use the console?</li> <li>Debugging - what's the story here? I know someone on the IPy team is working on a command-line hobby-project, but let's just say I'm not immediately attracted to a command line debugger. I don't really need a debugger from little Python scripts, but I would if I were to use IPy for scripting unit tests, for example.</li> <li>Unit testing - I can see that dynamic languages could be great for this, but is there any IDE test-runner integration (like for Resharper, etc). The Foord book has a chapter about this, which I'll admit I have not yet read properly, but it does seem to involve driving a console-mode test-runner from the command prompt, which feels to be an enormous step back from using an integrated test runner like TestDriven.net or Resharper.</li> </ul> <p>I really want to believe in this stuff, so I am still working on the assumption that I've missed something. I would really like to know how other people are dealing with IPy, particularly if they're doing it in a way which doesn't feel like we've just lost 15 years'-worth of tool development.</p> http://stackoverflow.com/questions/904021/how-to-use-guids-in-c/904026#904026 15 Answer by Will Dean for How to use Guids in C#? Will Dean 2009-05-24T15:46:33Z 2009-05-24T15:59:59Z <p>You should use <a href="http://msdn.microsoft.com/en-us/library/system.guid.newguid.aspx" rel="nofollow"><code>Guid.NewGuid()</code></a></p> http://stackoverflow.com/questions/896127/what-are-your-thoughts-on-visual-studio-2010/900443#900443 1 Answer by Will Dean for What are your thoughts on Visual Studio 2010? Will Dean 2009-05-22T23:45:17Z 2009-05-22T23:45:17Z <p>Very disappointed:</p> <ul> <li>Appallingly blury here (I am not habitually anti-anti-aliasing).</li> <li>Terribly slow</li> <li>Big chunks missing (MVC, new WPF stuff, new help)</li> <li>Apparently you can't share VSPROJ files between 2008/2010 like you could between 2005/2008.</li> <li>All the most obnoxious problems of the past versions (dismal perf on add-references and add-new-item, and things like font changes are all untouched)</li> </ul> <p>I generally like the C#4 and .NET 4.0 stuff, but the competence gap between the platform and the IDE gets wider and wider and wider. It must be absolutely gutting to the good people toiling away at .NET to see VS as the shop-window through which the world sees their work.</p> <p>I am generally a somewhat grudging fan of VS, but this feels like the makings of a real misfire. The PDC CTP's expiry date debacle was a portent.</p> <p>I predict that VS2010 is going to be DevDiv's Vista, which hopefully means Soma will be off to make a folk record, and Sinofsky can come and fix things up for VS2012</p> http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem-solutions/895290#895290 4 Answer by Will Dean for WPF Blurry fonts problem - Solutions Will Dean 2009-05-21T21:33:24Z 2009-05-21T21:33:24Z <p>I have just seen this:</p> <p><a href="http://channel9.msdn.com/shows/Continuum/WPF4Beta1/" rel="nofollow">http://channel9.msdn.com/shows/Continuum/WPF4Beta1/</a></p> <p>Which can give those of us alarmed by 2010 beta 1 some consolation that the new text work is in the NEXT beta. Phew!</p> http://stackoverflow.com/questions/894389/synchronized-value-between-c-and-c/894398#894398 1 Answer by Will Dean for Synchronized value between C# and C++? Will Dean 2009-05-21T18:33:54Z 2009-05-21T18:33:54Z <p>Your best bet for a complete sense of control might be to use p/invoke to call a Win32 function like GetSystemTime or GetTickCount directly from C#.</p> <p>But underneath it all DateTime is just calling Win32 functions, so there's no reason why it's going to give you a significantly different real-time than you'll get using ordinary C-style Win32 calls.</p> http://stackoverflow.com/questions/874551/stdstring-in-c/874626#874626 2 Answer by Will Dean for std::string in C#? Will Dean 2009-05-17T13:28:04Z 2009-05-17T13:28:04Z <p>Try something like this:</p> <pre><code>bool __declspec( dllexport ) OpenA(const TCHAR* pFile) { std::string filename(pFile); ... return true; } </code></pre> <p>You should also specify the appropriate character set (unicode/ansi) in your DllImport attribute.</p> <p>As an aside, unrelated to your marshalling problem, one would normally pass a std:string as a const reference: const std:string&amp; filename. </p> http://stackoverflow.com/questions/874417/what-data-formats-can-ajax-transfer/874427#874427 0 Answer by Will Dean for What data formats can AJAX transfer? Will Dean 2009-05-17T11:43:22Z 2009-05-17T11:43:22Z <p>You can move anything that can be sent over HTTP. There are restrictions about the call being made to the same domain as the page loaded from, but not on the content of the transfer. You can do either GET or POST transactions too.</p> http://stackoverflow.com/questions/859503/is-vs-2008-standard-worth-it/859588#859588 0 Answer by Will Dean for Is VS 2008 Standard worth it? Will Dean 2009-05-13T18:28:08Z 2009-05-13T18:28:08Z <p>Bear in mind that you can buy 'upgrade' editions of VS and upgrade from the Express versions (or even Eclipse). So the list price you'd be looking at is USD199, with the real price more like USD160.</p> <p>Given that it's a price vs features trade-off, this might be useful.</p> <p>My personal advice would be not to mess about with toy freebie editions if you're trying to earn money for yourself or anyone else.</p> http://stackoverflow.com/questions/859511/stl-map-stores-searched-keys/859522#859522 8 Answer by Will Dean for STL map stores searched keys Will Dean 2009-05-13T18:16:36Z 2009-05-13T18:16:36Z <p>Are you searching it with the [] operator? If so, then yes, this is the defined behaviour.</p> <p>You should use the 'find' method if you don't want this behaviour.</p> <p>A good reference for the STL is the Nicolai Josuttis book.</p> http://stackoverflow.com/questions/831289/how-does-one-convert-a-visual-studio-net-2008-solution-to-visual-studio-net-200/831307#831307 5 Answer by Will Dean for How does one convert a Visual Studio .NET 2008 solution to Visual Studio .NET 2005? Will Dean 2009-05-06T19:29:28Z 2009-05-06T19:35:16Z <p>Uusally, the only thing you need to do with .SLN files is to change the version number at the top of the file.</p> <p>Your CS project files will also be almost OK, and if they're not, it's possible to tweak them so that they are OK with both 2005 and 2008.</p> <p>We ran for a while with two solution files (05 and 08) sharing the same set of CS project files.</p> <p>Be aware though, that you can't share VC project files between the two versions like this.</p> <p>The 'tweak' for the project files is as follows:</p> <p>CS Projects created on VS2008 will contain the line:</p> <pre><code>&lt;Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /&gt; </code></pre> <p>VS2005 will choke on this, and you need to change it to the following:</p> <pre><code>&lt;Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /&gt; </code></pre> <p>The latter will work with both 2005 and 2008.</p> http://stackoverflow.com/questions/824781/whats-the-best-name-for-this-interface/824798#824798 0 Answer by Will Dean for What's the best name for this interface? Will Dean 2009-05-05T13:15:06Z 2009-05-05T13:15:06Z <p>Wouldn't an interface be defining a group of operations, rather than 'an operation'?</p> http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/822467#822467 0 Answer by Will Dean for Issue with jQuery $.get in IE Will Dean 2009-05-04T22:43:34Z 2009-05-04T22:43:34Z <p>Have you used Fiddler to have a good look at what's actually being transferred? (<a href="http://www.fiddler2.com" rel="nofollow">http://www.fiddler2.com</a>) </p> http://stackoverflow.com/questions/816882/how-to-predict-the-next-guid-from-a-given-guid/817150#817150 3 Answer by Will Dean for How to predict the next GUID from a given GUID? Will Dean 2009-05-03T14:06:16Z 2009-05-03T14:23:39Z <p>The way Windows has generated GUIDs has changed several times, and lots of seemingly reliable advice on the internet is completely wrong (maybe just out of date, maybe always completely wrong).</p> <p>The last time I looked into this (a few years ago, probably XP SP2), I stepped right down into the OS code to see what was actually happening, and it was generating a random number with the <a href="http://en.wikipedia.org/wiki/Cryptographically%5Fsecure%5Fpseudorandom%5Fnumber%5Fgenerator" rel="nofollow">secure random number generator</a>.</p> <p>I doubt you'll have much luck predicting one GUID from another if you generated them in the default way. </p> http://stackoverflow.com/questions/803225/when-should-i-use-double-instead-of-decimal/803278#803278 2 Answer by Will Dean for When should I use double instead of decimal? Will Dean 2009-04-29T16:47:34Z 2009-04-29T16:47:34Z <p>If you need to binary interrop with other languages or platforms, then you might need to use float or double, which are standardized.</p> http://stackoverflow.com/questions/798161/whats-should-setting-an-html-textbox-value-to-null-do 3 What's should setting an HTML textbox value to null do? Will Dean 2009-04-28T14:11:59Z 2009-04-29T06:16:15Z <p>We have a JSON response which can contain null values (e.g. { myValue: null }) - we assign this value to a textbox on a form: (actually, we use JQuery, but this is equivalent</p> <pre><code>var nullString = null; document.getElementById('myInput').value = nullString; </code></pre> <p>If we assign this value to an HTML textbox value, the behaviour seems browser-dependent:</p> <ul> <li><p>Firefox and Chrome both display an empty text box, and when you read 'value' back you get null.</p></li> <li><p>IE puts the string 'null' into the text box, and when you read 'value' back, you get the string "null" (i.e. setting 'value' and reading it back has modified the data)</p></li> </ul> <p>(It's here: <a href="http://jsbin.com/uleno/edit" rel="nofollow">http://jsbin.com/uleno/edit</a> if anyone wants to try it)</p> <p>Which browser is doing the right thing here, or is this undefined behaviour? And is there a cleverer more elegant workaround than doing a lot of (myValue == null ? '' : myValue) stuff?</p> http://stackoverflow.com/questions/1877216/why-is-my-visual-studio-2008-project-read-only/1877229#1877229 Comment by Will Dean on Why is my visual studio 2008 project read-only Will Dean 2009-12-09T22:04:42Z 2009-12-09T22:04:42Z The first item is particularly likely - check the taskmanager process list for devenv.exe instances which may not be showing any UI but might be holding on to files. http://stackoverflow.com/questions/311165/how-do-you-convert-byte-array-to-hexadecimal-string-and-vice-versa-in-c/311382#311382 Comment by Will Dean on How do you convert Byte Array to Hexadecimal String, and vice versa, in C#? Will Dean 2009-11-25T22:05:18Z 2009-11-25T22:05:18Z Just a note that maxc's nice technique does need .net 4.0 http://stackoverflow.com/questions/1053509/image-fromfile-is-very-slow-any-alternatives-optimizations/1789795#1789795 Comment by Will Dean on Image.FromFile is very SLOW. Any alternatives, optimizations? Will Dean 2009-11-25T00:10:35Z 2009-11-25T00:10:35Z It's a fair bit of info to read from disk (and it won't be one nice block read of a continous swathe of disk, before you reach for your hard-disks theoretical performance figures...). I added some more stuff to my answer to offer some suggestions. You will generally get better answers to this sort of question if you're more up-front with the real numbers - the 50% figure you started with is meaningless on its own. Number of files, size of files, type of storage they're coming from (local hard disk, network, etc), and most importantly HOW LONG is the 50% half of? http://stackoverflow.com/questions/1754766/are-the-pdc-2009-videos-released/1755032#1755032 Comment by Will Dean on Are the PDC 2009 videos released? Will Dean 2009-11-18T10:37:31Z 2009-11-18T10:37:31Z That's just Channel 9 Live, which is one particular video stream - the OP is talking about the session videos http://stackoverflow.com/questions/1623938/using-winforms-default-exception-handler-with-wpf-apps/1624033#1624033 Comment by Will Dean on Using winforms default exception handler with WPF apps Will Dean 2009-10-26T10:55:21Z 2009-10-26T10:55:21Z Thanks very much for this - you were writing it at the same time as I was reading the source... Like you say, it's definitely 'internal use only' - I was somewhat surprised that ThreadExceptionDialog was public at all. http://stackoverflow.com/questions/1603123/how-to-avoid-leaking-handles-when-invoking-in-ui-from-system-threading-timer/1603165#1603165 Comment by Will Dean on How to avoid leaking handles when invoking in UI from System.Threading.Timer? Will Dean 2009-10-21T20:45:46Z 2009-10-21T20:45:46Z I really would recommend using Windows.Forms.Timer for this (not that it wouldn't be nice to understand the handle leak too!). Did you set the Enabled property on the Timer when you tried it? I can't see any reason why it would need to be created by a code in a class derived from Control - how would it know, for a start? http://stackoverflow.com/questions/1540214/can-python-be-used-for-client-side-web-development/1540490#1540490 Comment by Will Dean on Can Python be used for client side web development? Will Dean 2009-10-09T15:35:40Z 2009-10-09T15:35:40Z Is it in the browser - it's Python which can manipulate the DOM. http://stackoverflow.com/questions/1540214/can-python-be-used-for-client-side-web-development/1540233#1540233 Comment by Will Dean on Can Python be used for client side web development? Will Dean 2009-10-09T10:40:16Z 2009-10-09T10:40:16Z I didn't vote you down, but other people have posted at least two ways to run Python within a browser, using additional code. Windows doesn't let you run Python without additional code, but you wouldn't say 'Windows doesn't run Python' http://stackoverflow.com/questions/127137/sample-code-for-r/127176#127176 Comment by Will Dean on Sample Code for R? Will Dean 2009-07-27T16:27:28Z 2009-07-27T16:27:28Z What an obnoxious bunch of people seem to have turned-up to savage my 9month-old answer! The questioner asked for examples of &quot;how 'R' is used by different people&quot;, and I gave one, which he seemed to like... Funny enough, then next answer down <i>doesn't</i> answer the actual question, but is a more popular (not) answer! Strange how these things turn out. :-) http://stackoverflow.com/questions/909316/how-to-submit-a-form-from-c/909388#909388 Comment by Will Dean on How to submit a form from c#... Will Dean 2009-05-26T07:44:16Z 2009-05-26T07:44:16Z I'd also recommend Fiddler (<a href="http://www.fiddler2.com" rel="nofollow">fiddler2.com</a>) for helping with this sort of scraping work. http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem-solutions/894015#894015 Comment by Will Dean on WPF Blurry fonts problem - Solutions Will Dean 2009-05-21T21:23:40Z 2009-05-21T21:23:40Z I agree, it's absolutely terrible. http://stackoverflow.com/questions/190344/wpf-blurry-fonts-problem-solutions/885105#885105 Comment by Will Dean on WPF Blurry fonts problem - Solutions Will Dean 2009-05-21T21:23:32Z 2009-05-21T21:23:32Z I am filing bugs against VS2010B1 for each place in the UI the text is blurry. The tooltips are almost comically bad, I agree. Given how explicitly it's been said this was to be fixed in WPF4, I can only hope that it just didn't make the cut for this beta. http://stackoverflow.com/questions/874551/stdstring-in-c/874626#874626 Comment by Will Dean on std::string in C#? Will Dean 2009-05-18T09:13:18Z 2009-05-18T09:13:18Z Yes, true enough. http://stackoverflow.com/questions/662460/which-general-mistakes-or-software-bugs-you-made-that-got-you-fired/860233#860233 Comment by Will Dean on Which general mistakes or software bugs you made that got you fired? Will Dean 2009-05-13T20:36:25Z 2009-05-13T20:36:25Z Does the 'plagiarism' imply that he'd seen all the same comments in previous code submissions? http://stackoverflow.com/questions/859503/is-vs-2008-standard-worth-it/859588#859588 Comment by Will Dean on Is VS 2008 Standard worth it? Will Dean 2009-05-13T19:06:52Z 2009-05-13T19:06:52Z Surely whether it's &quot;worth it&quot; depends on its price as well as its features? He was apparently planning to over-pay for it. Your opinion is that the features in the paid version are not necessary, mine (expressed as 'my personal advice') is that they're worth having if you're using the software professionally. But thanks for the comment, at least - I couldn't care less about the down-mod, as long as I get to have the debate...