User Shaun Austin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T10:43:08Zhttp://stackoverflow.com/feeds/user/1120http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19831#1983115Answer by Shaun Austin for What interview question weeds out 'bad' applicants?Shaun Austin2008-08-21T13:15:19Z2009-11-10T23:48:22Z<p>I'm not sure if just asking questions can really weed out the bad candidates. It's very easy to learn a bunch of stuff to do with .NET and C# for example and repeat it in an interview. In fact there are literally thousands of sites listing "interview questions and answers" that are easily googleable. </p>
<p>I personally think you learn more about a person's abilities by giving them a programming task to complete. Nothing too hard but enough to stretch them, they don't even need to complete it but at least show how they approached the problem and what depth of knowledge they have. If it's possible to actually sit with the interviewee and get them to talk through their approach to the problem as they go, with you asking questions along the way, you not only get an idea of their technical abilities but also how they communicate and if they are likely to "fit in" with the team.</p>
<p>If that isn't possible for whatever reason then I would suggest more open-ended questions and scenarios to get them talking rather than strict question/answer.</p>
http://stackoverflow.com/questions/20420/any-resharper-equivalent-for-xcode10Any ReSharper equivalent for Xcode?Shaun Austin2008-08-21T16:18:41Z2009-02-18T20:58:52Z
<p>I'm a complete Xcode/Objective-C/Cocoa newbie but I'm learning fast and really starting to enjoy getting to grips with a new language, platform and paradigm.</p>
<p>One thing is though, having been using Visual Studio with R# for so long I've kind of been spoiled with the coding tools such as refactorings and completion etc and as far as I can tell Xcode has some fairly limited built in support for this stuff.</p>
<p>On that note, does anyone know if any add-ins or whatever are available for the Xcode environment which add coding helpers such as automatically generating implementation skeletons from a class interface definition etc? </p>
<p>I suspect there aren't but I suppose it can't help to ask.</p>
http://stackoverflow.com/questions/184777/passing-data-between-c-mfc-app-and-c/184794#1847943Answer by Shaun Austin for Passing data between C++ (MFC) app and C# Shaun Austin2008-10-08T20:41:26Z2008-10-08T21:01:48Z<p>Personally I'd be thinking of using something like named pipes as they are easy to use from the C++ side and the System.IO.Pipes on the .NET side also.</p>
<p>It would also be the path of probably least resistance if you're planning to replace the other non .NET bits of the app over time.</p>
http://stackoverflow.com/questions/174263/load-and-save-bitmaps-using-dotnet/174281#1742811Answer by Shaun Austin for Load and save bitmaps using dotnetShaun Austin2008-10-06T13:27:16Z2008-10-06T13:27:16Z<p>Hiya, use the Image.Save() method.</p>
<p>A better explanation and code sample than I could provide can be found here:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.drawing.image.save.aspx" rel="nofollow">MSDN</a></p>
http://stackoverflow.com/questions/128618/c-file-size-format-provider/129110#1291105Answer by Shaun Austin for C#: File-size format providerShaun Austin2008-09-24T18:56:26Z2008-09-25T06:55:57Z<p>OK I'm not going to wrap it up as a Format provider but rather than reinventing the wheel there's a Win32 api call to format a size string based on supplied bytes that I've used many times in various applications.</p>
<pre><code>[DllImport("Shlwapi.dll", CharSet = CharSet.Auto)]
public static extern long StrFormatByteSize( long fileSize, [MarshalAs(UnmanagedType.LPTStr)] StringBuilder buffer, int bufferSize );
</code></pre>
<p>So I imagine you should be able to put together a provider using that as the core conversion code.</p>
<p>Here's a <a href="http://msdn.microsoft.com/en-us/library/bb759974(VS.85).aspx" rel="nofollow">link</a> to the MSDN spec for StrFormatByteSize.</p>
http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/129575#1295751Answer by Shaun Austin for When did you know it was time to leave your job?Shaun Austin2008-09-24T20:09:01Z2008-09-24T20:09:01Z<p>When after a year of 16+ hour days, 7 days a week working my ass off to try and make the project that was my baby a success despite crap pay and terrible commitment from the company, the boss bumped into me in the hall and said something like: </p>
<p>"Yeah, I understand you've been doing a few extra hours."</p>
<p>From that moment on, I decided to work for myself and have never looked back!</p>
http://stackoverflow.com/questions/107924/which-is-the-best-book-for-net-coding-guidelines/107934#1079342Answer by Shaun Austin for Which is the Best Book for .NET coding guidelines?Shaun Austin2008-09-20T11:24:47Z2008-09-20T11:24:47Z<p>I consider the book my Krzysztof Cwalina and Brad Abrams mentioned above by <strong>TraumaPony</strong> to be the definitive .NET guidelines book. In fact I tend to refer to is as "the bible" and use it to wave at people whenever they try to make a case for alternative approaches.</p>
<p>There is a second edition either out now or soon so worth checking that one out.</p>
http://stackoverflow.com/questions/93297/newbie-wants-to-create-a-pdf-reader-for-ipod-touch-whats-the-best-approach/107695#1076951Answer by Shaun Austin for Newbie wants to create a PDF reader for ipod touch - what's the best approach?Shaun Austin2008-09-20T09:12:29Z2008-09-20T09:12:29Z<p>Based on the gradually evolving Apple policy of rejecting application submissions that <a href="http://www.pcworld.com/article/151026/podcasting_app_rejected_from_the_app_store.html" rel="nofollow">duplicate functionality already on the iPhone</a> I would worry about spending too much time even as a newbie on something that is part of the core iPhone feature-set.</p>
http://stackoverflow.com/questions/105330/automated-way-to-detect-tests-that-cant-fail-checked-in-to-get-by-minmum-code-c/105388#1053881Answer by Shaun Austin for Automated way to detect tests that can't fail, checked in to get by minmum code coverage?Shaun Austin2008-09-19T20:36:27Z2008-09-19T20:36:27Z<p>I think you've almost answered the question for yourself there. If you have someone work for you or with you (you're not clear no whether you are this dev's manager) then if they are not doing the job properly then surely there are procedures that are available to make it clear to this person that they are not producing work to an acceptable standard.</p>
<p>Is the dev new to TDD? Maybe they need some tuition on writing good tests etc. Otherwise they need a kick up the ass and have it stressed to them that the tests are as if not more important than the code he/she is producing.</p>
<p>Oh yeah, and on the plugin thing, forget that, just the same code reviewing you're doing should be good enough.</p>
http://stackoverflow.com/questions/75724/good-primers-on-cryptography4Good primers on CryptographyShaun Austin2008-09-16T18:59:19Z2008-09-18T04:02:43Z
<p>I'm wondering if anyone can recommend good primers on Cryptography and Crypto theory for someone with little or no prior experience in the area. I'll be honest and say it's something I've always found fascinating but having recently read Cryptonomicon I had my interest resparked in the whole field.</p>
<p>I just did some searching on here and found <a href="http://stackoverflow.com/questions/27827/what-are-good-books-about-security-hacking-and-computer-forensics">this question</a> which is close to what I'm after but is a bit more on the "applied" side of things in terms of hacking etc whereas I'm kind of looking for something that covers the basics and the history but on the theoretical side.</p>
http://stackoverflow.com/questions/75145/how-do-you-quickly-find-the-url-for-a-net-framework-method-on-msdn/75210#752104Answer by Shaun Austin for How do you quickly find the URL for a .NET framework method on MSDN?Shaun Austin2008-09-16T18:06:44Z2008-09-16T18:48:15Z<p>It's probably quickest to just type it into Google in my experience. </p>
<p>EDIT:</p>
<p>Now that you've edited your post to clarify what you actually meant I would say that embedding URLs in your comments is nice but you really have no guarantees that either the mangled URL or the pretty one will exist in future.</p>
http://stackoverflow.com/questions/67421/database-design-for-a-booking-application-e-g-hotel/67471#674711Answer by Shaun Austin for Database design for a booking application e.g. hotelShaun Austin2008-09-15T22:02:41Z2008-09-15T22:02:41Z<p>Some questions you need to ask yourself:</p>
<ul>
<li>Is there a reason you need a record for each day of the stay?</li>
<li>Could you not just have a table for the stay and have an arrival date and either a number of nights or a departure date?</li>
<li>Is there specific bits of data that differ from day to day relating to one customer's stay?</li>
</ul>
http://stackoverflow.com/questions/66921/load-a-form-without-showing-it/67019#670193Answer by Shaun Austin for Load a form without showing itShaun Austin2008-09-15T21:11:47Z2008-09-15T21:11:47Z<p>I totally agree with Rich B, you need to look at where you are placing your application logic rather than trying to cludge the WinForms mechanisms. All of those operations and data that your Tasks form is exposing should really be in a separate class say some kind of Application Controller or something held by your main form and then used by your tasks form to read and display data when needed but doesn't need a form to be instantiated to exist. </p>
<p>It probably seems a pain to rework it, but you'll be improving the structure of the app and making it more maintainable etc.</p>
http://stackoverflow.com/questions/64272/how-to-eliminate-flicker-in-windows-forms-custom-control-when-scrolling/64507#645073Answer by Shaun Austin for How to eliminate flicker in Windows.Forms custom control when scrolling?Shaun Austin2008-09-15T16:36:43Z2008-09-15T16:41:47Z<p>You could try putting the following in your constructor after the InitiliseComponent call. </p>
<pre><code>SetStyle(ControlStyles::OptimizedBoubleBuffer |
ControlStyles::UserPaint |
ControlStyles::AllDrawingInWmPaint} , true);
</code></pre>
<p>EDIT:</p>
<p>If you're giving this a go, if you can, remove your own double buffering code and just have the control draw itself in response to the appropriate virtual methods being called.</p>
http://stackoverflow.com/questions/58203/macbook-vs-macbook-pro-for-net-development-and-other-stuff/59830#598300Answer by Shaun Austin for MacBook vs MacBook Pro for .NET development and other stuffShaun Austin2008-09-12T20:02:23Z2008-09-12T20:02:23Z<p>Crikey, I'm doing some on a MacBook Air!!!!</p>
<p>Most annoying aspect? On my (UK) keyboard there is no # key!</p>
http://stackoverflow.com/questions/58520/version-control-of-deliverables/58528#585281Answer by Shaun Austin for Version control of deliverablesShaun Austin2008-09-12T08:55:44Z2008-09-12T08:55:44Z<p>You should look into continuous integration and having some kind of centralised build process. I can only imagine the kind of hell you're going through with your current approach.</p>
<p>Obviously that doesn't help with the keeping your local files in sync, but I think you have bigger problems with your process.</p>
http://stackoverflow.com/questions/56521/windows-forms-designer-upset-by-a-control-with-a-nullable-property/56533#565332Answer by Shaun Austin for Windows Forms Designer upset by a control with a nullable propertyShaun Austin2008-09-11T13:34:28Z2008-09-11T13:41:20Z<p>Or, if you don't want the designer adding any code at all... add this to the Property.</p>
<pre><code>[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
</code></pre>
http://stackoverflow.com/questions/52312/what-is-the-real-overhead-of-try-catch-in-c/52390#5239017Answer by Shaun Austin for What is the real overhead of try/catch in C#?Shaun Austin2008-09-09T17:19:01Z2008-09-09T17:19:01Z<p>Three points to make here:</p>
<ul>
<li><p>Firstly, there is little or NO performance penalty in actually having try-catch blocks in your code. This should not be a consideration when trying to avoid having them in your application. The performance hit only comes into play when an exception is thrown.</p></li>
<li><p>When an exception is thrown in addition to the stack unwinding operations etc that take place which others have mentioned you should be aware that a whole bunch of runtime/reflection related stuff happens in order to populate the members of the exception class such as the stack trace object and the various type members etc. </p></li>
<li><p>I believe that this is one of the reasons why the general advice if you are going to rethrow the exception is to just <code>throw;</code> rather than throw the exception again or construct a new one as in those cases all of that stack information is regathered whereas in the simple throw it is all preserved.</p></li>
</ul>
http://stackoverflow.com/questions/20850/how-to-stop-ntfs-volume-auto-mounting-on-os-x1How to Stop NTFS volume auto-mounting on OS XShaun Austin2008-08-21T19:16:27Z2008-09-02T20:44:22Z
<p>I'm a bit newbieish when it comes to the deeper parts of OSX configuration and am having to put up with a fairly irritating niggle which while I can put up with it, I know under Windows I could have sorted in minutes.</p>
<p>Basically, I have an external disk with two volumes: </p>
<p>One is an HFS+ volume which I use for TimeMachine backups.
The other, an NTFS volume that I use for general file copying etc on Mac and Windows boxes.</p>
<p>So what happens is that whenever I plug in the disk into my Mac USB, OSX goes off and mounts both volumes and shows an icon on the desktop for each. The thing is that to remove the disk you have to eject the volume and in this case do it for both volumes, which causes an annoying warning dialog to be shown every time. </p>
<p>What I'd prefer is some way to prevent the NTFS volume from auto-mounting altogether. I've done some hefty googling and here's a list of things I've tried so far:</p>
<ul>
<li>I've tried going through options in Disk Utility</li>
<li>I've tried setting AutoMount to No in /etc/hostconfig but that is a bit too global for my liking.</li>
<li>I've also tried the suggested approach to putting settings in fstab but it appears the OSX (10.5) is ignoring these settings.</li>
</ul>
<p>Any other suggestions would be welcomed. Just a little dissapointed that I can't just tick a box somewhere (or untick).</p>
<p>EDIT: Thanks heaps to hop for the answer it worked a treat. For the record it turns out that it wasn't OSX not picking up the settings I actually had "msdos" instead of "ntfs" in the fs type column. Cheers!</p>
http://stackoverflow.com/questions/36014/why-is-net-exception-not-caught-by-try-catch-block/39873#398731Answer by Shaun Austin for Why is .NET exception not caught by try/catch block?Shaun Austin2008-09-02T16:00:45Z2008-09-02T20:33:41Z<p>Personally I'm not convinced by the threading theory at all.</p>
<p>The one time I've seen this before, I was working with a library which also defined Exception and the usings I had meant that the actual Catch was referring to a different "Exception" type (if it had been fully qualified it was Company.Lib.Exception but it wasnt because of the using) so when it came to catching a normal exception that was being thrown (some kind of argument exception if I remember correctly) it just wouldn't catch it because the type didn't match.</p>
<p>So in summary, is there another Exception type in a different namespace that is in a using in that class?</p>
<p>EDIT: A quick way to check this is make sure in your catch clause you fully qualify the Exception type as "System.Exception" and give it a whirl!</p>
<p>EDIT2: OK I've tried the code and concede defeat for now. I'll have to have another look at it in the morning if no one has come up with a solution.</p>
http://stackoverflow.com/questions/32280/passing-null-to-a-method/32314#323141Answer by Shaun Austin for Passing null to a methodShaun Austin2008-08-28T13:45:56Z2008-08-28T14:56:18Z<p>@Chris Karcher I would say absolutely correct. The only thing I would say is check the params separately and have the exeption report the param that was null also as it makes tracking where the null is coming from much easier.</p>
<p>@wvdschel wow! If writing the code is too much effort for you, you should look into something like <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a> (or a Java equivalent if one is available) which can post-process your assemblies and insert param checks for you. </p>
http://stackoverflow.com/questions/31297/cannot-access-a-webservice-from-mobile-device/31724#317240Answer by Shaun Austin for Cannot access a webservice from mobile deviceShaun Austin2008-08-28T06:34:59Z2008-08-28T06:34:59Z<p>Not an expert with this stuff but it looks like the first 3 parts of the address are being masked out. Is it possible that the mobile device is being given a network mask of:</p>
<p>255.255.255.0</p>
<p>As to reach beyond the range of the first 3 parts you need the mask to be:</p>
<p>255.255.0.0</p>
<p>This may be an oversimplification or completely wrong but that's was my gut response to the question.</p>
http://stackoverflow.com/questions/29971/what-is-the-best-way-to-setup-an-integration-testing-server/30025#300250Answer by Shaun Austin for What is the best way to setup an integration testing server?Shaun Austin2008-08-27T13:05:02Z2008-08-27T13:05:02Z<p>The approach I favour is the following setup (Actually assuming you are in a .NET project):</p>
<ul>
<li>CruiseControl.NET.</li>
<li>NANT tasks for each individual step. Nant.Contrib for alternative CC templates.</li>
<li>NUnit to run unit tests.</li>
<li>NCover to perform code coverage.</li>
<li>FXCop for static analysis reports.</li>
<li>Subversion for source control.</li>
<li>CCTray or similar on all dev boxes to get notification of builds and failures etc.</li>
</ul>
<p>On many projects you find that there are different levels of tests and activities which take place when someone does a checkin. Sometimes these can increase in time to the point where it can be a long time after a build before a dev can see if they have broken the build with a checkin. </p>
<p>What I do in these cases is create three builds (or maybe two):</p>
<ul>
<li>A CI build is triggered by checkin and does a clean SVN Get, Build and runs lightweight tests. Ideally you can keep this down to minutes or less.</li>
<li>A more comprehensive build which could be hourly (if changes) which does the same as the CI but runs more comprehensive and time consuming tests.</li>
<li>An overnight build which does everything and also runs code coverage and static analysis of the assemblies and runs any deployment steps to build daily MSI packages etc.</li>
</ul>
<p>The key thing about any CI system is that it needs to be organic and constantly being tweaked. There are some great extensions to CruiseControl.NET which log and chart build timings etc for the steps and let you do historical analysis and so allow you to continously tweak the builds to keep them snappy. It's something that managers find hard to accept that a build box will probably keep you busy for a fifth of your working time just to stop it grinding to a halt.</p>
http://stackoverflow.com/questions/12368/how-to-dispose-a-class-in-net/26949#269491Answer by Shaun Austin for How to dispose a class in .net?Shaun Austin2008-08-25T21:29:10Z2008-08-25T21:29:10Z<p>Sorry but the selected answer here is incorrect. As a few people have stated subsequently Dispose and implementing IDisposable has nothing to do with freeing the memory associated with a .NET class. It is mainly and traditionally used to free unmanaged resources such as file handles etc.</p>
<p>While your application can call GC.Collect() to try to force a collection by the garbage collector this will only really have an effect on those items that are at the correct generation level in the freachable queue. So it is possible that if you have cleared all references to the object it might still be a couple of calls to GC.Collect() before the actual memory is freed.</p>
<p>You don't say in your question WHY you feel the need to free up memory immediately. I understand that sometimes there can be unusual circumstances but seriously, in managed code it is almost always best to let the runtime deal with memory management.</p>
<p>Probably the best advice if you think your code is using up memory quicker than the GC is freeing it then you should review your code to ensure that no objects that are no longer needed are referenced in any data structures you have lying around in static members etc. Also try to avoid situations where you have circular object references as it is possible that these may not be freed either. </p>
http://stackoverflow.com/questions/22979/detecting-if-sql-server-is-running/23019#230190Answer by Shaun Austin for Detecting if SQL server is runningShaun Austin2008-08-22T17:48:22Z2008-08-22T17:48:22Z<p>I would certainly go with Vincent's answer. Just make absolutely certain you are closing and disposing the tcp connections properly etc. WMI seems a bit of overkill to me if that is all you're after.</p>
http://stackoverflow.com/questions/22356/cleanest-way-to-invoke-cross-thread-events/22397#223975Answer by Shaun Austin for Cleanest Way to Invoke Cross-Thread EventsShaun Austin2008-08-22T13:45:40Z2008-08-22T13:45:40Z<p>A couple of observations:</p>
<ul>
<li><p>Don't create simple delegates explicitly in code like that unless you're pre-2.0 so you could use: </p>
<p>BeginInvoke(new EventHandler(mCoolObject_CoolEvent), sender, args);</p></li>
</ul>
<p>Also you don't need to create and populate the object array because the args parameter is a "params" type so you can just pass in the list.</p>
<ul>
<li>Secondly, I would probably favour Invoke over BeginInvoke as the latter will result in the code being called asynchronously which may or may not be what you're after but would make handling subsequent exceptions difficult to propagate without a call to EndInvoke. What would happen is that your app will end up getting a TargetInvocationException instead.</li>
</ul>
http://stackoverflow.com/questions/22012/loading-assemblies-and-its-dependencies/22026#220261Answer by Shaun Austin for Loading assemblies and its dependenciesShaun Austin2008-08-22T10:15:01Z2008-08-22T11:07:36Z<p>One nice approach I've used lately is to add an event handler for the AppDomain's AssemblyResolve event.</p>
<pre><code>AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.AssemblyResolve += new ResolveEventHandler(MyResolveEventHandler);
</code></pre>
<p>Then in the event handler method you can load the assembly that was attempted to be resolved using one of the Assembly.Load, Assembly.LoadFrom overrides and return it from the method.</p>
<p>EDIT:</p>
<p>Based on your additional information I think using the technique above, specifically resolving the references to an assembly yourself is the only real approach that is going to work without restructuring your app. What it gives you is that the location of each and every assembly that the CLR fails to resolve can be determined and loaded by your code at runtime... I've used this in similar situations for both pluggable architectures and for an assembly reference integrity scanning tool.</p>
http://stackoverflow.com/questions/19933/how-to-copy-a-file-in-c/19937#199378Answer by Shaun Austin for How to copy a file in C#Shaun Austin2008-08-21T13:45:51Z2008-08-22T10:03:34Z<p>The File.Copy method:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.io.file.copy.aspx" rel="nofollow">MSDN Link</a></p>
http://stackoverflow.com/questions/21547/in-mssql-how-do-i-generate-a-create-table-statement-for-a-given-table/22006#220060Answer by Shaun Austin for In MSSQL, how do I generate a CREATE TABLE statement for a given table?Shaun Austin2008-08-22T10:01:21Z2008-08-22T10:01:21Z<p>Can't you right click the table in Management Studio and select "Script Table As Create"?</p>
http://stackoverflow.com/questions/18871/what-is-the-biggest-vs-solution-youve-ever-seen/21998#219982Answer by Shaun Austin for What is the biggest VS "solution" you've ever seen?Shaun Austin2008-08-22T09:53:54Z2008-08-22T09:53:54Z<p>Looks like a lot of you guys need to poke your project managers and get some kind of rethinking done as far as the organisation of the projects and solutions are concerned. </p>
<p>With applications that are made up of so many assemblies or other binaries a good automated continuous integration build process and changing your references from Project based to Assembly based is probably going to be much more efficient.</p>
<p>Surely it's rare for someone to need to have the entire application code or even the whole layer loaded in VS in order to get some work done?</p>
http://stackoverflow.com/questions/448285/how-do-i-reset-after-a-uiscrollview-zoom/451629#451629Comment by Shaun Austin on How do I reset after a UIScrollView zoom?Shaun Austin2009-07-02T17:10:21Z2009-07-02T17:10:21ZIf I could give you half my rep for this one answer I would! :-D Thanks!http://stackoverflow.com/questions/259819/how-do-i-show-the-keyboard-by-default-in-uitextview/259842#259842Comment by Shaun Austin on How do I show the keyboard by default in UITextView?Shaun Austin2009-03-06T18:21:56Z2009-03-06T18:21:56ZI just found this. For me viewWillAppear doesn't work but viewDidAppear seems to do the job!http://stackoverflow.com/questions/502492/i-was-recently-asked-for-my-stackoverflow-rep-score-in-a-job-interview-is-that-aComment by Shaun Austin on I was recently asked for my stackoverflow rep score in a job interview. Is that appropriate?Shaun Austin2009-02-02T09:30:39Z2009-02-02T09:30:39ZYour implication here is that it was asked as a proper interview question, which is getting people all excited but come on, it was asked as a throwaway conversational line. You were probably crap the rest of the interview, too busy thinking "oh man, I've got to ask a question about this!"http://stackoverflow.com/questions/184777/passing-data-between-c-mfc-app-and-c/184790#184790Comment by Shaun Austin on Passing data between C++ (MFC) app and C# Shaun Austin2008-10-08T21:04:54Z2008-10-08T21:04:54ZMy bad, sorry, been a while and forgot about COM EXEs being out of process! <i>embarrassed</i>http://stackoverflow.com/questions/184777/passing-data-between-c-mfc-app-and-c/184794#184794Comment by Shaun Austin on Passing data between C++ (MFC) app and C# Shaun Austin2008-10-08T21:04:07Z2008-10-08T21:04:07ZI didn't know that thanks OwenP (edited to reflect that!)http://stackoverflow.com/questions/184777/passing-data-between-c-mfc-app-and-c/184790#184790Comment by Shaun Austin on Passing data between C++ (MFC) app and C# Shaun Austin2008-10-08T20:42:14Z2008-10-08T20:42:14ZSurely you mean DCOM?http://stackoverflow.com/questions/175309/how-do-i-tighten-security-of-my-hybrid-asp-net-1-1-ajax-solutionComment by Shaun Austin on How do I tighten security of my hybrid ASP.NET 1.1 / Ajax solution?Shaun Austin2008-10-06T17:32:10Z2008-10-06T17:32:10ZAm I the only one who thinks the question is a bit long?http://stackoverflow.com/questions/132164/loop-termination-conditions/132225#132225Comment by Shaun Austin on Loop termination conditionsShaun Austin2008-09-25T09:01:27Z2008-09-25T09:01:27ZI was thinking the same thing, surely most languages would have i only at the loop scope. +1http://stackoverflow.com/questions/120578/a-good-pattern-solution-to-the-social-web-user-problem-of-point-whoring/120599#120599Comment by Shaun Austin on A good pattern/solution to the social web user problem of point whoring?Shaun Austin2008-09-23T12:23:36Z2008-09-23T12:23:36ZWhy does your score go down when you have posts with 0 votes? (maybe I'm missing something)http://stackoverflow.com/questions/120578/a-good-pattern-solution-to-the-social-web-user-problem-of-point-whoringComment by Shaun Austin on A good pattern/solution to the social web user problem of point whoring?Shaun Austin2008-09-23T12:21:46Z2008-09-23T12:21:46Z"Given a random web crowd this unfortunately means mostly generic, subjective, argumentative and unspecific entries." Like this one! ;-)http://stackoverflow.com/questions/50910/will-reputation-spiral-out-of-all-control/53138#53138Comment by Shaun Austin on Will reputation spiral out of all control?Shaun Austin2008-09-23T09:07:38Z2008-09-23T09:07:38ZI agree, but I've noticed that a lot of users who reach the "Edit Posts" "Close Posts" etc level basically stop answering questions as their main activity and start editing and closing posts and screaming abuse at newbies (not neccesarilly screaming, or abuse, but you know what I mean) http://stackoverflow.com/questions/50910/will-reputation-spiral-out-of-all-control/50930#50930Comment by Shaun Austin on Will reputation spiral out of all control?Shaun Austin2008-09-23T09:05:40Z2008-09-23T09:05:40ZThere is an automatic assumption there that say the top 50 rep holders on SO have achieved that through "good work"http://stackoverflow.com/questions/119508/is-it-possible-to-determine-the-current-user-from-within-a-global-keyboard-hook-iComment by Shaun Austin on Is it possible to determine the current user from within a global keyboard hook in .NETShaun Austin2008-09-23T09:00:42Z2008-09-23T09:00:42ZWow, this application sounds "Big Brother" sinister!http://stackoverflow.com/questions/108234/why-wont-photoshop-let-me-paste-a-print-screen-and-how-do-i-enable-it-to-pasteComment by Shaun Austin on Why won't Photoshop let me paste a print screen and how do I enable it to paste?Shaun Austin2008-09-20T14:14:34Z2008-09-20T14:14:34Z@davenpcj seconded! aku clearly doesn't understand the old "with great power to close posts comes great responsibility"http://stackoverflow.com/questions/104291/trialware-licensing-strategies/104349#104349Comment by Shaun Austin on Trialware/licensing strategiesShaun Austin2008-09-20T09:54:07Z2008-09-20T09:54:07ZNaughty! Yeah, let's all do that shall we???