kronoz

9,884
Reputation
671 views

Registered User

Name kronoz
Member for 1 year
Seen 9 hours ago
Website
Location London
Age 28

I'm a software developer living in London who wants to be better at programming each year than the last.

I use C# at work and it's my main area of [kinda] expertise.

I also dabble in F#, Ruby and Scheme.

I am working on a C# compiler for educational purposes, written in F#.

Email me at lstoakes at gmail dot com

2d
revised Best Practice: Should functions return null or an empty object?
grammar
Nov
25
revised Do you keep a programming journal?
added 3 characters in body
Nov
25
revised Visual Studio setup problem - ‘A problem has been encountered while loading the setup components. Canceling setup.’
added mirror link.
Nov
25
comment Visual Studio setup problem - ‘A problem has been encountered while loading the setup components. Canceling setup.’
Yes, you're right, found a mirror - updated above.
Nov
22
accepted Must-see tech talks/presentations?
Nov
19
awarded  
Nov
18
awarded  Nice Question
Oct
28
awarded  Guru
Oct
26
awarded  Good Answer
Oct
26
awarded  Enlightened
Oct
26
accepted Best Practice: Should functions return null or an empty object?
Oct
26
awarded  Nice Answer
Oct
26
comment Best Practice: Should functions return null or an empty object?
The function itself isn't in error by returning null, rather it's indicating that nothing has been returned. Of course the caller should be testing for null, I agree, however it does add an extra line of defence knowing that even if a null object sneaks through it will raise an exception. That is only icing on the cake compared to the fact you get to indicate that nothing has been returned in a universally understood way. If you simply return an empty object, how would you test that it was empty and throw an exception? It's more difficult and messy to implement that way.
Oct
26
answered Best Practice: Should functions return null or an empty object?
Oct
21
accepted C# equivalent of C++ map<string,double>
Oct
21
answered C# equivalent of C++ map<string,double>
Oct
14
awarded  Good Question
Oct
7
awarded  Popular Question
Oct
7
awarded  Good Answer
Oct
3
revised Configuring james to connect to Microsoft sql server 2005
removed password
Oct
2
revised Program to find prime numbers in C#
Aligned code properly.
Sep
28
awarded  Notable Question
Sep
17
awarded  Notable Question
Sep
15
awarded  Good Answer
Sep
12
comment Hidden Features of C#?
@codymanix 0 yes, it's inefficient, but most of the time the inefficiency makes no difference to the perf of the application. Don't optimise unless the profiler says so :) - prefer readability over micro-perf issues unless the profiler disagrees :)
Sep
12
revised Reverse Polish Notation-
edited tags
Sep
12
comment Do you keep a programming journal?
@JoshJordan - :-) yes I really should take my own advice, shouldn't I! In my defence, I've posted a few things over at my other blog (concerning my coding project - I'm writing a C# compiler in F#, plus I eventually want to develop my own language believe it or not) - codegrunt.co.uk/terse/b - so I've not totally abandoned it! :-)
Sep
8
comment What is the difference between const and readonly?
Not to mention the value itself is immutable, so you can't change it (well, not without some funky evil underhand manipulation). Anyway :)
Sep
8
comment What is the difference between const and readonly?
I do object, however, to the use of the word pointer here. It's not a pointer, it's a reference, and there is a difference in C# as you can manipulate unmanaged pointers in unsafe mode so it's important to distinguish between the two.
Sep
8
comment What is the difference between const and readonly?
@Andrew Hare - yes, I just checked. I am very surprised, that is a real gotcha, I'm really very surprised by that, amazed that is the case...!
Sep
8
comment What is the difference between const and readonly?
Wow. It is true...! How frightening.
Sep
8
answered What is the difference between const and readonly?
Sep
8
comment What is the difference between const and readonly?
I sincerely doubt that is true... I will go check.
Sep
8
awarded  Popular Question
Sep
3
awarded  Popular Question
Aug
29
awarded  Yearling
Aug
28
revised Must-see tech talks/presentations?
deleted 2 characters in body
Aug
27
revised How to set column header text for spesific column in Datagridview C#
fixed typo.
Aug
27
answered Filtering a DataGridView per column with filters visible above columns
Aug
27
accepted Is there a way to generate a DLL file from Visual Studio Express without explicitly creating a DLL project?
Aug
26
comment Filtering a DataGridView per column with filters visible above columns
I know about filtering using data views, I have been instructed however that we must execute filters as where clauses in a SQL string rather than retrieving all data then filtering with a view, hence the two datatables. Additionally I really do not have the time to write a custom handler as suggested by that article; in fact I have used that sample code for filtering within datagridviews, however this alone does not provide anything near the functionality I require, I would have to write a lot of code to adapt it.
Aug
26
asked Filtering a DataGridView per column with filters visible above columns
Aug
25
awarded  Good Question
Aug
18
revised Do you keep a programming journal?
Updated blog link.
Aug
13
awarded  Famous Question
Aug
11
awarded  Nice Answer
Aug
10
awarded  Popular Question
Jul
31
comment How do you group by one column and retrieve a row with the minimum value of another column in T/SQL?
Nice one @butterchicken :-)
Jul
31
comment How do you group by one column and retrieve a row with the minimum value of another column in T/SQL?
Incidentally, I am happy for the solution to return multiple rows when the minimum value of foo is duplicated and for nullls to be included, however it's important users who may not be happy with that are made aware.
Jul
31
comment How do you group by one column and retrieve a row with the minimum value of another column in T/SQL?
Hm, I wasn't aware of those caveats; @butterchicken - perhaps worth adding them to the solution so other users are aware?