User Marcus Griep - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:46:53Z http://stackoverflow.com/feeds/user/28645 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1682871/custom-collection-extends-listt-add-method/1689598#1689598 0 Answer by Marcus Griep for Custom Collection extends List<T> Add method Marcus Griep 2009-11-06T18:59:55Z 2009-11-06T18:59:55Z <p>Your best bet is to set up and configure an ORM (Object-relational mapping), such as <a href="http://nhforge.org/Default.aspx" rel="nofollow">NHibernate</a>, that will manage this for you. In effect, you set up the data model, and the ORM framework will take care of persisting that information for you.</p> http://stackoverflow.com/questions/1447832/does-a-sorted-queue-exist-in-net/1682608#1682608 1 Answer by Marcus Griep for Does a sorted queue exist in .NET? Marcus Griep 2009-11-05T18:31:01Z 2009-11-05T18:31:01Z <p>Check out the <a href="http://www.itu.dk/research/c5" rel="nofollow">C5 Generic Collections Library</a> which already has an implementation just like you're looking for, called an <code>IntervalHeap</code> or Priority Queue. Here's some documentation on it from the C5 Book: <a href="http://www.itu.dk/research/c5/Release1.1/ITU-TR-2006-76.pdf#page=82" rel="nofollow"><code>IPriorityQueue&lt;T&gt;</code></a></p> http://stackoverflow.com/questions/1474863/addrange-to-a-collection/1682579#1682579 0 Answer by Marcus Griep for AddRange to a Collection Marcus Griep 2009-11-05T18:26:05Z 2009-11-05T18:26:05Z <p>The <a href="http://www.itu.dk/research/c5" rel="nofollow">C5 Generic Collections Library</a> classes all support the <code>AddRange</code> method. C5 has a much more robust interface that actually exposes all of the features of its underlying implementations and is interface-compatible with the <code>System.Collections.Generic</code> <code>ICollection</code> and <code>IList</code> interfaces, meaning that <code>C5</code>'s collections can be easily substituted as the underlying implementation.</p> http://stackoverflow.com/questions/1491334/is-there-a-listt-in-net-2-that-raises-events-when-the-list-changes/1682553#1682553 0 Answer by Marcus Griep for Is there a List<T> in .NET 2 that raises events when the list changes? Marcus Griep 2009-11-05T18:22:13Z 2009-11-05T18:22:13Z <p>All of the collections in the <a href="http://www.itu.dk/research/c5" rel="nofollow">C5 Generic Collection Library</a> are designed to be able to raise events when an item is added, inserted, removed, or when the collection is cleared or otherwise changed. It provides a more robust interface for dealing with these changes than being held strictly to a list of objects, but also works with dictionaries, hash tables, priority queues, persistently sorted lists, etc.</p> http://stackoverflow.com/questions/1598282/calculating-frequency-distribution-of-a-collection-with-net-c/1682516#1682516 1 Answer by Marcus Griep for Calculating frequency distribution of a collection with .Net/C# Marcus Griep 2009-11-05T18:16:57Z 2009-11-05T18:16:57Z <p>The <a href="http://www.itu.dk/research/c5" rel="nofollow">C5 generic collections library</a> has a <code>HashBag</code> implementation that accepts duplicates by counting. The following pseudo-code would get you what you're looking for:</p> <pre> var hash = new HashBag(); hash.AddAll(list); var mults = hash.ItemMultiplicities(); </pre> <p>(where <code>K</code> is the type of the items in your list) <code>mults</code> will then contain an <code>IDictionary&lt;K,int&gt;</code> where the list item is the key and the multiplicity is the value.</p> http://stackoverflow.com/questions/1674237/how-can-i-fire-event-before-item-is-added-to-collection-in-c/1682247#1682247 0 Answer by Marcus Griep for How can I fire event before item is added to collection in C#? Marcus Griep 2009-11-05T17:33:44Z 2009-11-05T17:33:44Z <p>Use the <a href="http://www.itu.dk/research/c5/" rel="nofollow">C5</a> collections library. <code>C5</code>'s collections are already set up to be able to fire events on several operations, including clearing the collection, adding items, removing items, inserting items, and general collection changes.</p> <p>As well, the C5 library collections implement the <code>System.Collection.Generic</code> <code>ICollection</code> and <code>IList</code> interfaces where appropriate, and so can be dropped in as the implementation even if a library is only expecting, e.g. an <code>SCG.ICollection</code>.</p> <p>EDIT: I forgot to mention a portion of your requirements; many of those events I mentioned above are cancelable events, and are fired before the action has affected the underlying collection, allowing you to make changes or reject additions, removals, etc.</p> http://stackoverflow.com/questions/1679500/net-collection-that-throws-an-exception-when-a-duplicate-is-added/1682207#1682207 0 Answer by Marcus Griep for .NET collection that throws an exception when a duplicate is added Marcus Griep 2009-11-05T17:28:26Z 2009-11-05T17:28:26Z <p>If you're looking for <code>AddRange</code> style functionality, look at <a href="http://www.itu.dk/research/c5" rel="nofollow">C5</a>. The collections in the C5 family have a lot more functionality exposed in their interfaces, including a function <code>AddAll</code> that takes an enumerable, adding all the items in the enumerable to the collection in turn.</p> <p>EDIT: Also note that the <code>C5</code> collections implement the <code>System.Collections.Generic</code> <code>ICollection</code> and <code>IList</code> interfaces where appropriate, so can be used as the implementation even in systems that expect those interfaces.</p> http://stackoverflow.com/questions/1123156/calculate-energy-used-on-server/1123172#1123172 3 Answer by Marcus Griep for Calculate Energy Used on Server Marcus Griep 2009-07-14T02:28:04Z 2009-07-14T02:28:04Z <p>If you have a USB Uninteruptible Power System, you may be able to query it from time to time to find the actual load on the UPS (in Volt-Amperes or Watts) Do this over time, e.g. take an average over an hour at 5 minute intervals, and you can get a measure that you can convert to kWh.</p> <p>How from within PHP? You'll either need to develop an external call to the UPS daemon or something else, and then scrape the information from that.</p> http://stackoverflow.com/questions/951585/why-does-mysql-not-use-an-index-when-executing-this-query/1123131#1123131 0 Answer by Marcus Griep for Why does MySQL not use an index when executing this query? Marcus Griep 2009-07-14T02:13:10Z 2009-07-14T02:13:10Z <p>Your index is over <code>users(imtype,robotno)</code>. In order to use this index, either <code>imtype</code> or <code>imtype</code> and <code>robotno</code> must be used to qualify the rows. You are just using <code>robotno</code> in your query, thus it can't use this index.</p> http://stackoverflow.com/questions/1114015/unexcpected-result-when-comparing-values-retrieved-with-propertyinfo-getvalue/1114019#1114019 1 Answer by Marcus Griep for Unexcpected result when comparing values retrieved with PropertyInfo.GetValue() Marcus Griep 2009-07-11T16:10:15Z 2009-07-11T16:10:15Z <p>The reason for the failure is that the equality test that gets applied above is a reference equality test. Since the two objects returned by <code>propInfo.GetValue(foo, null)</code>, though equal by their own definitions, are separate objects, their references are different, and thus the equality fails.</p> http://stackoverflow.com/questions/1112871/how-do-i-get-around-the-twitter-api-caching-problem/1112901#1112901 0 Answer by Marcus Griep for How do I get around the Twitter API caching problem? Marcus Griep 2009-07-11T03:51:00Z 2009-07-11T03:51:00Z <p>If what you are saying is accurate, and it probably is, generally, you can't get around it. Twitter would want to be caching its responses since they are costly to reproduce every single time.</p> <p>When you use Twitter's APIs, you end up being bound by its conventions, even if that includes caching.</p> <p>Your best bet is to tweet to @twitterapi and get them to give you a response as to why the two representations are divergent.</p> http://stackoverflow.com/questions/1073522/contract-of-icollectiont-isreadonly/1112865#1112865 0 Answer by Marcus Griep for Contract of ICollection<T>.IsReadOnly Marcus Griep 2009-07-11T03:27:49Z 2009-07-11T03:27:49Z <p>Here, the semantics of modification are important. There is a difference between modifying the elements of a collection and modifying the objects contained by the collection. Think of the elements of the actual spaces in the collection. You can't add spaces, remove spaces, or change the object in a certain space. That's the contract that <code>IsReadOnly</code> abides by.</p> http://stackoverflow.com/questions/1106362/somedictionary-containskeysomedictionary-keys-first-is-false/1112831#1112831 2 Answer by Marcus Griep for someDictionary.ContainsKey(someDictionary.Keys.First)... is False??? Marcus Griep 2009-07-11T03:10:19Z 2009-07-11T03:10:19Z <p>Doing a <code>dict.ContainsKey(dict.Keys.First)</code> won't return true if the hash code of the <code>Keys.First</code> has changed since it was placed into the hash table.</p> <p>The reason is that the two methods use separate lookups. <code>dict.Keys.First</code> does not depend on the hash code, and probably was just a pointer to an arbitrary "hash bucket", of which this item happens to be on top.</p> <p><code>dict.ContainsKey()</code>, however, uses the hash code to pick the bucket to look in. If the hash code of <code>dict.Keys.First</code> has changed since it was added, it may belong in a different hash bucket, but this isn't reflected or updated in the hash table; the object gets "lost" in the dictionary.</p> <p>(In C#, but translatable to VB.NET, and un-tested)</p> <pre> class Foo { public int i; public override int GetHashCode() { return i.GetHashCode(); } } var dictionary = new Dictionary&lt;Foo,string> (); var foo = new Foo { i = 1; } dictionary.Add (foo, "I was wrong."); foo.i = 2; if (dictionary.ContainsKey (dictionary.Keys.First)) { System.Console.WriteLine (dictionary[dictionary.Keys.First]); } else { System.Console.WriteLine ("I was right."); } </pre> http://stackoverflow.com/questions/1110625/how-do-i-detect-if-a-request-is-a-callback-in-the-global-asax/1112786#1112786 1 Answer by Marcus Griep for How do I detect if a request is a callback in the Global.asax? Marcus Griep 2009-07-11T02:41:41Z 2009-07-11T02:41:41Z <p>Depends on the context of your question. I see you are talking about ASP.NET in the tags, using VB.NET. You can probably use:</p> <pre> If Not Request.IsPostback Then ' Your code here End If </pre> http://stackoverflow.com/questions/1111647/subversion-moving-files/1111680#1111680 0 Answer by Marcus Griep for Subversion - Moving files Marcus Griep 2009-07-10T20:00:56Z 2009-07-10T20:00:56Z <p>Yes. <code>svn move</code> preserves the history of files that are moved. If you are re-casing a filename, the answer is more complex. See the SVN FAQ: <a href="http://subversion.tigris.org/faq.html#case-change" rel="nofollow">http://subversion.tigris.org/faq.html#case-change</a></p> http://stackoverflow.com/questions/1044446/how-to-get-git-status-of-a-single-subfolder/1111600#1111600 0 Answer by Marcus Griep for How to get git-status of a single subfolder? Marcus Griep 2009-07-10T19:46:04Z 2009-07-10T19:46:04Z <p>Imperfect, but this works as well from within the the directory you are interested in:</p> <pre> git stats | grep -v ' \.\./' </pre> <p>That will hide all directories that would require an upward reference in their relative path.</p> <p>If you want to get color spitting out the other end, set <code>color.status</code> to <code>always</code>:</p> <pre> git config color.status always </pre> http://stackoverflow.com/questions/1110773/why-cant-a-datamember-in-wcf-return-type/1110819#1110819 -1 Answer by Marcus Griep for Why can't a DataMember in WCF return Type? Marcus Griep 2009-07-10T17:18:13Z 2009-07-10T17:35:11Z <p>Any field or property that returns <code>System.Type</code> is not serializable using WCF because, at runtime, the actual type of the object is <code>System.RuntimeType</code>, which is marked as internal, and thus cannot be automatically serialized by the <code>DataContractSerializer</code>, which can only serialize publicly accessible types.</p> <p>However, you could write an <code>IXmlSerializer</code> wrapper around <code>System.Type</code> that will pull out the information you intend to transfer.</p> http://stackoverflow.com/questions/1110686/proving-simple-addition/1110733#1110733 0 Answer by Marcus Griep for Proving simple addition Marcus Griep 2009-07-10T17:00:05Z 2009-07-10T17:00:05Z <p>Much of the difficulty comes from the fact that basic arithmetic is riddled with axioms, which, by their nature, are assumed to be true, rather than proofs of trueness.</p> <p>For example, let's change the basic axiom that we are working on the integer number line. Instead we are in two dimensional space. We have two vectors, one = (1,0), the other = (0,1). These are both unit vectors of length 1. Adding them together gives (1,1), whose length is <code>sqrt</code>(2).</p> <p>This would be an instance where adding a unit to another unit does not equal 2.</p> <p>Of course, this is again axiomatic. It all depends upon the assumptions you start from. The difficulty is getting all the scientists and mathematicians to come to a consensus that a given set of axioms are appropriate for the given problem.</p> http://stackoverflow.com/questions/308476/how-to-find-out-whether-two-icollectiont-collections-contain-the-same-objects/1110651#1110651 1 Answer by Marcus Griep for How to find out whether two ICollection<T> collections contain the same objects Marcus Griep 2009-07-10T16:44:12Z 2009-07-10T16:44:12Z <p>Again, using the C5 library, having two sets, you could use:</p> <pre> C5.ICollection&lt;T> set1 = C5.ICollection&lt;T> (); C5.ICollection&lt;T> set2 = C5.ICollecton&lt;T> (); if (set1.UnsequencedEquals (set2)) { // Do something } </pre> <p>The C5 library includes a heuristic that actually tests the unsequenced hash codes of the two sets first (see <code>C5.ICollection&lt;T&gt;.GetUnsequencedHashCode()</code>) so that if the hash codes of the two sets are unequal, it doesn't need to iterate over every item to test for equality.</p> <p>Also something of note to you is that <code>C5.ICollection&lt;T&gt;</code> inherits from <code>System.Collections.Generic.ICollection&lt;T&gt;</code>, so you can use C5 implementations while still using the .NET interfaces (though you have access to less functionality through .NET's stingy interfaces).</p> http://stackoverflow.com/questions/193835/defining-operators-in-boo/1110562#1110562 4 Answer by Marcus Griep for Defining operators in Boo Marcus Griep 2009-07-10T16:23:48Z 2009-07-10T16:23:48Z <p>While Boo supports operator overloading by defining the appropriate static operator function (<code>op_addition</code>), and also supports syntactic macros, it does not support creating custom operators at this time.</p> http://stackoverflow.com/questions/933350/can-net-code-compiled-with-the-unsafe-tag-run-in-mono/1110528#1110528 1 Answer by Marcus Griep for Can .NET code compiled with the unsafe tag run in Mono? Marcus Griep 2009-07-10T16:17:34Z 2009-07-10T16:17:34Z <p>Yes, <code>unsafe</code> is available.</p> <p>Mono even uses the <code>unsafe</code> keyword internally to try to speed up in some areas, such as <code>BigInteger</code> arithmetic in <code>Mono.Security</code>.</p> http://stackoverflow.com/questions/1011101/nginx-location-directive-doesnt-seem-to-be-working-am-i-missing-something/1099252#1099252 1 Answer by Marcus Griep for Nginx location directive doesn't seem to be working. Am I missing something? Marcus Griep 2009-07-08T16:44:13Z 2009-07-08T16:44:13Z <p>The problem here is that only the "best" <code>location</code> directive gets taken, in this order:</p> <pre> location = &lt;path> (longest match wins) location ^~ &lt;path> (longest match wins) location ~ &lt;path> (first defined match wins) location &lt;path> (longest match wins) </pre> <p>Using this ruleset, your <code>/myPhpAdmin</code> <code>location</code> directive is beaten out by the regular expression "<code>.php$</code>" <code>location</code> directive, so the former is ignored entirely. Additionally, your php fastcgi directive is hard-wired to your <code>/home/me/dev</code> directory, which means that myphpadmin is totally inaccessible. You can use a rewrite to get the correct root for your myphpadmin scripts:</p> <pre> location ~ \.php$ { set $php_root /home/me/dev; if ($request_uri ~* /myphpadmin) { set $php_root /var/www/nginx-default/phpMyAdmin; } fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $php_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; } </pre> http://stackoverflow.com/questions/164809/what-are-the-most-relevant-oss-projects-for-net/281842#281842 0 Answer by Marcus Griep for What are the most relevant OSS projects for .NET? Marcus Griep 2008-11-11T19:03:52Z 2008-11-11T19:03:52Z <p>I'd add in the <a href="http://www.itu.dk/research/c5" rel="nofollow">C5 Generic Collection Library</a>. Whereas the .NET BCL generic collections contain interfaces, they aren't programmed to their interfaces. As well, the C5 collections contain a richer set of features in addition to being backed by academic research. </p> <p>Check out the set of collections contained within <a href="http://stackoverflow.com/questions/198079/where-can-i-learn-about-the-various-types-of-net-lists#209563">in this post</a>.</p> http://stackoverflow.com/questions/269073/observablecollection-that-also-monitors-changes-on-the-elements-in-collection/269246#269246 0 Answer by Marcus Griep for ObservableCollection that also monitors changes on the elements in collection Marcus Griep 2008-11-06T16:04:11Z 2008-11-06T16:04:11Z <p>Check out the <a href="http://www.itu.dk/research/c5" rel="nofollow">C5 Generic Collection Library</a>. All of its collections contain events that you can use to attach callbacks for when items are added, removed, inserted, cleared, or when the collection changes.</p> <p>I am working for some extensions to that libary <a href="http://c5.xpdm.us" rel="nofollow">here</a> that in the near future should allow for "preview" events that could allow you to cancel an add or change.</p> http://stackoverflow.com/questions/261801/how-to-use-ilmerge-in-a-setup-project/266642#266642 1 Answer by Marcus Griep for How to use IlMerge in a Setup Project? Marcus Griep 2008-11-05T20:59:00Z 2008-11-05T20:59:00Z <p>I'd recommend that you check out the <a href="http://ilmerge.xpdm.us" rel="nofollow">ILMerge MSBuild task</a>. It will take away the complexity of specifying the exact command line arguments as you are doing now.</p> <p>On your specific issue, other than the error code 1, are you getting any other error message as a result? Comment, and I'll edit my response as best I can.</p> http://stackoverflow.com/questions/254844/random-array-using-linq-and-c/254957#254957 0 Answer by Marcus Griep for Random array using LINQ and C# Marcus Griep 2008-10-31T21:03:38Z 2008-11-04T16:14:48Z <p>Using the <a href="http://www.itu.dk/research/c5" rel="nofollow">C5 Generic Collection Library</a>, you could just use the builtin <code>Shuffle()</code> method:</p> <pre><code>IList&lt;int&gt; numbers = new ArrayList&lt;int&gt;(Enumerable.Range(1,100)); numbers.Shuffle(); </code></pre> http://stackoverflow.com/questions/254821/xmlserializer-serialize-empty-variable-to-use-both-tags/254894#254894 2 Answer by Marcus Griep for XmlSerializer Serialize empty variable to use both tags? Marcus Griep 2008-10-31T20:44:10Z 2008-10-31T21:22:08Z <p>The main issue here is that the <code>XmlSerializer</code> calls <code>WriteEndElement()</code> on the <code>XmlWriter</code> when it would write an end tag. This, however, generates the shorthand <code>&lt;tag/&gt;</code> form when there is no content. The <code>WriteFullEndElement()</code> writes the end tag separately.</p> <p>You can inject your own <code>XmlTextWriter</code> into the middle that the serializer would then use to exhibit that functionality.</p> <p>Given that <code>serializer</code> is the appropriate <code>XmlSerializer</code>, try this:</p> <pre><code>public class XmlTextWriterFull : XmlTextWriter { public XmlTextWriterFull(TextWriter sink) : base(sink) { } public override void WriteEndElement() { base.WriteFullEndElement(); } } ... var writer = new XmlTextWriterFull(innerwriter); serializer.Serialize(writer, obj); </code></pre> <p>[Edit] for the case of your added code, add facade constructors for:</p> <pre><code>public XmlTextWriterFull(Stream stream, Encoding enc) : base(stream, enc) { } public XmlTextWriterFull(String str, Encoding enc) : base(str, enc) { } </code></pre> <p>Then, use the memory stream as your inner stream in the constructor as before:</p> <pre><code>System.IO.MemoryStream memOut = new System.IO.MemoryStream(); XmlTextWriterFull writer = new XmlTextWriterFull(memOut, Encoding.UTF8Encoding); //Or the encoding of your choice xmlout.Serialize(writer, envelope, namespc); </code></pre> http://stackoverflow.com/questions/254573/can-you-enumerate-a-collection-in-c-out-of-order/254947#254947 1 Answer by Marcus Griep for Can you enumerate a collection in C# out of order? Marcus Griep 2008-10-31T21:00:23Z 2008-10-31T21:00:23Z <p>Using an <code>IList&lt;T&gt;</code> from the <a href="http://www.itu.dk/research/c5" rel="nofollow">C5 Generic Collection Library</a>, Reverse iteration is a feature, rather than extension:</p> <pre><code>foreach (var i in list.Reverse()) { } </code></pre> <p>As well, you can use the <code>Shuffle()</code> method to get a random ordering:</p> <pre><code>var listClone = (IList&lt;T&gt;) list.Clone(); listClone.Shuffle(); foreach (var i in listClone) { } </code></pre> http://stackoverflow.com/questions/254912/should-you-use-the-private-access-modifier-if-its-redundant/254931#254931 0 Answer by Marcus Griep for Should you use the private access modifier if it's redundant? Marcus Griep 2008-10-31T20:55:29Z 2008-10-31T20:55:29Z <p>Always use the explicit form. If for whatever reason the underlying assumption changes, the code with an explicit denotation of access won't break, whereas the implicit connotation my easily break.</p> <p>Also, when you are talking about different types of structures, they may have different default accessibilities. Without the explicit modifiers, the ownus is on the reader to know which structure has what default. E.g. in C#, struct fields default to <code>public</code>, class fields default to <code>private</code>, and class definitions default to <code>internal</code>.</p> http://stackoverflow.com/questions/254461/net-how-do-you-get-the-type-of-a-null-object/254488#254488 15 Answer by Marcus Griep for .NET : How do you get the Type of a null object? Marcus Griep 2008-10-31T18:43:39Z 2008-10-31T18:57:26Z <blockquote> <p>So is there any way to get the type of an object that is set to null? I would think there would have to be a way to know what type a storage location is without it being assigned anything.</p> </blockquote> <p>Not necessarily. The best that you can say is that it is an <code>object</code>. A <code>null</code> reference does not point to any storage location, so there is no metadata from which it can make that determination.</p> <p>The best that you could do is change it to be more generic, as in:</p> <pre><code>public void GetParameterValue&lt;T&gt;(out T destination) { object paramVal = "Blah"; destination = default(T); destination = Convert.ChangeType(paramVal, typeof(T)); } </code></pre> <p>The type of <code>T</code> can be inferred, so you shouldn't need to give a type parameter to the method explicitly.</p> http://stackoverflow.com/questions/1078022/browse-anonymously-or-used-to-bypassed-firewall Comment by Marcus Griep on browse anonymously or used to bypassed firewall Marcus Griep 2009-11-05T17:44:48Z 2009-11-05T17:44:48Z If you are using any website as the basis for your anonymous browsing, you are already risking your anonymity as you have just created a single entry/exit point, which uniquely defines you. The answer below for the Tor network is one of the best tools for anonymous browsing. http://stackoverflow.com/questions/1624303/exposing-collection-through-interface/1624359#1624359 Comment by Marcus Griep on Exposing collection through interface Marcus Griep 2009-11-05T17:42:40Z 2009-11-05T17:42:40Z An example that could be thought of here is the ability to swap in another collections library that implements <code>IList</code>, such as C5. http://stackoverflow.com/questions/1148042/are-there-non-cli-implementations-esp-jvm-of-the-boo-programming-language/1148264#1148264 Comment by Marcus Griep on are there non-CLI implementations (esp, JVM) of the Boo programming language? Marcus Griep 2009-07-19T15:34:34Z 2009-07-19T15:34:34Z Yep. Boojay was started by the creator of Boo. It was started after a challenge was made to allow Boo to multi-target. http://stackoverflow.com/questions/581570/how-can-i-create-a-temp-file-with-a-specific-extension-with-net/581968#581968 Comment by Marcus Griep on How can I create a temp file with a specific extension with .net ? Marcus Griep 2009-07-14T02:10:24Z 2009-07-14T02:10:24Z GetTempFileName guarantees that the path it returns will be unique. Not that the path it returns + &quot;.csv&quot; will be unique. Changing the extension in this way could fail as David said. http://stackoverflow.com/questions/943635/c-arrays-getting-a-sub-array-from-an-existing-array/943650#943650 Comment by Marcus Griep on C# arrays , Getting a sub-array from an existing array. Marcus Griep 2009-07-14T02:02:05Z 2009-07-14T02:02:05Z This is nice. And it especially good to point out that ICloneable is unreliable, because oh, is it ever. http://stackoverflow.com/questions/1122924/bash-cygwin-path-do-i-really-have-to-reboot-to-alter-path/1123086#1123086 Comment by Marcus Griep on bash/cygwin/$PATH: Do I really have to reboot to alter $PATH? Marcus Griep 2009-07-14T01:59:47Z 2009-07-14T01:59:47Z The above, noting that &quot;. .bashrc&quot; is a bash shorthand for &quot;source .bashrc&quot; http://stackoverflow.com/questions/1115022/c-using-not-on-char-for-encryption/1115195#1115195 Comment by Marcus Griep on C++ using NOT (~) on char for encryption..... Marcus Griep 2009-07-12T03:13:18Z 2009-07-12T03:13:18Z @linux_programer91, you'll note that most of the comments tying to understand and/or questioning the basis of the original question were made rightly made as comments, not answers. The ones attempting to answer the question did so as answers. http://stackoverflow.com/questions/1115022/c-using-not-on-char-for-encryption/1115195#1115195 Comment by Marcus Griep on C++ using NOT (~) on char for encryption..... Marcus Griep 2009-07-12T02:44:57Z 2009-07-12T02:44:57Z Grab an account, continue asking questions and contribute answers. You can contribute your view to this site too! http://stackoverflow.com/questions/1115022/c-using-not-on-char-for-encryption/1115173#1115173 Comment by Marcus Griep on C++ using NOT (~) on char for encryption..... Marcus Griep 2009-07-12T02:43:41Z 2009-07-12T02:43:41Z No, what you're using it as is part of the cipher, not as a random number generator (the key is used as the basis for the &quot;generator&quot;; this can be reduced to being, in effect, a simple seed). In cryptography, a random number generator has special conditions and significance to be cryptographically secure. Your friend may have written a pseudo-random number generator, but again, there are very proven methods for generating both random and pseudo-random numbers. http://stackoverflow.com/questions/1115022/c-using-not-on-char-for-encryption/1115122#1115122 Comment by Marcus Griep on C++ using NOT (~) on char for encryption..... Marcus Griep 2009-07-12T02:38:53Z 2009-07-12T02:38:53Z &quot;Not invented here&quot; syndrome is a big deadly spike that many individuals and companies run themselves upon. In a field as complex as this, you're more likely to invent a square wheel and have a false sense of security than you are to get the round wheel right on your first go. <a href="http://en.wikipedia.org/wiki/Reinventing_the_wheel" rel="nofollow">en.wikipedia.org/wiki/Reinventing_the_wheel/&hellip;</a> http://stackoverflow.com/questions/1115022/c-using-not-on-char-for-encryption Comment by Marcus Griep on C++ using NOT (~) on char for encryption..... Marcus Griep 2009-07-12T02:31:19Z 2009-07-12T02:31:19Z FYI, if compression is working well across your encrypted output, then it's likely that you're missing something, and the whole system is weak. Proper encryption tends to end up with sufficient randomness that compression algorithms don't work that well: <a href="http://www.x5.net/faqs/crypto/q62.html" rel="nofollow">x5.net/faqs/crypto/q62.html</a> http://stackoverflow.com/questions/1113819/c-arrays-heap-and-stack-and-value-types/1113833#1113833 Comment by Marcus Griep on (C#) Arrays, heap and stack and value types Marcus Griep 2009-07-11T16:06:18Z 2009-07-11T16:06:18Z I think that you meant to assign i to arr[0]. The constant assignment will still cause boxing of &quot;42&quot;, but you created i, so you may as well use it ;-) http://stackoverflow.com/questions/1110625/how-do-i-detect-if-a-request-is-a-callback-in-the-global-asax Comment by Marcus Griep on How do I detect if a request is a callback in the Global.asax? Marcus Griep 2009-07-11T02:42:20Z 2009-07-11T02:42:20Z I see that you've tagged the question as ASP.NET, but don't forget to be explicit about the technologies you are using in your question. http://stackoverflow.com/questions/1112677/sendmail-path-error Comment by Marcus Griep on Sendmail path error? Marcus Griep 2009-07-11T02:30:04Z 2009-07-11T02:30:04Z This may be a better question over on Server Fault? http://stackoverflow.com/questions/1110686/proving-simple-addition/1110733#1110733 Comment by Marcus Griep on Proving simple addition Marcus Griep 2009-07-10T19:08:50Z 2009-07-10T19:08:50Z Riddled with is probably too strong of a statement, to be sure. Most mathematics, especially that field called &quot;real mathematics&quot; attempt to start from as few axioms as possible. I was more intending to point that &quot;basic arithmetic&quot; is actually built on a significant set of assumptions. Even Euclidian geometry has 5 assumptions. Change that set of assumptions, as you've noted, and in a non-Euclidian geometry, my same example could be composed so that 1 + 1 is &lt;, =, or &gt; 2.