Greg Beech
|
Registered User
|
Development lead at blinkbox. If you're bored then check it out! You can browse hundreds of movie clips and trailers, and watch television online for free. And it's all completely legal!
|
|
1d |
comment |
Speedup a php web site How long is a piece of string and how much longer can it be? |
|
1d |
comment |
Examples of programmers being stupid @Kyralessa - Yes I know. I said that in the answer. That was the whole point of the answer. You're taking that quote out of context; it was replying to tharkun with the meaning that the block does not have any other functionality as written. |
|
2d |
comment |
How to print 1 to 100 without any looping using C# Gratuitous "but first you have to understand recursion" comment. |
|
2d |
comment |
I want my webview to stop bouncing Is there a question in here anywhere...? |
|
Nov 27 |
answered | How to find if a value is in an array in Visual C# |
|
Nov 26 |
accepted | Logging raw HTTP request/response in ASP.NET MVC & IIS7 |
|
Nov 26 |
answered | Logging raw HTTP request/response in ASP.NET MVC & IIS7 |
|
Nov 26 |
comment |
What is .NET technology Seriously... lmgtfy.com/?q=.net The first couple of links are pretty relevant... |
|
Nov 26 |
answered | What is the easiest way to do inter process communication in C#? |
|
Nov 25 |
comment |
Is ASP.NET MVC a good option for developing a Services layer and/or API? Any reasoning for this at all? For a public API I would almost always disagree with you based on past experience. |
|
Nov 25 |
comment |
SQL Server full text search error: Full-text crawl manager has not been initialized. Well I never worked out how to fix it, but at least I earned the Tumbleweed badge. Some consolation I guess. So I just got a new machine built instead of fixing it. That works, if anyone's ever looking for the answer. |
|
Nov 25 |
awarded | ● Tumbleweed |
|
Nov 24 |
comment |
How much should I “stretch the truth” on my resume? @Robert - Trust me, as somebody who's interviewed a fair few people, it's very easy to see through people who do this type of thing. And if the interviewer thinks you're bluffing then they're likely to start pushing you on the things you don't want to be pushed on just to see how much you're bluffing. One of the things I might ask (in fact I very likely would) is the five things you dislike most about Ruby or SQL which is far more revealing about your actual knowledge as you have to know something in depth to answer that question well. |
|
Nov 24 |
comment |
SQL Server 2008 Performance Question @keithwarren7 - I think the point Remus is trying to make is that the question is relative "is this reasonable?" with no way of making a qualitative decision as to whether it is or not. So on a system that is capable of delivering that performance, then yes it is a reasonable performance for that system. |
|
Nov 24 |
answered | SQL Server 2008 Performance Question |
|
Nov 24 |
comment |
C# Auto Property - Is this ‘pattern’ best practice? @peterchen - Typically instance members should not be thread-safe by default, unless they are specifically designed for multi-threaded operation. The List<T> class is not thread safe itself, so there's little point in making the instantiation of it thread safe -- any safety will need to come from a higher level of abstraction. |
|
Nov 24 |
comment |
Select * vs Specifying Column Names To the down-voters... would you mind leaving a comment as to why you're down-voting? Do you not agree with this analysis? If there's something I've missed then I'd be interested to learn too. |
|
Nov 24 |
accepted | data types and structs in C# |
|
Nov 24 |
comment |
data types and structs in C# There's no difference. String and Int32 are the actual type names in the .NET Framework. string and int are aliases for them defined by the C# language (probably to make it more like C/C++). |
|
Nov 24 |
answered | data types and structs in C# |
|
Nov 23 |
comment |
C# naming convention for constants? @bdukes - I didn't say it was a Microsoft product, however it does have quite a lot of usage and support throughout the organisation (as a former employee, I was using it years before anybody outside Microsoft got their hands on it, so I'm well aware of its heritage). |
|
Nov 23 |
accepted | .net request.GetResponse() is giving me a ProtocolViolationException when header last-modified contains string “Fri, 20 Nov 2009 15:53:16 E. Australia Standard Time” ? |
|
Nov 23 |
answered | .net request.GetResponse() is giving me a ProtocolViolationException when header last-modified contains string “Fri, 20 Nov 2009 15:53:16 E. Australia Standard Time” ? |
|
Nov 23 |
awarded | ● Nice Answer |
|
Nov 20 |
comment |
Select * vs Specifying Column Names @Murph - Indeed, that's why it's kind of a redundant comparison, because in production you'd only ever ask for specific columns, and if you're not in production then performance doesn't matter. |
|
Nov 20 |
accepted | Select * vs Specifying Column Names |
|
Nov 20 |
answered | Select * vs Specifying Column Names |
|
Nov 20 |
answered | Is there really a performance hit when catching exceptions |
|
Nov 20 |
accepted | cookie not deleting |
|
Nov 20 |
answered | cookie not deleting |
|
Nov 20 |
answered | Is this good XML? |
|
Nov 20 |
answered | is there a difference between [Serializable] and [Serializable()] in c#? |
|
Nov 20 |
answered | What do you wish Fiddler could do that it can’t… or that you can’t figure out how to do? |
|
Nov 20 |
comment |
Do sealed classes really offer performance Benefits? Encapsulation is generally a better solution than inheritance. To take your specific thread example, trapping thread exceptions breaks the Liskov Substitution Principle because you've changed the documented behaviour of the Thread class, so even if you could derive from it, it would not be reasonable to say that you could use SafeThread everywhere you could use Thread. In this case, you would be better to encapsulate Thread into another class which has different documented behaviour, which you are able to do. Sometimes things are sealed for your own good. |
|
Nov 20 |
comment |
Do sealed classes really offer performance Benefits? @Steven A. Lowe - I think what Jeffrey Richter was trying to say in a slightly roundabout way is that if you leave your class unsealed you need to think about how derived classes can/will use it, and if you don't have the time or inclination to do this properly, then seal it as it's less likely to cause breaking changes in others' code in future. That's not nonsense at all, it's good common sense. |
|
Nov 20 |
answered | use of “using” keyword in c# |
|
Nov 20 |
comment |
Array.IsReadOnly inconsistent depending on interface implementation Looks like this gives the internal reasoning (which appears to be "we know it's rubbish but it's too late in the release cycle to do anything about it"). So it's by design, but not a good one. |
|
Nov 19 |
comment |
Array.IsReadOnly inconsistent depending on interface implementation That doesn't actually answer the question at all; there is no justification for why the IsReadOnly property returns a different value for the underlying array. |
|
Nov 19 |
comment |
Array.IsReadOnly inconsistent depending on interface implementation The explanation that ICollection<T>.IsReadOnly returns true because it can't satisfy all methods of the ICollection<T> interface doesn't really hold water because IList.IsReadOnly returns false and it can't satisfy all methods of the IList interface either. So I still don't know whether this is a bug, or if not what the rationale behind the decision was. |
|
Nov 19 |
asked | Array.IsReadOnly inconsistent depending on interface implementation |
|
Nov 18 |
comment |
C# += (plus equals) (Assignment by addition) working very slow, when string is too long? An improvement would be to set the initial capacity also. If you're allocating 7000 * 2000 character strings, then set the initial capacity to 14000000 to avoid repeated growing of the buffer. |
|
Nov 18 |
revised |
Duplicate Referrer Header - HTTP.sys barfs edited tags |
|
Nov 18 |
asked | Searching and ranking short phrases (e.g. movie titles) |
|
Nov 18 |
asked | SQL Server full text search error: Full-text crawl manager has not been initialized. |
|
Nov 17 |
comment |
c# - file mask If you're looking at windows then this isn't right. For example given the mask "*.asp" it will match "foo.asp" and "foo.aspx" and "foo.aspxx", however given the mask "*.aspx" it will only mask "foo.aspx". There are special rules for three-character extensions. |
|
Nov 17 |
answered | Generally a Good Idea to Always Hash Unique Identifiers in URL? |
|
Nov 17 |
comment |
High-level multithreading/concurrency abstractions for .NET @SpaceghostAli - How can you say that .NET is only designed for the object-oriented paradigm, followed immediately by saying that F# (a language that runs on it) is functional? Also, are you forgetting about things like Linq which is designed solely to allow functional programming? |
|
Nov 17 |
comment |
Unable to copy file Oh come on, at least make a bit of an effort to describe your problem. Do you really expect anybody to spend their own time helping you out for free if you just cut and paste an error message? |
|
Nov 17 |
comment |
Cannot modify the return value error c# If the Point is a member of a reference type then it will not be on the stack, it will be on the heap in the containing object's memory. |
|
Nov 17 |
accepted | Cannot modify the return value error c# |
