User configurator - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T09:53:42Zhttp://stackoverflow.com/feeds/user/9536http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/600293/how-to-check-if-a-number-is-a-power-of-230How to check if a number is a power of 2configurator2009-03-01T19:01:29Z2009-11-29T18:41:05Z
<p>Today I needed a simple algorithm for checking if a number is a power of 2.</p>
<p>The algorithm needs to be:</p>
<ol>
<li>Simple</li>
<li>Correct for any <code>ulong</code> value.</li>
</ol>
<p>I came up with this simple algorithm:</p>
<pre><code>private bool IsPowerOfTwo(ulong number)
{
if (number == 0)
return false;
for (ulong power = 1; power > 0; power = power << 1)
{
// this for loop used shifting for powers of 2, meaning
// that the value will become 0 after the last shift
// (from binary 1000...0000 to 0000...0000) then, the for
// loop will break out
if (power == number)
return true;
if (power > number)
return false;
}
return false;
}
</code></pre>
<p>But then I thought, how about checking if <code>log</code><sub><code>2</code></sub><code>x</code> is an exactly round number? But when I checked for 2^63+1, <code>Math.Log</code> returned exactly 63 because of rounding. So I checked if 2 to the power 63 is equal to the original number - and it is, because the calculation is done in <code>double</code>s and not in exact numbers:</p>
<pre><code>private bool IsPowerOfTwo_2(ulong number)
{
double log = Math.Log(number, 2);
double pow = Math.Pow(2, Math.Round(log));
return pow == number;
}
</code></pre>
<p>This returned <code>true</code> for the given wrong value: <code>9223372036854775809</code>.</p>
<p>Does anyone have any suggestion for a better algorithm?</p>
http://stackoverflow.com/questions/1788852/long-operation-status/1788996#17889961Answer by configurator for Long Operation Statusconfigurator2009-11-24T09:40:49Z2009-11-24T09:40:49Z<p>There are two ways I usually do this:</p>
<ol>
<li>Pushing data with events. Quite simply, the long method knows how much it's done and whenever it finishes a piece it raises an event and pushes data to the UI.</li>
<li>Polling. Suppose the method is for reading a file. It will always update a property somewhere with its progress, and the UI will poll that property once every 100-200ms to update the progress. The reason for 100-200ms is that lower than that the user won't notice and it will only slow down the operation; higher and the progress would be 'clunky'.</li>
</ol>
http://stackoverflow.com/questions/1788847/c-progressbar-wont-update-with-backgroundworker/1788981#17889812Answer by configurator for C# Progressbar won't update with backgroundworkerconfigurator2009-11-24T09:36:53Z2009-11-24T09:36:53Z<p>Well it works on my machine. What does <code>GetEvaluationDocumentsToSend()</code> do? Perhaps it is taking a lot longer than the other methods so it looks like no progress is made because all of the progress is almost instantaneous? Also, what does <code>HandleGui()</code> do and what is <code>_running</code> used for?</p>
http://stackoverflow.com/questions/1777012/if-i-check-stream-for-valid-image-i-cant-write-bytes-to-server/1781778#17817780Answer by configurator for If I check stream for valid image I can't write bytes to serverconfigurator2009-11-23T08:27:58Z2009-11-23T08:27:58Z<p>In your update, you have a problem reading the stream a second time.</p>
<pre><code>byte[] m_buffer = new byte[ms.Length];
while ((bytesRead = ms.Read(m_buffer, 0, (int)ms.Length)) > 0)
{
outfile.Write(m_buffer, 0, bytesRead);
}
</code></pre>
<p>The solution is simple:</p>
<pre><code>byte[] m_buffer = ms.ToArray();
outfile.Write(m_buffer, 0, m_buffer.Length);
</code></pre>
<p>See also <a href="http://msdn.microsoft.com/en-us/library/system.io.memorystream.toarray.aspx" rel="nofollow"><code>MemoryStream.ToArray</code></a></p>
http://stackoverflow.com/questions/1768679/c-transcribe-wav-file-to-text-speech-to-text-with-system-speech-namespaces/1781765#17817650Answer by configurator for C#: transcribe WAV file to text (speech-to-text) with System.Speech namespacesconfigurator2009-11-23T08:22:06Z2009-11-23T08:22:06Z<p>You should use the <a href="http://msdn.microsoft.com/en-us/library/system.speech.recognition.speechrecognitionengine.aspx" rel="nofollow"><code>SpeechRecognitionEngine</code></a>. To use a wave file, call <a href="http://msdn.microsoft.com/en-us/library/system.speech.recognition.speechrecognitionengine.setinputtowavefile.aspx" rel="nofollow"><code>SetInputToWaveFile</code></a>. I wish I could help you more, but I'm no expert.</p>
<p>Oh, and if your word is really <code>triskaidekaphobia</code>, I don't think even a human speech recognition engine would recognize that...</p>
http://stackoverflow.com/questions/1780207/problem-with-conversion/1780233#17802331Answer by configurator for problem with conversionconfigurator2009-11-22T22:25:12Z2009-11-22T22:25:12Z<p>Your problem is 2002/03 is not what you mean. What are you trying to convert here?
<code>2002/03</code> is two integers and a division, and it's value is <code>2002 / 03 = 667</code>. If you want the string <code>"2002/03"</code> you need to enter that string, <code>"2002/03"</code>.</p>
<p>I hope this made sense :)</p>
http://stackoverflow.com/questions/1732914/i-dont-want-to-convert-solution-files-when-switching-from-visual-studio-2008-201/1732921#17329214Answer by configurator for I don't want to convert solution files when switching from Visual Studio 2008-2010. How?configurator2009-11-14T01:30:06Z2009-11-14T01:30:06Z<p>The entire migration is one line changing in the solution file, and it can't be avoided. Only the solution file is changed though - not the project file - so I suggest doing the 'standard' thing and copying your <code>Solution.sln</code> file into <code>Solution2010.sln</code> and migrating that. One thing you have to notice is that if the solution file is updated, by adding or removing projects, you must keep the two files in sync.</p>
http://stackoverflow.com/questions/1679476/extending-the-enumerable-class-in-c/1679494#16794940Answer by configurator for Extending the Enumerable class in c#?configurator2009-11-05T09:55:07Z2009-11-05T09:55:07Z<p>You can't extend the <code>Enumerable</code> class, since you don't have an <code>Enumerable</code> instance - it's a <code>static</code> class. Extension methods only work on instances, they never work on the static class itself.</p>
http://stackoverflow.com/questions/1679405/system-web-mvc-controller-initialize/1679474#16794740Answer by configurator for System.Web.Mvc.Controller Initializeconfigurator2009-11-05T09:52:11Z2009-11-05T09:52:11Z<p>I'm not sure if this is what you want, but try this:</p>
<pre><code>protected override void Initialize(System.Web.Routing.RequestContext requestContext)
{
if (something == true)
RedirectToAction("DoSomething", "Section");
else
base.Initialize(requestContext);
}
</code></pre>
http://stackoverflow.com/questions/1679350/unable-to-generate-pdb-files-in-visual-studio-2005/1679449#16794492Answer by configurator for Unable to generate PDB files in Visual Studio 2005configurator2009-11-05T09:47:09Z2009-11-05T09:47:09Z<p>In the <code>Build</code> tab of the Project Properties window, there's an <code>Advanced...</code> button. There, You have a combo box called <code>Debug info</code>. Set your options there.</p>
http://stackoverflow.com/questions/1679258/performant-intersection-and-distinct-element-extraction/1679351#16793511Answer by configurator for Performant intersection and distinct element extraction?configurator2009-11-05T09:27:01Z2009-11-05T09:38:08Z<p>Try this:</p>
<pre><code>HashSet<Extent> result = new HashSet<Extent>();
HashSet<Extent> potentialSetY = new HashSet<Extent>(potentialCollisionsY);
foreach (Extent ex in potentialCollisionsX)
if (potentialSetY.Contains(ex))
result.Add(ex);
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/bb359438.aspx" rel="nofollow">Hash sets</a> are good at doing <code>Contains</code> quickly, but don't preserve order</p>
<p><hr></p>
<p>If you need to preserve order, here's something a little more complicated: An ordered hash set. It uses normal hash set semantics (well, a dictionary, but it's the same thing), but before enumeration it reorders the items according to the insertion order.</p>
<pre><code>// Unchecked code
public class OrderedHashSet<T> : IEnumerable<T> {
int currentIndex = 0;
Dictionary<T, index> items = new Dictionary<T, index>();
public bool Add(T item) {
if (Contains(item))
return false;
items[item] = currentIndex++;
return true;
}
public bool Contains(T item) {
return items.ContainsKey(item);
}
public IEnumerator<T> GetEnumerator() {
return items.Keys.OrderBy(key => items[key]).GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator() {
return GetEnumerator();
}
}
</code></pre>
<p>Now simply change <code>HashSet</code> to <code>OrderedHashSet</code> in the above sample and it <em>should</em> work.</p>
http://stackoverflow.com/questions/1679243/c-net-how-to-get-the-thread-id-from-a-thread/1679323#16793232Answer by configurator for C#/.NET: How to get the thread id from a thread?configurator2009-11-05T09:21:44Z2009-11-05T09:21:44Z<p>According to <a href="http://msdn.microsoft.com/en-us/library/system.threading.thread.aspx" rel="nofollow">MSDN</a>:</p>
<blockquote>
<p>An operating-system ThreadId has no
fixed relationship to a managed
thread, because an unmanaged host can
control the relationship between
managed and unmanaged threads.
Specifically, a sophisticated host can
use the CLR Hosting API to schedule
many managed threads against the same
operating system thread, or to move a
managed thread between different
operating system threads.</p>
</blockquote>
<p>So basically, the <code>Thread</code> object does not necessarily correspond to an OS thread - which is why it doesn't have the native ID exposed.</p>
http://stackoverflow.com/questions/1668661/is-there-something-odd-with-powershell-and-forwards-slashes/1668693#16686939Answer by configurator for Is there something odd with Powershell and forwards slashes?configurator2009-11-03T16:58:48Z2009-11-03T16:58:48Z<p>Put an ampersand character in front of the command</p>
<pre><code>&"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:about
</code></pre>
<p>Otherwise, it thinks you're trying to divide the string literal <code>"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe"</code> by something, but it doesn't know by what.</p>
http://stackoverflow.com/questions/1668451/move-item-to-top-of-list-linq/1668662#16686620Answer by configurator for Move item to top of list (linq)configurator2009-11-03T16:55:09Z2009-11-03T16:55:09Z<p>Here is an extension method you might want to use. It moves the element(s) that match the given predicate to the top, preserving order.</p>
<pre><code>public static IEnumerable<T> MoveToTop(IEnumerable<T> list, Func<T, bool> func) {
return list.Where(func)
.Concat(list.Where(item => !func(item)));
}
</code></pre>
<p>In terms of complexity, I think it would make two passes on the collection, making it O(n), like the Insert/Remove version, but better than Jon Skeet's OrderBy suggestion.</p>
http://stackoverflow.com/questions/1287567/c-is-using-random-and-orderby-a-good-shuffle-algorithm/1665080#16650808Answer by configurator for C#: Is using Random and OrderBy a good shuffle algorithm?configurator2009-11-03T03:33:17Z2009-11-03T15:58:10Z<p>This is based on Jon Skeet's <a href="http://stackoverflow.com/questions/1287567/c-is-using-random-and-orderby-a-good-shuffle-algorithm/1287572#1287572">answer</a>.</p>
<p>In that answer, the array is shuffled, then returned using <code>yield</code>. The net result is that the array is kept in memory for the duration of foreach, as well as objects necessary for iteration, and yet the cost is all at the beginning - the yield is basically an empty loop.</p>
<p>This algorithm is used a lot in games, where the first three items are picked, and the others will only be needed later if at all. My suggestion is to <code>yield</code> the numbers as soon as they are swapped. This will reduce the start-up cost, while keeping the iteration cost at O(1) (basically 5 operations per iteration). The total cost would remain the same, but the shuffling itself would be quicker. In cases where this is called as <code>collection.Shuffle().ToArray()</code> it will theoretically make no difference, but in the aforementioned use cases it will speed start-up. Also, this would make the algorithm useful for cases where you only need a few unique items. For example, if you need to pull out three cards from a deck of 52, you can call <code>deck.Shuffle().Take(3)</code> and only three swaps will take place (although the entire array would have to be copied first).</p>
<pre><code>public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source, Random rng)
{
T[] elements = source.ToArray();
// Note i > 0 to avoid final pointless iteration
for (int i = elements.Length - 1; i > 0; i--)
{
// Swap element "i" with a random earlier element it (or itself)
int swapIndex = rng.Next(i + 1);
yield return elements[swapIndex];
elements[swapIndex] = elements[i];
// we don't actually perform the swap, we can forget about the
// swapped element because we already returned it.
}
// there is one item remaining that was not returned - we return it now
yield return elements[0];
}
</code></pre>
http://stackoverflow.com/questions/1626241/integrating-with-pi-electronique-pos-system0Integrating with Pi Electronique POS systemconfigurator2009-10-26T17:47:15Z2009-10-26T17:47:15Z
<p>I know this question is highly specific, but I'm hoping someone will be able to help me.</p>
<p>I'd like to write a program for restaurants that use the PI Electonique POS system. The program needs to access the data that the POS system has - which orders were made, and when, preferably in real time.</p>
<ul>
<li>How do you access that data?</li>
<li>Is it possible to hook a program to run in the background whenever a dish is ordered? </li>
<li>Do these machines even run Windows?</li>
</ul>
<p>Thanks for the help</p>
http://stackoverflow.com/questions/497987/obtain-the-blog-feed-url-automatically/497994#4979945Answer by configurator for Obtain the blog feed URL automatically.configurator2009-01-31T01:43:47Z2009-10-08T00:10:38Z<p>Look for a</p>
<pre><code><link rel="alternate" type="..." href="..." />
</code></pre>
<p>tag in the page from the given URL.</p>
<p>The type will be <code>application/atom+xml</code> for Atom, <code>application/rss+xml</code> for RSS. The href will be the URL for the feed.</p>
http://stackoverflow.com/questions/1457324/listbox-values-to-database/1457494#14574941Answer by configurator for listbox values to databaseconfigurator2009-09-21T23:56:48Z2009-09-21T23:56:48Z<p>You supplied this code in your comment.</p>
<pre><code>myConn.Open();
OleDbCommand dataCommand = new OleDbCommand();
if (ListBox2.Items.Count > 0) {
foreach (ListItem i in ListBox2.Items) {
insertContractCmd = ("insert into table column1) values ('"
+ ListBox2.Items
+ "')", myConn);
}
}
myConn.Open();
dataCommand.ExecuteNonQuery();
}
</code></pre>
<p>I see three problems with the code:</p>
<p>First, a parenthesis mismatch in the insert command. Change <code>("insert into table column1)</code> to <code>"insert into table (column1)</code></p>
<p>Second, you open the connection twice. Lose the second <code>myConn.Open();</code></p>
<p>Third, and this is the biggest problem - you are trying to concatenate a string with the entire list of items. What you should do is concatenate each item separately, like this:</p>
<pre><code>// note: this is a bad example, use the next one instead
insertContractCmd = "insert into table (column1) values (";
foreach (ListItem item in ListBox2.Items) {
insertContractCmd = insertContractCmd + "'" + item.Text + "'";
}
insertContractCmd = insertContractCmd + ")";
</code></pre>
<p>Now you only have to deal with one small problem - this code is bad because it causes a lot of string concatenation which is inefficient and consumes a lot of memory. You should use a <a href="http://msdn.microsoft.com/en-us/library/system.text.stringbuilder.aspx" rel="nofollow"><code>StringBuilder</code></a> instead:</p>
<pre><code>StringBuilder commandBuilder = new StringBuilder("insert into table (column1) values (");
foreach (ListItem item in ListBox2.Items) {
commandBuilder.AppendFormat("'{0}'", item.Text);
}
commandBuilder.Append(")");
insertContractCmd = commandBuilder.ToString();
</code></pre>
<p>Note: I also used AppendFormat for the same efficiency reasons. You could also use <code>commandBuilder.Append("'" + item.Text + "'");</code> to the same effect.</p>
<p>Hope that helps, <code>configurator</code>.</p>
http://stackoverflow.com/questions/1450161/problem-with-conditional-databinding/1450210#14502101Answer by configurator for Problem with conditional databindingconfigurator2009-09-20T03:19:09Z2009-09-20T03:19:09Z<pre><code><%# (File.Exists(("ProductImages/"+Convert.ToString(Eval("products_image"))))) ? ("ProductImages/"+Convert.ToString(Eval("products_image"))) : "ProductImages/noimage_small.jpg" ; %>
</code></pre>
<p>Quite long and unreadable, isn't it?</p>
<p>I'd suggest adding a method to your code behind or in a <code><script></code> tag</p>
<pre><code>// returns the imageFile parameter if the file exists, the defaultFile parameter otherwise
string ImageFileExists(string imageFile, string defaultFile) {
if (File.Exists(Server.MapPath(imageFile)))
return imageFile;
else
return defaultFile;
}
</code></pre>
<p>And then you'd simply use</p>
<pre><code><%# ImageFileExists("ProductImages/" + Eval("products_image").ToString(), "ProductImages/noimage_small.jpg") %>
</code></pre>
<p>Note that I've added a <a href="http://msdn.microsoft.com/en-us/library/system.web.httpserverutility.mappath.aspx" rel="nofollow"><code>Server.MapPath</code></a> call to the method so that <code>File.Exists</code> will actually look in the right place.</p>
http://stackoverflow.com/questions/1449851/drag-and-drop-a-card-using-the-dragdrop-method/1450191#14501911Answer by configurator for Drag and Drop a card using the DragDrop methodconfigurator2009-09-20T03:11:56Z2009-09-20T03:11:56Z<p>Your code only contains changes to the mouse pointer. When the card is dropped, you only get the card and then do nothing with it in your code - that's why nothing is happening.</p>
http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1154353#11543530Answer by configurator for Fast string comparison with listconfigurator2009-07-20T15:49:52Z2009-07-20T15:49:52Z<p>You could use string interning to do this very quickly.
When building the list, you have to store your required string's interned format (the result of <a href="http://msdn.microsoft.com/en-us/library/system.string.intern.aspx" rel="nofollow"><code>string.Intern()</code></a>). Then, you need to compare against an interned string with <a href="http://msdn.microsoft.com/en-us/library/system.object.referenceequals.aspx" rel="nofollow"><code>object.ReferenceEquals</code></a> - since interned strings have the same reference.</p>
<pre><code>List<string> BuildList() {
List<string> result;
foreach (string str from StringSource())
result.Add(str.Intern());
return result;
}
bool CheckList(List<string> list, string stringToFind) { // list must be interned for this to work!
return list.Find(str => object.ReferenceEquals(str, stringToFind)) != null;
}
</code></pre>
<p>This will result in a four-byte comparison for each list, and one pass over the original string. The intern pool of strings is built specifically for quick string comparison and finding if one already exists, so the intern operation should be quite fast.</p>
http://stackoverflow.com/questions/926825/lookup-structure-for-error-messages/926912#9269121Answer by configurator for Lookup Structure for Error Messagesconfigurator2009-05-29T16:28:11Z2009-05-29T16:28:11Z<p>If you need to store these strings which you already have, you should use a simple <a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow"><code>Dictionary<int,string></code></a>, where the errorcode is the key and the string is the value.</p>
<p>If you type the strings yourself, you should consider using a Resources file.</p>
http://stackoverflow.com/questions/926883/fxcop-types-that-own-disposable-fields-should-be-disposable/926905#9269051Answer by configurator for FXCop: "Types that own disposable fields should be disposable"configurator2009-05-29T16:26:38Z2009-05-29T16:26:38Z<p>As you know, when you finish using a disposable object, you should call its <code>Dispose</code> method.</p>
<p>When you inherit from these controls, it is still possible to call the <code>Dispose</code> method. But if you make a wrapper, then the user of your wrapper class should be able to call <code>Dispose</code>.</p>
<pre><code>public void Dispose() {
button.Dispose();
// any other thing that is disposable
}
</code></pre>
http://stackoverflow.com/questions/897249/is-warning-cs3006-valid-in-this-case/897878#8978781Answer by configurator for Is warning CS3006 valid in this case?configurator2009-05-22T13:35:11Z2009-05-29T11:32:32Z<p>CLS compliance only applies to the visible part of your class. Therefore, you'd think that the <code>ref int[]</code> is not <code>public</code> and therefore not relevant. But it is visible, through the interface.</p>
<p>The users of your code know that <code>Sample</code> provides <code>void MyMethod(int[])</code>. They also know that it implements <code>ISample</code> which provides <code>void MyMethod(ref int[])</code>. Therefore, I believe it is in fact not CLS-Compliant.</p>
<p><hr /></p>
<p>EDIT: <a href="http://blogs.msdn.com/ericlippert/default.aspx" rel="nofollow">Eric Lippert</a> has commented on the original question that he believes this is in fact a compiler bug and that the original code is CLS-Compliant.</p>
<p><hr /></p>
<p>This, however, is valid:</p>
<pre><code>[assembly: CLSCompliant(true)]
namespace MyNamespace
{
public class Sample : ISample, ISample2
{
void ISample.MyMethod(ref int[] array)
{
}
void ISample2.MyMethod(int[] array)
{
}
}
public interface ISample
{
void MyMethod(ref int[] array);
}
public interface ISample2
{
void MyMethod(int[] array);
}
}
</code></pre>
<p>That is because CLS defines that two interface may define conflicting methods with the same name or signature and the compiler must know how to tell the difference - but again, only when the conflict is between two interfaces.</p>
http://stackoverflow.com/questions/917573/c-string-manipulation-using-regular-expressions/917595#9175951Answer by configurator for C# String Manipulation using Regular Expressionsconfigurator2009-05-27T19:33:38Z2009-05-27T19:33:38Z<p>You should consider using an HTML DOM to parse the contents rather then regular expressions. Regexes meant to parse html are notorious for both being complicated and having unexpected bugs.</p>
http://stackoverflow.com/questions/906564/why-is-modulus-operator-not-working-for-double-in-c/906666#9066660Answer by configurator for Why is modulus operator not working for double in c#?configurator2009-05-25T13:02:16Z2009-05-25T13:02:16Z<p>I believe if you tried the same with <code>decimal</code> it would work properly.</p>
http://stackoverflow.com/questions/897212/how-to-supress-the-creation-of-an-net-exception-object/897801#8978012Answer by configurator for How to supress the creation of an (.net) Exception object?configurator2009-05-22T13:19:48Z2009-05-22T13:19:48Z<p>This is unrelated but important, I think.</p>
<p>Why is your socket in non-blocking mode inside a loop? If the socket has no incoming connection, you'd just enter the loop again indefinitely until there is such a connection. What you are doing here is <a href="http://en.wikipedia.org/wiki/Busy%5Fwaiting" rel="nofollow">busy waiting</a>, and it will take a lot of CPU power - the exception being created really shouldn't worry you here.</p>
http://stackoverflow.com/questions/897455/best-way-of-implementing-these-3-classes-in-c-vector-direction-unit-vector/897776#8977761Answer by configurator for Best Way of Implementing these 3 classes in C#: Vector, Direction (unit vector), Pointconfigurator2009-05-22T13:15:26Z2009-05-22T13:15:26Z<p>I suggest defining it as such:</p>
<pre><code>public abstract class VectorBase {
public int X { get; private set; }
public int Y { get; private set; }
public VectorBase(int x, int y) {
this.X = x;
this.Y = y;
}
public VectorBase(VectorBase copy) : this(copy.X, copy.Y) {
// creates a vector with the same x, y
}
public static Vector operator +(VectorBase left, VectorBase right) {
return new Vector(left.X + right.X, left.Y + right.Y);
}
public static Vector operator -(VectorBase left, VectorBase right) {
return new Vector(left.X - right.X, left.Y - right.Y);
}
}
public class Vector : VectorBase {
public Vector(VectorBase v) : base(v) { }
public Vector(int x, int y) : base(x, y) { }
}
public class Point : VectorBase {
public Point(VectorBase v) : base(v) { }
public Point(int x, int y) : base(x, y) { }
public static implicit operator Vector(Point p) {
return new Vector(p);
}
public static implicit operator Point(Vector v) {
return new Point(v);
}
}
public class Direction : VectorBase {
public Direction(VectorBase v) : base(v) { }
public Direction(int x, int y) : base(x, y) { }
public static implicit operator Vector(Direction d) {
return new Vector(d);
}
public static implicit operator Direction(Vector v) {
return new Direction(v);
}
// implementation of *, any other stuff you need
}
</code></pre>
<p>Things to note:</p>
<ul>
<li>This implementation is <a href="http://blogs.msdn.com/ericlippert/archive/2007/11/13/immutability-in-c-part-one-kinds-of-immutability.aspx" rel="nofollow"><code>immutable</code></a>.</li>
<li>Any type - <code>Vector</code>, <code>Point</code> or <code>Direction</code> can be added/subtracted from any other resulting in a <code>Vector</code>.</li>
<li>A <code>Direction</code> can be multiplied with a vector.</li>
<li>They are implicitly interchangeable - you could easily change that to explicitly interchangeable by changing the <code>implicit operator</code>s to <code>explicit operator</code>s.</li>
</ul>
http://stackoverflow.com/questions/854500/ways-in-net-to-get-an-array-of-int-from-0-to-n/854520#8545206Answer by configurator for Ways in .NET to get an array of int from 0 to nconfigurator2009-05-12T19:47:24Z2009-05-12T19:47:24Z<p>The most interesting way in my mind produces not an array, but an <code>IEnumerable<int></code> that enumerates the same number - it has the benefit of O(1) setup time since it defers the actual loop's execution:</p>
<pre><code>public IEnumerable<int> GetNumbers(int max) {
for (int i = 0; i < max; i++)
yield return i;
}
</code></pre>
<p>This loop goes through all numbers from <code>0</code> to <code>max-1</code>, returning them one at a time - but it only goes through the loop when you actually need it.</p>
<p>You can also use this as <code>GetNumbers(max).ToArray()</code> to get a 'normal' array.</p>
http://stackoverflow.com/questions/802256/how-can-i-convert-anonymous-type-to-strong-type-in-linq/802338#8023381Answer by configurator for How can I convert anonymous type to strong type in LINQ?configurator2009-04-29T13:20:11Z2009-04-29T13:20:11Z<p>Like Marc Gravell said, you shouldn't access the <code>Tag</code> property from different threads, and the cast is quite cheap, so you have:</p>
<pre><code>var items = (e.Argument as ListViewItem[]).Select(x=>x.Tag)
.OfType<SalesOrderMaster>().ToList();
</code></pre>
<p>but then, you want to find distinct items - here you can try using <code>AsParallel</code>:</p>
<pre><code>var orders = items.AsParallel().Distinct();
</code></pre>
http://stackoverflow.com/questions/783512/are-vb-net-developers-less-curious-standardizing-on-vb-net/795041#795041Comment by configurator on Are VB.NET Developers Less Curious? Standardizing on VB.NETconfigurator2009-12-09T10:55:01Z2009-12-09T10:55:01Z"No edit and continue", "no background compilation", "lack of auto-indent"... Seems like you're comparing VB-by-VS to C#-by-notepad. VS has all of these features. The braces are exactly the same as end-if - as long as you have your IDE settings defined properly they shouldn't be any more confusing. A VB programmer would usually like the format where braces are kept on the same line as the rest of the code - then you can pretty much ignore them and understand the code.http://stackoverflow.com/questions/1788852/long-operation-status/1788996#1788996Comment by configurator on Long Operation Statusconfigurator2009-12-02T12:01:59Z2009-12-02T12:01:59ZPolling is good only in cases when events would fire too fast, I think. Note that events don't have to slow down code because they can be raised in their own thread, and if going to the UI should use BeginInvoke and not Invoke()http://stackoverflow.com/questions/600293/how-to-check-if-a-number-is-a-power-of-2/600306#600306Comment by configurator on How to check if a number is a power of 2configurator2009-12-02T11:59:59Z2009-12-02T11:59:59Z@Matt: this has already been discussed in the comments.http://stackoverflow.com/questions/1788847/c-progressbar-wont-update-with-backgroundworker/1788914#1788914Comment by configurator on C# Progressbar won't update with backgroundworkerconfigurator2009-11-24T09:28:55Z2009-11-24T09:28:55ZThe entire point of the background worker is that it takes care of that.http://stackoverflow.com/questions/1583050/performance-surprise-with-as-and-nullable-types/1583073#1583073Comment by configurator on Performance surprise with "as" and nullable typesconfigurator2009-11-23T11:03:19Z2009-11-23T11:03:19ZThe jitter automatically uses the same variable in these cases (when it's not captured by a lambda or anything). This has been confirmed by Eric Lippert.http://stackoverflow.com/questions/1777012/if-i-check-stream-for-valid-image-i-cant-write-bytes-to-serverComment by configurator on If I check stream for valid image I can't write bytes to serverconfigurator2009-11-23T08:28:37Z2009-11-23T08:28:37ZNote that I've posted an answer to your update questionhttp://stackoverflow.com/questions/1768679/c-transcribe-wav-file-to-text-speech-to-text-with-system-speech-namespaces/1768905#1768905Comment by configurator on C#: transcribe WAV file to text (speech-to-text) with System.Speech namespacesconfigurator2009-11-23T08:16:16Z2009-11-23T08:16:16ZThe EmulateRecognize won't help - it's meant to bypass the recognition by giving the recognized output.http://stackoverflow.com/questions/1780207/problem-with-conversion/1780221#1780221Comment by configurator on problem with conversionconfigurator2009-11-22T22:27:12Z2009-11-22T22:27:12ZOf course, converting a date time like this would make absolutely no sense whatsoever...http://stackoverflow.com/questions/1779741/how-to-make-a-select-list-item-selected-in-asp-net-mvcComment by configurator on How to make a select list item selected in asp.net mvc?configurator2009-11-22T19:50:13Z2009-11-22T19:50:13ZI think you need Html.DropDownList("DDL", ViewData["DDL"]), but I'm not sure since I've never used that.http://stackoverflow.com/questions/660713/c-how-can-i-assign-a-context-menu-to-a-tray-icon-when-the-tray-icon-is-not-on-th/660866#660866Comment by configurator on C# How can I assign a context menu to a tray icon when the tray icon is not on the same form?configurator2009-11-21T06:10:15Z2009-11-21T06:10:15ZOr he could change the <code>Modifiers</code> in the designer to <code>public</code>.http://stackoverflow.com/questions/268899/how-do-you-convert-multistring-to-from-c-string-collection/268944#268944Comment by configurator on How do you convert multistring to/from C# string collection?configurator2009-11-21T00:45:33Z2009-11-21T00:45:33ZThe TrimEnd here could be omitted with <code>multiString.Split('\0', StringSplitOptions.RemoveEmptyEntries)</code>, since empty strings cannot be stored in a double-null terminated list.http://stackoverflow.com/questions/1686540/sending-file-in-chunks-to-httphandlerComment by configurator on Sending File in Chunks to HttpHandlerconfigurator2009-11-06T10:00:51Z2009-11-06T10:00:51ZWhat does CopyStream do? Try using a StreamReader and read context.Request.TotalBytes bytes from it.http://stackoverflow.com/questions/1673449/this-is-useful-but-im-not-sure-why-it-works/1673541#1673541Comment by configurator on This is useful but I'm not sure why it worksconfigurator2009-11-06T09:55:39Z2009-11-06T09:55:39ZSame thing in VB.Net. I knew the designers of Ada were copycats!http://stackoverflow.com/questions/1679350/unable-to-generate-pdb-files-in-visual-studio-2005/1679400#1679400Comment by configurator on Unable to generate PDB files in Visual Studio 2005configurator2009-11-05T09:45:42Z2009-11-05T09:45:42ZThis is C# though...http://stackoverflow.com/questions/1679258/performant-intersection-and-distinct-element-extraction/1679351#1679351Comment by configurator on Performant intersection and distinct element extraction?configurator2009-11-05T09:39:22Z2009-11-05T09:39:22ZOr you can use a new invention - the <code>OrderedHashSet<T></code>.