User Rik - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:23:28Z http://stackoverflow.com/feeds/user/5409 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1696896/how-to-check-whether-the-number-ends-with-9-or-not-in-numbers-1to-100/1696921#1696921 -2 Answer by Rik for how to check whether the number ends with 9 or not in numbers 1to 100 Rik 2009-11-08T15:45:47Z 2009-11-08T16:12:13Z <pre><code>int i = 0; while (i &lt; 100) { i+=1; while(i % 10 != 0) { Console.Write(i); i+=1; } Console.Write(Environment.NewLine); } </code></pre> http://stackoverflow.com/questions/1696857/what-is-meant-by-cloud-computing-give-some-examples/1696923#1696923 2 Answer by Rik for what is meant by cloud computing? give some examples Rik 2009-11-08T15:47:50Z 2009-11-08T15:47:50Z <p>See <a href="http://stackoverflow.com/questions/697076/what-are-the-best-overviews-for-cloud-technology">http://stackoverflow.com/questions/697076/what-are-the-best-overviews-for-cloud-technology</a>.</p> http://stackoverflow.com/questions/1693526/dynamic-linq-queries/1693562#1693562 3 Answer by Rik for Dynamic LINQ Queries. Rik 2009-11-07T16:24:05Z 2009-11-07T16:24:05Z <p>You can use <a href="http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx" rel="nofollow">Dynamic Linq</a>.</p> http://stackoverflow.com/questions/1682020/xml-to-linq-question-s/1682108#1682108 1 Answer by Rik for XML to LINQ Question/s Rik 2009-11-05T17:10:10Z 2009-11-05T17:10:10Z <p>From what you describe it does seem like a good idea to use XML here.</p> <p>As for accessing the XML dta in memory, I found the MSDN documentation quite helpful:<br> <a href="http://msdn.microsoft.com/en-us/library/bb387098.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb387098.aspx</a></p> <p>The basic idea is, LINQ-to-XML is just LINQ-to-Objects, working with objects that represent the XML elements. </p> <p>I'm afraid I don't quite get your second question.</p> http://stackoverflow.com/questions/173726/when-and-why-are-database-joins-expensive 49 When and why are database joins expensive? Rik 2008-10-06T09:52:19Z 2009-11-03T11:11:08Z <p>I'm doing some research into databases and I'm looking at some limitations of relational DBs. </p> <p>I'm getting that joins of large tables is very expensive, but I'm not completely sure why. What does the DBMS need to do to execute a join operation, where is the bottleneck?<br /> How can denormalization help to overcome this expense? How do other optimization techniques (indexing, for example) help?</p> <p>Personal experiences are welcome! If you're going to post links to resources, please avoid Wikipedia. I know where to find that already.</p> <p>Thanks!</p> <p>PS. In relation to this, I'm wondering about the denormalized approaches used by cloud service databases like BigTable and SimpleDB. See <a href="http://stackoverflow.com/questions/176131/pros-of-databases-like-bigtable-simpledb">this question</a>.</p> http://stackoverflow.com/questions/218623/why-use-monospace-fonts-in-your-ide 6 Why use monospace fonts in your IDE? Rik 2008-10-20T14:24:03Z 2009-10-30T18:12:59Z <p>I've seen a couple of font topics on SO and it seems a majority of people use monospace fonts for programming tasks. I have been using Verdana for programming for a couple of years and I really like the enhanced readability, without really missing anything monospace related.</p> <p>Any monospacers care to elaborate why they like it?</p> http://stackoverflow.com/questions/1646161/another-math-question/1646183#1646183 0 Answer by Rik for Another math question Rik 2009-10-29T19:56:30Z 2009-10-29T19:56:30Z <p>No. You need more information.</p> http://stackoverflow.com/questions/1644317/java-constructor-inheritance/1644409#1644409 1 Answer by Rik for Java Constructor Inheritance Rik 2009-10-29T15:09:26Z 2009-10-29T15:09:26Z <p>Constructors are not polymorphic.<br /> When dealing with already constructed classes, you could be dealing with the declared type of the object, or any of its subclasses. That's what inheritance is useful for.<br /> Constructor are always called on the specific type,eg <code>new String()</code>. Hypothetical subclasses have no role in this.</p> http://stackoverflow.com/questions/1618174/installing-azure-sdk-on-visual-studio-2010-beta-2/1618310#1618310 1 Answer by Rik for Installing Azure SDK on Visual Studio 2010 Beta 2 Rik 2009-10-24T15:40:09Z 2009-10-24T15:40:09Z <p>AFAIK Windows Azure Tools only supports VS 2010 Beta 1. I expect a new version with support for Beta 2 pretty soon though (at least when the PDC comes around.) </p> http://stackoverflow.com/questions/1610434/c-generics-strange-interview-question/1610468#1610468 0 Answer by Rik for C# Generics - Strange Interview Question Rik 2009-10-22T22:54:10Z 2009-10-22T22:54:10Z <p>As far as I'm concerned, this is a generic method, by virtue of the fact that it has a type parameter. That not all parameters are of the generic type doesn't matter.</p> http://stackoverflow.com/questions/1606664/getting-different-result-in-math-round/1606706#1606706 0 Answer by Rik for Getting different result in Math.Round Rik 2009-10-22T11:54:14Z 2009-10-22T11:54:14Z <p>This is due to the finite precision of floating point numbers. </p> http://stackoverflow.com/questions/1606557/can-i-have-an-ordered-dictionary-by-date/1606577#1606577 2 Answer by Rik for can i have an ordered dictionary by date Rik 2009-10-22T11:27:27Z 2009-10-22T11:27:27Z <p>You can use SortedList: <a href="http://msdn.microsoft.com/en-us/library/ms132319.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms132319.aspx</a><br /> or SortedDictionary: <a href="http://msdn.microsoft.com/en-us/library/f7fta44c.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/f7fta44c.aspx</a></p> http://stackoverflow.com/questions/1603715/using-property-to-get-array-element-in-c/1603757#1603757 1 Answer by Rik for Using Property to get array element in C# Rik 2009-10-21T21:22:22Z 2009-10-21T21:22:22Z <p>Properties don't take parameters, so that won't be possible.</p> <p>You can build a method, for instance</p> <pre><code>public string GetStringFromIndex(int i) { return myStringArray[i]; } </code></pre> <p>Of course you'll probably want to do some checking in the method, but you get the idea.</p> http://stackoverflow.com/questions/1597225/designing-a-custom-random-class/1597287#1597287 3 Answer by Rik for Designing a custom random class Rik 2009-10-20T21:01:22Z 2009-10-20T21:01:22Z <p>Selecting a random element from a collection can be done as follows.</p> <pre><code>Random r = new Random(); int randomIndex = r.Next(0, myCollection.Size -1); var randomCollectionItem = myCollection[randomIndex]; </code></pre> <p>Unless you have a VERY good reason, writing your own random generator is not necessary.</p> http://stackoverflow.com/questions/811554/problematic-data-patterns-performance-wise 0 Problematic data patterns, performance-wise Rik 2009-05-01T14:20:13Z 2009-10-20T18:00:02Z <p>Assertion: the performance of SQL databases degrades when the volume of data becomes very large (say, tens or hunderds of terabytes). This means certain patterns in database design which are reasonable for most small-to-medium sized databases break down when the database grows. For (a rather general) example, there is a trend that moves away from designing data models which are fully (or say, BCNF) normalized because the joins necessary would impact performance too heavily. See also <a href="http://stackoverflow.com/questions/173726/when-and-why-are-database-joins-expensive">this question</a></p> <p>My question is this: <strong>Do you know of any database patterns which, although reasonable in a typical database, break down (performance-wise) for huuuge databases</strong>, particularly SELECT-queries? Are there alternative strategies that accomplish the same (data-wise) without these performance issues? </p> http://stackoverflow.com/questions/1533190/is-there-a-production-grade-simpledb-net-library/1533262#1533262 0 Answer by Rik for Is there a production grade SimpleDB .NET library? Rik 2009-10-07T18:04:22Z 2009-10-07T18:04:22Z <p><a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1133" rel="nofollow">Here you will find a C# SimpleDB library</a></p> <p>There's also an open source SimpleDB provider, which you can find <a href="http://www.codeplex.com/LinqToSimpleDB" rel="nofollow">here</a>, which might come in handy.</p> http://stackoverflow.com/questions/1525990/difference-in-months/1526033#1526033 0 Answer by Rik for Difference in months Rik 2009-10-06T14:44:20Z 2009-10-06T14:44:20Z <p>If you want the exact number, you can't from just the Timespan, since you need to know which months you're dealing, and whether you're dealing with a leap year, like you said.</p> <p>Either go for an approximate number, or do some fidgetting with the original DateTimes</p> http://stackoverflow.com/questions/1459862/c-xml-query-question/1459893#1459893 1 Answer by Rik for C#, XML Query Question Rik 2009-09-22T12:49:51Z 2009-09-22T12:49:51Z <p>If it is at all possible to move to C# 3.0 / .NET 3.5, LINQ-to-XML would be by far the easiest option.</p> <p>With .NET 2.0, you're stuck with either XML objects or XSL.</p> http://stackoverflow.com/questions/1459475/system-net-webexception-the-underlying-connection-was-closed-the-connection-was/1459547#1459547 0 Answer by Rik for System.Net.WebException: The underlying connection was closed: The connection was closed unexpectedly. Rik 2009-09-22T11:38:34Z 2009-09-22T11:38:34Z <p>I encountered the same exception a while ago and I remember that this happens <em>in some cases</em> due to a bug in .NET. You can work around this by setting the Timeout and ReadWriteTimeout of the request to higher values, or set KeepAlive to false.</p> <p>This would only be a workaround, though, so I suggest you try to find the actual root cause before assuming anything.</p> <p>I'll try to come up with some web references, in the mean time, look at <a href="http://stackoverflow.com/questions/1060966/big-files-uploading-webexception-the-connection-was-closed-unexpectedly">http://stackoverflow.com/questions/1060966/big-files-uploading-webexception-the-connection-was-closed-unexpectedly</a></p> http://stackoverflow.com/questions/1429711/use-cases-for-flexible-properties 0 Use cases for flexible properties Rik 2009-09-15T21:27:24Z 2009-09-15T21:33:27Z <p>I've been reading about using flexible properties instead of strongly typed fixed properties by using Dictionary or something similar to store them in. An obvious advantage for using flexible properties is that you can change what properties an object has at runtime.</p> <p>What are some interesting use cases for this kind of behavior?</p> <p>Some related literature:</p> <ul> <li>Martin Fowler <a href="http://martinfowler.com/apsupp/properties.pdf" rel="nofollow">http://martinfowler.com/apsupp/properties.pdf</a></li> <li>Steve Yegge <a href="http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html" rel="nofollow">http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html</a></li> </ul> http://stackoverflow.com/questions/1427760/is-it-acceptable-to-design-a-method-with-a-parameter-of-type-system-enum/1427808#1427808 4 Answer by Rik for Is it acceptable to design a method with a parameter of type System.Enum? Rik 2009-09-15T15:14:03Z 2009-09-15T17:13:27Z <p>It's absolutely valid to use an enum value as a parameter.</p> <blockquote> <p>Is using enum in this way an acceptable alternative to using string constants(...)?</p> </blockquote> <p>Yes, in fact this is one of the main uses of enums. </p> <p>Using a general Enum value is a little less obvious, since you generally want to know what values you can expect. A common use of enum values is to use it in a switch statement, and it helps to know what values can be expected. The name of an enum value is not generally that important, it's what it represents.</p> http://stackoverflow.com/questions/1315827/windows-azure-an-item-with-the-same-key-has-already-been-added-exception-thro/1315846#1315846 0 Answer by Rik for Windows Azure: "An item with the same key has already been added." exception thrown on Select Rik 2009-08-22T12:06:19Z 2009-08-22T12:44:03Z <p>You probably added an object with the same row key (and no partition key) to your DataServiceContext before performing this query. Then you're retrieving the conflicting object from the data store, and it can't be added to the context because of the collision.</p> <p>The context tracks all object retrieved from the Tables. Since entities are uniquely identified by their partitionKey/rowKey combination, a context, like the tables, cannot contain duplicate partitionkey/rowkey combinations. </p> <p>Possible causes of such a collison are:</p> <ul> <li>Retrieving an entity, modifying it, and then retrieving it again using the same context.</li> <li>Adding an entity to the context, and then retrieving one with the same keys. </li> </ul> <p>In both cases, the context the encounters it's already tracking a different object which does however have the same keys. This is not something the context can sort out by itself, hence the exception.</p> <p>Hope this helps. If you could give a little more information, that would be helpful.</p> http://stackoverflow.com/questions/1293702/xml-namespaces-are-confounding-me/1293734#1293734 1 Answer by Rik for XML Namespaces are confounding me Rik 2009-08-18T13:11:43Z 2009-08-18T13:11:43Z <p>You need to specify the element by their full name, including the namespace. The easy way to do this is to define the appropriate XNamespace and prepend it to the element name.</p> <pre><code>XDocument myDoc; XNamespace ns = "http://www.lotus.com/dxl"; XElement myElem = myDoc.Element(ns + "ElementName"); </code></pre> <p>See <a href="http://msdn.microsoft.com/en-us/library/bb387069.aspx" rel="nofollow">MSDN</a> for more information.</p> http://stackoverflow.com/questions/1292815/entity-savechanges-for-both-insert-and-update/1292924#1292924 2 Answer by Rik for Entity SaveChanges() for both insert and update? Rik 2009-08-18T09:53:57Z 2009-08-18T11:10:24Z <p>Yes, it should.</p> http://stackoverflow.com/questions/1288041/what-am-i-missing-out-on-by-only-running-net-2-0-vs-3-5/1288062#1288062 1 Answer by Rik for What am I missing out on by only running .Net 2.0 vs 3.5? Rik 2009-08-17T13:50:47Z 2009-08-17T13:50:47Z <ul> <li>Anything having to do with LINQ</li> <li>lambda expressions.</li> <li>Extension methods</li> </ul> http://stackoverflow.com/questions/1286498/using-a-natural-key-or-using-surrogate-keys-and-audit-tables-for-auditing-chan/1286974#1286974 2 Answer by Rik for Using a natural key, or using surrogate keys and audit table(s) for auditing/change log. Rik 2009-08-17T09:23:13Z 2009-08-17T09:23:13Z <p>I think you're being misled by a subtlety concerning the normal forms here. The thing is, the phone number associated with the callee is <strong>not the same piece of information</strong> as the number dialed by the caller. They might have the same value in the general case, but this is another issue. </p> <p>So in my opinion, CallHistory should have both the numbre dialed and a reference to the callee table.</p> http://stackoverflow.com/questions/1281853/do-i-have-to-design-my-app-architecture-keeping-azure-in-mind/1281863#1281863 2 Answer by Rik for Do I have to design my app architecture keeping Azure in mind? Rik 2009-08-15T13:07:19Z 2009-08-15T13:07:19Z <p>I'd say no.</p> <p>Design for your current platform, and modify for Azure only when you're actually going to use it. There's a good chance You Aren't Gonna Need It, so don't waste your time.</p> <p>Decent design of your application should result in a fair amount of abstraction from the underlying architecture anyway, so if or when you switch platforms changes should be localized by default. </p> http://stackoverflow.com/questions/1197319/is-a-switch-statement-applicable-in-a-factory-method-c/1197387#1197387 0 Answer by Rik for Is a switch statement applicable in a factory method? c# Rik 2009-07-28T23:56:00Z 2009-07-28T23:56:00Z <p>I don't think there anything wrong with this. Yes, switch statements are a code smell, but in my book, they're OK in this sort of situation. There's actually little else you could do to achieve things like this.</p> http://stackoverflow.com/questions/1194080/altering-tables-with-windows-azure/1194139#1194139 1 Answer by Rik for Altering tables with Windows Azure Rik 2009-07-28T13:33:28Z 2009-07-28T14:01:45Z <p>Just update the CLR classes you use to represent your entities with the new fields. The table service itself is schemaless, so the only thing it cares about is the <em>name</em> of the table, which is the name of your CLR type. </p> <p>You don't need to call CreateTablesFromModel again, since the table already exists. If you add new tables, however, you do. Your old tables will not be affected by this; tables that already exist are left alone.</p> <p>Retrieving entities that are already in your tables will result in a null value for the new columns.</p> http://stackoverflow.com/questions/1194056/querying-table-storage-data-with-windows-azure/1194111#1194111 1 Answer by Rik for Querying table storage data with Windows Azure Rik 2009-07-28T13:29:28Z 2009-07-28T13:29:28Z <p>I'm not sure about your first question, but for the second part: It's the same as when you're developing using the local table service, when you're using the ADO.NET Data Services client, at least. Just use the service root of your Azure storage account. Or you can use the REST interface, if you need the flexibility of the (schema-less) Azure Tables. </p> <p>I'm not aware of a tool similar to GAE's data viewer, but it's not very difficult to build something like that yourself.</p> http://stackoverflow.com/questions/1696896/how-to-check-whether-the-number-ends-with-9-or-not-in-numbers-1to-100/1696921#1696921 Comment by Rik on how to check whether the number ends with 9 or not in numbers 1to 100 Rik 2009-11-08T16:13:16Z 2009-11-08T16:13:16Z Damnit, forgot the increment. http://stackoverflow.com/questions/1694176/how-to-differentiate-between-circle-rectangle-and-triangle/1694182#1694182 Comment by Rik on how to differentiate between circle rectangle and triangle ? Rik 2009-11-07T19:47:37Z 2009-11-07T19:47:37Z +1, very relevant and to the point http://stackoverflow.com/questions/1673639/checking-for-null-in-an-object-hierarchy Comment by Rik on Checking for null in an object hierarchy Rik 2009-11-04T13:12:24Z 2009-11-04T13:12:24Z Could you provide some sample code on what you're trying to do, exactly? http://stackoverflow.com/questions/56895/proving-sql-query-equivalency/98609#98609 Comment by Rik on Proving SQL query equivalency Rik 2009-10-20T18:25:25Z 2009-10-20T18:25:25Z This only proves equivalency for that particular set, not for the query in general. http://stackoverflow.com/questions/1563280/programmer-not-a-blogger/1563296#1563296 Comment by Rik on Programmer, not a blogger Rik 2009-10-14T12:33:42Z 2009-10-14T12:33:42Z I don't agree with #2. If the text is not something I enjoy reading (due to it being interesting and engaging, for example) I'm not going to read it, and it won't add anything of value. Even if you've built some amazingly briljant piece of code, if there is text accompanying it, it should add some value, otherwise, I'll just take the code and learn from that. http://stackoverflow.com/questions/1504895/simple-sql-select-in-c Comment by Rik on Simple SQL select in C#? Rik 2009-10-01T16:14:35Z 2009-10-01T16:14:35Z +1: I must admire the alliteration in the question title http://stackoverflow.com/questions/1498245/c-linq-to-sql-why-can-i-not-use-an-expression-to-filter-subentities/1498442#1498442 Comment by Rik on C#, Linq to Sql: Why can I not use an expression to filter SubEntities? Rik 2009-09-30T14:55:03Z 2009-09-30T14:55:03Z You can get the lambda expression from Expression, and pass that to Where(). http://stackoverflow.com/questions/1465699/what-programmers-say-all-times Comment by Rik on What Programmers say all times... Rik 2009-09-23T12:38:49Z 2009-09-23T12:38:49Z @ #4: Or, its SO equivalent, 6 to 8 weeks http://stackoverflow.com/questions/1460634/are-c-arrays-thread-safe/1460660#1460660 Comment by Rik on Are C# arrays thread safe? Rik 2009-09-22T15:25:58Z 2009-09-22T15:25:58Z @Steven &quot;whether it's safe is going to depend precisely on what the coder is doing.&quot; - Isn't that the same as saying &quot;No, it's not safe.&quot; ? http://stackoverflow.com/questions/695678/performing-part-of-a-iqueryable-query-and-deferring-the-rest-to-linq-for-objects/800176#800176 Comment by Rik on Performing part of a IQueryable query and deferring the rest to Linq for Objects Rik 2009-09-22T14:45:29Z 2009-09-22T14:45:29Z I thank you from my knees - deep in expression tree visitors. :) This is exactly what I needed http://stackoverflow.com/questions/1459475/system-net-webexception-the-underlying-connection-was-closed-the-connection-was Comment by Rik on System.Net.WebException: The underlying connection was closed: The connection was closed unexpectedly. Rik 2009-09-22T11:31:41Z 2009-09-22T11:31:41Z This exception is particularly hard to track down. Please give as much information as you can if you want any reasonable answers http://stackoverflow.com/questions/1315827/windows-azure-an-item-with-the-same-key-has-already-been-added-exception-thro Comment by Rik on Windows Azure: "An item with the same key has already been added." exception thrown on Select Rik 2009-08-22T14:50:25Z 2009-08-22T14:50:25Z Is it a problem with the HashSet o with the DataServiceContext? http://stackoverflow.com/questions/1315827/windows-azure-an-item-with-the-same-key-has-already-been-added-exception-thro/1315846#1315846 Comment by Rik on Windows Azure: "An item with the same key has already been added." exception thrown on Select Rik 2009-08-22T14:47:00Z 2009-08-22T14:47:00Z Does using the partition key instead solve your problem? http://stackoverflow.com/questions/1315827/windows-azure-an-item-with-the-same-key-has-already-been-added-exception-thro Comment by Rik on Windows Azure: "An item with the same key has already been added." exception thrown on Select Rik 2009-08-22T14:46:20Z 2009-08-22T14:46:20Z Could give more information about the exception, most notably its type? http://stackoverflow.com/questions/1315827/windows-azure-an-item-with-the-same-key-has-already-been-added-exception-thro/1315846#1315846 Comment by Rik on Windows Azure: "An item with the same key has already been added." exception thrown on Select Rik 2009-08-22T12:36:11Z 2009-08-22T12:36:11Z The collision is not happening in the table; it's happening in the context. Check the contents of the context.