Sam Stokes

1,178
reputation
86 views

Registered User

name Sam Stokes
member for 1 year
seen Dec 12 at 16:09
website
location London, UK
age 25
Software developer, freelancer, programming language nerd. Follow me on Twitter.
Dec
1
awarded  Enlightened
Dec
1
awarded  Nice Answer
Nov
18
awarded  Popular Question
Sep
22
awarded  Yearling
Sep
12
comment Ruby: Proc#call vs yield
That's a good link - will have to read it in detail later. Thanks!
Sep
11
comment Ruby: Proc#call vs yield
Re update with benchmarks: yeah, I did some benchmarks too and got Proc#call being more than 2x as slow as yield, on MRI 1.8.6p114. On JRuby (1.3.0, JVM 1.6.0_16 Server VM) the difference was even more striking: Proc#call was about 8x as slow as yield. That said, yield on JRuby was twice as fast as yield on MRI.
Sep
11
comment Ruby: Proc#call vs yield
I think Ruby would be more consistent if that were true (i.e. if yield were just syntactic sugar for Proc#call) but I don't think it's true. e.g. there's the different error handling behaviour (see my answer below). I've also seen it suggested (e.g. stackoverflow.com/questions/764134/…) that yield is more efficient, because it doesn't have to first create a Proc object and then invoke its call method.
Sep
11
answered Ruby: Proc#call vs yield
Sep
11
asked Ruby: Proc#call vs yield
Sep
9
answered c++ compiling problem
Sep
7
comment ASP.NET and Firefox: why doesn’t clicking on a GridView ButtonField do anything?
Fair point: invalid HTML did turn out to be the root cause. However, neither the behaviour nor the error message made it obvious (to me) that that was the problem - particularly since it occurred only with a specific configuration of ASP.NET server controls. For an ASP.NET newbie like me, who knows little about the framework except that it generates code in order, to some degree, to abstract away from HTML, it's useful to have this documented somewhere, even if it does boil down to "*smack* stupid newbie, fix your HTML!". I've edited my answer to emphasise that invalid HTML was the problem.
Sep
7
revised ASP.NET and Firefox: why doesn’t clicking on a GridView ButtonField do anything?
Remove unnecessarily explicit example of what html and body tags look like.
Sep
7
comment ASP.NET and Firefox: why doesn’t clicking on a GridView ButtonField do anything?
Any chance whoever left the downvote could give some constructive feedback on how to improve this question? I wrote it so someone Googling for the same error message would find something useful.
Sep
7
answered ASP.NET and Firefox: why doesn’t clicking on a GridView ButtonField do anything?
Sep
7
asked ASP.NET and Firefox: why doesn’t clicking on a GridView ButtonField do anything?
Sep
7
awarded  Autobiographer
Sep
4
answered Identifying Identical Blocks of Code
Sep
4
comment How do you output variable’s declared as a double to a text file in C++
fstream "more 'C' centric"? It's a stream class, with the << operator and everything. Same interface as cout.
Sep
4
answered How do you output variable’s declared as a double to a text file in C++
Sep
3
comment What should be committed to a repo?
I think the question title and wording could be clearer. From your second paragraph it looks like you're really asking "how often should I commit?", but the rest of the question reads like "which files in my working directory should I commit?".
Aug
19
revised Can I make git recognize a UTF-16 file as text?
edited tags
Aug
19
answered Can I make git recognize a UTF-16 file as text?
Jul
9
answered Truncating long strings with CSS: feasible yet?
Jul
9
comment Truncating long strings with CSS: feasible yet?
That's awesome, thanks for pointing it out! The unselectable text and restrictions on what content can go in the truncated div are a shame, but generally that looks like a good solution.