User kitsune - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T12:38:24Zhttp://stackoverflow.com/feeds/user/13466http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1319239/is-it-possible-to-replace-traditional-event-handling-in-c-with-the-new-reactive5Is it possible to replace traditional event handling in C# with the new Reactive framework?kitsune2009-08-23T18:43:23Z2009-11-17T06:45:32Z
<p>All examples on System.Reactive.dll I've seen so far deal with Events, EventArgs and EventHandlers, I wonder whether someone can show me an example where event notification is handled without this.</p>
<p>For instance, in Microsoft's XNA framework, you have a static method called Mouse.GetState() which will return the current MouseState (with mouseState.LeftButton == ButtonState.Pressed you could see whether the left button is pressed, for instance). So there are no EventArgs, Events etc. in the first place and I think this could serve as an example of achieving event notification without introducing the concept of an event at all.</p>
<p>Could System.Reactive be of help here? Can anyone wrap this into an example with System.Reactive?</p>
http://stackoverflow.com/questions/335455/mvc-frameworks-for-wpf2MVC Frameworks for WPFkitsune2008-12-02T21:09:39Z2009-11-11T10:32:50Z
<p>Are there any MVC frameworks available for WPF other than <a href="http://www.codeplex.com/caliburn/" rel="nofollow">Caliburn</a> (which looks awesome btw)?</p>
http://stackoverflow.com/questions/615575/msdeploy-triggers-401-access-denied-error-when-trying-to-synch-a-site1MSDeploy triggers 401 Access denied error when trying to synch a site.kitsune2009-03-05T16:37:56Z2009-10-29T03:00:03Z
<p>I try to push/sync a IIS Site from a Win2003 Server to another.</p>
<p>This is my command:</p>
<p>msdeploy -verb:sync -source:metakey=lm/w3svc/68512112 -dest:metakey=lm/w3svc/68512112,computername=backup-09,username=Administrator,password=PASSWORD -whatif > msdeploysync.log</p>
<p>I also tried the following</p>
<p>msdeploy -verb:sync -source:metakey=lm/w3svc/68512112 -dest:metakey=lm/w3svc/68512112,computername=backup-09,username=BACKUP-09\Administrator,password=PASSWORD -whatif > msdeploysync.log</p>
<p>I also tried</p>
<p>msdeploy -verb:sync -source:metakey=lm/w3svc/68512112 -dest:metakey=lm/w3svc/68512112,computername=backup-09,username=Administrator@BACKUP-09,password=PASSWORD -whatif > msdeploysync.log</p>
<p>This is the error:</p>
<p><strong>Fatal:</strong> Request to remote agent URL '<a href="http://backup-09/MSDEPLOYAGENTSERVICE" rel="nofollow">http://backup-09/MSDEPLOYAGENTSERVICE</a>'
failed.</p>
<p><strong>Fatal:</strong> The remote server returned an error: (401) Unauthorized.
Fatal count: 1</p>
<ul>
<li>I did run msdeploy/cmd as an
administrator.</li>
<li>I did try to access
<a href="http://backup-09/MSDEPLOYAGENTSERVICE" rel="nofollow">http://backup-09/MSDEPLOYAGENTSERVICE</a>,
it asked for my permissions, I
entered the credentials above, it
worked (empty site displayed).</li>
<li>This is Beta 2 of MSDeploy</li>
</ul>
<p>Can anyone help me?</p>
<p>I now even set up a domain controller for all the servers... still the same issues, whether I'm logged in as a domain controller, supply the local accounts, all variations trigger a 401 </p>
http://stackoverflow.com/questions/1491113/wpf-performance-displaying-thousands-of-paths-shapes-on-a-canvas2WPF Performance: Displaying thousands of Paths / Shapes on a Canvaskitsune2009-09-29T07:49:55Z2009-09-29T08:11:43Z
<p>I'm currently developing a visualization tool that draws WPF shapes such as paths, ellipses etc. on a Canvas. I've already implemented a virtualized approach where Shapes are being destroyed and created on the fly depending on their visibility. However, even with only like 600 ellipses visible, the application seems to struggle. </p>
<p>What are my options to speed things up? I'm thinking rendering grouped Shapes (let's say 500 at a time) as transparent bitmaps and only painting these on the Canvas. But I don't know whether that's a good idea... From what I gather this requires some sort of hack, if transformations were applied:</p>
<pre><code> VisualBrush shapeBrush = new VisualBrush(shape);
DrawingVisual drawingVisual = new DrawingVisual();
DrawingContext drawingContext = drawingVisual.RenderOpen();
using (drawingContext)
{
drawingContext.DrawRectangle(shapeBrush, null, new Rect(new Point(0, 0), new Point(actualWidth, actualHeight)));
}
renderTarget.Render(drawingVisual);
</code></pre>
<p>What about using a big WritableBitmap? Would that be another approach?</p>
http://stackoverflow.com/questions/1428352/asp-net-web-forms-is-it-smart-to-call-a-custom-bind-method-in-a-user-controls0ASP.NET Web Forms: Is it smart to call a custom "Bind" method in a user control's property's setter?kitsune2009-09-15T16:52:52Z2009-09-15T19:59:47Z
<p>I haven't touched ASP.NET Web Forms in years and I'm a bit rusty with it.</p>
<p>I currently have a user control which has a list of editable articles, this user control contains another user control (EditArticle.ascx), which is not visible on load.</p>
<p>EditArticle has a property called Article which reflects the article one could edit.</p>
<p>However when I'm triggering a link click and passing an article to EditArticle's Article property and make it visible, EditArticle's Page_Load method triggers a null reference exception when it tries to access the Article property. So Page_Load is probably called before the property is set?</p>
<p>So I've added something like this to the property setter:</p>
<pre><code> public NewsArticle Article
{
get { return _article; }
set { _article = value;
BindValues();}
}
protected void BindValues()
{
ArticleTitle.Text = Article.Title;
ArticleSummary.Text = Article.Lead;
TextEditor.Text = Article.Article;
}
</code></pre>
<p>And it works like this, the text boxes are filled with the appropriate data when the EditArticle control is shown.</p>
<p>What would be the correct and appropriate way to do this?</p>
http://stackoverflow.com/questions/202092/where-can-i-find-free-and-open-data21Where can I find free and open data?kitsune2008-10-14T17:32:08Z2009-09-15T17:45:02Z
<p>Sooner or later, coders will feel the need to have access to "open data" in one of their projects, from knowing a city's zip to a more obscure information such as the axial tilt of Pluto.</p>
<p>I know <a href="http://data.un.org/" rel="nofollow">data.un.org</a> which offers access to the UN's extensive array of databases that deal with human development and other socio-economic issues. The other usual suspects are NASA and the USGS for planetary data. There's an article at <a href="http://www.readwriteweb.com/archives/where%5Fto%5Ffind%5Fopen%5Fdata%5Fon%5Fthe.php" rel="nofollow">readwriteweb</a> with more links. <a href="http://infochimps.org" rel="nofollow">infochimps.org</a> seems to stand out.</p>
<p>Personally, I need to find historic commodity prices, stock values and other financial data. All these data sets seem to cost money however.</p>
<h1>Clarification</h1>
<p>To clarify, I'm interested in <em>all</em> kinds of <strong>open</strong> data, because sooner or later, I know I will be in a situation where I could need it. I will try to edit this answer and include the suggestions in a structured manners.</p>
<p>A link for financial data was hidden in that readwriteweb article, doh! It's called <a href="http://www.opentick.com/" rel="nofollow">opentick.com</a>. Looks good so far!</p>
<h1>Update</h1>
<p>I stumbled over semantic data in another question of mine on here. There is <a href="http://www.opencyc.org/" rel="nofollow">opencyc</a> (<em>'the world's largest and most complete general knowledge base and commonsense reasoning engine'</em>). A project called <a href="http://umbel.org/" rel="nofollow">UMBEL</a> provides a light-weight, distilled version of opencyc. Umbel has semantic data in rdf/owl/skos n3 syntax.</p>
<p>The Worldbank also released a very <a href="http://developer.worldbank.org/" rel="nofollow">nice API</a>. It offers data from the last 50 years for about 200 countries </p>
http://stackoverflow.com/questions/1256994/generic-classes-with-shared-static-fields-in-c0Generic classes with shared static fields in C#kitsune2009-08-10T20:22:44Z2009-09-14T23:24:27Z
<p>I have a generic class definition similar to this:</p>
<pre><code>public sealed class MyClass<TProperty,TOwner>
{
...
}
</code></pre>
<p>Now I'd like any instances of <code>MyClass<TProperty,TOwner></code> regardless of the types of TProperty or TOwner to share a Hashtable. I thought of creating an internal MyClassBase with a protected internal static field of type Hashtable and inherit from that. I really only want the definition of MyClass to have access to this hashtable.</p>
<p>Is this a sound approach? I can't seal MyClassBase, so this probably could lead to opening a can of worms later on...</p>
<p>Are there other approaches for this?</p>
http://stackoverflow.com/questions/876811/wpf-virtualizing-a-canvas/1388245#13882451Answer by kitsune for WPF Virtualizing a Canvaskitsune2009-09-07T08:39:01Z2009-09-07T14:39:47Z<p>Check out this example:</p>
<p><a href="http://blogs.msdn.com/jgoldb/archive/2008/03/08/performant-virtualized-wpf-canvas.aspx" rel="nofollow">http://blogs.msdn.com/jgoldb/archive/2008/03/08/performant-virtualized-wpf-canvas.aspx</a></p>
<p>I've asked a similar question on here: <a href="http://stackoverflow.com/questions/126230/resources-and-guides-to-ui-virtualization-in-wpf">http://stackoverflow.com/questions/126230/resources-and-guides-to-ui-virtualization-in-wpf</a></p>
http://stackoverflow.com/questions/1375022/dynamic-keyword-c-compilation-service-how-to-run-code-that-is-not-yet-availab0dynamic keyword, c# compilation service - how to run code that is not yet available at compile time?kitsune2009-09-03T18:10:37Z2009-09-03T18:23:25Z
<p>I'm writing a small visualization tool in wpf, the idea is that average users can create interesting visualizations without being programming wizards.</p>
<p>I have a controller class that has methods like StartPath(double x, double y) and LineTo(x,y) CurveTo(...) etc.</p>
<p>The idea is that a user can type these commands into a textbox and have it draw the result on a canvas.</p>
<pre><code>StartPath(0,0);
LineTo(30,50);
LineTo(50,40);
EndPath();
</code></pre>
<p>One Idea I had was to use a .cs template that has all the methods implemented, and has an additional Run() command with a replacement token inside. I load the template as a string, insert the user commands into the Run() method, use the new .net 4.0 compilation service to create an assembly on the fly, then load it and invoke its Run() method and access the exposed Path to draw it on a canvas.</p>
<p>Another one would be to actually just parse the textbox, error check it and call the appropriate methods.</p>
<p>Are there any other methods, especially with the new dynamic keyword?</p>
http://stackoverflow.com/questions/1372095/nhibernate-mappings/1372189#13721890Answer by kitsune for NHibernate mappingskitsune2009-09-03T08:44:39Z2009-09-03T08:44:39Z<p>You could use <a href="http://www.mattfreeman.co.uk/2009/01/nhibernate-mapping-with-dynamic-component/" rel="nofollow">dynamic components</a>, it will however return an IDictionary</p>
http://stackoverflow.com/questions/1333102/directsound-how-to-get-started/1333196#13331960Answer by kitsune for DirectSound - how to get startedkitsune2009-08-26T08:32:13Z2009-08-26T08:32:13Z<p>DirectSound is part of the DirectX SDK. So this means writing C++ or C# with Wrapper classes, or using XNA for C#, since there is no managed DirectX any more.</p>
<p>Microsoft is currently pushing for XACT, which is a higher level library that allows developers to write for the XBOX360 and Windows. It uses XAudio2 on the XBOX and DirectSound on Windows.</p>
http://stackoverflow.com/questions/1332963/ie6-css-background-image-problem/1332988#13329882Answer by kitsune for ie6 css background image problemkitsune2009-08-26T07:42:43Z2009-08-26T07:48:58Z<p>You probably use a png transparency fix script for IE6, I think the problem lies there because it probably applies a scale method.</p>
<p>Read the comments on <a href="http://allinthehead.com/retro/289/sleight-update-alpha-png-backgrounds-in-ie" rel="nofollow">this page</a>.</p>
<p>The documentation of your png transparency fix will probably cover this. </p>
<p>I personally found using transparent pngs in IE 6.0 to be a major pain in the ass despite all the various fixes out there. I know this is not an original answer, but I would probably just do a conditional check and replace the image with a gif or jpg version if you really need to support IE 6.0 here, instead of relying on hacks to support this. Or just drop IE 6.0 already, this year, I've talked every single client into not supporting IE 6.0 on their new projects. Seriously, it's about damn time that thing stopped making our professional lives so god damn miserable.</p>
http://stackoverflow.com/questions/1315786/i-cant-figure-out-the-bug-in-my-program-for-calculating-permutations/1315836#13158362Answer by kitsune for i can't figure out the bug in my program for calculating permutationskitsune2009-08-22T12:01:34Z2009-08-22T12:20:34Z<p>Some additional material (I'm a bit drunk, I will probably have to re-edit this tomorrow, so take it with a grain of salt):</p>
<p>Knuth and Sedgewick both covered permutations aeons ago.</p>
<p>Have a look at: <a href="http://www.princeton.edu/~rblee/ELE572Papers/p137-sedgewick.pdf" rel="nofollow">http://www.princeton.edu/~rblee/ELE572Papers/p137-sedgewick.pdf</a></p>
<p>For n items you have n! permutations, so for 13 items you already have 6 227 020 800 permutations. So creating all permutations for a large set of items will become impossible pretty fast. </p>
<p>There are basically two sets of algorithms to create permutations, ranking/unranking and incremental change methods.</p>
<p>With ranking/unranking you have two methods rank and unrank.</p>
<p>Rank will give you the position of a permutation in the genereration order.</p>
<p>Unrank will give you the permutation that lies at integer m, with 0 >= m <= <strong>n!</strong> and n the amount of items you want to create permutations for.</p>
<p>This is useful for a variety of cases such as: </p>
<p>Creating a random permutation (you just create a random number from 0 to n! and call unrank(randomNumber)) and get the permutation at position randomNumber.</p>
<p>Creating sequences, getting the next permutation: You have a permutation p and call Rank(p) then Unrank(rank+1).</p>
<p>Incremental change methods:</p>
<p>These basically work through swapping and are more efficient than ranking/unranking:</p>
<p>From wikipedia, unordered generation:</p>
<pre><code> function permutation(k, s) {
for j = 2 to length(s) {
swap s[(k mod j) + 1] with s[j]; // note that our array is indexed starting at 1
k := k / j; // integer division cuts off the remainder
}
return s;
}
</code></pre>
http://stackoverflow.com/questions/202706/is-gtk-responsible-for-the-awkward-look-of-most-linux-applications0Is gtk+ responsible for the awkward look of most linux applications?kitsune2008-10-14T20:40:50Z2009-08-19T07:47:34Z
<p>Now, I know this is completely subjective, so please don't flame me. I've never been entirely satisfied with linux whenever I decided to install a distro like Ubuntu, Fedora etc. because of their awkward positioning and spacing of widgets.</p>
<p>Have a look at <a href="http://art.gnome.org/themes/gtk2/?sort_by=popularity&limit=12&view=list&order=DESC" rel="nofollow">this</a>:</p>
<p><img src="http://art.gnome.org/images/archive/thumbnails/gtk2/GTK2-Glossy_P-Th.png" alt="alt text" /></p>
<p><img src="http://art.gnome.org/images/thumbnails/gtk2/GTK2-DarkGilouche-Th.png" alt="alt text" /></p>
<p>Notice the awkward spacing of the text field's text.</p>
<p>I've seen many Gnome themes that look good on the surface but it all somehow breaks down, awkward spacings, strange borders. Etc. </p>
<p>The entire linux desktop doesn't have the visual integrity of OSX for instance, and I wonder why. If there is any example of a nice integrated Linux environment, please please please show me, I really WANT to use Linux.</p>
<p>(and I know, there's QT, and other managers like KDE etc. I noticed the same thing, so it probably isn't GTK or Gnome alone)</p>
http://stackoverflow.com/questions/1292112/what-is-the-best-approach-to-make-data-access-methods-in-nhibernate/1292273#12922737Answer by kitsune for What is the best approach to make data access methods in NHibernate?kitsune2009-08-18T07:10:55Z2009-08-18T08:42:07Z<p>What you are doing is basically an implementation of the <a href="http://en.wikipedia.org/wiki/Active%5Frecord%5Fpattern" rel="nofollow">Active Record</a> pattern. Many people use it, and it's a perfectly valid approach. If your application is very complex however, or if you have a fetish about separation of concerns, you might find the following helpful:</p>
<p>I recommend a DDD (<a href="http://en.wikipedia.org/wiki/Domain-driven%5Fdesign" rel="nofollow">domain-driven design</a>) approach. DDD uses the so-called <strong>repository pattern</strong>. DDD segregates your application and its concerns into different layers, "Model/Domain", "Infrastructure" and "Service".</p>
<p>The repository is a pattern that belongs inside the infrastructure layer. Business objects like <code>Customer</code> or <code>Employer</code> (or <code>Monster</code> and <code>Weapon</code>) are inside the model layer and represent the core of your 'domain' (which you try to model), they are also responsible for the business logic. The Service layer can be used to simplify, orchestrate activities that span multiple models.</p>
<p>For each domain model (for instance, your classes Foo and Bar) you have a repository which handles the database access. With this, you have your database calls and your models separated. </p>
<pre><code>public interface IFooRepository
{
Foo Get(Guid guid);
}
public class FooRepository : IFooRepository
{
public Foo Get(Guid guid)
{
//... DB voodoo magic happening
return foo;
}
}
</code></pre>
<p>You could also create a generic <code>IRepository<T></code> if you're sick of writing boiler code for your repositories all the time.</p>
<p>You should also look into dependency injection / inversion of control because this approach works really well with it.</p>
<p>The benefit of this approach is, that you can easily implement new classes that derive from IFooRepository. This allows you to quickly adopt to changes in your database infrastructure. For instance, you could create a FooRepository which reads data from an XML file, or one that reads from a Postgres db with NHibernate.</p>
<p>You can also read <a href="http://www.lostechies.com/blogs/jimmy%5Fbogard/archive/2008/05/20/entities-value-objects-aggregates-and-roots.aspx" rel="nofollow">this</a>, <a href="http://www.udidahan.com/2007/04/21/domain-model-pattern/" rel="nofollow">this</a> and <a href="http://geekswithblogs.net/gyoung/archive/2006/05/03/77171.aspx" rel="nofollow">this article</a> about DDD.</p>
http://stackoverflow.com/questions/1289084/missing-namespace-assistance/1289100#12891001Answer by kitsune for Missing Namespace Assistancekitsune2009-08-17T16:46:51Z2009-08-17T16:46:51Z<p>This is part of the Microsoft.SqlServer.ManagedDTS assembly and inside microsoft.sqlserver.manageddts.dll, it can be probably be found at C:\Program Files\Microsoft SQL Server\90\SDK\Assemblies</p>
<p>It should be deployed with your SQL Server installation (you need to install the SDK portion of it).</p>
http://stackoverflow.com/questions/1289062/what-is-the-best-strategy-for-handling-large-file-upoads-with-ruby-on-rails/1289082#12890820Answer by kitsune for What is the best strategy for handling large file upoads with Ruby on Rails?kitsune2009-08-17T16:43:36Z2009-08-17T16:43:36Z<p><a href="http://www.jedi.be/blog/2009/04/10/rails-and-large-large-file-uploads-looking-at-the-alternatives/" rel="nofollow">This</a> article seems to cover your problem.</p>
<p>It really depends on your webserver...</p>
http://stackoverflow.com/questions/1287917/c-wrong-conversion-using-convert-changetype/1287938#12879384Answer by kitsune for C# Wrong conversion using Convert.ChangeType()kitsune2009-08-17T13:22:59Z2009-08-17T13:22:59Z<p>This probably is because of <a href="http://en.wikipedia.org/wiki/Floating%5Fpoint" rel="nofollow">floating point arithmetic</a>. You probably should use decimal instead of double.</p>
http://stackoverflow.com/questions/1286831/programatically-create-a-web-site-in-iis-using-c-and-set-port-number/1286888#12868883Answer by kitsune for Programatically create a web site in IIS using C# and set port numberkitsune2009-08-17T08:59:53Z2009-08-17T09:47:30Z<p>If you're using IIS 7, there is a new managed API called <a href="http://blogs.msdn.com/carlosag/archive/2006/04/17/MicrosoftWebAdministration.aspx" rel="nofollow">Microsoft.Web.Administration</a></p>
<p>An example from the above blog post:</p>
<pre><code>ServerManager iisManager = new ServerManager();
iisManager.Sites.Add("NewSite", "http", "*:8080:", "d:\\MySite");
iisManager.Update();
</code></pre>
<p>If you're using IIS 6 and want to do this, it's more complex unfortunately. </p>
<p>You will have to create a web service on every server, a web service that handles the creation of a website because direct user impersonation over the network won't work properly (If I recall this correctly).</p>
<p>You will have to use Interop Services and do something similar to this (This example uses two objects, server and site, which are instances of custom classes that store a server's and site's configuration):</p>
<pre><code>string metabasePath = "IIS://" + server.ComputerName + "/W3SVC";
DirectoryEntry w3svc = new DirectoryEntry(metabasePath, server.Username, server.Password);
string serverBindings = ":80:" + site.HostName;
string homeDirectory = server.WWWRootPath + "\\" + site.FolderName;
object[] newSite = new object[] { site.Name, new object[] { serverBindings }, homeDirectory };
object websiteId = (object)w3svc.Invoke("CreateNewSite", newSite);
// Returns the Website ID from the Metabase
int id = (int)websiteId;
</code></pre>
<p>See more <a href="http://msdn.microsoft.com/en-us/library/ms524569.aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1277238/distributed-monitoring-service-using-c-net-3-5/1287029#12870291Answer by kitsune for Distributed Monitoring Service using C# .NET 3.5kitsune2009-08-17T09:35:00Z2009-08-17T09:35:00Z<p>There are tools like <a href="http://www.ipsentry.com/" rel="nofollow">IPSentry</a> with which you can make HTTP requests and check the returning data...</p>
http://stackoverflow.com/questions/1286359/why-does-cache-add-return-an-object-that-represents-the-cached-item/1286381#12863810Answer by kitsune for Why does Cache.Add return an object that represents the cached item?kitsune2009-08-17T06:11:44Z2009-08-17T07:01:05Z<p>It only returns an object if the same object was already stored in the cache (<strike>under another key I guess</strike> under the same key). Otherwise it returns null. The documentation is misleading: </p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.web.caching.cache.add.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.caching.cache.add.aspx</a></p>
<p>Looking at it in Reflector, both methods seem to call the same internal method, with ADD returning the old object previously stored under the same key, and the INSERT method simply ignoring that value.</p>
http://stackoverflow.com/questions/1276447/performance-penalty-of-typecasting-and-boxing-unboxing-types-in-c-when-storing-g0Performance penalty of typecasting and boxing/unboxing types in C# when storing generic valueskitsune2009-08-14T07:10:49Z2009-08-14T07:10:49Z
<p>I have a set-up similar to WPF's DependencyProperty and DependencyObject system. My properties however are generic. A BucketProperty has a static GlobalIndex (defined in BucketPropertyBase) which tracks all BucketProperties. A Bucket can have many BucketProperties of any type. A Bucket saves and gets the actual values of these BucketProperties... now my question is, how to deal with the storage of these values, and what is the penalty of using a typecasting when retrieving them? I currently use an array of BucketEntries that save the property values as simple objects. Is there any better way of saving and returning these values?</p>
<p>Beneath is a simpliefied version:</p>
<pre><code>public class BucketProperty<T> : BucketPropertyBase
{
}
public class Bucket
{
private BucketEntry[] _bucketEntries;
public void SaveValue<T>(BucketProperty<T> property, T value)
{
SaveBucketEntry(property.GlobalIndex, value)
}
public T GetValue<T>(BucketProperty<T> property)
{
return (T)FindBucketEntry(property.GlobalIndex).Value;
}
}
public class BucketEntry
{
private object _value;
private uint _index;
public BucketEntry(uint globalIndex, object value)
{
...
}
}
</code></pre>
http://stackoverflow.com/questions/317944/tools-to-search-for-strings-inside-files-without-indexing2Tools to search for strings inside files without indexingkitsune2008-11-25T16:21:59Z2009-08-12T19:47:31Z
<p>I have to change some connection strings in an incredibly old legacy application, and the programmers who made it thought it would be a great idea to plaster the entire app with connection strings all over the place.</p>
<p>VS "current project" search is INCREDIBLY slow, and I don't trust Windows Search.</p>
<p>So what's the best free, non-indexed text search tool out there? All it should do is return a list with files that contain the wanted string inside a folder and its subfolders. </p>
<p>Oh, yeah, this is on Windows 2003 Server.</p>
http://stackoverflow.com/questions/794647/why-is-the-user-information-stored-in-two-different-tables-in-asp-nets-default-m2Why is the User information stored in two different tables in ASP.NET's default Membership Provider?kitsune2009-04-27T18:20:43Z2009-07-30T12:30:56Z
<p>There are two tables: aspnet_users and aspnet_membership. Can anyone elaborate on the reasons why they don't use a single table for this?</p>
http://stackoverflow.com/questions/919685/how-would-you-use-a-dvcs-mercurial-in-my-case-to-develop-for-different-versions4How would you use a DVCS (mercurial in my case) to develop for different versions of the .NET framework?kitsune2009-05-28T07:52:19Z2009-07-25T10:13:03Z
<p>I'm writing some sort of new adminstration dashboard for our cms (which runs on asp.net webforms). Some of our older servers can only handle .NET 2.0 for various reasons so I'd have to rewrite my code which uses lambda expressions etc. for that.</p>
<p>I wonder how you would use a dvcs like mercurial to develop those two versions concurrently.</p>
<p>My current codebase and mercurial repository is targeted at .NET 3.5. I'm relatively new to mercurial and I guess I'd have to branch the codebase?</p>
<p>Any best practices or tutorials?</p>
http://stackoverflow.com/questions/792919/how-do-you-guard-for-null-reference-exceptions-in-linq-to-xml1How do you guard for Null Reference exceptions in Linq To Xml?kitsune2009-04-27T10:04:28Z2009-07-23T03:34:12Z
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<pages>
<page id="56">
<img id="teaser" src="img/teaser_company.png"></img>
</page>
</pages>
</code></pre>
<p>I have an xml file that defines additional resources for pages within a cms. What's the best way to guard for Null Reference exceptions when querying this file with LinqToXml?</p>
<pre><code>var page = (from tabElement in extensionsDoc.Descendants("page")
where tabElement.Attribute("id").Value == tabId.ToString()
select tabElement).SingleOrDefault();
</code></pre>
<p>This code could potentially trigger a Null Reference exception if a page element doesn't have an attribute called "id". Do I have to use a try catch block or is there a way to handle this? For instance return null for page the page object if there's no attribute called "id" for the page element.</p>
http://stackoverflow.com/questions/782930/can-you-recommend-me-a-book-about-authorization-architecture-and-associated-parad2Can you recommend me a book about authorization architecture and associated paradigms?kitsune2009-04-23T18:22:10Z2009-07-22T15:26:26Z
<p>I come from an ASP.NET background and find the entire roles based authorization scheme limiting to say the least. I've read about Microsoft's new Identity Model and the Geneva Framework with its Claims based architecture but it seems overly complex.</p>
<p>In general, I'd like to know more about possible authorization architectures to find out what fits my needs best.</p>
<p>For instance, application wide roles seem to be good enough if you want to create, well, application wide roles, like "Administrator". But what if I have ie. an project management application with project entities where every project has its own set of roles ("Editor" on project A and "Photographer" on project B for instance) and associated permissions.</p>
<p>Are there any books on this subject that you could recommend?</p>
http://stackoverflow.com/questions/1108361/accessing-the-currently-selected-elements-content-in-a-htmlval-statement-in-jq1Accessing the currently selected element's content in a html(val) statement in jQuery?kitsune2009-07-10T08:21:36Z2009-07-10T10:02:38Z
<p>I have a several <strong>links</strong> whose text content I'd like to replace with a automatically generated image based on the text content.</p>
<p>So currently it looks like this:</p>
<pre><code><a href="blabla" class="mLink">
<span class="mText">The Text in Question</span>
</a>
</code></pre>
<p>and I would like to have either</p>
<pre><code><a href="blabla" class="mLink">
<img src="/ImageTextHandler.ashx?message=The+Text+in+Question" alt="The Text in Question"/>
</a>
</code></pre>
<p>or </p>
<pre><code><a href="blabla" class="mLink">
<span class="mText">
<img src="/ImageTextHandler.ashx?message=The+Text+in+Question" alt="The Text in Question"/>
</span>
</a>
</code></pre>
<p>How do I access the element in question inside a .replaceWith or .html so that I can get the text content?</p>
http://stackoverflow.com/questions/1003049/how-does-net-4-0s-design-by-contract-compare-to-eiffel6How does .NET 4.0's design by contract compare to Eiffel?kitsune2009-06-16T18:06:06Z2009-06-22T07:20:06Z
<p>I had the "pleasure" to be taught Eiffel at college by none other than Bertrand Meyer himself and just read that .NET 4.0 will include design by contract.</p>
<p>Can anyone with some insight elaborate on how powerful this will be compared to Eiffel's existing feature set?</p>
<p>Will contracts for interfaces be supported?</p>
http://stackoverflow.com/questions/1021645/is-there-something-like-javas-character-digitchar-ch-int-radix-in-c0Is there something like java's Character.digit(char ch, int radix) in c#?kitsune2009-06-20T13:36:55Z2009-06-20T13:58:02Z
<pre><code>Character.digit(char ch, int radix)
</code></pre>
<p>Returns the numeric value of the character ch in the specified radix.</p>
<p>Is there an equivalent function in c#?</p>
http://stackoverflow.com/questions/1491113/wpf-performance-displaying-thousands-of-paths-shapes-on-a-canvas/1491148#1491148Comment by kitsune on WPF Performance: Displaying thousands of Paths / Shapes on a Canvaskitsune2009-09-29T08:09:53Z2009-09-29T08:09:53ZThanks for pointing me to StreamGeometry, I didn't know this class yethttp://stackoverflow.com/questions/1491113/wpf-performance-displaying-thousands-of-paths-shapes-on-a-canvas/1491148#1491148Comment by kitsune on WPF Performance: Displaying thousands of Paths / Shapes on a Canvaskitsune2009-09-29T08:09:00Z2009-09-29T08:09:00ZI'm currently using this approach: a VirtualPath class that stores the Path data and returns a WPF System.Windows.Shapes.Path as soon as its boundaries are visible.http://stackoverflow.com/questions/1375022/dynamic-keyword-c-compilation-service-how-to-run-code-that-is-not-yet-availab/1375088#1375088Comment by kitsune on dynamic keyword, c# compilation service - how to run code that is not yet available at compile time?kitsune2009-09-07T08:39:58Z2009-09-07T08:39:58ZWorks nicely: <a href="http://dl.getdropbox.com/u/133877/test.jpg" rel="nofollow">dl.getdropbox.com/u/133877/test.jpg</a>
Thanks again :)http://stackoverflow.com/questions/1375022/dynamic-keyword-c-compilation-service-how-to-run-code-that-is-not-yet-availab/1375088#1375088Comment by kitsune on dynamic keyword, c# compilation service - how to run code that is not yet available at compile time?kitsune2009-09-03T18:26:45Z2009-09-03T18:26:45ZI will have a look at it, thanks a lot.
Thanks for clearing that up, I'm not up to date with the latest c# spec.http://stackoverflow.com/questions/1332963/ie6-css-background-image-problem/1332988#1332988Comment by kitsune on ie6 css background image problemkitsune2009-08-26T08:19:05Z2009-08-26T08:19:05ZListen to strager, the plugin you use will be using AlphaImageLoader to render it... It's obvious that this works well across other browsers because they don't need the pngFix in the first placehttp://stackoverflow.com/questions/1327046/net-common-workaroundsComment by kitsune on .NET Common Workaroundskitsune2009-08-25T09:27:19Z2009-08-25T09:27:19ZI agree with Marc Gravellhttp://stackoverflow.com/questions/1327086/importing-an-xml-documentComment by kitsune on importing an XML documentkitsune2009-08-25T09:25:27Z2009-08-25T09:25:27ZI also retagged your question, tags like [actionscript] or [flash] are important for others to find your question. [xml] is pretty generic, so is [load]http://stackoverflow.com/questions/1327086/importing-an-xml-documentComment by kitsune on importing an XML documentkitsune2009-08-25T09:24:09Z2009-08-25T09:24:09ZWhat navigation bar are you using? Is it an openly availble flash navigation? How does your xml look like? You should look into the actionscript reference, or tutorials like this: <a href="http://www.republicofcode.com/tutorials/flash/xml/" rel="nofollow">republicofcode.com/tutorials/flash/…</a>http://stackoverflow.com/questions/1319239/is-it-possible-to-replace-traditional-event-handling-in-c-with-the-new-reactive/1319252#1319252Comment by kitsune on Is it possible to replace traditional event handling in C# with the new Reactive framework?kitsune2009-08-23T19:40:24Z2009-08-23T19:40:24ZI know that, but this was a specific question regarding System.Reactive.dll and its IObservable<T>, IObserver<T> interfaceshttp://stackoverflow.com/questions/1310210/sharepoint-projectsComment by kitsune on SharePoint Projectskitsune2009-08-21T05:29:55Z2009-08-21T05:29:55ZI agree... the "real world" is vast. Btw, programming sharepoint solutions will make you hate yourself.http://stackoverflow.com/questions/1292112/what-is-the-best-approach-to-make-data-access-methods-in-nhibernate/1292273#1292273Comment by kitsune on What is the best approach to make data access methods in NHibernate?kitsune2009-08-18T08:46:55Z2009-08-18T08:46:55ZThis is especially true once you try to model relationships. (For instance, an Employee object has a reference to a Manager.. what happens if you save an Employer, do you have to save its Manager too? Who is responsible for saving it?) The first article of the last paragraph, written by Jimmy Bogard, deals with that.http://stackoverflow.com/questions/1292112/what-is-the-best-approach-to-make-data-access-methods-in-nhibernate/1292273#1292273Comment by kitsune on What is the best approach to make data access methods in NHibernate?kitsune2009-08-18T08:41:18Z2009-08-18T08:41:18ZAs a warning tho, ddd can be pretty complex at first, with its terminology of "value objects" and "aggregate roots" etc. Don't despair.http://stackoverflow.com/questions/1286831/programatically-create-a-web-site-in-iis-using-c-and-set-port-number/1286888#1286888Comment by kitsune on Programatically create a web site in IIS using C# and set port numberkitsune2009-08-17T13:17:23Z2009-08-17T13:17:23ZGreat... btw watch out for App Pools... there might be need for some additional configuration...http://stackoverflow.com/questions/1286831/programatically-create-a-web-site-in-iis-using-c-and-set-port-number/1286888#1286888Comment by kitsune on Programatically create a web site in IIS using C# and set port numberkitsune2009-08-17T09:33:16Z2009-08-17T09:33:16ZI did this in a legacy maintenance project once, I'll see whether I can find the code. It's pretty arcane and convoluted unfortunately.http://stackoverflow.com/questions/1286831/programatically-create-a-web-site-in-iis-using-c-and-set-port-numberComment by kitsune on Programatically create a web site in IIS using C# and set port numberkitsune2009-08-17T08:57:18Z2009-08-17T08:57:18ZWhat IIS version are you using?