3
votes
Significant new inventions in computing since 1980
Electrically Erasable Programmable Memory, generalized into non volatile read/write memory the most well known and ubiquitous currently being Flash.
…
12
votes
What makes code legacy?
It is a very general (and oft abused term) but any of the following would be legitimate reasons to call an app legacy:
The code base is based on a language/platform which is entire …
2
votes
Why would var be a bad thing?
Forbidding it entirely means forbidding the use of anonymous types (which become incredibly useful as you use LINQ more).
This is stupidity plain and simple unless someone can formalise a g …
5
votes
Why is Syntactic Sugar sometimes considered a bad thing?
Syntactic sugar can in some cases interact in unpleasant ways.
some specific examples:
The first is c# (or java) specific, Auto boxing and the lock/synchronized construct
…
13
votes
2
votes
Which C#/.NET blogs do you read?
As a jump off point to find other blogs you might find interesting Charlie Calvert's Community Blog is excellent
…
2
votes
Ab-using languages
It would be better if the disposable object returned from cb.Function(name) was the object on which the statements should be added. That internally this function builder passed through the …
2
votes
C# (.NET) Design Flaws
The awful (and quite invisible to most people) O(N^2) behaviour of nested/recursive iterators. …
5
votes
Why is C# suddenly so popular?
Specifically answering the question "There's been like a repeat explosion in the blogs lately about it"
Microsoft have added a significant language change in each major release rat …
3
votes
What “Never Events” for Software Development are there?
In the style of the linked article where mistaken identity (of body parts, people) features heavily
Never perform an action on a production box thinking it is Test/DR.
This means: …
1
vote
What “Never Events” for Software Development are there?
Failure to focus on the customer(s).
It matters not whether the customer is:
Real or Notional …
1
vote
Custom Exception Messages: Best practices
I strongly recommend the advice on Krzysztof's blog and would note that in your case you see …
8
votes
Is there any reason to write terse code in Java/C#/C++?
Code should be as terse as necessary and no more. :)
Flippant remarks aside there are several factors affecting just how terse (or otherwise) it should be:
Lifespan.
…
4
votes
Should C# introduce a syntactic short-hand for IEnumerable<T>?
I think characters are reasonable for these and like how f# does it which is to call them Sequences and have seq<T>.
That said in most cases I rarely write IEnumera …
0
votes
What types of coding anti-patterns do you always refactor when you cross them?
Deletion/updating of comments which are clearly wrong or clearly pointless.
Removing them is:
safe
version control means you can find them again
improves the q …
