Sebastian Cohnen
Sebastian Cohnen
I was thinking about using your specification to improve my at best mediocre golang skills. It would be nice, if there was a test suite, like a bunch of json...
It would be nice to have non-raising methods on `Client`, like `delete_database` or `create_database_user`. In my project I'm automating this (creating databases and users on the fly) and the management...
I was just wondering, if it is possible to integrate local lucene to couchdb-lucene. If have not looked deeper into l-l, but it sounds very interesting. local lucene is available...
I cannot get racker to output [min_packer_version](https://www.packer.io/docs/templates/introduction.html#min_packer_version) (and description). ```ruby Racker::Processor.register_template do |template| template.min_packer_version = "0.11.0" template.description = "my description" end ``` Don't do the job. Roughly skimming rackers code...
I'm trying to figure out, how to report errors caused by lua to the user. Using this script (notice that `foo` is not defined): ``` lua print("Hello World!") foo() ```...
I discovered, mainly by accident, that if you use the following `file_server` configuration ```xml ``` tsung won't start. The problem seems to be that https://github.com/processone/tsung/blob/develop/src/tsung_controller/ts_config.erl#L1140-L1142 does detect an integer in...
I'm on 4.3.4 and just saw this warning: ``` […] TASK [geerlingguy.mysql : Ensure MySQL users are present.] ******************************************************************************************************************************************************************** ok: [myhost.example.com] => (item={'name': 'app', 'host': 'localhost', 'password': 'geheim', 'priv': {'app.*':...
Hey there 👋 I'm trying to send a PR (https://github.com/thoughtbot/appraisal/pull/219) and I'd like to add specs. But I'm unable to run the current specs. What am I missing? I did...
There is a minus sign missing in the explanation for the `Range#overlap?` section. Thank you for this great summary of Ruby changes, I enjoy it every time! 👏
Hi there! little disclaimer first: I'm not terribly familiar with go. I'm trying to take a look around how to use lua with go. I've opened a similar issue with...