Earwicker

21,821
Reputation
2008 views

Registered User

Name Earwicker
Member for 1 year
Seen 6 hours ago
Website
Location GB
Age

In the days when Sussman was a novice, Minsky once came to him as he sat hacking at the PDP-6.

"What are you doing?", asked Minsky.

"I am training a randomly wired neural net to play Tic-tac-toe", Sussman replied.

"Why is the net wired randomly?", asked Minsky.

"I do not want it to have any preconceptions of how to play", Sussman said.

Minsky then shut his eyes.

"Why do you close your eyes?" Sussman asked his teacher.

"So that the room will be empty."

At that moment, Sussman was enlightened.

1d
answered Is Reflection breaking the encapsulation principle?
2d
asked Internal compiler variables appearing in the debugger Locals pane with Rhino ETL
Nov
23
awarded  Nice Answer
Nov
20
accepted What is a Map and how would I use one in C++?
Nov
16
accepted Callbacks (Asynchronous Method Calls) within a Loop
Nov
16
comment C# objects and C++ objects, the difference
C# references are allowed to be null, whereas C++ references are not. Also C# references ensure that their targets will have a lifetime at least as long as every reference to it, whereas C++ references do not. They actually have very little in common. Just about the only common thing is that they can be used without special de-referencing syntax, and so use dot to access members.
Nov
12
comment Merge two lists in python?
"Just as it sounds" - it could have meant [1, 4, 2, 5, 3, 6].
Nov
12
comment Parsing people’s first and last name in Python…
The underlying problem (regardless of implementation language) is not as obviously solveable as it may seem - see this duplicate: stackoverflow.com/questions/103422/…
Nov
12
answered image upload ??????
Nov
11
comment Great programming quotes
Take it easy, BubbaT! He was talking about BASIC, which had little in common with modern dialects. In particular, he would have been thinking of GOTO and line numbers. So he was spot on, no need to wish mutilation on him (anyway, he's been dead 7 years).
Nov
10
comment Does Scala have an equivalent to C# yield?
Although C# iterators can be stateful, they don't have to be. What they allow is writing in a procedural style. There's no reason why functional languages shouldn't support syntax sugar to emulate procedural style. Even the "daddy", Haskell, supports this through its syntactic sugar over the core set of operations on a monad, allowing (for example) IO operations to be written in a way that looks like procedural coding (which is important when the order of the IO side-effects is bound to be crucial). In other words, even the purest language has to find an acceptable way to be impure.
Nov
6
accepted Download File Using C++
Nov
6
awarded  Nice Answer
Nov
3
comment learn C++ or java
Why limit it to C++ and Java? Amazingly, there are other languages!
Nov
2
awarded  Nice Answer
Nov
1
accepted array of integers vs. pointer to integer in c++
Oct
27
awarded  Nice Answer
Oct
21
comment Why are C++0x rvalue reference not the default?
The & suffix is interesting - I hadn't spotted that. It's cool that it allows you to properly enforce the ancient meaning of lvalue (something that can appear on the LHS of an assignment).
Oct
20
awarded  Nice Answer
Oct
19
comment Multithreading in .NET - implementing a counter in the background
+1 this is probably the most generally useful approach. A timer would tick at regular intervals even if nothing had changed, whereas Invoke as used here would only update the GUI when you specifically ask it to.
Oct
19
comment Challenge: C# Foreach - Before, After, Even, Odd, Last, First
How so? foreach executes the statement for each item in the collection, in the exact order they appear in the collection. It has the idea of an ordered sequence built into it.
Oct
19
answered Challenge: C# Foreach - Before, After, Even, Odd, Last, First
Oct
18
comment C++ programmer looking to broaden perspective
+1 from me, anyway. For a C++ programmer, C# is the neatest way to get access to modern language/platform capabilities. The syntax is not distractingly different, but most of the things that are cool about other modern statically-typed languages (type inference, closures, generics, reflection, meta-programming, lazy evaluation/lists, GC) have very good implementations in C#, and interop with your existing C++ code is very easy. So it's perfect.
Oct
18
comment C++ programmer looking to broaden perspective
This is a nice list. Only one quibble: "Java - Everything can be an object". Not a very accurate description of Java. The built-in numeric types are very different from objects.
Oct
17
comment l-value substr method in C++
@sbi - maybe it should, but it won't in C++ see Jerry's updated answer. I think Jerry is right - in this form it doesn't accomplish much; it would be better if we could treat strings (however they are implemented) uniformly, instead of having two types to represent strings. Otherwise, I can't pass a substring to void foo(string &s) to let foo modify it. I'd have to write all such functions as templates, which (on most platforms) pushes code into header files.
Oct
17
comment l-value substr method in C++
But what if I want a substring of a substring?
Oct
16
comment l-value substr method in C++
The point is that the taking of a substring should be a closed operation - it should return another object of the same type, not another proxy class. i.e. string itself would serve as the proxy. Also, the same complexity would obviously exist in any fully capable proxy class.
Oct
16
answered l-value substr method in C++
Oct
16
answered MVP/MVVM - Filtering of lists, who has responsibility?
Oct
15
comment Applying Group By in LINQ
The single-argument overload of WriteLine doesn't do any special processing on the string to look for variable insertions - why would it? It knows it has no arguments to insert. Try it for yourself.
Oct
15
answered C# Delegates Real World Usage
Oct
15
answered Applying Group By in LINQ
Oct
14
accepted Setting List<? extends Interface1>
Oct
14
answered Setting List<? extends Interface1>
Oct
14
comment Action<object, EventArgs> could not be casted to EventHandler?
On whether there is much value in using custom delegate types for events, see stackoverflow.com/questions/1120506/…
Oct
14
comment Action<object, EventArgs> could not be casted to EventHandler?
@Cameron - it has not. The new 4.0 covariance translates between Func<string> and Func<object> where appropriate, but that is because they are both kinds of Func<T> delegate. If they used a different named delegate type, they would be incompatible. The simple solution is to always use Func or Action to represent delegates. They allow up to 8 parameters in 4.0. The only limitation of them is that they don't allow the parameters to be out or ref, which is possible with custom named delegate types.
Oct
14
comment Delphi - most successful applications developed
To be exact, it makes great software that runs in real-time, can control a wide range of devices and can maintain reliable up-time are all reasons why you don't have to reject Delphi. They are not reasons why you'd have to accept it - there are a gazillion other development tools for which all those things are true.
Oct
14
comment Is it possible to cast a graph of objects?
I wonder if you are clear on how object types work in .NET? You cannot change the type of an object after it is created. For value types (int, bool, double, byte, etc), a cast creates a copy of the original object. The copy is of the new type, but the original is unchanged. For reference types, there is no copying. A cast creates a new reference of the target type. The reference points to the same original object, and so the cast will fail (throw an exception) if the new reference's type is not already supported by the original object. So casts never change the type of an object.
Oct
14
comment Is it possible to cast a graph of objects?
It sounds like you've misunderstood something - there is no MyClients class. The only classes I wrote were static classes, as you have to put extension methods in a static class (the name of which is irrelevant). Note the this keyword before the first parameter; that tells the compiler to "attach" the method to object of the same type as that first parameter. The types of all objects (whether clients or address) are unchanged, but they have gained extra capabilities. So it isn't necessary to change the type of anything.
Oct
14
awarded  Yearling
Oct
13
accepted Is it possible to cast a graph of objects?
Oct
13
answered Is it possible to cast a graph of objects?
Oct
13
comment C# type inference : fails where it shouldn’t?
I think it should report an ambiguity if it's ambiguous, but otherwise use the information at its disposal. The workaround for ambiguity is to specify the types (as in David B's snippet). I don't buy this "break far away from source" problem - all programming languages that support reuse of any kind have the ability to let you make a change in one location that breaks code in a thousand other distant locations.
Oct
12
accepted Code Contracts in .NET 4.0, no joy for non-nullable reference types fans?
Oct
12
comment Is Queue.Peek thread safe?
+1 this is the fundamentally important answer!
Oct
12
comment C++ and Java performance
Intense loyalty always arises with programming languages, because people have to concentrate hard on a language in order to become experts at it - and never more so than with C++! Unfortunately this limits awareness of how "my" language compares with those "other" languages.
Oct
12
comment C++ and Java performance
@Konrad - I don't under estimate it - in the comment immediately above I refer to it as a concern that is well served by a compacting GC. And once again, I don't disagree about the power of good C++, which is a phrase that implicitly conjours up an expert and an unlimited amount of development time to devote to performance work. I'm talking every day situations where you'd prefer to focus your efforts on correctness, readability and other important values. By default, managed environments do a good job with memory. By default C++ does not (C++0x with r-value references will be better).
Oct
12
comment C++ and Java performance
One of the arguments in favour of a compacting heap is the greater locality and hence better use of CPU cache. See Richter, CLR via C#.
Oct
12
comment C++ and Java performance
By the way, although GC is not free, neither is the C++ free store. Both add some overhead to each allocated block. In the 32-bit CLR it's 8 bytes. Alexandrescu's chapter on allocators says the typical overhead in C++ is between 4 and 32 bytes. So CLR's hit is toward the low end of the range. And new/delete are hamstrung by the interface they expose (pointers) so they can't compact the heap, forcing them to do some things in a slower way, and leaving them susceptible to fragmentation.
Oct
12
comment C++ and Java performance
@rpg - Again, you aren't hearing what I'm saying. I repeat, up front, C++ will always be able to do computation faster than managed languages, if we employ our hard-won understanding of how to use it well for speed. But what of elegant, simple, readable code, which focuses on design concerns and correctness instead of raw speed? That is what most implementors have to prioritise. If they do that and compare the results in standard C++ versus a managed language, the managed version will perform better. And every iota of effort devoted to performance tuning is taken away from other concerns.