Julius Beckmann

Results 51 issues of Julius Beckmann

Should return `"1234"`: ``` iex(13)> Abacus.eval("\"1234\"", %{}) {:ok, 1234} ```

I implemented 1-n relations and got the following problem. In the section https://github.com/eHealthAfrica/couchdb-best-practices#one-to-n-relations the example looks like this: > "_id": "artist:tom-waits:album:closing-time", When using a query to fetch all artists, also...

Common case it to have unique Usernames/Emails in a document. How can be assured with couchdb, that the values of these fields stay unique? A Idea i found interesting on...

When the connection to the mqtt server closes, the Hulaaki.Client.Connection sends a :shutdown. Somehow the Hulaaki.Client does not handle that and keeps running. But will crash with the next ping...

I am using Twitter Bootstrap and needed to change the "currentClass" to "active" for my whole site and found this quite easy way to do so: ``` yaml # config.yml...

Please show the websocket server response status code in this message: `websocat: WebSocketError: Received unexpected status code` My websocket server will respond with HTTP 402 or 429 status codes, seeing...

I was wondering why there is no client using curl, guzzle or buzz? By using Guzzle even a async response handling could be done: http://guzzle.readthedocs.org/en/latest/clients.html#asynchronous-requests Should such clients be part...

When running the test with HHVM, a unexpected behaviour appears in https://github.com/hamcrest/hamcrest-php/blob/master/hamcrest/Hamcrest/Arrays/SeriesMatchingOnce.php#L34 in this line: ``` php $nextMatcher = current($this->_elementMatchers); ``` Failing travis build: https://travis-ci.org/hamcrest/hamcrest-php/jobs/65859156 The problem was encountered in...

It would be cool, to have a praedicate to check if a column is in a state, like: `is_update_successfull?` Code to use here: ```elixir states |> Enum.each(fn(state) -> def unquote(:"is_#{column}_#{state}?")(model)...