User DannySmurf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T11:10:44Zhttp://stackoverflow.com/feeds/user/941http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1682343/how-to-share-text-file-of-size-1-5-mb/1682513#16825130Answer by DannySmurf for How to share text file of size 1.5 MBDannySmurf2009-11-05T18:16:21Z2009-11-05T18:16:21Z<p>Do you not have an online disk? There are plenty of those that offer at least 1-2 GB of storage for free. SkyDrive, etc.</p>
http://stackoverflow.com/questions/1353059/controlling-the-mono-gc/1353102#13531021Answer by DannySmurf for Controlling the Mono GCDannySmurf2009-08-30T04:40:30Z2009-08-30T04:40:30Z<p>If its design is similar to the .NET GC (which I would assume is so), you probably can't. But then you shouldn't have to. The garbage collector knows better than you what's going on in the computer's memory.</p>
<p>I'd think the better way to deal with this would be to examine your own code. WHY are you allocating so much memory that there's so much collecting going on? Is the hardware you're running on adequate to handle the code's purpose? Would you possibly benefit from some disk caching scheme (since so much of this memory that's being allocated seems to be going away in short order)?</p>
http://stackoverflow.com/questions/27195/can-fogbugz-track-case-dependencies/27196#271967Answer by DannySmurf for Can fogbugz track case dependencies?DannySmurf2008-08-26T01:19:50Z2009-08-07T13:30:22Z<p>Yes and no. Cases can be linked to each other, but if you're looking for a tree of cases (prerequisites and such), you need FogBugz 7 or later.</p>
http://stackoverflow.com/questions/1184451/what-is-the-best-way-to-empty-a-directory/1184466#11844661Answer by DannySmurf for What is the best way to empty a directory?DannySmurf2009-07-26T12:30:46Z2009-07-26T12:30:46Z<p>Well, you could always just use Directory.Delete....</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa328748%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa328748%28VS.71%29.aspx</a></p>
<p>Or if you want to get fancy, use WMI to delete the directory.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/9037#90378Answer by DannySmurf for Hidden Features of C#?DannySmurf2008-08-12T16:37:19Z2009-06-08T15:32:14Z<p>Two of my personal favourites, which I see rarely used:</p>
<ol>
<li>Snippets (particularly for properties, which was made even better for 2008)</li>
<li>The <a href="http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx" rel="nofollow">ObsoleteAttribute</a></li>
</ol>
http://stackoverflow.com/questions/773981/stop-browser-from-jumping-to-name-when-page-loads/774032#7740322Answer by DannySmurf for Stop browser from jumping to #name when page loadsDannySmurf2009-04-21T18:47:15Z2009-04-21T18:47:15Z<p>........ don't put the named anchors you don't want used in your code?</p>
http://stackoverflow.com/questions/744152/is-it-recommended-for-developers-to-work-on-local-virtual-machines-for-developmen/744322#7443220Answer by DannySmurf for Is it recommended for developers to work on local virtual machines for development?DannySmurf2009-04-13T15:52:05Z2009-04-13T15:52:05Z<p>There are valid reasons to use VMs for development. However, if you're thinking of doing this just to standardize development environments across your organization, there are better ways to accomplish that (ie, having standard machine images).</p>
http://stackoverflow.com/questions/549534/how-can-i-detect-another-instance-of-the-same-win32-application-running-on-anothe/549539#5495393Answer by DannySmurf for How can I detect another instance of the same Win32 application running on another workstation?DannySmurf2009-02-14T18:46:11Z2009-02-14T18:46:11Z<p>There are two primary ways to achieve this:</p>
<p>First, you can set up a small server application on each workstation that communicates with other workstations on the network (personally I would use Bonjour for discovery, but there are other options). The drawback here is that you're going to write quite a bit more code to make this work than option #2.</p>
<p>Second (probably simpler) would be to use WMI to enumerate processes on other workstations (again, probably use a Bonjour-like system for discovery), and find your process running on other machines. The drawback to this is that your enumeration code will require privileges on all machines to conduct the search.</p>
http://stackoverflow.com/questions/546944/what-is-the-best-way-to-pass-information-from-a-c-app-to-a-c-app-while-both-ar/546953#5469530Answer by DannySmurf for What is the best way to pass information from a C# app to a C++ app while both are running?DannySmurf2009-02-13T17:48:51Z2009-02-13T17:48:51Z<p>If the C++ app has a main window, take a look at using the SendMessage function (via P/Invoke) in the C# app to send a WM_COPYDATA message to the C++ app.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms649011%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms649011%28VS.85%29.aspx</a></p>
http://stackoverflow.com/questions/542620/is-this-bad-oop-design/542626#5426267Answer by DannySmurf for Is this bad oop design?DannySmurf2009-02-12T18:19:10Z2009-02-12T18:19:10Z<p>You're talking about an abstract class, and no, it's not bad design. That's what they're for (basically, interfaces, but with some basic implementation).</p>
<p>State wouldn't have to be stored statically. There will be a full implementation of this class (in the form of one of the derived classes) each time you create a Car, Bus, etc.</p>
http://stackoverflow.com/questions/538775/how-to-setup-virtualbox-for-net-development/538802#5388021Answer by DannySmurf for How to setup virtualbox for .NET developmentDannySmurf2009-02-11T21:07:38Z2009-02-11T21:07:38Z<p>If you're having space difficulties, use Virtual PC instead. It's also free, just as fast as VirtualBox, and lets you use expandable disk images for the VM drive.</p>
<p>JSYK, Vista really sucks in a VM.</p>
<p>I find 1GB of memory allocated to the VM (for XP) to be adequate for development and testing. Using Vista, I'd double that.</p>
http://stackoverflow.com/questions/529907/recommended-number-of-projects-in-visual-studio-solution/529935#5299350Answer by DannySmurf for Recommended number of projects in Visual Studio SolutionDannySmurf2009-02-09T21:01:15Z2009-02-09T21:01:15Z<p>I don't think the actual number of solutions matters. Much more important is that you break the thing up along functional lines. As a silly, contrived example if you have a clutch of libraries that handles interop with foreign web services, that would be a solution; an EXE with the DLLs it needs to work would be another.</p>
http://stackoverflow.com/questions/529787/any-reason-at-all-for-an-extra-return-after-html/529804#52980413Answer by DannySmurf for Any reason at all, for an extra return after </html>?DannySmurf2009-02-09T20:34:09Z2009-02-09T20:34:09Z<p>It's just superstition. If I remember correctly, one of the earlier IE versions (2 or 3) would throw an error if you didn't have an extra line break there, but I think that hasn't mattered for quite some time.</p>
http://stackoverflow.com/questions/529482/objective-c-pointers/529553#5295531Answer by DannySmurf for Objective-C pointers?DannySmurf2009-02-09T19:36:10Z2009-02-09T19:36:10Z<p>Because you haven't released it. You're releasing references here, not freeing pointers. It's not quite the same thing. When you do [foo release] the second time, you're releasing the foo reference that you created when you assigned foo2 to foo.</p>
<p>To release the foo2 reference, you need to actually call release on that reference, not a copy of the reference.</p>
http://stackoverflow.com/questions/529282/adding-gui-controls-to-external-program/529306#5293060Answer by DannySmurf for Adding GUI controls to external programDannySmurf2009-02-09T18:36:31Z2009-02-09T18:36:31Z<p>It's possible by creating the control (via the Windows API or whatever) and then assigning your target window's HWND as the new control's parent. For reference, check the SetParent Win32 API function on MSDN.</p>
<p>Not sure how well this will work with a menu, but that's the normal way to add a control to a window. Be careful, though. There are lots of gotchas (commands taken by the target application, memory considerations, etc).</p>
http://stackoverflow.com/questions/529199/what-is-the-best-way-to-deal-with-shared-dlls-in-c/529218#5292181Answer by DannySmurf for What is the best way to deal with shared dlls in C#?DannySmurf2009-02-09T18:13:07Z2009-02-09T18:13:07Z<p>It's most definitely not the best way to do it. I have a few "shared" DLLs at my job that are kind of like that. They get unwieldy and difficult (read: impossible) to make meaningful changes to because it becomes too difficult to ensure that changes don't break apps downstream, which seems like the exact opposite of what you're trying to do.</p>
<p>It sounds like what you really need to do is separate your concerns a little bit better. If all of these DLLs are referencing each other, they're probably too tightly coupled. A true "shared" DLL should be able to stand on its own, or as part of a packet of three or four that travel as a group. If your dependencies are actually preventing you from making changes, then your coupling strategy has gone horribly wrong.</p>
<p>Putting everything in one large DLL certainly isn't going to make anything better. In fact, probably the opposite. Once you've got everything in one DLL, the temptation will be there to couple everything within it even more tightly together, which will make it impossible to pull things apart later.</p>
http://stackoverflow.com/questions/528931/using-closed-source-api-in-a-gpl-application/528975#5289751Answer by DannySmurf for Using closed source API in a GPL application?DannySmurf2009-02-09T16:58:55Z2009-02-09T16:58:55Z<p>Although it's unlikely (as others have said) that you could release this as a GPL app, bear in mind that there are other licenses that you could use that are more permissive about what you can do with third-party code, but which still allow you to maintain some control (or not, as you desire) of the source code: linking, etc. LGPL, MPL, BSD license, etc, but</p>
http://stackoverflow.com/questions/522126/how-do-i-host-an-application-window-as-a-child-of-a-window-belonging-to-another/522236#5222361Answer by DannySmurf for How do I host an application window as a child of a window belonging to another process?DannySmurf2009-02-06T21:25:34Z2009-02-06T21:25:34Z<p>It's possible to host the Window. Change A's parent HWND by calling the SetParent function against it. To change the window styles, you need to use the GetWindowLong/SetWindowLong pair to change the attributes that you want to muck with.</p>
<p>If this is a third-party application (ie, not yours), then you're probably in for a rough ride, particularly if the window does any theming or anything custom with its window (for example, changes to the drag area, etc).</p>
http://stackoverflow.com/questions/521454/how-should-you-structure-your-xml-file/521485#5214854Answer by DannySmurf for How should you structure your xml file?DannySmurf2009-02-06T18:15:03Z2009-02-06T18:22:27Z<p>Really doesn't matter, but the way I decide is: if something could be considered an entity on its own (in this example, Person, I make it an element. If it's something that modifies the entity (or an attribute of the entity), I make it an attribute.</p>
<p>Example:</p>
<pre><code><Person FirstName="John" LastName="Doe" Age="23">
<Clothing wet="No">
<Shirt colour="Red" />
</Clothing>
</Person>
</code></pre>
http://stackoverflow.com/questions/520753/what-is-the-correct-way-to-check-if-a-path-is-an-unc-path-or-a-local-path/520775#5207753Answer by DannySmurf for What is the correct way to check if a path is an UNC path or a local path?DannySmurf2009-02-06T15:42:14Z2009-02-06T16:10:25Z<p>Since a path without two backslashes in the first and second positions is, by definiton, not a UNC path, this is a safe way to make this determination.</p>
<p>A path with a drive letter in the first position (c:) is a rooted local path.</p>
<p>A path without either of this things (myfolder\blah) is a relative local path. This includes a path with only a single slash (\myfolder\blah).</p>
http://stackoverflow.com/questions/520736/how-does-one-get-experience-developing-high-volume-websites/520749#5207492Answer by DannySmurf for How does one get experience developing high volume websites?DannySmurf2009-02-06T15:37:47Z2009-02-06T15:37:47Z<p>You do have those resources; you probably just don't know it: Windows Server 2008 + Hyper-V or Windows Server 2003 with Virtual Server added on will allow you to simulate exactly that. </p>
<p>This is how I normally work (although I have spare physical machines I can call on when I need to). I've got an entire simulated network (complete with 3 web servers, a directory controller, a sharepoint server, an exchange server etc) all running off of a single Mac mini.</p>
<p>As for how to start with high-volume websites... your best bet is probably to find a smaller client that needs one of these. They are not willing to pay as much money as larger clients, but they also don't expect developers with reams of experience either. Or, latch onto a client that's going to eventually want to scale something that you've built for them.</p>
http://stackoverflow.com/questions/517420/using-msmq-for-interprocessinter-application-communication-on-windows-mobile-5/517445#5174450Answer by DannySmurf for Using MSMQ for interprocess(inter application) communication on Windows Mobile 5.0DannySmurf2009-02-05T19:13:18Z2009-02-05T19:13:18Z<p>I have (though on regular Windows, not mobile). I found it to be unreliable (IIRC, the MSMQ docs do not guarantee delivery of messages).</p>
<p>When I need to do interprocess communication, I use WM_COPYDATA (if the communicators are two windows), or named pipes:</p>
<p><a href="http://www.codeproject.com/KB/threads/dotnetnamedpipespart1.aspx" rel="nofollow">http://www.codeproject.com/KB/threads/dotnetnamedpipespart1.aspx</a><br />
(a good, ready-to-use sample library there)</p>
http://stackoverflow.com/questions/517407/height-of-an-element-javascript/517440#5174401Answer by DannySmurf for height of an element javascriptDannySmurf2009-02-05T19:11:52Z2009-02-05T19:11:52Z<p>Do what you're doing, then move the element up by its original height:</p>
<pre><code>var ele=document.getElementById('mydiv');
ele.style.height = 500+'px';
ele.style.top -= 100+'px'; //or whatever the height originally was.
</code></pre>
http://stackoverflow.com/questions/517402/is-it-ok-to-have-two-frameworks-in-the-same-project/517429#5174290Answer by DannySmurf for Is it OK to have two frameworks in the same project?DannySmurf2009-02-05T19:09:59Z2009-02-05T19:09:59Z<p>The real drawback to doing something like this is the risk that one framework will make changes to the database that the other framework will not pick up immediately. I've run into this before using a combination of NHibernate + ADO.NET: if NHibernate has cached something, it may ignore ADO.NET changes.</p>
<p>If you can mitigate that, there's nothing technically wrong with doing this.</p>
http://stackoverflow.com/questions/516431/visual-studio-debuging-errors-in-c/516444#5164441Answer by DannySmurf for Visual Studio Debuging Errors in C++DannySmurf2009-02-05T15:45:19Z2009-02-05T15:45:19Z<p><em>engaging psychic debugging</em></p>
<p>The fact that it runs in release mode fine and crashes in debug mode leads me to believe that you've somehow managed to reference, specifically, the release version of that DLL (mfc90u.dll), rather than referencing the library itself and allowing the linker to decide which version to import.</p>
<p>You may not be using MFC for anything in this app, but if it's building as an MFC application, you will get all of the MFC stuff whether you want it or not (which means you also have to solve the MFC dependency problem and ship the MFC DLLs with your app).</p>
http://stackoverflow.com/questions/516217/making-build-process-independent-of-gac/516391#5163911Answer by DannySmurf for Making build process independent of GACDannySmurf2009-02-05T15:33:52Z2009-02-05T15:33:52Z<p>I think you probably should not be relying on the Visual Studio build process to do this for you automatically, particularly when the results can vary depending on the building machine.</p>
<p>What I would do in this case (this applies whether you are building with Visual Studio or using an automated build script) is to have some post-build script (I usually use batch files for simplicity) copy all of the assemblies your project needs into the appropriate directory immediately after the build (I normally keep any assemblies that are not part of my project in a directory in my source control so that it's all in one place). Then when you build your installer, everything is exactly where it needs to be.</p>
http://stackoverflow.com/questions/516249/your-thoughts-on-web-design-for-169-screens/516368#5163684Answer by DannySmurf for Your thoughts on web design for 16:9 screensDannySmurf2009-02-05T15:29:19Z2009-02-05T15:29:19Z<p>In addition to the other comments...</p>
<p>Most users are not using widescreen monitors yet. More importantly, many users who DO use widescreen monitors do not have their web browsers maximized.</p>
http://stackoverflow.com/questions/513028/c-equivalent-of-java-implements-keyword/513036#5130360Answer by DannySmurf for C# equivalent of Java 'implements' keyword?DannySmurf2009-02-04T20:04:06Z2009-02-04T20:04:06Z<pre><code>public class MyClass : LargerClass {...}
</code></pre>
http://stackoverflow.com/questions/512690/programmatic-msil-injection/512696#5126962Answer by DannySmurf for Programmatic MSIL injectionDannySmurf2009-02-04T18:40:39Z2009-02-04T18:40:39Z<p>Rather than injecting MSIL at runtime, have you considered inserting the source directly into the assembly? </p>
<p>You can disassemble with ildasm, insert your MSIL, and then reassemble with ilasm, then deploy the product of that.</p>
http://stackoverflow.com/questions/511955/how-important-is-programmer-punctuality/511986#51198618Answer by DannySmurf for How Important Is Programmer Punctuality?DannySmurf2009-02-04T16:00:40Z2009-02-04T16:00:40Z<p>If you are having difficulty being punctual for work, that's something that you, yourself have to deal with. Most people in the world need to be on time for their jobs, and most of those people manage without any difficulty.</p>
<p>Being a programmer does not make you "unpunctual," nor does creativity or any other personality trait; if you are constantly late for things, then you have simply failed to effectively manage your schedule. This is not a personality anomaly.</p>
http://stackoverflow.com/questions/1682459/visual-studio-crashesComment by DannySmurf on visual studio crashesDannySmurf2009-11-05T18:19:47Z2009-11-05T18:19:47ZWhy would this go to Superuser? It's about a problem with a specific development tool. Clearly programming-related.http://stackoverflow.com/questions/14061/preventing-memory-leaks-with-attached-behaviours/14143#14143Comment by DannySmurf on Preventing Memory Leaks with Attached BehavioursDannySmurf2009-10-24T04:50:12Z2009-10-24T04:50:12ZAgain with the 14-month-late response... :)http://stackoverflow.com/questions/420854/why-to-use-cas-code-access-security/420868#420868Comment by DannySmurf on Why to use CAS (Code Access Security)?DannySmurf2009-10-23T07:08:18Z2009-10-23T07:08:18ZIf you have ever used an application that connects to the Internet, you are <i>NOT</i> in control of the code on your machine. But you've missed the point. CAS exists to allow running of CODE that is not necessarily trusted, not as a blanket fix for possible user exploits. http://stackoverflow.com/questions/14061/preventing-memory-leaks-with-attached-behaviours/14688#14688Comment by DannySmurf on Preventing Memory Leaks with Attached BehavioursDannySmurf2009-10-23T06:46:42Z2009-10-23T06:46:42ZWell, the discussion was over about 14 months ago. You're a bit late to criticize.http://stackoverflow.com/questions/553950/mysql-moving-differences/553978#553978Comment by DannySmurf on MySql moving differences?DannySmurf2009-10-21T03:28:06Z2009-10-21T03:28:06ZQuick tip: If you can't change your schema, create a temp table with an ID in your proc, dump your result set into there and then do the join.http://stackoverflow.com/questions/1184451/what-is-the-best-way-to-empty-a-directory/1184466#1184466Comment by DannySmurf on What is the best way to empty a directory?DannySmurf2009-07-26T13:27:15Z2009-07-26T13:27:15ZYeh, true, but Directory.Delete is still the best way. Deleting the directory and recreating an empty one in its place is more "elegant" and probably faster than iteration.http://stackoverflow.com/questions/960158/light-weight-database-engine-for-delphi-1Comment by DannySmurf on Light-weight database engine for Delphi 1?DannySmurf2009-06-06T17:41:24Z2009-06-06T17:41:24ZYeah, me too. WTF? You're obviously designing the software, so this can't be a real requirement.http://stackoverflow.com/questions/240932/vmware-and-performance-for-developing/240945#240945Comment by DannySmurf on vmware and performance for developingDannySmurf2009-06-06T06:18:54Z2009-06-06T06:18:54ZTotally agree. A tri- or quad-core machine can be had for as little as $500 these days. There is absolutely no excuse for employers not to equip their workers with something decent.http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed/644266#644266Comment by DannySmurf on How to detect what .NET Framework versions and service packs are installed?DannySmurf2009-05-21T22:18:17Z2009-05-21T22:18:17ZNot a good solution. There's no good reason to download an entire library just to get the .NET version when you can do the same work yourself in about 3 lines of code. As a programmer, you SHOULD be able to "deal with the registry yourself."http://stackoverflow.com/questions/483573/what-to-do-with-a-bad-job-reference/483595#483595Comment by DannySmurf on What to do with a bad job reference? DannySmurf2009-04-14T20:59:20Z2009-04-14T20:59:20Z@MarkJ: That makes no sense. Why would you want a reference from someone removed (potentially many steps removed) from the candidate?http://stackoverflow.com/questions/369603/you-are-or-will-be-a-laid-off-programmer-what-do-you-do-a-year-ago-right-now/370474#370474Comment by DannySmurf on You are or will be a laid off programmer - what do you do a year ago, right now, tomorrow, and next week?DannySmurf2009-04-13T16:01:52Z2009-04-13T16:01:52Z+1. The best independent money-making ideas come when you're under the gun, and start thinking about those "I have nothing to lose, so I might as well" ideas.http://stackoverflow.com/questions/369603/you-are-or-will-be-a-laid-off-programmer-what-do-you-do-a-year-ago-right-now/369625#369625Comment by DannySmurf on You are or will be a laid off programmer - what do you do a year ago, right now, tomorrow, and next week?DannySmurf2009-04-13T15:59:11Z2009-04-13T15:59:11ZUnemployment is also a good idea, yup. Even if you have ample savings, unemployment can help stop you from frittering that away while you're looking for a job.http://stackoverflow.com/questions/363787/building-an-ocx-with-vs-net/363794#363794Comment by DannySmurf on Building an OCX with VS.NET?DannySmurf2009-04-02T18:05:06Z2009-04-02T18:05:06ZCOM-Callable Wrapperhttp://stackoverflow.com/questions/542620/is-this-bad-oop-design/542626#542626Comment by DannySmurf on Is this bad oop design?DannySmurf2009-02-12T21:20:12Z2009-02-12T21:20:12Z@ChanChan: Is there some benefit you derive from blindly reciting a development rule you've heard? If not, why not explain why you think composition is better?http://stackoverflow.com/questions/542620/is-this-bad-oop-design/542638#542638Comment by DannySmurf on Is this bad oop design?DannySmurf2009-02-12T19:50:01Z2009-02-12T19:50:01ZRob: Makes no difference. int is an alias of Int32 in .NET.