Stefan Daschek

Results 65 comments of Stefan Daschek

@nusco: I played around with this today: Based on your suggestion it's possible to kill the remote (ruby) process, see https://gist.github.com/1044475 However, the java process still stays around … And...

We recently replaced our development machines with Macs, so this is no longer a issue for us – I leave the pull request open however, as it is at least...

I just opened a pull request that should fix the remaining issue mentioned by mattwynne: https://github.com/bernerdschaefer/akephalos/pull/53

This error indicates that the mysql libraries can not be found during runtime. This is most probably because the directory containing the mysql libraries is not in one of the...

Same here. In my RuboCop bundle I’m using `TextMate::Executor.run` from TextMate’s “Ruby API”. This internally uses `TextMate::Process.run`, which does all the work of starting a subprocess so that it can...

To be clear: What I called “Ruby API” is nothing more than a set of Ruby classes and functions, bundled with TextMate (see the [“Bundle Support” bundle](https://github.com/textmate/bundle-support.tmbundle/tree/master/Support/shared/lib)). 😉 So in...

Using `relation.all.count` does work, but it will load the _complete_ result set into memory. This is something you normally want to avoid.

I don’t think it is fixable – ActiveRecord will always do a “count per group” if the query contains a group statement (see https://github.com/rails/rails/issues/7121 and similar issues). My workaround in...

[node.js](http://nodejs.org) handles UTF-8 correctly. I created a very rough proof-of-concept patch that replaces jsc with the node.js runtime: https://github.com/die-antwort/jslintmate/compare/38ec6fd...die-antwort:nodejs-experimental The patch works for me – unfortunately I don’t have enough...

This has been addressed in https://github.com/caxlsx/caxlsx/commit/0a223011a