User Michael Stum - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T07:02:22Zhttp://stackoverflow.com/feeds/user/91http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1938363/how-does-a-value-type-actually-work-in-net5How does a Value type actually work in .net?Michael Stum2009-12-21T05:26:56Z2009-12-21T06:03:36Z
<p>Somewhat academic question, but: How do value types like Int actually <em>work</em>?</p>
<p>I've used Reflector on mscorlib to find out how System.Int32 is implemented, and it's just a Struct that inherits from System.ValueType. I was looking for something among the lines of an Array of Bits holding the value, but I only found a field that's declared int - which means it's a circular reference?</p>
<p>I mean, I can write "int i = 14;", but the number 14 needs to be stored somewhere somehow, but I couldn't find the "Array of 32-Bits" or a Pointer or something.</p>
<p>Is this some magic that the compiler does, and are these magic types part of the specification? (Similar to how System.Attribute or System.Exception are "special" types)</p>
<p><strong>Edit:</strong> If I declare my own struct, I add fields to it. Those fields are of a built-in type, for example int. So the CLR knows that I hold an int. But how does it know that an int is 32-Bits, signed? Is it simply that the Specification specifies certain base types and therefore makes them "magic", or is there a technical mechanism? Hypothetical example: If I would want to declare an Int36, that is an Integer with 36 Bits, could I create a type that works <em>exactly</em> like an Int32 (apart from the 4 extra bits ofc) by specifying "Okay, set aside 36 bits", or are the built-in primitives set in stone and I would have to somehow work around this (i.e. by using an Int64 and code that only sets the last 36 Bits)?</p>
<p>As said, all very academic and hypothetical, but I always wondered about that.</p>
http://stackoverflow.com/questions/1931288/magic-querystrings-good-patterns-to-avoid2Magic QueryStrings - good patterns to avoid?Michael Stum2009-12-18T23:31:23Z2009-12-18T23:48:05Z
<p>Just wondering about how to avoid Magic Strings in Querystrings? I have a lot of code like </p>
<pre><code>if (string.IsNullOrEmpty(request.Form["projectId"]) ||
!int.TryParse(request.Form["projectId"],out projectId))
return null;
</code></pre>
<p>and naturally, I have to hardcode the projectId in the calling pages.</p>
<p>One way is to have a static/const "Dictionary" class that just defines a load of "QueryStringCreateProjectProjectId" identifiers, but then I have to change my JavaScript files to become server-side-generated.</p>
<p>Now, I realize that there is possibly no perfect solution for that because abstraction can only get to a certain extent, and at some point I have to put in strings and hope I never make a typo, but I wonder what solutions are?</p>
<p>Making this CW as this is borderline Poll/Subjective, but I believe that it belongs on SO.</p>
http://stackoverflow.com/questions/1930133/c-closures-why-is-the-loopvariable-captured-by-reference/1930164#19301641Answer by Michael Stum for C# Closures, why is the loopvariable captured by reference?Michael Stum2009-12-18T19:15:43Z2009-12-18T19:15:43Z<p>You definitely want to read Eric Lippert's "Closing over the loop variable considered harmful":</p>
<ul>
<li><a href="http://blogs.msdn.com/ericlippert/archive/2009/11/12/closing-over-the-loop-variable-considered-harmful.aspx" rel="nofollow">Part 1</a></li>
<li><a href="http://blogs.msdn.com/ericlippert/archive/2009/11/16/closing-over-the-loop-variable-part-two.aspx" rel="nofollow">Part 2</a></li>
</ul>
<p>In Short: The behavior you see is exactly how C# works.</p>
http://stackoverflow.com/questions/487969/sip-simple-client-for-net-msn-messenger0SIP/SIMPLE Client for .net (MSN Messenger)Michael Stum2009-01-28T15:11:23Z2009-12-18T13:41:10Z
<p>I would like to create a small "Windows Messenger" Client that I can trigger from a script (essentially a notification Bot). It's internal, so I think it uses <a href="http://en.wikipedia.org/wiki/Session_Initiation_Protocol" rel="nofollow">SIP</a> or <a href="http://en.wikipedia.org/wiki/SIMPLE" rel="nofollow">SIMPLE</a> against a <a href="http://en.wikipedia.org/wiki/Live_Communications_Server_2005" rel="nofollow">Live Communications Server 2005</a>.</p>
<p>Now, before I dig through the RFC's and Wireshark logs, I wonder if there is a .net Library already available that does this? This is for a Server-Side Application, which means that it should work without a GUI and that it should not use unmanaged code.</p>
<p><a href="http://www.xihsolutions.net/dotmsn/" rel="nofollow">dotMSN</a> does not seem to support SIP, and <a href="http://developers.inova.si/sipobjects/Home/tabid/36/Default.aspx" rel="nofollow">SIP Objects.NET</a> seems to be aimed only at telephony rather than IM.</p>
http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top/12741#1274151Answer by Michael Stum for What is needed to get Delphi back on top?Michael Stum2008-08-15T21:00:22Z2009-12-18T12:14:30Z<p>I think Delphi simply needs a plan. I mean: Borland - Inprise - Borland - We're going to sell! - No, sorry, we're not going to sell, it's CodeGear now - Ok, we ARE selling, it's Embracadero now. That did not really help building confidence...</p>
<p>Then, they seem to do too much with too little manpower, and the result are products like Delphi 8. Oh yes, they were people who actually built stuff with it, but that does not change the fact that it was really bad, sorry guys. The new IDE (I think it was called Galileo) took until Delphi 2006 to actually be usable, but at that point they already lost a lot of reputation due to two less than stellar versions (D8 and D2005).</p>
<p>Then, they did leave out Win32 too long. Unicode VCL? Bah, just use the shiny new .net! Now, if their .net implementation would not be soo far behind Microsoft that would may be work, but with a Win32 Delphi that starts to age and a .net Delphi that is 2 years behind Visual Studio, I did not really have the opinion that the guys had a clue what they want to do.</p>
<p>I do not want to sound too harsh though, the Delphi Guys were quite open and available in the newsgroups, and they did not really try to hide the fact that it was Borland Management who is to blame here, but as a customer that does not matter to me.</p>
<p>So basically, a period of bad, old and overpriced products really cost them.</p>
<p>I think they are now moving strong again. They seem to be under the hood of a company who actually cares now, they are start making more interesting Products again (to my knowledge, Delphi 2007 has a good Vista Support, working AJAX and FINALLY Unicode, even though I did not try and use them). Blackfish SQL looks really interesting as well.</p>
<p>I think they still need a bit more polish, a clearer road map, re-think the pricing. Compared to the Visual Studio Professional Pricetag of 899 €, Delphi is not really competitevily priced, and the full Developer Studio is even less so.</p>
<p>The Delphi Language is still quite attractive in my opinion, so I would be sad to see them go down, but in the last years, Delphi reminded me of the Amiga, with all the positive and negative thoughts associated with that.</p>
http://stackoverflow.com/questions/1919155/jquery-ui-dialog-adding-elements-next-to-a-button0jQuery UI Dialog, adding elements next to a buttonMichael Stum2009-12-17T02:40:52Z2009-12-18T02:55:54Z
<p>One of the nice things about the jQuery UI Dialog is that it has an option for Buttons, which automatically positions them correctly. I just wonder: Can I somehow place elements next to the buttons? I have a little Ajax-Loader gif that I would like to display in the lower left corner of the dialog, while the buttons stay at the lower right?</p>
<p>I know I can just remove the buttons and create them manually in HTML, but as jQuery takes care of positioning and styling already for me, I'd like to keep that functionality if it makes sense.</p>
<pre><code> $("#newProjectDialog").dialog({
bgiframe: true,
resizable: false,
width: 400,
modal: true,
overlay: {
backgroundColor: '#000',
opacity: 0.5
},
buttons: {
'Create': function() {
$("#ajax-loader").show();
// Make the Ajax Call and whatever else is needed
$(this).dialog('destroy');
},
Cancel: function() {
$(this).dialog('destroy');
}
}
});
</code></pre>
http://stackoverflow.com/questions/1919841/can-nhibernate-subsonic-or-l2s-do-per-entity-auto-increment0Can NHibernate, Subsonic or L2S do Per-Entity Auto-Increment?Michael Stum2009-12-17T06:24:44Z2009-12-17T10:04:48Z
<p>I have a SQL Server 2008 database with a composite key: ProjectID (GUID) and TaskID (int). ProjectID is a foreign key to a Projects table. I want to have TaskID Auto-Increment, but restart for every ProjectID (that is: every projectID should have 1,2,3,... as TaskID).</p>
<p>To my knowledge, this is not possible in SQL Server out of the box, and I'd need a stored procedure. Now before I dive into that, I wonder if I can instead do that on my ORM side? I'm undecided between NHibernate 2.1.2 and Subsonic 3.0, but even Linq-To-SQL is an option (Entity Framework is not) if that is possible with it.</p>
<p>I know I can just manually write that code and I know that almost certainly a "SELECT max(TaskID) FROM Tasks WHERE ProjectID = @projectID" is needed in any case, but If I can avoid doing that and instead have my ORM do that, that would be nice.</p>
<p>I haven't found anything in their respective documentations, but I don't really know if there is a proper term for this scenario? </p>
http://stackoverflow.com/questions/1871272/adding-a-section-to-the-to-do-bar-in-outlook-2007-20103Adding a section to the To-Do bar in Outlook 2007/2010?Michael Stum2009-12-09T02:35:10Z2009-12-17T08:56:19Z
<p>I would like to add a new section to the To-Do Bar in Outlook 2010 (or 2007). I found some code to create a new collapsible task pane and someone claiming you can't modify the To-Do bar, but I also found a product called Add-In Express that claims it can do it (although at $349 it's not worth it for a one-off project).</p>
<p>Is is possible to do that?</p>
http://stackoverflow.com/questions/1919602/free-schema-export-for-sql-server-20080Free Schema Export for SQL Server 2008?Michael Stum2009-12-17T05:13:11Z2009-12-17T07:25:35Z
<p>Not sure if this belongs here or on ServerFault, but I wonder if someone knows a free tool to export a SQL Server 2008 Schema? It's only for Tables and their Indexes, Foreign-Keys etc. and it needs to be a command line tool to run as part of a build process. If it can read a .net connection string, that would be awesome (hence the .net tag)</p>
<p>Data is not needed and any sort of versioning/diff is also "Nice, but not needed". And yes, I am aware of Red-Gate's awesome SQL Server tools, sadly this is a hobby project with 0 budget :-(</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/738#73831Answer by Michael Stum for Decode email address from Gravatar hash?Michael Stum2008-08-03T15:49:53Z2009-12-16T07:15:41Z<p><strong>EDIT:</strong> This answer was written over a year ago. See my addendum at the bottom.</p>
<p>@<a href="#731" rel="nofollow">ICR</a>: It <strong>IS</strong> absolutely impossible, no "but".</p>
<p>A Rainbow Table helps to get a match for a given Hash, but you will <strong>NEVER</strong> be able to get the exact input (well, there is indeed a chance of 1 to unlimited to get it, but you would not know whether or not that was the exact input). If you could get the exact Input from a 128-Bit Hash, you would just have invented the best compression algorhithm in the world.</p>
<p>There are unlimited possibilities that will all produce the exact same hash.</p>
<p>Let me explain a bit more in detail.
Image a Hash algorithm where "foo" and "bar" will result in the same hash, let's say "HAsh1!".</p>
<p>Now, you get the Hash - HAsh1!. How do you know if the input data was "foo" or "bar"? You can't, and you will never ever be able to.</p>
<p>Now, what is the problem and what are rainbow tables used for?</p>
<p>Imagine you hack my user database, and you check the Users-Table.
My Login is usually stored in cleartext, so you know to log in with "mstum".
But my password is hashed. I used "trez" with incidentially also hashes to HAsh1!.</p>
<p>You check my hashed password, which us HAsh1!, but you do not know that my plaintext password is trez.
But the point: You don't NEED to know that. You grab your Rainbow Table for HAsh1! and see "foo".</p>
<p>So you go to the page you just got the user data for, and you log in as "mstum" with "foo". Despite me having used "trez" as password, you will successfully log in with "foo" because the hash is exactly the same.</p>
<p>This is called a colision: 2 Input Values having the same hash. On MD5, there are only 128 Bit, whereas on SHA-512 there are 512 Bit, but you WILL still have infinite inputs which will result in the same hash.</p>
<p>So: Rainbow tables solve one of the two problems hackers want to solve - it allows them to authenticate as any user they got the hash for.</p>
<p>The second problem that hackers have is a bit off-topic: How do you give the user some file (for example, a manipulated Setup File that includes Malware or that is a modified version of a tool that does bad stuff) that will successfully have the same Hash? When you check some popular download pages or open source sites, they will have "Setup.exe, MD5 Hash: f387......". While there WILL BE infinite possibilities to produce something that hashes to f387..., the hacker needs to modify the Setup.exe in a way that it contains his Malware AND hashes to f387.... This hard, but possible. On MD5, this is now possible with a reasonable timeframe, which is why MD5 should not be used anymore unless a standard requires it or if security is not a concern.</p>
<p>For Gravatar, Security does not need to be a concern, so MD5 is fine and <strong>they</strong> want something that is fast since it's not security-related.</p>
<p>Edit: Here is a real world example, the one that was used to show collisions in MD5:</p>
<pre>
d131dd02c5e6eec4693d9a0698aff95c 2fcab58712467eab4004583eb8fb7f89
55ad340609f4b30283e488832571415a 085125e8f7cdc99fd91dbdf280373c5b
d8823e3156348f5bae6dacd436c919c6 dd53e2b487da03fd02396306d248cda0
e99f33420f577ee8ce54b67080a80d1e c69821bcb6a8839396f9652b6ff72a70
</pre>
<p>and</p>
<pre>
d131dd02c5e6eec4693d9a0698aff95c 2fcab50712467eab4004583eb8fb7f89
55ad340609f4b30283e4888325f1415a 085125e8f7cdc99fd91dbd7280373c5b
d8823e3156348f5bae6dacd436c919c6 dd53e23487da03fd02396306d248cda0
e99f33420f577ee8ce54b67080280d1e c69821bcb6a8839396f965ab6ff72a70
</pre>
<p>both hash to 79054025255fb1a26e4bc422aef54eb4.</p>
<p>So, given the hash - how do you know which one of the two was used?</p>
<p><strong>Addendum:</strong> I still stand by my original point: Decoding an e-Mail address from a Hash is impossible. You can brute force or use a rainbow table and you might get lucky to get an e-Mail address. As there are infinite inputs to a hash, there are consequently also infinite inputs that look like an e-mail address, but the chances of getting a valid one are really insignificant. So decoding from Hash is not an option. But there are some options that I haven't originally considered, outlined for example <a href="http://www.developer.it/post/gravatars-why-publishing-your-email-s-hash-is-not-a-good-idea" rel="nofollow">here</a>. Basically, you can guess. I post with my real name, so you can try all sorts of combinations of michaelstum@, mstum@, michael.stum@ with all the big providers and run them through a hash function. This does not work in all cases, but as many people use GMail, Yahoo or Hotmail, the chance to hit is not that low. Would salting solve that? Maybe. Maybe not. You would have to figure out the salt, which almost certainly requires brute-force approaches. At least you have a known plaintext (your own e-Mail address), so you can run this brute force on your machine. Having a different salt per-user might be more secure, but I don't know if that could cause a significant risk of creating collisions.</p>
<p>Thinking about this, I think that salting with a long, random salt would indeed improve security as it defeats the one viable approach of guessing. I'd rather recommend using disposable/different e-Mail addresses as you never know what can happen (website databases get hacked every day, and those e-Mail addresses are certainly sold to spammers), but I realize that is impractical for people without a domain and a catchall-mailbox.</p>
http://stackoverflow.com/questions/1909232/c-initializing-a-variable-with-using/1909256#19092562Answer by Michael Stum for C#: Initializing a variable with "using"Michael Stum2009-12-15T18:04:34Z2009-12-15T18:04:34Z<p>using is a language construct that takes an IDisposable and calls Dispose() on it.</p>
<p>So</p>
<pre><code>using (SqlConnection sqlConnection = new SqlConnection(connectionString))
{
code...
}
</code></pre>
<p>is <strong>roughly</strong> equivalent to</p>
<pre><code>SqlConnection sqlConnection = null;
try {
sqlConnection = new SqlConnection(connectionString));
code ...
} finally {
if(sqlConnection != null) sqlConnection.Dispose();
}
</code></pre>
http://stackoverflow.com/questions/872753/options-for-handling-postbacks-in-asp-net-mvc/872766#8727661Answer by Michael Stum for Options for handling postbacks in ASP.NET MVCMichael Stum2009-05-16T16:32:10Z2009-12-15T00:01:29Z<p><a href="http://en.wikipedia.org/wiki/ASP.NET%5FMVC%5FFramework" rel="nofollow">ASP.NET MVC</a> does Request-To-Object mapping automatically, through <a href="http://weblogs.asp.net/melvynharbour/archive/2008/08/29/how-to-use-the-asp-net-mvc-modelbinder.aspx" rel="nofollow">ModelBinders</a>. An older <a href="http://weblogs.asp.net/scottgu/archive/2008/10/16/asp-net-mvc-beta-released.aspx" rel="nofollow">article is here</a>, under "Form Post and Model Binder Improvements", and there is <a href="http://www.microsoft.com/belux/msdn/nl/chopsticks/default.aspx?id=798" rel="nofollow">a video here</a>.</p>
http://stackoverflow.com/questions/968875/official-way-to-deploy-assemblies-into-the-gac3"Official" Way to deploy Assemblies into the GAC?Michael Stum2009-06-09T08:36:37Z2009-12-14T13:14:13Z
<p>I just wonder - if I need to deploy an assembly into the GAC, what is the "official" way of doing it?</p>
<p>Currently we either manually drag/drop into the c:\windows\assembly folder or we use gacutil.exe. The first way is obviously not the good one (it's manual process after all), and gacutil is part of the SDK and not available per default on production servers.</p>
<p>Are there any Microsoft deployment Guidelines?</p>
http://stackoverflow.com/questions/9304/c-3-0-auto-properties-useful-or-not33C# 3.0 Auto-Properties - useful or not?Michael Stum2008-08-12T23:06:58Z2009-12-11T10:20:35Z
<p>I am used to create my Properties in C# using a private and a public field:</p>
<pre><code>private string title;
public string Title
{
get { return title; }
set { title = value; }
}
</code></pre>
<p>Now, with .net 3.0, we got auto-properties:</p>
<pre><code>public string Title { get; set; }
</code></pre>
<p>I know this is more a philosophical/subjective questions, but is there any reason to use these auto-properties except from saving 5 lines of code for each field? My personal gripe is that those properties are hiding stuff from me, and I am not a big fan of black magic.</p>
<p>In fact, the hidden private field does not even show up in the Debugger, which is OK given the fact that the get/set functions do nothing. But when I want to actually implement some getter/setter logic, I have to use the private/public pair anyway.</p>
<p>I see the benefit that I save a lot of code (1 vs 6 lines) without losing the ability to change the getter/setter logic later, but then again I can already do that by simply declaring a public field "Public string Title" without the need of the { get; set; } block, thus even saving more code.</p>
<p>So, what am I missing here? Why would anyone actually want to use auto-properties?</p>
http://stackoverflow.com/questions/453880/how-many-developers-are-there-in-the-world/1879178#18791780Answer by Michael Stum for How many developers are there in the world?Michael Stum2009-12-10T07:15:04Z2009-12-10T07:15:04Z<p>Do Secretaries that write horrible Excel VBA (Visual Basic for creating Abominations) Macros as developers?</p>
http://stackoverflow.com/questions/1879017/style-tag-not-working-in-microsoft-outlook-2007/1879146#18791460Answer by Michael Stum for Style tag not working in Microsoft Outlook 2007Michael Stum2009-12-10T07:02:37Z2009-12-10T07:02:37Z<p>How do you apply your style tag? The HTML Renderer in Outlook is rather simple and does have some issues with CSS. I'm not even sure you can use CSS classes, but I know for sure that many Inline-Styles work. Absolute Positioning will make issues though.</p>
<p>Can you post the Source Code of the Mail? (In Outlook, there should be a View Source option somewhere)</p>
http://stackoverflow.com/questions/161398/finding-a-user-in-active-directory-with-the-login-name2Finding a User in Active Directory with the Login NameMichael Stum2008-10-02T08:46:09Z2009-12-09T12:04:28Z
<p>I'm possibly just stupid, but I'm trying to find a user in Active Directory from C#, using the Login name ("domain\user").</p>
<p>My "Skeleton" AD Search Functionality looks like this usually:</p>
<pre><code>de = new DirectoryEntry(string.Format("LDAP://{0}", ADSearchBase), null, null, AuthenticationTypes.Secure);
ds = new DirectorySearcher(de);
ds.SearchScope = SearchScope.Subtree;
ds.PropertiesToLoad.Add("directReports");
ds.PageSize = 10;
ds.ServerPageTimeLimit = TimeSpan.FromSeconds(2);
SearchResult sr = ds.FindOne();
</code></pre>
<p>Now, that works if I have the full DN of the user (ADSearchBase usually points to the "Our Users" OU in Active Directory), but I simply have no idea how to look for a user based on the "domain\user" syntax.</p>
<p>Any Pointers?</p>
http://stackoverflow.com/questions/1871116/adding-a-tab-to-the-outlook-2010-ribbon0Adding a Tab to the Outlook 2010 Ribbon?Michael Stum2009-12-09T01:40:50Z2009-12-09T02:06:05Z
<p>I'm trying to create an Outlook 2010 addin that adds a new tab to the ribbon. I found out how I can add my groups to an <em>existing</em> tab by setting the OfficeId to "TabMail" or something built-in, but I don't want to modify existing tabs.</p>
<p>I've now set the OfficeId that something of my own ("TabMyAddin"), but it doesn't show up in Outlook. I wonder if I need to somehow tell Outlook to add it and show it, or how I would proceed?</p>
<p>The RibbonType was changed to Microsoft.Outlook.Explorer if that matters.</p>
http://stackoverflow.com/questions/1871116/adding-a-tab-to-the-outlook-2010-ribbon/1871193#18711930Answer by Michael Stum for Adding a Tab to the Outlook 2010 Ribbon?Michael Stum2009-12-09T02:06:05Z2009-12-09T02:06:05Z<p>Okay, got it:</p>
<ul>
<li>In the Visual Ribbon Designer, the ControlId property needs to be set to "Custom" instead of Office. When set to Office, it will set idMso to the given OfficeId and when set to Custom, it will instead set the id.</li>
<li>In the XML Ribbon Designer, the <code><tab></code> needs to have an id instead of an idMso.</li>
</ul>
http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1854733#18547330Answer by Michael Stum for simple proof that GUID is not uniqueMichael Stum2009-12-06T08:16:18Z2009-12-06T08:16:18Z<p>You could hash the GUIDs. That way, you should get a result much faster.</p>
<p>Oh, of course, running multiple threads at the same time is also a good idea, that way you'll increase the chance of a race condition generating the same GUID twice on different threads.</p>
http://stackoverflow.com/questions/1844428/invoking-the-mediawiki-page-parser-to-get-html0Invoking the MediaWiki Page Parser to get HTML?Michael Stum2009-12-04T01:59:32Z2009-12-04T02:09:04Z
<p>I'd like to get the HTML for a MediaWiki Page, that is I want to run the MediaWiki Markup through the parser. Now, I know I could just use some external Parser, but most of them do not support Transclusion and (naturally) Extensions, so my output will be different.</p>
<p>As I have access to the MediaWiki installation, I wonder if I can just use the built-in parser to render me the page. I don't want to do screen scraping because of all the other stuff on the page (navigation, sidebar, javscript and css includes etc.), I literally just want the body.</p>
<p>If it matters, it is running MediaWiki 1.12 on PHP 5.2.</p>
http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most/1838394#18383941Answer by Michael Stum for Common "Truisms" that need correcting the most.Michael Stum2009-12-03T08:10:37Z2009-12-03T08:10:37Z<p>Reflection (in .net, not sure about Java) is very expensive and therefore extremely slow, hence it should be avoided at all costs.</p>
http://stackoverflow.com/questions/1836805/empty-visual-studio-project1Empty Visual Studio Project?Michael Stum2009-12-03T00:08:05Z2009-12-03T00:24:35Z
<p>Is there a way to have an empty Project in Visual Studio 2008 or 2010? I do not mean an empty solution, I mean an empty project in a solution. Basically I have a solution with multiple projects, and I want to add a project to track some static files that are part of the solution but not of any specific project. Adding them as solution files doesn't work because solution folders are not mapped to file system folders and I want to manage hierarchy from Visual Studio.</p>
<p>At the moment I create an empty Visual C# project which works, but I just wonder if there is a "more empty" project.</p>
http://stackoverflow.com/questions/41880/javascript-ides28JavaScript IDEsMichael Stum2008-09-03T15:06:02Z2009-11-28T19:10:30Z
<p>Yay, another "What is the Best IDE"-Question, but this time it's for a language that does not seem to have any really popular yet: JavaScript.</p>
<p>With an IDE, I mean the full set: Writing Code with Syntax Highlighting and possibly "IntelliSense" Code Completion Helper, but also debugging including Breakpoint and Watches (also for AJAX Stuff), possibly even with support to run the code in multiple Browsers.</p>
<p>My current approach of "Writing JS in Notepad and using Firefox' Error Console and Firebug" is not really statisfying...</p>
http://stackoverflow.com/questions/479979/msbuild-defining-conditional-compilation-symbols3msbuild, defining Conditional Compilation SymbolsMichael Stum2009-01-26T14:38:49Z2009-11-26T17:17:47Z
<p>I'm possibly just blind, but is there a command line to specify conditional compilation symbols in MSBUILD?</p>
<p>I currently have this Line in my buildscript:</p>
<pre><code>SET MSBUILD=C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe
SET CONFIG=Debug
%MSBUILD% /p:Configuration=%CONFIG% /p:OutputPath=..\..\output source\MyProject\MyProject.csproj
</code></pre>
<p>And I'd like to add a condition. In Visual Studio, i can just go into Project Properties => Build => Conditional compilation symbols, but I have not seen that option for msbuild?</p>
<p>Bonus Karma if you know if I can completely override all symbols already specified in the .csproj files to make sure that only the conditionals from my Buildscript go in.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1131/windows-help-files-what-are-the-options14Windows Help files - what are the options?Michael Stum2008-08-04T10:43:05Z2009-11-25T18:31:57Z
<p>Back in the old days, Help was not trivial but possible: generate some funky .rtf file with special tags, run it through a compiler, and you got a WinHelp file (.hlp) that actually works really well.</p>
<p>Then, Microsoft decided that WinHelp was not hip and cool anymore and switched to CHM, up to the point they actually axed WinHelp from Vista.</p>
<p>Now, CHM maybe nice, but everyone that tried to open a .chm file on the Network will know the nice "Navigation to the webpage was canceled" screen that is caused by security restrictions.</p>
<p>While there are ways to make CHM work off the network, this is hardly a good choice, because when a user presses the Help Button he wants help and not have to make some funky settings.</p>
<p>Bottom Line: I find CHM absolutely unusable. But with WinHelp not being an option anymore either, I wonder what the alternatives are, especially when it comes to integrate with my Application (i.e. for WinHelp and CHM there are functions that allow you to directly jump to a topic)?</p>
<p>PDF has the disadvantage of requiring the Adobe Reader (or one of the more lightweight ones that not many people use). I could live with that seeing as this is kind of standard nowadays, but can you tell it reliably to jump to a given page/anchor?</p>
<p>HTML files seem to be the best choice, you then just have to deal with different browsers (CSS and stuff).</p>
http://stackoverflow.com/questions/1793868/programmatically-create-a-distribution-group-in-active-directory0Programmatically create a Distribution Group in Active DirectoryMichael Stum2009-11-25T00:12:21Z2009-11-25T12:42:32Z
<p>I have a Windows Domain here that runs Exchange 2007, and I need to programmatically create new Mailing Lists.</p>
<p>From what I could gather so far, Exchange mailing lists are just normal AD Groups, so I mainly have to worry about the interaction with AD. I used the System.DirectoryService namespace to query AD, but I'm not sure what the correct way would be to create a Distribution Group here. Especially it has to be mail-enabled and show up in the Outlook address book, so I don't know if I need to invoke some magic to make sure Exchange picks up the new group?</p>
<p>Any pointers?</p>
http://stackoverflow.com/questions/109344/creating-educational-videos1Creating Educational VideosMichael Stum2008-09-20T20:52:52Z2009-11-25T08:43:01Z
<p>We had a question on <a href="http://stackoverflow.com/questions/4604/creating-a-podcast">how to create podcasts</a> a while ago, and i'd like to go one step further - i'd like to create a video tutorial.</p>
<p>Now, I am using Screen Capture software and a standard Video Editing program to edit them, and I find it quite hard sometimes to keep up the pace. I noticed that some videos (i.e. the ASP.net Videos) often use Bullet Points in a separate screen etc.</p>
<p>Of course, in a video editing program this is trivial to do, but very tedious if you want to do it a lot.</p>
<p>I just wonder if there are specialized tools to create tutorial videos/"video podcasts" or if people really use only Premiere et al. to edit them?</p>
<p>Also, I wonder if there are some "tricks and best practices" on the content side to keep the video interesting and at a good pace?</p>
http://stackoverflow.com/questions/1774676/execute-code-in-if-else-statement/1774688#17746881Answer by Michael Stum for Execute code in if-else statement Michael Stum2009-11-21T06:13:47Z2009-11-21T06:13:47Z<p>Just put the code before or after the if..else block.</p>
<p>Alternatively, if you have an "if, else if, else" block where you want to execute code in some (but not all) branches, just put it in a separate function and call that function within each block.</p>
http://stackoverflow.com/questions/1528/hiding-inherited-members-in-c/1533#15338Answer by Michael Stum for Hiding inherited members in C#Michael Stum2008-08-04T19:19:33Z2009-11-19T17:51:07Z<p>While you cannot prevent usage of those inherited members to my knowledge, you should be able to hide them from IntelliSense using the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.editorbrowsableattribute.aspx" rel="nofollow">EditorBrowsableAttribute</a>:</p>
<pre><code>Using System.ComponentModel;
[EditorBrowsable(EditorBrowsableState.Never)]
private string MyHiddenString = "Muahahahahahahahaha";
</code></pre>
<p><em>Edit:</em> Just saw this in the documentation comments, which makes it kinda useless for this purpose:</p>
<blockquote>
<p>There is a prominent note that states that this attribute "does not suppress members from a class in the same assembly". That is true but not complete. Actually, the attribute does not suppress members from a class in the same solution.</p>
</blockquote>
http://stackoverflow.com/questions/1938363/how-does-a-value-type-actually-work-in-net/1938422#1938422Comment by Michael Stum on How does a Value type actually work in .net?Michael Stum2009-12-21T06:11:59Z2009-12-21T06:11:59ZThanks. Yeah, I'm guessing I would run into all sorts of performance issues anyway (alignment/padding, requiring 2 reads/writes on ia32 etc...).http://stackoverflow.com/questions/1938363/how-does-a-value-type-actually-work-in-net/1938400#1938400Comment by Michael Stum on How does a Value type actually work in .net?Michael Stum2009-12-21T05:51:23Z2009-12-21T05:51:23ZThanks. So in my hypothetical Int36 example, I have no other option than to use a built in type (i.e. Int64 or bool[36]) and code the rest of my type manually?http://stackoverflow.com/questions/1938363/how-does-a-value-type-actually-work-in-net/1938373#1938373Comment by Michael Stum on How does a Value type actually work in .net?Michael Stum2009-12-21T05:42:35Z2009-12-21T05:42:35ZYes, but the CLR somehow needs to know that it should do that. Is this just because it's declared as a struct? So does the CLR work like "Struct = Store raw value on stack and pass around a copy of the entire memory"? And still, is "int" a magic word that let's the CLR know "32-Bits"? If I make my own structs, I have to tell what I actually want to store in it. If I declare an int in my struct, the CLR knows to set aside an int. But how does it know what to set aside for an int? I'm just wondering if these base types are special through specification or special through some other mechanism?http://stackoverflow.com/questions/1871272/adding-a-section-to-the-to-do-bar-in-outlook-2007-2010/1911650#1911650Comment by Michael Stum on Adding a section to the To-Do bar in Outlook 2007/2010?Michael Stum2009-12-21T04:12:21Z2009-12-21T04:12:21ZThat works after some tweaking, although now I realize it's rather ugly and hacky, so I'll have to think if I really want that in the end. Thanks for the effort.http://stackoverflow.com/questions/1924102/what-label-to-choose-my-account-or-your-accountComment by Michael Stum on What label to choose: "My account" or "Your account"Michael Stum2009-12-18T19:17:26Z2009-12-18T19:17:26ZFlip a coin to pick, and then be consistent about it.http://stackoverflow.com/questions/866078/from-where-can-i-download-borland-c-builderComment by Michael Stum on From where can i download borland c++ builderMichael Stum2009-12-18T18:54:46Z2009-12-18T18:54:46ZNot anymore though, the Turbo Explorer applications were pulled.http://stackoverflow.com/questions/1929753/optimize-color-manipulation-on-xna/1929798#1929798Comment by Michael Stum on Optimize color manipulation on XNAMichael Stum2009-12-18T18:12:04Z2009-12-18T18:12:04Zcan't you change mul to a float then? Or would that be too inaccurate?http://stackoverflow.com/questions/1929080/net-how-to-make-a-class-such-that-only-one-other-specific-class-can-instantiat/1929228#1929228Comment by Michael Stum on .NET - how to make a class such that only one other specific class can instantiate it?Michael Stum2009-12-18T18:02:42Z2009-12-18T18:02:42ZObfuscators also break this.http://stackoverflow.com/questions/1926386/why-net-code-compiles-to-msil/1926401#1926401Comment by Michael Stum on Why .NET code compiles to MSIL?Michael Stum2009-12-18T05:27:17Z2009-12-18T05:27:17ZSilverlight is also to mention. Not strictly Cross-Platform, but it benefits from their approach. Also, Microsoft DID release a CLR for BSD, it just was never updated past Version 1.0 and is therefore useless nowadays.http://stackoverflow.com/questions/1919155/jquery-ui-dialog-adding-elements-next-to-a-button/1919271#1919271Comment by Michael Stum on jQuery UI Dialog, adding elements next to a buttonMichael Stum2009-12-17T20:35:47Z2009-12-17T20:35:47ZToo bad I can't upvote twice though, the "there" check is great on it's own.http://stackoverflow.com/questions/1919155/jquery-ui-dialog-adding-elements-next-to-a-button/1919271#1919271Comment by Michael Stum on jQuery UI Dialog, adding elements next to a buttonMichael Stum2009-12-17T20:35:05Z2009-12-17T20:35:05ZI went with "$(".ui-dialog-buttonpane:first").append(aj);", where aj is a $('<img src="...."'); object.http://stackoverflow.com/questions/1919155/jquery-ui-dialog-adding-elements-next-to-a-button/1919243#1919243Comment by Michael Stum on jQuery UI Dialog, adding elements next to a buttonMichael Stum2009-12-17T20:24:08Z2009-12-17T20:24:08Z.ui-dialog-button doesn't exist :(http://stackoverflow.com/questions/1919841/can-nhibernate-subsonic-or-l2s-do-per-entity-auto-increment/1920670#1920670Comment by Michael Stum on Can NHibernate, Subsonic or L2S do Per-Entity Auto-Increment?Michael Stum2009-12-17T19:31:16Z2009-12-17T19:31:16ZAs for your suggestion: I think that one way or another I have to do that, either as a Trigger, a SProc or in my business logic. Essentially it's "just" a transaction that locks the table for writes and executes a select max() and an insert. Gonna check which is most appropriate.http://stackoverflow.com/questions/1919841/can-nhibernate-subsonic-or-l2s-do-per-entity-auto-increment/1920670#1920670Comment by Michael Stum on Can NHibernate, Subsonic or L2S do Per-Entity Auto-Increment?Michael Stum2009-12-17T19:29:24Z2009-12-17T19:29:24ZYou are right in one way (I decided to change the Primary Key from the projects table from GUID to ID. Turned out that instead of changing all tables it was just easier to drop the entire DB and recreate it from a script), But I have to think about that. If the Primary Key is "Just a random extra field with no meaning", I don't see much point in it, as the Unique Constraint has to be a combination of ProjectID and TaskID. But I haven't had large databases yet, so I'm just saying that I don't completely get it :)http://stackoverflow.com/questions/1919841/can-nhibernate-subsonic-or-l2s-do-per-entity-auto-incrementComment by Michael Stum on Can NHibernate, Subsonic or L2S do Per-Entity Auto-Increment?Michael Stum2009-12-17T06:48:52Z2009-12-17T06:48:52ZSorry, TaskID is really TaskNumber :) It's the ID displayed to the user, hence it should start at 1 for each project.