User Sam Stokes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:58:07Zhttp://stackoverflow.com/feeds/user/20131http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1410160/ruby-proccall-vs-yield1Ruby: Proc#call vs yieldSam Stokes2009-09-11T10:25:37Z2009-09-11T21:59:14Z
<p>What are the behavioural differences between the following two implementations in Ruby of the <code>thrice</code> method?</p>
<pre><code>module WithYield
def self.thrice
3.times { yield } # yield to the implicit block argument
end
end
module WithProcCall
def self.thrice(&block) # & converts implicit block to an explicit, named Proc
3.times { block.call } # invoke Proc#call
end
end
WithYield::thrice { puts "Hello world" }
WithProcCall::thrice { puts "Hello world" }
</code></pre>
<p>By "behavioural differences" I include error handling, performance, tool support, etc.</p>
http://stackoverflow.com/questions/1410160/ruby-proccall-vs-yield/1410178#14101781Answer by Sam Stokes for Ruby: Proc#call vs yieldSam Stokes2009-09-11T10:31:35Z2009-09-11T10:31:35Z<p>They give different error messages if you forget to pass a block:</p>
<pre><code>> WithYield::thrice
LocalJumpError: no block given
from (irb):3:in `thrice'
from (irb):3:in `times'
from (irb):3:in `thrice'
> WithProcCall::thrice
NoMethodError: undefined method `call' for nil:NilClass
from (irb):9:in `thrice'
from (irb):9:in `times'
from (irb):9:in `thrice'
</code></pre>
<p>But they behave the same if you try to pass a "normal" (non-block) argument:</p>
<pre><code>> WithYield::thrice(42)
ArgumentError: wrong number of arguments (1 for 0)
from (irb):19:in `thrice'
> WithProcCall::thrice(42)
ArgumentError: wrong number of arguments (1 for 0)
from (irb):20:in `thrice'
</code></pre>
http://stackoverflow.com/questions/1400266/c-compiling-problem/1400307#14003073Answer by Sam Stokes for c++ compiling problemSam Stokes2009-09-09T15:08:13Z2009-09-09T15:08:13Z<pre><code>g++ -c dir/B.h -o B.o
</code></pre>
<p>Why are you compiling a header file?</p>
<p>I assume A.cpp includes dir/B.h - so you don't need a separate compiler invocation to compile the header.</p>
http://stackoverflow.com/questions/1389625/asp-net-and-firefox-why-doesnt-clicking-on-a-gridview-buttonfield-do-anything-1ASP.NET and Firefox: why doesn't clicking on a GridView ButtonField do anything?Sam Stokes2009-09-07T14:16:58Z2009-09-07T15:49:59Z
<p>I have a pretty simple ASP.NET Web Form that looks a bit like the following:</p>
<pre><code><%@ Page Language="C#" AutoEventWireup="true" CodeFile="example.aspx.cs" Inherits="example" %>
<form runat="server">
<asp:GridView runat="server" id="grid" AutoGenerateColumns="false" OnRowCommand="DoStuff">
<Columns>
<asp:ButtonField Text="Do stuff" />
</Columns>
</asp:GridView>
</form>
</code></pre>
<p>(In PageLoad I call <code>grid.DataBind()</code>, and the event handler <code>DoStuff</code> is unremarkable.)</p>
<p>When I view this in Internet Explorer and click the ButtonField (which renders as a link), the event handler fires as expected. When I click it in Firefox, nothing happens.</p>
<p>If I turn on Firebug's Javascript debugging console then click the link, it shows an error in the Javascript <code>onclick</code> handler that's auto-generated by ASP.NET:</p>
<pre><code>theForm is undefined
__doPostBack("grid", "$0")
javascript:__doPostBack('grid', '$0')()
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {\r\n
</code></pre>
<p>Why does this happen and how can I make the ButtonField work in Firefox?</p>
<p>(N.B. I'm asking this question <a href="http://meta.stackoverflow.com/questions/17463/is-it-poor-etiquette-to-answer-your-own-question">in order to answer it myself</a>: I've already discovered why I was seeing the above error, and wanted to record it for the benefit of myself and others. Feel free to add other answers if you know other gotchas with ASP.NET and Firefox.)</p>
http://stackoverflow.com/questions/1389625/asp-net-and-firefox-why-doesnt-clicking-on-a-gridview-buttonfield-do-anything/1389676#13896760Answer by Sam Stokes for ASP.NET and Firefox: why doesn't clicking on a GridView ButtonField do anything?Sam Stokes2009-09-07T14:31:12Z2009-09-07T15:49:59Z<p>This is due to a difference in how the browsers handle Javascript in the presence of invalid HTML: specifically, when the form is not surrounded with <code><html></code> and <code><body></code> tags. Without these tags, Firefox seems to try to initialise the variable <code>theForm</code> before the form actually exists.</p>
<p>Adding the proper <code><html></code> and <code><body></code> tags around the form (as is required for valid HTML in any case) makes the click handler work in both IE and Firefox.</p>
<p>Notes:</p>
<ul>
<li>obviously invalid HTML is a worst practice for many other reasons. The page I was developing was intended to be used with a Master page which rendered the rest of the surrounding HTML, but (for various reasons) I was testing it in isolation from the Master page.</li>
<li>I tried reproducing the same problem with a simple <code><asp:Button runat="server"></code>, but that triggers a full page-refreshing PostBack, so it doesn't hit the same error. Being a Web Forms n00b I don't know what's special about a GridView (or this use case) that makes it behave differently (i.e. sets up an <code>onclick</code> handler to handle the click without a page load).</li>
<li>I've marked this as wiki in case anyone else can explain this better than I.</li>
</ul>
http://stackoverflow.com/questions/1357060/identifying-identical-blocks-of-code/1380276#13802761Answer by Sam Stokes for Identifying Identical Blocks of CodeSam Stokes2009-09-04T16:25:16Z2009-09-04T16:25:16Z<p>Quick and dirty partial solution:</p>
<pre><code>:set hlsearch
*
</code></pre>
<p>The <code>hlsearch</code> option (on by default in some vim configs, but I always turn it off) makes vim highlight all found instances of the current search. Pressing <code>*</code> in normal mode searches for the word under the cursor. So this will highlight all instances of the word under the cursor.</p>
http://stackoverflow.com/questions/1378364/how-do-you-output-variables-declared-as-a-double-to-a-text-file-in-c/1378444#13784440Answer by Sam Stokes for How do you output variable's declared as a double to a text file in C++Sam Stokes2009-09-04T10:32:57Z2009-09-04T10:32:57Z<p>Just use the <code><<</code> operator on an output stream:</p>
<pre><code>#include <fstream>
int main() {
double myNumber = 42.5;
std::fstream outfile("test.txt", std::fstream::out);
outfile << "The answer is almost " << myNumber << std::endl;
outfile.close();
}
</code></pre>
http://stackoverflow.com/questions/777949/can-i-make-git-recognize-a-utf-16-file-as-text/1300928#13009283Answer by Sam Stokes for Can I make git recognize a UTF-16 file as text?Sam Stokes2009-08-19T15:55:47Z2009-08-19T15:55:47Z<p>I've been struggling with this problem for a while, and just discovered (for me) a perfect solution:</p>
<pre><code>$ git config --global diff.tool vimdiff # or merge.tool to get merging too!
$ git difftool commit1 commit2
</code></pre>
<p><code>git difftool</code> takes the same arguments as <code>git diff</code> would, but runs a diff program of your choice instead of the built-in GNU <code>diff</code>. So pick a multibyte-aware diff (in my case, <code>vim</code> in diff mode) and just use <code>git difftool</code> instead of <code>git diff</code>.</p>
<p>Find "difftool" too long to type? No problem:</p>
<pre><code>$ git config --global alias.dt difftool
$ git dt commit1 commit2
</code></pre>
<p>Git rocks.</p>
http://stackoverflow.com/questions/802175/truncating-long-strings-with-css-feasible-yet9Truncating long strings with CSS: feasible yet?Sam Stokes2009-04-29T12:40:44Z2009-07-09T17:19:14Z
<p>Is there any good way of truncating text with plain HTML and CSS, so that dynamic content can fit in a fixed-width-and-height layout?</p>
<p>I've been truncating server-side by <em>logical</em> width (i.e. a blindly-guessed number of characters), but since a 'w' is wider than an 'i' this tends to be suboptimal, and also requires me to re-guess (and keep tweaking) the number of characters for every fixed width. Ideally the truncation would happen in the browser, which knows the <em>physical</em> width of the rendered text.</p>
<p>I've found that IE has a <code>text-overflow: ellipsis</code> property that does exactly what I want, but I need this to be cross-browser. This property <a href="http://www.quirksmode.org/css/textoverflow.html" rel="nofollow">seems to be (somewhat?) standard</a> but isn't supported by Firefox. I've found <a href="http://www.jide.fr/emulate-text-overflowellipsis-in-firefox-with-css" rel="nofollow">various</a> <a href="http://stackoverflow.com/questions/480722/how-can-i-set-a-td-width-to-visually-truncate-its-displayed-contents">workarounds</a> based on <code>overflow: hidden</code>, but they either don't display an ellipsis (I want the user to know the content was truncated), or display it all the time (even if the content wasn't truncated).</p>
<p>Does anyone have a good way of fitting dynamic text in a fixed layout, or is server-side truncation by logical width as good as I'm going to get for now?</p>
http://stackoverflow.com/questions/802175/truncating-long-strings-with-css-feasible-yet/1105295#11052950Answer by Sam Stokes for Truncating long strings with CSS: feasible yet?Sam Stokes2009-07-09T17:19:14Z2009-07-09T17:19:14Z<p>For reference, here's a link to the "bug" tracking <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=312156" rel="nofollow">text-overflow: ellipsis support in Firefox</a>. Sounds like Firefox is the only major browser left that doesn't support a native CSS solution.</p>
http://stackoverflow.com/questions/838540/bus-error-vs-segmentation-fault/840566#8405660Answer by Sam Stokes for Bus error vs Segmentation faultSam Stokes2009-05-08T16:03:08Z2009-05-08T16:03:08Z<p>Interpreting your question (possibly incorrectly) as meaning "I am intermittently getting a SIGSEGV or a SIGBUS, why isn't it consistent?", it's worth noting that doing dodgy things with pointers is not guaranteed by the C or C++ standards to result in a segfault; it's just "undefined behaviour", which as a professor I had once put it means that it may instead cause crocodiles to emerge from the floorboards and eat you.</p>
<p>So your situation could be that you have two bugs, where the first to occur <em>sometimes</em> causes SIGSEGV, and the second (if the segfault didn't happen and the program is still running) causes a SIGBUS.</p>
<p>I recommend you step through with a debugger, and look out for crocodiles.</p>
http://stackoverflow.com/questions/816212/python-ruby-as-mobile-os/817612#8176122Answer by Sam Stokes for Python/Ruby as mobile OSSam Stokes2009-05-03T17:59:39Z2009-05-03T17:59:39Z<p>The situation for multiple languages on mobile devices is better than the question implies. Java (in its J2ME incarnation) is available these days even in fairly cheap phones. Symbian S60 officially supports <a href="http://opensource.nokia.com/projects/pythonfors60/" rel="nofollow">Python</a>, and <a href="http://www.forum.nokia.com/Resources%5Fand%5FInformation/Explore/Web%5FTechnologies/Web%5FRuntime/" rel="nofollow">Javascript for widgets</a>, and there's a Ruby port although it's still fairly experimental. Charles Nutter has experimented with <a href="http://blog.headius.com/2009/02/domo-arigato-mr-ruboto.html" rel="nofollow">getting JRuby running on Android</a>. <a href="http://rhomobile.com/home" rel="nofollow">rhomobile</a> claims to allow developing an app in Ruby which will then run on <em>all</em> the major smartphone OSes, although that kind of portability claim implies restrictions on what those apps can achieve.</p>
<p>It's important to distinguish between the mobile OS (which does operating system stuff like sharing and protecting resources) and the runtime platform (which provides a working environment and a set of APIs to user-written applications). An OS can support multiple runtimes, such as how you can run both C++ and Java apps in Windows, even though Windows itself is written in C++.</p>
<p>Runtimes will have different performance characteristics, and expose the capabilities of the OS and hardware to a greater or lesser degree. For example, J2ME is available on tons of devices, but on many devices the J2ME runtime doesn't provide access to the camera or the ability to make calls. The "native" runtime (i.e. the one where apps are written in the same language as the OS) is no different in this respect: what "native" apps can do depends on what the runtime allows.</p>
http://stackoverflow.com/questions/753082/can-gvim-have-a-background-image/804744#8047442Answer by Sam Stokes for Can GVIM have a background image?Sam Stokes2009-04-29T23:19:58Z2009-04-29T23:19:58Z<p>Good lord, why?</p>
<p>If you must, I'd suggest something along the following lines:</p>
<ol>
<li>use a compositing window manager (e.g. Compiz on Linux, Windows Vista and Mac OS probably have analogs)</li>
<li>set a desktop background</li>
<li>make your gvim window transparent</li>
<li>rejoice, your text is now harder to read!</li>
</ol>
http://stackoverflow.com/questions/485120/will-emacs-make-me-a-better-programmer/804710#8047101Answer by Sam Stokes for Will emacs make me a better programmer?Sam Stokes2009-04-29T23:10:11Z2009-04-29T23:10:11Z<p>IMHO IDEs tend to be optimised around a specific platform or language or OS: Eclipse JDT is great for Java, Visual Studio is C++/.NET-centric, etc. They help productivity a lot (again IMHO) if you're only working on that platform, but if you change platforms you have to basically learn a new IDE (or at least a new set of plugins, views, perspectives and I don't know what else for Eclipse).</p>
<p>The advantage of knowing emacs, or Textmate, or vim (my personal preference), or any <em>generic</em> editor, is that the skills you acquire in that editor apply regardless of what platform you're writing for. They're optimised for <em>editing text</em>, and once you master them, you can edit text very efficiently in any language.</p>
<p>There's also Yegge's assertion that great programmers adapt their tools to their working style rather than vice versa. I think this is a win for generic editors, because you customise <em>one</em> editor, rather than having to work out how to adapt four different IDEs to all behave the way you want.</p>
http://stackoverflow.com/questions/803109/algorithm-for-estimating-text-width-based-on-contents/803147#8031471Answer by Sam Stokes for Algorithm for estimating text width based on contentsSam Stokes2009-04-29T16:18:17Z2009-04-29T16:18:17Z<p>For a nice* client-side solution, you could try a hybrid CSS-and-Javascript approach as suggested by <a href="http://stackoverflow.com/questions/802175/truncating-long-strings-with-css-feasible-yet/802195#802195">RichieHindle's answer to my question</a>.</p>
<p>Given that you don't know what font the user will see the page in (they can always override your selection, Ctrl-+ the page, etc), the "right" place to do this is on the browser... although browsers don't make it easy!</p>
<p><code>*</code> when I say "nice", I mean "probably nice but I haven't actually tried it yet".</p>
http://stackoverflow.com/questions/133821/the-best-tail-gui/802733#8027332Answer by Sam Stokes for The best Tail GUISam Stokes2009-04-29T14:54:14Z2009-04-29T14:54:14Z<pre><code>$ less +F something.log
</code></pre>
<p>I know you said GUI, but <code>less</code> is my favourite <code>tail</code>. Passing <code>+F</code> on the command line, or pressing <code>F</code> when viewing a file, puts it into "follow" mode just like <code>tail -f</code>, but with much more flexibility.</p>
<p>Say you're watching the logs and you see an error scroll past and off the screen. Press Ctrl-C and you drop into normal <code>less</code>, where you can page up and down, regex search through the entire file (find that error you saw, and others like it), pipe bits of it through shell commands, etc. Once you're done inspecting the file just press <code>F</code> again and you're back in "follow" mode.</p>
http://stackoverflow.com/questions/735073/best-way-to-require-all-files-from-a-directory-in-ruby/735130#73513012Answer by Sam Stokes for Best way to require all files from a directory in ruby ?Sam Stokes2009-04-09T17:19:59Z2009-04-09T17:19:59Z<p>How about:</p>
<pre><code>Dir["/path/to/directory/*.rb"].each {|file| require file }
</code></pre>
http://stackoverflow.com/questions/142407/what-is-the-best-way-to-start-unit-and-functional-testing-of-a-ruby-rails-website/142540#1425403Answer by Sam Stokes for What is the best way to start Unit and Functional testing of a Ruby Rails website?Sam Stokes2008-09-26T23:58:37Z2008-12-22T19:36:06Z<p><a href="http://github.com/aslakhellesoy/cucumber/wikis" rel="nofollow">Cucumber</a> and <a href="http://rspec.info/" rel="nofollow">RSpec</a> are worth a look. They encourage testing in a <a href="http://behaviour-driven.org/" rel="nofollow">behaviour-driven</a>, example-based style.</p>
<p>RSpec is a library for unit-level testing:</p>
<pre><code>describe "hello_world"
it "should say hello to the world" do
# RSpec comes with its own mock-object framework built in,
# though it lets you use others if you prefer
world = mock("World", :population => 6e9)
world.should_receive(:hello)
hello_world(world)
end
end
</code></pre>
<p>It has special support for Rails (e.g. it can test models, views and controllers in isolation) and can replace the testing mechanisms built in to Rails.</p>
<p>Cucumber (formerly known as the RSpec Story Runner) lets you write high-level acceptance tests in (fairly) plain English that you could show to (and agree with) a customer, then run them:</p>
<pre><code>Story: Commenting on articles
As a visitor to the blog
I want to post comments on articles
So that I can have my 15 minutes of fame
Scenario: Post a new comment
Given I am viewing an article
When I add a comment "Me too!"
And I fill in the CAPTCHA correctly
Then I should see a comment "Me too!"
</code></pre>
http://stackoverflow.com/questions/339130/how-do-i-render-a-partial-of-a-different-format-in-rails/340508#3405081Answer by Sam Stokes for How do I render a partial of a different format in Rails?Sam Stokes2008-12-04T13:03:01Z2008-12-04T13:03:01Z<p>What's wrong with</p>
<pre><code>render :partial => '/foo/baz.html.erb'
</code></pre>
<p>? I just tried this to render an HTML ERB partial from inside an Atom builder template and it worked fine. No messing around with global variables required (yeah, I know they have "@" in front of them, but that's what they are).</p>
<p>Your <a href="http://stackoverflow.com/questions/339130/how-do-i-render-a-partial-of-a-different-format-in-rails#340432"><code>with_format &block</code> approach</a> is cool though, and has the advantage that you only specify the format, whereas the simple approach specifies the template engine (ERB/builder/etc) as well.</p>
http://stackoverflow.com/questions/329767/what-windows-software-do-you-like-for-personal-to-do-lists-especially-using-th/329896#3298962Answer by Sam Stokes for What Windows software do you like for personal "To Do lists" (especially using the Getting Things Done approach) ?Sam Stokes2008-12-01T02:51:14Z2008-12-01T02:51:14Z<p>Take a look at <a href="http://monkeygtd.tiddlyspot.com/" rel="nofollow">MonkeyGTD</a>. It's a personal organisation system designed with GTD in mind, based on <a href="http://www.tiddlywiki.com/" rel="nofollow">TiddlyWiki</a>, which is a single-file wiki.</p>
<p>It meets your criteria (don't think there's a key combination to add a new task, but it's a single click). The search feature is pretty good, even supports regex. Not sure if it does Begin Dates on tasks, though.</p>
http://stackoverflow.com/questions/327411/how-do-you-prefer-to-switch-between-buffers-in-vim/327484#3274849Answer by Sam Stokes for How do you prefer to switch between buffers in Vim?Sam Stokes2008-11-29T12:22:06Z2008-12-01T02:34:27Z<p>I used to use a combination of tabs and multiple gvim instances, keeping groups of related files as tabs in each instance. So long as I didn't end up with too many tabs in one instance, the tab bar shows you the name of each file you're editing at a glance.</p>
<p>Then I read a post by Jamis Buck on how he switched <a href="http://weblog.jamisbuck.org/2008/10/10/coming-home-to-vim" rel="nofollow">from TextMate back to vim</a>, and learned some great tricks:</p>
<ul>
<li>Ctrl-w s and Ctrl-w v to split the current window</li>
<li>Ctrl-6 to switch back and forth between two buffers in the same window.</li>
<li>the awesome <a href="http://www.vim.org/scripts/script.php?script_id=1984" rel="nofollow">fuzzyfinder.vim</a> which gives you autocompleting search of files in your current directory or of buffers you currently have open</li>
<li>Jamis' own <a href="http://github.com/jamis/fuzzy_file_finder/tree/master" rel="nofollow">fuzzy_file_finder</a> and <a href="http://github.com/jamis/fuzzyfinder_textmate/tree/master" rel="nofollow">fuzzyfinder_textmate</a>, which slightly modify how fuzzyfinder works to behave more like a similar feature in TextMate (as far as I can tell, the difference is that it matches anywhere in the filename instead of only from the start). Watch <a href="http://s3.amazonaws.com/buckblog/videos/fuzzyfinder_textmate.mov" rel="nofollow">this video</a> to see it in action.</li>
</ul>
<p>Now I just have one gvim instance, maximised, and split it into multiple windows so I can see several files at once. I bound Ctrl-F to fuzzyfinder_textmate, so now if I type (say) Ctrl-F <code>mod/usob</code> it opens up app/<strong>mod</strong>els/<strong>us</strong>er**ob**server.rb. I almost never bother with tabs any more.</p>
http://stackoverflow.com/questions/320124/debugging-an-application-in-linux/320257#3202575Answer by Sam Stokes for Debugging an application in LinuxSam Stokes2008-11-26T10:35:19Z2008-11-26T10:35:19Z<p>If you want to debug the library code itself, you'll need to build the library with the <code>-g</code> compiler flag (as well as building the executable with <code>-g</code> as <a href="http://stackoverflow.com/questions/320124/debugging-application-in-linux#320136">litb pointed out</a>). Otherwise gdb will step through your code fine but will throw up its hands each time you make a library call.</p>
http://stackoverflow.com/questions/80386/what-is-the-vim-feature-that-you-like-the-most/291480#2914800Answer by Sam Stokes for What Is The Vim Feature That You Like The Most?Sam Stokes2008-11-14T21:19:48Z2008-11-14T21:19:48Z<p>It's not exactly a vim feature, but <a href="https://addons.mozilla.org/en-US/firefox/addon/4125" rel="nofollow">It's All Text!</a> lets me use vim to edit the contents of text fields in Firefox. (It works with other, inferior editors too ;))</p>
http://stackoverflow.com/questions/80386/what-is-the-vim-feature-that-you-like-the-most/291460#2914600Answer by Sam Stokes for What Is The Vim Feature That You Like The Most?Sam Stokes2008-11-14T21:14:50Z2008-11-14T21:14:50Z<p>I can't believe there are two pages of answers and nobody has mentioned <a href="http://www.vim.org/htmldoc/diff.html" rel="nofollow">vimdiff</a> yet.</p>
<ul>
<li>interactive diffing and merging</li>
<li>all the editing power of vim</li>
<li>syntax highlighting of the files being diffed</li>
<li>line diffs (i.e. shows you what characters changed on a given line, making it very easy to track down typos etc)</li>
<li>supports diffing as many files as you can fit on your screen (I've used it to resolve three-way merge conflicts from source control)</li>
</ul>
<p>... and it's built into vim!</p>
<p>I use vim for sysadmin tasks and software development in every language under the sun (except Java, where Eclipse is just too useful to give up).</p>
http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope/289869#2898696Answer by Sam Stokes for when does a thread go out of scope?Sam Stokes2008-11-14T11:49:03Z2008-11-14T11:49:03Z<p>A different threaded design would make it easier to find and fix this kind of problem, and be more efficient into the bargain. This is a longish response, but the summary is "if you're doing threads in Java, check out <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/package-summary.html" rel="nofollow">java.util.concurrent</a> as soon as humanly possible)".</p>
<p>I guess you're multithreading this code to learn threads rather than to speed up counting words, but that's a very inefficient way to use threads. You're creating two threads <em>per line</em> - two thousand threads for a thousand line file. Creating a thread (in modern JVMs) uses operating system resources and is generally fairly expensive. When two - let alone two thousand - threads have to access a shared resource (such as your <code>chars</code> and <code>words</code> counters), the resulting memory contention also hurts performance.</p>
<p>Making the counter variables <code>synchronized</code> as <a href="http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope#289818">Chris Kimpton suggests</a> or <code>Atomic</code> as <a href="http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope#289851">WMR suggests</a> will probably fix the code, but it will also make the effect of contention much worse. I'm pretty sure it will go slower than a single-threaded algorithm.</p>
<p>I suggest having just one long-lived thread which looks after <code>chars</code>, and one for <code>words</code>, each with a work queue to which you submit jobs each time you want to add a new number. This way only one thread is writing to each variable, and if you make changes to the design it'll be more obvious who's responsible for what. It'll also be faster because there's no memory contention and you're not creating hundreds of threads in a tight loop.</p>
<p>It's also important, once you've read all the lines in the file, to <em>wait</em> for all the threads to finish before you actually print out the values of the counters, otherwise you lose the updates from threads that haven't finished yet. With your current design you'd have to build up a big list of threads you created, and run through it at the end checking that they're all dead. With a queue-and-worker-thread design you can just tell each thread to drain its queue and then wait until it's done.</p>
<p>Java (from 1.5 and up) makes this kind of design very easy to implement: check out <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/Executors.html#newSingleThreadExecutor" rel="nofollow">java.util.concurrent.Executors.newSingleThreadExecutor</a>. It also makes it easy to add more concurrency later on (assuming proper locking etc), as you can just switch to a thread pool rather than a single thread.</p>
http://stackoverflow.com/questions/271938/how-to-install-packages-locally/271989#2719892Answer by Sam Stokes for How to install packages locallySam Stokes2008-11-07T13:00:24Z2008-11-07T16:49:18Z<p>If you're not a command line fan, double-clicking on the .deb files in the file manager should launch a package installer. Has exactly the same effect as <code>dpkg -i</code> of course.</p>
http://stackoverflow.com/questions/56227/how-do-you-determine-the-latest-svn-revision-number-rooted-in-a-directory/250254#2502542Answer by Sam Stokes for How do you determine the latest SVN revision number rooted in a directory?Sam Stokes2008-10-30T13:59:21Z2008-10-30T13:59:21Z<p>Duplicate of <a href="http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number#112674">this question</a>. As I posted there, the <code>svnversion</code> command is your friend. No need to parse the output, no need to update first, just does the job.</p>
http://stackoverflow.com/questions/231051/is-there-a-memory-efficient-replacement-of-java-lang-string/231352#2313520Answer by Sam Stokes for Is there a memory efficient replacement of java.lang.String?Sam Stokes2008-10-23T20:26:07Z2008-10-23T20:26:07Z<p>You said not to repeat the article's suggestion of rolling your own interning scheme, but what's wrong with <code>String.intern</code> itself? The article contains the following throwaway remark:</p>
<blockquote>
<p>Numerous reasons exist to avoid the String.intern() method. One is that few modern JVMs can intern large amounts of data.</p>
</blockquote>
<p>But even if the memory usage figures from 2002 still hold six years later, I'd be surprised if no progress has been made on how much data JVMs can intern.</p>
<p>This isn't purely a rhetorical question - I'm interested to know if there are good reasons to avoid it. Is it implemented inefficiently for highly-multithreaded use? Does it fill up some special JVM-specific area of the heap? Do you really have hundreds of megabytes of unique strings (so interning would be useless anyway)?</p>
http://stackoverflow.com/questions/226279/decoding-a-wbxml-syncml-message-from-an-s60-device/230528#2305281Answer by Sam Stokes for Decoding a WBXML SyncML message from an S60 deviceSam Stokes2008-10-23T16:59:13Z2008-10-23T16:59:13Z<p>Funnily enough I've been working on the same problem. I'm about halfway through writing my own pure-Python WBXML parser, but it's not yet complete enough to be useful, and I have very little time to work on it right now.</p>
<p>Those <Unknown> tags might be because pywbxml / libwbxml doesn't have the right tag vocabulary loaded. WBXML represents tags by an index number to avoid transmitting the same tag name hundreds of times, and the table that maps index numbers to tag names has to be supplied separately from the WBXML document itself. From a vague glance at <a href="http://libwbxml.aymerick.com/browser/wbxml2/trunk/src/wbxml_tables.c" rel="nofollow">the libwbxml source</a> it seems like libwbxml has a bunch of tag tables hard coded. It has tables for SyncML 1.0-1.2; I think my Nokia E71 sends SyncML 1.3 (if so, your N95 probably does too), which it looks like libwbxml doesn't support yet.</p>
<p>Getting it to work might be as simple as adding a SyncML 1.3 table to libwbxml. That said, last time I tried, pywbxml doesn't compile against the vanilla libwbxml source, so you have to apply some patches first... so "simple" may be a relative term.</p>
http://stackoverflow.com/questions/182865/testing-rails-partial-views-standalone/189607#1896071Answer by Sam Stokes for Testing rails partial views standaloneSam Stokes2008-10-09T23:39:21Z2008-10-09T23:39:21Z<p>We're using <a href="http://rspec.info" rel="nofollow">RSpec</a> in our Rails 2.1 project, and we can do this sort of thing:</p>
<pre><code>describe "/posts/_form" do
before do
render :partial => "posts/form"
end
it "says hello" do
response.should match(/hello/i)
end
it "renders a form" do
response.should have_tag("form")
end
end
</code></pre>
<p>However I don't know how much of that you can do with the vanilla Rails testing apparatus.</p>
http://stackoverflow.com/questions/1410160/ruby-proccall-vs-yield/1413482#1413482Comment by Sam Stokes on Ruby: Proc#call vs yieldSam Stokes2009-09-12T11:05:13Z2009-09-12T11:05:13ZThat's a good link - will have to read it in detail later. Thanks!http://stackoverflow.com/questions/1410160/ruby-proccall-vs-yield/1410176#1410176Comment by Sam Stokes on Ruby: Proc#call vs yieldSam Stokes2009-09-11T13:36:19Z2009-09-11T13:36:19ZRe update with benchmarks: yeah, I did some benchmarks too and got <code>Proc#call</code> being <i>more</i> than 2x as slow as <code>yield</code>, on MRI 1.8.6p114.
On JRuby (1.3.0, JVM 1.6.0_16 Server VM) the difference was even more striking: <code>Proc#call</code> was about <i>8x</i> as slow as <code>yield</code>. That said, <code>yield</code> on JRuby was twice as fast as <code>yield</code> on MRI.http://stackoverflow.com/questions/1410160/ruby-proccall-vs-yield/1410176#1410176Comment by Sam Stokes on Ruby: Proc#call vs yieldSam Stokes2009-09-11T10:37:14Z2009-09-11T10:37:14ZI think Ruby would be more consistent if that were true (i.e. if <code>yield</code> were just syntactic sugar for <code>Proc#call</code>) 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. <a href="http://stackoverflow.com/questions/764134/rubys-yield-feature-in-relation-to-computer-science/765126#765126" rel="nofollow" title="rubys yield feature in relation to computer science">stackoverflow.com/questions/764134/…</a>) that <code>yield</code> is more efficient, because it doesn't have to first create a <code>Proc</code> object and then invoke its <code>call</code> method.http://stackoverflow.com/questions/1389625/asp-net-and-firefox-why-doesnt-clicking-on-a-gridview-buttonfield-do-anythingComment by Sam Stokes on ASP.NET and Firefox: why doesn't clicking on a GridView ButtonField do anything?Sam Stokes2009-09-07T15:54:43Z2009-09-07T15:54:43ZFair 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.http://stackoverflow.com/questions/1389625/asp-net-and-firefox-why-doesnt-clicking-on-a-gridview-buttonfield-do-anythingComment by Sam Stokes on ASP.NET and Firefox: why doesn't clicking on a GridView ButtonField do anything?Sam Stokes2009-09-07T14:46:44Z2009-09-07T14:46:44ZAny 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.http://stackoverflow.com/questions/1378364/how-do-you-output-variables-declared-as-a-double-to-a-text-file-in-c/1378436#1378436Comment by Sam Stokes on How do you output variable's declared as a double to a text file in C++Sam Stokes2009-09-04T10:35:40Z2009-09-04T10:35:40Zfstream "more 'C' centric"? It's a stream class, with the << operator and everything. Same interface as cout.http://stackoverflow.com/questions/1371774/what-should-be-committed-to-a-repoComment by Sam Stokes on What should be committed to a repo?Sam Stokes2009-09-03T11:04:29Z2009-09-03T11:04:29ZI 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?".http://stackoverflow.com/questions/802175/truncating-long-strings-with-css-feasible-yet/1101702#1101702Comment by Sam Stokes on Truncating long strings with CSS: feasible yet?Sam Stokes2009-07-09T17:15:55Z2009-07-09T17:15:55ZThat'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.http://stackoverflow.com/questions/838268/why-doesnt-my-upload-from-flash-to-rails-attachmentfu-work-it-has-something/840379#840379Comment by Sam Stokes on Why doesn't my upload from Flash to Rails & attachment_fu work (it has something to do with the content type)?Sam Stokes2009-05-08T15:49:25Z2009-05-08T15:49:25ZI really wish I'd known about mimetype_fu a couple of months ago! Would have saved us a lot of time. Upvoted.http://stackoverflow.com/questions/802175/truncating-long-strings-with-css-feasible-yet/802195#802195Comment by Sam Stokes on Truncating long strings with CSS: feasible yet?Sam Stokes2009-04-29T14:39:27Z2009-04-29T14:39:27ZThat's definitely useful, thanks!
Seems like all the browsers except Firefox support the CSS property, so with this plugin, the only people it wouldn't work for are Firefox users who've disabled Javascript - and it's a graceful degradation anyway.
Any idea what the performance implications are like?http://stackoverflow.com/questions/735073/best-way-to-require-all-files-from-a-directory-in-ruby/735130#735130Comment by Sam Stokes on Best way to require all files from a directory in ruby ?Sam Stokes2009-04-09T17:46:34Z2009-04-09T17:46:34ZAccording to the Pickaxe, the .rb extension is optional. Technically it changes the meaning: "require 'foo.rb'" requires foo.rb, whereas "require 'foo'" might require foo.rb, foo.so or foo.dll.http://stackoverflow.com/questions/142407/what-is-the-best-way-to-start-unit-and-functional-testing-of-a-ruby-rails-website/142540#142540Comment by Sam Stokes on What is the best way to start Unit and Functional testing of a Ruby Rails website?Sam Stokes2008-12-22T19:36:51Z2008-12-22T19:36:51ZThanks - I've edited to bring the answer up to date.http://stackoverflow.com/questions/137102/whats-the-best-visual-merge-tool-for-git/142031#142031Comment by Sam Stokes on What's the best visual merge tool for Git?Sam Stokes2008-12-14T20:05:39Z2008-12-14T20:05:39ZI've been wondering what I had to do in order to make gvimdiff work with git, and now I find out the answer is "nothing"! I'd vote this answer up if it included the information in Paul's comment on peter's question below.http://stackoverflow.com/questions/350661/vim-n-vs-r/350798#350798Comment by Sam Stokes on Vim: \n vs. \rSam Stokes2008-12-08T23:11:23Z2008-12-08T23:11:23ZThis one always gets me - I can never remember whether it's \r or \n that means different things in search and replace. Recently (after I actually read the docs and found what the difference is) I find it useful to remember that NUL starts with 'n'.http://stackoverflow.com/questions/66770/why-is-rspec-so-slow-under-rails/70568#70568Comment by Sam Stokes on Why is RSpec so slow under Rails?Sam Stokes2008-12-08T17:38:33Z2008-12-08T17:38:33Z+1. I run Rails and RSpec on Linux and have no slowness complaints, albeit on a fairly powerful machine. My colleague uses Windows, on identical hardware, and it can take a full minute to load the Rails environment.