User Rik - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T00:23:28Zhttp://stackoverflow.com/feeds/user/5409http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1696896/how-to-check-whether-the-number-ends-with-9-or-not-in-numbers-1to-100/1696921#1696921-2Answer by Rik for how to check whether the number ends with 9 or not in numbers 1to 100Rik2009-11-08T15:45:47Z2009-11-08T16:12:13Z<pre><code>int i = 0;
while (i < 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#16969232Answer by Rik for what is meant by cloud computing? give some examplesRik2009-11-08T15:47:50Z2009-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#16935623Answer by Rik for Dynamic LINQ Queries.Rik2009-11-07T16:24:05Z2009-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#16821081Answer by Rik for XML to LINQ Question/sRik2009-11-05T17:10:10Z2009-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-expensive49When and why are database joins expensive?Rik2008-10-06T09:52:19Z2009-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-ide6Why use monospace fonts in your IDE?Rik2008-10-20T14:24:03Z2009-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#16461830Answer by Rik for Another math questionRik2009-10-29T19:56:30Z2009-10-29T19:56:30Z<p>No. You need more information.</p>
http://stackoverflow.com/questions/1644317/java-constructor-inheritance/1644409#16444091Answer by Rik for Java Constructor InheritanceRik2009-10-29T15:09:26Z2009-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#16183101Answer by Rik for Installing Azure SDK on Visual Studio 2010 Beta 2Rik2009-10-24T15:40:09Z2009-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#16104680Answer by Rik for C# Generics - Strange Interview QuestionRik2009-10-22T22:54:10Z2009-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#16067060Answer by Rik for Getting different result in Math.RoundRik2009-10-22T11:54:14Z2009-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#16065772Answer by Rik for can i have an ordered dictionary by dateRik2009-10-22T11:27:27Z2009-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#16037571Answer by Rik for Using Property to get array element in C#Rik2009-10-21T21:22:22Z2009-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#15972873Answer by Rik for Designing a custom random classRik2009-10-20T21:01:22Z2009-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-wise0Problematic data patterns, performance-wiseRik2009-05-01T14:20:13Z2009-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#15332620Answer by Rik for Is there a production grade SimpleDB .NET library?Rik2009-10-07T18:04:22Z2009-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#15260330Answer by Rik for Difference in monthsRik2009-10-06T14:44:20Z2009-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#14598931Answer by Rik for C#, XML Query QuestionRik2009-09-22T12:49:51Z2009-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#14595470Answer by Rik for System.Net.WebException: The underlying connection was closed: The connection was closed unexpectedly.Rik2009-09-22T11:38:34Z2009-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-properties0Use cases for flexible propertiesRik2009-09-15T21:27:24Z2009-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#14278084Answer by Rik for Is it acceptable to design a method with a parameter of type System.Enum?Rik2009-09-15T15:14:03Z2009-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#13158460Answer by Rik for Windows Azure: "An item with the same key has already been added." exception thrown on SelectRik2009-08-22T12:06:19Z2009-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#12937341Answer by Rik for XML Namespaces are confounding meRik2009-08-18T13:11:43Z2009-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#12929242Answer by Rik for Entity SaveChanges() for both insert and update?Rik2009-08-18T09:53:57Z2009-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#12880621Answer by Rik for What am I missing out on by only running .Net 2.0 vs 3.5?Rik2009-08-17T13:50:47Z2009-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#12869742Answer by Rik for Using a natural key, or using surrogate keys and audit table(s) for auditing/change log.Rik2009-08-17T09:23:13Z2009-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#12818632Answer by Rik for Do I have to design my app architecture keeping Azure in mind?Rik2009-08-15T13:07:19Z2009-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#11973870Answer by Rik for Is a switch statement applicable in a factory method? c#Rik2009-07-28T23:56:00Z2009-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#11941391Answer by Rik for Altering tables with Windows AzureRik2009-07-28T13:33:28Z2009-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#11941111Answer by Rik for Querying table storage data with Windows AzureRik2009-07-28T13:29:28Z2009-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#1696921Comment by Rik on how to check whether the number ends with 9 or not in numbers 1to 100Rik2009-11-08T16:13:16Z2009-11-08T16:13:16ZDamnit, forgot the increment.http://stackoverflow.com/questions/1694176/how-to-differentiate-between-circle-rectangle-and-triangle/1694182#1694182Comment by Rik on how to differentiate between circle rectangle and triangle ?Rik2009-11-07T19:47:37Z2009-11-07T19:47:37Z+1, very relevant and to the pointhttp://stackoverflow.com/questions/1673639/checking-for-null-in-an-object-hierarchyComment by Rik on Checking for null in an object hierarchyRik2009-11-04T13:12:24Z2009-11-04T13:12:24ZCould you provide some sample code on what you're trying to do, exactly? http://stackoverflow.com/questions/56895/proving-sql-query-equivalency/98609#98609Comment by Rik on Proving SQL query equivalencyRik2009-10-20T18:25:25Z2009-10-20T18:25:25ZThis only proves equivalency for that particular set, not for the query in general.http://stackoverflow.com/questions/1563280/programmer-not-a-blogger/1563296#1563296Comment by Rik on Programmer, not a bloggerRik2009-10-14T12:33:42Z2009-10-14T12:33:42ZI 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-cComment by Rik on Simple SQL select in C#?Rik2009-10-01T16:14:35Z2009-10-01T16:14:35Z+1: I must admire the alliteration in the question titlehttp://stackoverflow.com/questions/1498245/c-linq-to-sql-why-can-i-not-use-an-expression-to-filter-subentities/1498442#1498442Comment by Rik on C#, Linq to Sql: Why can I not use an expression to filter SubEntities?Rik2009-09-30T14:55:03Z2009-09-30T14:55:03ZYou can get the lambda expression from Expression, and pass that to Where(). http://stackoverflow.com/questions/1465699/what-programmers-say-all-timesComment by Rik on What Programmers say all times...Rik2009-09-23T12:38:49Z2009-09-23T12:38:49Z@ #4: Or, its SO equivalent, 6 to 8 weekshttp://stackoverflow.com/questions/1460634/are-c-arrays-thread-safe/1460660#1460660Comment by Rik on Are C# arrays thread safe?Rik2009-09-22T15:25:58Z2009-09-22T15:25:58Z@Steven "whether it's safe is going to depend precisely on what the coder is doing." - Isn't that the same as saying "No, it's not safe." ?http://stackoverflow.com/questions/695678/performing-part-of-a-iqueryable-query-and-deferring-the-rest-to-linq-for-objects/800176#800176Comment by Rik on Performing part of a IQueryable query and deferring the rest to Linq for ObjectsRik2009-09-22T14:45:29Z2009-09-22T14:45:29ZI thank you from my knees - deep in expression tree visitors. :) This is exactly what I neededhttp://stackoverflow.com/questions/1459475/system-net-webexception-the-underlying-connection-was-closed-the-connection-wasComment by Rik on System.Net.WebException: The underlying connection was closed: The connection was closed unexpectedly.Rik2009-09-22T11:31:41Z2009-09-22T11:31:41ZThis exception is particularly hard to track down. Please give as much information as you can if you want any reasonable answershttp://stackoverflow.com/questions/1315827/windows-azure-an-item-with-the-same-key-has-already-been-added-exception-throComment by Rik on Windows Azure: "An item with the same key has already been added." exception thrown on SelectRik2009-08-22T14:50:25Z2009-08-22T14:50:25ZIs 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#1315846Comment by Rik on Windows Azure: "An item with the same key has already been added." exception thrown on SelectRik2009-08-22T14:47:00Z2009-08-22T14:47:00ZDoes 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-throComment by Rik on Windows Azure: "An item with the same key has already been added." exception thrown on SelectRik2009-08-22T14:46:20Z2009-08-22T14:46:20ZCould 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#1315846Comment by Rik on Windows Azure: "An item with the same key has already been added." exception thrown on SelectRik2009-08-22T12:36:11Z2009-08-22T12:36:11ZThe collision is not happening in the table; it's happening in the context. Check the contents of the context.