Jonas Nicklas

Results 54 issues of Jonas Nicklas

For example when running bundler on Rails, I may not be interested in the 'test' gems, but since test is the only environment, I have to do something ridiculous like:...

Getting this error when trying to run features in Akephalos. I don't have time to investigate this much further, but thought I'd post it here in case it rings a...

In jashkenas/CoffeeScript, the following is valid: ``` coffeescript foo or throw "bar" ``` It compiles to this: ``` javascript foo || (function() { throw "bar"; })(); ``` The same code...

Suppose we have a template like this: ``` ruby template = Addressable::Template.new('/path{?page,per_page}') ``` If we call `extract` with a URL which contains a query parameter that is _not_ included in...

URI Templates

Depends on #649 ## Motivation One of the visions for Effection was to recreate part of the brilliant OTP system for Erlang, by enabling the easy creation of supervision trees....

When implementing the `@effection/websocket-server`, I implemented it as a `Subscription` where each item in the connection represents a new connection. Unfortunately this doesn't really work for a few reasons: -...

We decided to hold off on making a Chrome/Firefox devtools extension, but since I already did some work in this direction, let's keep this draft PR around for the future.

This allows us to merge multiple streams of the same name into one stream. This is useful in many cases where streams from multiple sources need to be combined. For...

Since Object#type is deprecated in Ruby. The call seems to work fine, but the warning is a bit annoying.

I don't think there's any case where several of the boolean flags can be true at the same time is there? With Struct variants being un-feature-gated recently, wouldn't they be...

enhancement