User Neil Williams - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:36:49Zhttp://stackoverflow.com/feeds/user/9617http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1505676/how-to-convert-ip-address-from-char-to-int/1505709#150570917Answer by Neil Williams for how to convert IP address from char to intNeil Williams2009-10-01T18:39:56Z2009-10-01T19:57:53Z<p>You can convert the IP address from a string to an integer using <code>inet_addr</code>, then, after manipulating it, convert it back to a string with <code>inet_ntoa</code>. </p>
<p>See <a href="http://www.opengroup.org/onlinepubs/000095399/functions/inet%5Faddr.html" rel="nofollow">the documentation</a> for these functions for more info on how to use them.</p>
<p>Here's a small function that will do what you want:</p>
<pre><code>// NOTE: only works for IPv4. Check out inet_pton/inet_ntop for IPv6 support.
char* increment_address(const char* address_string)
{
// convert the input IP address to an integer
in_addr_t address = inet_addr(address_string);
// add one to the value (making sure to get the correct byte orders)
address = ntohl(address);
address += 1;
address = htonl(address);
// pack the address into the struct inet_ntoa expects
struct in_addr address_struct;
address_struct.s_addr = address;
// convert back to a string
return inet_ntoa(address_struct);
}
</code></pre>
<p>Include <code><arpa/inet.h></code> on *nix systems, or <code><winsock2.h></code> on Windows.</p>
http://stackoverflow.com/questions/167343/c-lambda-expression-why-should-i-use-this/167392#16739228Answer by Neil Williams for C# Lambda expression, why should I use this?Neil Williams2008-10-03T15:20:38Z2009-07-09T21:50:59Z<p><a href="http://weblogs.asp.net/scottgu/archive/2007/04/08/new-orcas-language-feature-lambda-expressions.aspx" rel="nofollow">Lambda expressions</a> are a simpler syntax for anonymous delegates and can be used everywhere an anonymous delegate can be used. However, the opposite is not true; lambda expressions can be converted to expression trees which allows for a lot of the magic that LINQ to SQL. </p>
<p>The following is an example of a <a href="http://msdn.microsoft.com/en-us/library/bb397919.aspx" rel="nofollow">LINQ to Objects</a> expression using anonymous delegates then lambda expressions to show how much easier on the eye they are:</p>
<pre><code>// anonymous delegate
var evens = Enumerable
.Range(1, 100)
.Where(delegate(int x) { return (x % 2) == 0; })
.ToList();
// lambda expression
var evens = Enumerable
.Range(1, 100)
.Where(x => (x % 2) == 0)
.ToList();
</code></pre>
<p>Lambda expressions and anonymous delegates have an advantage over writing a separate function: they implement <a href="http://en.wikipedia.org/wiki/Closure%5F%28computer%5Fscience%29" rel="nofollow">closures</a> which can allow you to <a href="http://srtsolutions.com/blogs/billwagner/archive/2008/01/22/looking-inside-c-closures.aspx" rel="nofollow">pass local state to the function without adding parameters</a> to the function or creating one-time-use objects.</p>
<p><a href="http://www.interact-sw.co.uk/iangblog/2005/09/30/expressiontrees" rel="nofollow">Expression trees</a> are a very powerful new feature of C# 3.0 that allow an API to look at the structure of an expression instead of just getting a reference to a method that can be executed. An API just has to make a delegate parameter into an <code>Expression<T></code> parameter and the compiler will generate an expression tree from a lambda instead of an anonymous delegate:</p>
<pre><code>void Example(Predicate<int> aDelegate);
</code></pre>
<p>called like:</p>
<pre><code>Example(x => x > 5);
</code></pre>
<p>becomes:</p>
<pre><code>void Example(Expression<Predicate<int>> expressionTree);
</code></pre>
<p>The latter will get passed a representation of the <a href="http://en.wikipedia.org/wiki/Abstract%5Fsyntax%5Ftree" rel="nofollow">abstract syntax tree</a> that describes the expression <code>x > 5</code>. LINQ to SQL relies on this behavior to be able to turn C# expressions in to the SQL expressions desired for filtering / ordering / etc. on the server side.</p>
http://stackoverflow.com/questions/217710/formatting-an-if-statement-for-readability/217717#21771716Answer by Neil Williams for Formatting an if statement for readabilityNeil Williams2008-10-20T07:26:57Z2009-06-16T15:34:35Z<p>Since it looks like the file_exists == false test is done for each of the three cases, I'd do this:</p>
<pre><code>if (strpos($file, '.jpg', 1) || strpos($file, '.gif', 1) || strpos($file, '.png', 1)){
if (!file_exists("$thumbsdir/$file")) {
createThumb(...);
fwrite(...);
}
}
</code></pre>
<p>EDIT:
Also, since the file extension will be closer to the end than the beginning, as a minor tweak you could do strrpos instead of strpos. I'd also probably want to centralize the "is an image" logic:</p>
<pre><code>function is_image($filename) {
$image_extensions = array('png', 'gif', 'jpg');
foreach ($image_extensions as $extension)
if (strrpos($filename, ".$extension") === FALSE)
return true;
return false;
}
if (is_image($file) && !file_exists("$thumbsdir/$file")) {
// do stuff
}
</code></pre>
<p>That way, you could easily change the supported image types.</p>
http://stackoverflow.com/questions/953166/what-is-the-purpose-of-typedefing-a-class-in-c9What is the purpose of typedefing a class in C++?Neil Williams2009-06-04T21:18:37Z2009-06-06T03:21:01Z
<p>I've seen code like the following frequently in some C++ code I'm looking at:</p>
<pre><code>typedef class SomeClass SomeClass;
</code></pre>
<p>I'm stumped as to what this actually achieves. It seems like this wouldn't change anything. What do <code>typedef</code>s like this do? And if this does something useful, is it worth the extra effort?</p>
http://stackoverflow.com/questions/894643/linux-administration-stackoverflow-like-websites/894653#89465313Answer by Neil Williams for Linux administration stackoverflow-like websitesNeil Williams2009-05-21T19:23:39Z2009-06-03T20:31:10Z<p><a href="http://www.serverfault.com" rel="nofollow">ServerFault</a>... so similar it's even run by the same people!</p>
<p>EDIT: It's out of <a href="http://blog.stackoverflow.com/2009/05/server-fault-public-beta-nears/" rel="nofollow">beta</a> now, so you don't need a special password anymore.</p>
http://stackoverflow.com/questions/721870/c-how-can-i-get-type-from-a-string-representation/722012#7220126Answer by Neil Williams for C# How can I get Type from a string representationNeil Williams2009-04-06T15:36:22Z2009-05-27T20:20:23Z<p>The <a href="http://msdn.microsoft.com/en-us/library/w3f99sx1.aspx" rel="nofollow">format for generics</a> is the name, a ` character, the number of type parameters, followed by a comma-delimited list of the types in brackets:</p>
<pre><code>Type.GetType("System.Collections.Generic.IEnumerable`1[System.String]");
</code></pre>
<p>I'm not sure there's an easy way to convert from the C# syntax for generics to the kind of string the CLR wants. I started writing a quick regex to parse it out like you mentioned in the question, but realized that unless you give up the ability to have nested generics as type parameters the parsing will get very complicated.</p>
http://stackoverflow.com/questions/803484/what-is-the-difference-between-the-properties-keys-and-allkeys-on-a-namevaluecoll/803516#8035168Answer by Neil Williams for What is the difference between the properties Keys and AllKeys on a NameValueCollection?Neil Williams2009-04-29T17:53:23Z2009-05-27T20:14:07Z<p><code>AllKeys</code> is an <code>O(n)</code> operation, while <code>Keys</code> is <code>O(1)</code>. This is because <code>AllKeys</code> copies the keys into a new array, while <code>Keys</code> just returns a reference to <code>NameValueCollection</code>'s private key collection. So beyond the difference in performance, the collection returned by <code>Keys</code> will change with the base collection as it's just a reference to the original, while <code>AllKeys</code> will be insulated from the changes because it's a copy.</p>
<p>This little test program shows the difference in behavior:</p>
<pre><code>using System;
using System.Collections.Specialized;
static class Program
{
static void Main()
{
var collection = new NameValueCollection();
var keys = collection.Keys;
var allKeys = collection.AllKeys;
collection.Add("Name", "Value");
Console.WriteLine("Keys: " + keys.Count);
Console.WriteLine("AllKeys: " + allKeys.Length);
Console.ReadLine();
}
}
</code></pre>
<p>The output is:</p>
<pre><code>Keys: 1
AllKeys: 0
</code></pre>
http://stackoverflow.com/questions/168037/creating-a-random-ordered-list-from-an-ordered-list/168088#16808810Answer by Neil Williams for Creating a random ordered list from an ordered list.Neil Williams2008-10-03T17:51:44Z2009-05-27T15:31:08Z<p>You'll want to use a <a href="http://en.wikipedia.org/wiki/Fisher-Yates%5Fshuffle" rel="nofollow">shuffle algorithm.</a> Make sure to use a proper shuffle algorithm and not a home-baked one, because it may introduce some form of subtle pattern to the data. See <a href="http://www.codinghorror.com/blog/archives/001015.html" rel="nofollow">this post by Jeff Atwood about the problem with using "random enough" shuffles.</a></p>
http://stackoverflow.com/questions/885955/whats-the-compelling-reason-to-upgrade-to-visual-studio-2010-from-vs2008/894611#89461118Answer by Neil Williams for What's the compelling reason to upgrade to Visual Studio 2010 from VS2008?Neil Williams2009-05-21T19:16:18Z2009-05-21T20:03:39Z<p><a href="http://research.microsoft.com/en-us/projects/contracts/" rel="nofollow">Code Contracts</a>. The fact that they're statically checked makes them 100x better than asserts and other argument guards to me. </p>
<p>The only thing is I wish C# 4 had a special syntax for it to hide the library calls.</p>
http://stackoverflow.com/questions/885157/c-client-server-protocol-model-question/885175#8851751Answer by Neil Williams for C# client-server protocol/model questionNeil Williams2009-05-19T21:41:56Z2009-05-19T22:23:01Z<p>If you're using TCP, then you will necessarily have to have one socket per client on the server side, as well as the socket to listen for connections. For UDP you can do this all with one socket. Regardless, do the following for either your one UDP socket, or for each TCP client socket:</p>
<p>Have a <code>BeginReceive</code> going at all times and <code>BeginWrite</code> when you the necessary event occurs (ie the user presses a button or a message came in that you need to do something about).</p>
<p>EDIT: In response to your comment, the way I'd handle it would be to include a request ID in your header. Whenever sending a request (from either end) include a unique value for that message. Use a <code>Dictionary<RequestId, RequestState></code> (with appropriate substitutions for the types) and see if an incoming message relates to a pre-existing request. Furthermore, you could specify that all IDs with the high bit set are requests originating at the client and IDs with the high bit cleared are from the server to avoid collisions:</p>
<pre><code>Server Client
Request 0x00 -------------> Starts processing
Starts processing <------- (unrelated) Request 0x80
Request 0x00 complete <---- Sends response to 0x00
Sends response to 0x80 ---> Request 0x80 complete
</code></pre>
<p>This is the system that AOL's OSCAR protocol uses for (possibly slow) stateful requests.</p>
<p>EDIT2: Hm, ok... you really want to block on it? Something you could do is have a separate thread handle the <code>Send</code>/<code>Receive</code> calls. This thread would communicate with the main thread via a thread-safe "send message" queue and a similar "message received" psuedo-queue. The reason I call the latter a psuedo-queue is that you would want the ability to take messages out of order from the queue. The main thread would put a message on the send queue, then block on the receive queue. Each time the socket thread updates the receive queue, the main thread would wake up and check if the message it wants is there yet. If it is, it would take it (out of order) and finish the desired operation. If the message is not there yet, it'd just block on the queue again. When the operation is finally completed it'd just resume normal operation and get messages in order from the receive queue and process them or do whatever else it does.</p>
<p>Does that make any sense? I'm sorry if it's kinda confusing... </p>
http://stackoverflow.com/questions/884934/does-linuxs-splice2-work-when-splicing-from-a-tcp-socket2Does Linux's splice(2) work when splicing from a TCP socket?Neil Williams2009-05-19T20:48:51Z2009-05-19T21:04:15Z
<p>I've been writing a little program for fun that transfers files over TCP in C on Linux. The program reads a file from a socket and writes it to file (or vice versa). I originally used read/write and the program worked correctly, but then I learned about <a href="http://manpages.courier-mta.org/htmlman2/splice.2.html" rel="nofollow">splice</a> and wanted to give it a try. </p>
<p>The code I wrote with splice works perfectly when reading from stdin (redirected file) and writing to the TCP socket, but fails immediately with splice setting errno to EINVAL when reading from socket and writing to stdout. The man page states that EINVAL is set when neither descriptor is a pipe (not the case), an offset is passed for a stream that can't seek (no offsets passed), or the filesystem doesn't support splicing, which leads me to my question: does this mean that TCP can splice <em>from</em> a pipe, but not <em>to</em>?</p>
<p>I'm including the code below (minus error handling code) in the hopes that I've just done something wrong. It's based heavily on the <a href="http://en.wikipedia.org/wiki/Splice%5F%28system%5Fcall%29#Example" rel="nofollow">Wikipedia example for splice</a>.</p>
<pre><code>static void splice_all(int from, int to, long long bytes)
{
long long bytes_remaining;
long result;
bytes_remaining = bytes;
while (bytes_remaining > 0) {
result = splice(
from, NULL,
to, NULL,
bytes_remaining,
SPLICE_F_MOVE | SPLICE_F_MORE
);
if (result == -1)
die("splice_all: splice");
bytes_remaining -= result;
}
}
static void transfer(int from, int to, long long bytes)
{
int result;
int pipes[2];
result = pipe(pipes);
if (result == -1)
die("transfer: pipe");
splice_all(from, pipes[1], bytes);
splice_all(pipes[0], to, bytes);
close(from);
close(pipes[1]);
close(pipes[0]);
close(to);
}
</code></pre>
<p>On a side note, I think that the above will block on the first <code>splice_all</code> when the file is large enough due to the pipe filling up(?), so I also have a version of the code that <code>fork</code>s to read and write from the pipe at the same time, but it has the same error as this version and is harder to read.</p>
<p>EDIT: My kernel version is 2.6.22.18-co-0.7.3 (running coLinux on XP.)</p>
http://stackoverflow.com/questions/540347/is-it-possible-to-run-native-code-on-top-of-a-managed-os/831138#8311380Answer by Neil Williams for Is it possible to run "native" code on top of a managed OS?Neil Williams2009-05-06T18:54:25Z2009-05-13T21:34:25Z<p>From the MS Research paper <a href="http://research.microsoft.com/pubs/69431/osr2007%5Frethinkingsoftwarestack.pdf" rel="nofollow">Singularity: Rethinking the Software Stack</a> (p9):</p>
<blockquote>
<p>A protection domain could, in principle, host a single process
containing unverifiable code written in an unsafe language such as
C++. Although very useful for running legacy code, we have not
yet explored this possibility. Currently, all code within a
protection domain is also contained within a SIP, which continues
to provide an isolation and failure containment boundary.</p>
</blockquote>
<p>So it seems like, though unexplored at the moment, it is a distinct possibility. Unmanaged code could run in a hardware protected domain, it would take a performance hit from having to deal with virtual memory, the TLB, etc. but the system as a whole could maintain its invariants safely while running unmanaged code.</p>
http://stackoverflow.com/questions/855123/is-it-possible-to-make-a-factory-in-c-that-complies-with-the-open-closed-princi1Is it possible to make a factory in C++ that complies with the open/closed principle?Neil Williams2009-05-12T22:07:49Z2009-05-12T23:03:06Z
<p>In a project I'm working on in C++, I need to create objects for messages as they come in over the wire. I'm currently using the <a href="http://www.parashift.com/c%2B%2B-faq-lite/ctors.html#faq-10.12" rel="nofollow">factory method pattern</a> to hide the creation of objects:</p>
<pre><code>// very psuedo-codey
Message* MessageFactory::CreateMessage(InputStream& stream)
{
char header = stream.ReadByte();
switch (header) {
case MessageOne::Header:
return new MessageOne(stream);
case MessageTwo::Header:
return new MessageTwo(stream);
// etc.
}
}
</code></pre>
<p>The problem I have with this is that I'm lazy and don't like writing the names of the classes in two places! </p>
<p>In C# I would do this with some reflection on first use of the factory (bonus question: that's an OK use of reflection, right?) but since C++ lacks reflection, this is off the table. I thought about using a registry of some sort so that the messages would register themselves with the factory at startup, but this is hampered by the <a href="http://www.parashift.com/c%2B%2B-faq-lite/ctors.html#faq-10.12" rel="nofollow">non-deterministic (or at least implementation-specific) static initialization order problem</a>. </p>
<p>So the question is, is it possible to implement this type of factory in C++ while respecting the open/closed principle, and how?</p>
<p>EDIT: Apparently I'm overthinking this. I intended this question to be a "how would you do this in C++" since it's really easy to do with reflection in other languages. </p>
http://stackoverflow.com/questions/854171/backgroundworkerthread-access-in-a-thread/854294#8542941Answer by Neil Williams for BackgroundWorkerThread access in a threadNeil Williams2009-05-12T18:56:41Z2009-05-12T19:09:19Z<p><code>RunWorkerAsync</code> does its thread-synchronization magic by getting the <a href="http://msdn.microsoft.com/en-us/library/system.threading.synchronizationcontext.aspx" rel="nofollow"><code>SynchronizationContext</code></a> from the thread that it is called on. It then guarantees that the events will be executed on the correct thread according to the semantics of the <code>SynchronizationContext</code> it got. In the case of the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.windowsformssynchronizationcontext.aspx" rel="nofollow"><code>WindowsFormsSynchronizationContext</code></a>, which is what is automatically used if you're using WinForms, the events are synchronized by posting to the message queue of the thread that started the operation. Of course, this is all transparent to you until it breaks.</p>
<p>EDIT: You MUST call <code>RunWorkerAsync</code> from the UI thread for this to work. If you can't do it any other way, your best bet is to invoke the beginning of the operation on a control so that the worker is started on the UI thread:</p>
<pre><code>private void RunWorker()
{
_worker = new BackgroundWorker();
_worker.DoWork += delegate
{
// do work
};
_worker.RunWorkerCompleted += delegate
{
MessageLabel.Text = "Completed";
};
_worker.RunWorkerAsync();
}
// ... some code that's executing on a non-UI thread ...
{
MessageLabel.Invoke(new Action(RunWorker));
}
</code></pre>
http://stackoverflow.com/questions/831888/custom-primitives-in-c/831896#83189613Answer by Neil Williams for Custom primitives in C#?Neil Williams2009-05-06T21:35:21Z2009-05-06T21:41:10Z<p>Use a value type (<code>struct</code>) and give it an <a href="http://msdn.microsoft.com/en-us/library/z5z9kes2.aspx" rel="nofollow">implicit conversion operator</a> from the type you want on the right hand side of assignment.</p>
<pre><code>struct MyPrimitive
{
private readonly string value;
public MyPrimitive(string value)
{
this.value = value;
}
public string Value { get { return value; } }
public static implicit operator MyPrimitive(string s)
{
return new MyPrimitive(s);
}
public static implicit operator string(MyPrimitive p)
{
return p.Value;
}
}
</code></pre>
<p>EDIT: Made the struct immutable because Marc Gravell is absolutely right.</p>
http://stackoverflow.com/questions/830222/would-this-singleordefault-optimization-be-worthwhile-or-is-it-overkill-harmf/830796#8307963Answer by Neil Williams for Would this SingleOrDefault() optimization be worthwhile or is it overkill / harmful?Neil Williams2009-05-06T17:37:37Z2009-05-06T17:43:05Z<p><code>Single</code> is more of a convenience method to get the single element of a query than a way to limit the number of results. By using <code>Single</code> you are, in effect, saying "I know this query can only have one item, so just give it to me," just like when doing <code>someArray[0]</code> when you know there will only be one element. <code>SingleOrDefault</code> adds the ability to return <code>null</code> rather than throwing an exception when dealing with sequences of length 0. You shouldn't be using <code>Single</code> or <code>SingleOrDefault</code> with queries that may return more than 1 result: an <code>InvalidOperationException</code> will be thrown. </p>
<p>If <code>ID</code> in your query is the primary key of the table, or a <code>UNIQUE</code> column, the database will ensure that the result set contains 1 row or none with no need for a <code>TOP</code> clause.</p>
<p>However, if you are selecting on a non-unique / non-key column and want the first result or last result (note that these have no meanings unless you also introduce an <code>OrderBy</code>) then you can use <code>First</code> or <code>Last</code> (which both have <code>OrDefault</code> counterparts) to get the SQL you desire:</p>
<pre><code>var query = from s in context.Singles
where s.Id == id
orderby s.someOtherColumn
select s;
var item = query.FirstOrDefault();
</code></pre>
<p>On a side note, you can save yourself some typing if you are, indeed, doing a query for a single element:</p>
<pre><code>var query = from s in context.Singles where s.Id == id select s;
var item = query.SingleOrDefault();
</code></pre>
<p>can become:</p>
<pre><code>var item = context.Singles.SingleOrDefault(s => s.Id == id);
</code></pre>
http://stackoverflow.com/questions/812787/graph-navigation-with-c/812804#8128042Answer by Neil Williams for Graph navigation with C#Neil Williams2009-05-01T19:09:22Z2009-05-01T19:09:22Z<p>Since you said the edges are all of the same weight, <a href="http://en.wikipedia.org/wiki/Dijkstra%27s%5Falgorithm" rel="nofollow">Dijkstra's algorithm</a> (my usual first choice for this sort of thing) will just degrade to <a href="http://en.wikipedia.org/wiki/Breadth-first%5Fsearch" rel="nofollow">breadth first search</a> so I suggest using that for simplicity.</p>
http://stackoverflow.com/questions/808119/explain-this-linq-code/808150#8081505Answer by Neil Williams for Explain this LINQ code?Neil Williams2009-04-30T17:35:37Z2009-04-30T17:42:26Z<p>The LINQ operators use what's called a <a href="http://en.wikipedia.org/wiki/Fluent%5Finterface" rel="nofollow">fluent interface</a>, so you can read the first line as a series of function calls. Assuming that <code>lstAvailableColors</code> is <code>IEnumerable<T></code>, the idea is that each available color flows through the LINQ operators.</p>
<p>Let's break it down:</p>
<pre><code>var selected = lstAvailableColors
// each item is cast to ListItem type
.Cast<ListItem>()
// items that don't pass the test (Selected == true) are dropped
.Where(i => i.Selected)
// turn the stream into a List<ListItem> object
.ToList();
</code></pre>
<p>EDIT: As JaredPar pointed out, the last line above (<code>ToList()</code>) is very important. If you didn't do this, then each of the two <code>selected.ForEach</code> calls would re-run the query. This is called <a href="http://blogs.msdn.com/charlie/archive/2007/12/09/deferred-execution.aspx" rel="nofollow">deferred execution</a> and is an important part of LINQ.</p>
<p>You could rewrite this first line like this:</p>
<pre><code>var selected = new List<ListItem>();
foreach (var item in lstAvailableColors)
{
var listItem = (ListItem)item;
if (!listItem.Selected)
continue;
selected.Add(listItem);
}
</code></pre>
<p>The last two lines are just another way to write a foreach loop and could be rewritten as:</p>
<pre><code>foreach (var x in selected)
{
lstSelectedColors.Items.Add(x);
}
foreach (var x in selected)
{
lstAvailableColors.Items.Remove(X);
}
</code></pre>
<p>Probably the hardest part of learning LINQ is learning the flow of data and the syntax of <a href="http://msdn.microsoft.com/en-us/library/bb397687.aspx" rel="nofollow">lambda expressions</a>. </p>
http://stackoverflow.com/questions/49092/online-interactive-consoles/757716#7577161Answer by Neil Williams for Online Interactive ConsolesNeil Williams2009-04-16T19:32:56Z2009-04-16T19:32:56Z<p>Google came out with <a href="http://lotrepls.appspot.com/" rel="nofollow">Lord of the REPLs</a> which supports, among other things, Scheme, Python, Ruby, and Scala.</p>
http://stackoverflow.com/questions/747991/list-all-dlls-implementing-a-specific-interface-from-the-gac/748095#7480952Answer by Neil Williams for List all DLL's implementing a specific interface from the GACNeil Williams2009-04-14T15:18:37Z2009-04-14T15:18:37Z<p>To add to BFree's answer, I suggest that you could <a href="http://msdn.microsoft.com/en-us/library/ms172331.aspx" rel="nofollow">load the assemblies for reflection only</a>. This gives you enhanced security (the assemblies aren't able to execute at all) without appdomains, and flexibility (you can load assemblies that are for a different architecture). </p>
http://stackoverflow.com/questions/736230/interface-exposes-type-a-but-implementation-requires-type-b-subclass-of-a/736266#7362660Answer by Neil Williams for Interface exposes type A, but implementation requires type B (subclass of A)Neil Williams2009-04-09T23:45:28Z2009-04-09T23:45:28Z<p>I'm not sure if this is what you want, but it seems to me you could try doing it with generics:</p>
<pre><code>public interface Observation<T> where T : UniqueKey
{
T Key { get; }
}
public interface ObservationDataSource<T> where T : UniqueKey
{
Observation<T> GetObservationByUniqueKey(T key);
}
</code></pre>
<p>Now the interface is strongly typed with the specific subclass of UniqueKey that your class requires. </p>
http://stackoverflow.com/questions/730561/using-generics-its-declared-as-a-button-but-is-treated-as-a-control-internal-to-c/730780#7307802Answer by Neil Williams for Using generics its declared as a Button but is treated as a Control internal to class. Why?Neil Williams2009-04-08T16:25:13Z2009-04-08T20:41:35Z<p>To build on munificent's answer: Unlike C++ templates, <a href="http://blogs.msdn.com/ericlippert/archive/2007/06/18/calling-static-methods-on-type-variables-is-illegal-part-two.aspx" rel="nofollow">C# generics are not instantiated at compile time</a>. The code generated by the C# compiler for a generic type is completely agnostic to the specializations you use in your code. The compiler spits out one piece of code that works for any substitution of type parameters that meets the constraints. It isn't until runtime, when an instance of a fully specified generic type is instantiated, that the JIT compiler will create code specific to your type parameters.</p>
<p>Since the code that is generated works for anything that meets the criteria of the constraints, the C# compiler treats your <code>MyControl</code> member as a variable of type <code>Control</code> (not <code>T</code>) since that is as much as it can infer from the constraints. Since the compiler has to emit generic code for the class, it must choose which method to call based on what it knows, and since it can't be sure whether or not <code>MyControl</code> will be a <code>Button</code> at runtime, it must choose <code>Draw(Control)</code>. </p>
http://stackoverflow.com/questions/723211/quick-way-to-create-a-list-of-values-in-c/723219#7232199Answer by Neil Williams for Quick way to create a list of values in C#?Neil Williams2009-04-06T21:01:57Z2009-04-06T21:01:57Z<p>Check out C# 3.0's <a href="http://www.developer.com/net/csharp/article.php/3607421" rel="nofollow">Collection Initializers</a>.</p>
<pre><code>var list = new List<string> { "test1", "test2", "test3" };
</code></pre>
http://stackoverflow.com/questions/710670/c-permutation-of-an-array-of-arraylists/710823#7108231Answer by Neil Williams for C# Permutation of an array of arraylists?Neil Williams2009-04-02T17:45:01Z2009-04-02T17:45:01Z<p>You could use <a href="http://en.wikipedia.org/wiki/Factoradic" rel="nofollow">factoradics</a> to generate the enumeration of permutations. Try <a href="http://msdn.microsoft.com/en-us/library/aa302371.aspx" rel="nofollow">this article on MSDN</a> for an implementation in C#. </p>
http://stackoverflow.com/questions/664060/net-packing-controls/664099#6640991Answer by Neil Williams for .NET Packing Controls?Neil Williams2009-03-19T21:14:34Z2009-04-02T17:39:36Z<p>It seems to me that you're looking for an implementation of the <a href="http://en.wikipedia.org/wiki/Bin%5Fpacking%5Fproblem" rel="nofollow">Bin Packing Problem</a>. It's an NP Hard problem, so you'll not find any fast-and-correct algorithm. I did a quick search and couldn't find any components that even use a heuristic for this, but found plenty of papers describing heuristics for getting approximations of the answer. Good luck!</p>
http://stackoverflow.com/questions/708090/simple-select-nth-highest/708149#7081492Answer by Neil Williams for Simple select nth highestNeil Williams2009-04-02T03:15:34Z2009-04-02T03:15:34Z<p>I tried EXPLAIN on both those queries on a database of mine (note: the optimizer may choose different plans for your schema/data) and it definitely looks like the first one wins in every regard: it's simpler to read and understand, and will most likely be faster. </p>
<p>As aaronls said, and EXPLAIN confirms, the second query has a correlated subquery which will require an extra iteration through the entire table for each row. </p>
<p>Since the first one is way easier to read, I'd choose it in a shot. If you do find that it's a bottleneck (after profiling your application), you could give the second a try but I don't see how it could possibly be faster.</p>
http://stackoverflow.com/questions/704108/how-do-i-compute-equinox-solstice-moments/704119#7041191Answer by Neil Williams for How do I compute equinox/solstice moments?Neil Williams2009-04-01T05:01:39Z2009-04-01T05:01:39Z<p>I'm not sure if this is an accurate enough solution for you, but I found a <a href="http://aom.giss.nasa.gov/srvernal.html" rel="nofollow">NASA website</a> that has some code snippets for calculating the vernal equinox as well as some other astronomical-type information. I've also found some references to a book called <a href="http://rads.stackoverflow.com/amzn/click/0943396611" rel="nofollow">Astronomical Algorithms</a> which may have the answers you need if the info somehow isn't available online.</p>
http://stackoverflow.com/questions/701561/how-to-set-breakpoint-in-this-way/701568#7015684Answer by Neil Williams for how to set breakpoint in this way?Neil Williams2009-03-31T15:24:11Z2009-03-31T15:29:50Z<p>Try <a href="http://msdn.microsoft.com/en-us/library/350dyxd0%28VS.80%29.aspx" rel="nofollow">setting a data breakpoint</a>.</p>
<p>In Visual Studio:</p>
<ul>
<li>Go to Debug >> New Breakpoint >> New Data Breakpoint</li>
<li>Enter the address you want to watch (or an expression that evaluates to an address; such as &foo)</li>
<li>Enter the number of bytes to watch at that address</li>
<li>Click OK, run your program in the debugger, and wait!</li>
</ul>
http://stackoverflow.com/questions/695986/how-do-you-implement-an-interface-in-ironpython/696004#6960043Answer by Neil Williams for How do you implement an interface in IronPython?Neil Williams2009-03-30T04:32:38Z2009-03-30T04:41:50Z<p>I'm not sure of this, but it looks like you could do it with the regular inheritance syntax of python:</p>
<pre><code>class SomeClass (ISomeInterface):
def SomeMethod(self, parameter):
pass
</code></pre>
<p>EDIT: Ok, I just tested it and confirmed that you can implement an interface in IronPython this way. Just "inherit" the interface, implement its methods as you would any other class method, and enjoy!</p>
http://stackoverflow.com/questions/695591/is-there-any-tool-to-convert-from-xaml-to-c-code-behind/695978#6959781Answer by Neil Williams for Is there any tool to convert from XAML to C# (code behind)?Neil Williams2009-03-30T04:04:56Z2009-03-30T04:04:56Z<p>Why do you need to convert the XAML to procedural code? If I read one of your comments correctly it's because you need to change values at runtime. If this is the case, <a href="http://msdn.microsoft.com/en-us/library/ms750612.aspx" rel="nofollow">data binding</a> may be better. Could you describe what you're trying to do with the C# that you can't do with XAML?</p>
http://stackoverflow.com/questions/1505676/how-to-convert-ip-address-from-char-to-int/1505709#1505709Comment by Neil Williams on how to convert IP address from char to intNeil Williams2009-10-02T04:36:45Z2009-10-02T04:36:45ZJust use <code>unsigned long</code> instead of <code>in_addr_t</code>. You'll also probably have to capitalize the S in <code>s_addr</code> (so it should look like <code>S_addr</code>.) I don't have access to a Windows computer at the moment, so I hope that does it.http://stackoverflow.com/questions/1505676/how-to-convert-ip-address-from-char-to-int/1505709#1505709Comment by Neil Williams on how to convert IP address from char to intNeil Williams2009-10-01T19:52:07Z2009-10-01T19:52:07Z@R. Bemrose IPv6 just complicates this question unnecessarily; the original question stated that the address would be in dotted quad format which implies IPv4 only. I'll gladly update the code if you have any suggestions for replacing the htonl/ntohl calls with something that'll work for IPv6 addresses.http://stackoverflow.com/questions/661939/where-can-i-download-an-offline-installer-of-cygwin/661953#661953Comment by Neil Williams on Where can I download an offline installer of Cygwin?Neil Williams2009-07-02T20:27:49Z2009-07-02T20:27:49ZMinGW does not have a Unix emulation layer. It's just a native port of the gcc toolchain. From the MinGW website: "MinGW provides a complete Open Source programming tool set which is suitable for the development of native MS-Windows applications, and which do not depend on any 3rd-party C-Runtime DLLs."http://stackoverflow.com/questions/1040498/when-to-leave-space-when-not-in-css/1040527#1040527Comment by Neil Williams on when to leave space ,when not in CSS?Neil Williams2009-06-24T19:48:06Z2009-06-24T19:48:06ZI'm not sure what you mean by "immediate descendant," but "li .highlight" selects elements with class "highlight" contained by an li element; "li > .highlight" would be the syntax for selecting immediate children only. <a href="http://www.w3.org/TR/CSS2/selector.html#selector-syntax" rel="nofollow">w3.org/TR/CSS2/…</a>http://stackoverflow.com/questions/983030/type-checking-typeof-gettype-or-is/983055#983055Comment by Neil Williams on Type Checking: typeof, GetType, or is?Neil Williams2009-06-11T19:33:13Z2009-06-11T19:33:13Z+1 for as, a great operator.http://stackoverflow.com/questions/983030/type-checking-typeof-gettype-or-is/983057#983057Comment by Neil Williams on Type Checking: typeof, GetType, or is?Neil Williams2009-06-11T19:31:30Z2009-06-11T19:31:30ZThe latter isn't really using inheritance, either. Foo should be a virtual method of Entity that is overridden in Person and Animal.http://stackoverflow.com/questions/953166/what-is-the-purpose-of-typedefing-a-class-in-c/954445#954445Comment by Neil Williams on What is the purpose of typedefing a class in C++?Neil Williams2009-06-05T15:17:23Z2009-06-05T15:17:23ZThat's really interesting; the answers I've gotten to this question make me glad I asked this question on here. http://stackoverflow.com/questions/953166/what-is-the-purpose-of-typedefing-a-class-in-c/953249#953249Comment by Neil Williams on What is the purpose of typedefing a class in C++?Neil Williams2009-06-05T02:01:02Z2009-06-05T02:01:02Z@jpinto I actually had this one marked as correct before, and though it answers why it's done, it doesn't actually answer if it's worth it. The makers of SO have said before that the community idea of "best answer" and the asker's idea of "best answer" can be different and that's by design.http://stackoverflow.com/questions/953166/what-is-the-purpose-of-typedefing-a-class-in-c/953332#953332Comment by Neil Williams on What is the purpose of typedefing a class in C++?Neil Williams2009-06-04T22:00:27Z2009-06-04T22:00:27ZThanks for answering that question, that's what I really wanted to know. I'd never seen it done before, so I had a feeling it'd not be worth it.http://stackoverflow.com/questions/953166/what-is-the-purpose-of-typedefing-a-class-in-cComment by Neil Williams on What is the purpose of typedefing a class in C++?Neil Williams2009-06-04T21:51:45Z2009-06-04T21:51:45ZI wanted to get a consensus on if it's actually worth it, rather than one person's explanation. http://stackoverflow.com/questions/953166/what-is-the-purpose-of-typedefing-a-class-in-c/953249#953249Comment by Neil Williams on What is the purpose of typedefing a class in C++?Neil Williams2009-06-04T21:48:19Z2009-06-04T21:48:19ZI tried it with the Comeau online compiler and it failed as desired there. So I guess this must be why it's in the code. Still seems pointless to me since people should just not write code like that!http://stackoverflow.com/questions/953166/what-is-the-purpose-of-typedefing-a-class-in-c/953249#953249Comment by Neil Williams on What is the purpose of typedefing a class in C++?Neil Williams2009-06-04T21:40:45Z2009-06-04T21:40:45ZYour second example compiles for me (VC2005).http://stackoverflow.com/questions/953166/what-is-the-purpose-of-typedefing-a-class-in-c/953244#953244Comment by Neil Williams on What is the purpose of typedefing a class in C++?Neil Williams2009-06-04T21:37:27Z2009-06-04T21:37:27ZIt's possible, but I wouldn't really call C's behavior "name hiding." http://stackoverflow.com/questions/918908/how-difficult-is-it-to-learn-f-for-experienced-c-3-0-developers/918963#918963Comment by Neil Williams on How difficult is it to learn F# for experienced C# 3.0 developers?Neil Williams2009-05-28T20:55:16Z2009-05-28T20:55:16Z@Perpetualcoder: Hadn't seen that, thanks.http://stackoverflow.com/questions/41898/how-do-you-choose-an-open-source-license/41913#41913Comment by Neil Williams on How do you choose an open-source license?Neil Williams2009-05-28T20:53:17Z2009-05-28T20:53:17ZWatch out for the two meanings of "free" in this context; you CAN sell GPL'd software, and it can even be used in a commercial context. See <a href="http://www.gnu.org/philosophy/selling.html" rel="nofollow">gnu.org/philosophy/selling.html</a>