Justus Perlwitz

Results 13 issues of Justus Perlwitz

I am getting this deprecation warning when using Rails 4.0.3, Rspec 3.0.0.beta2 and cancan 1.6.10. ``` `failure_message_for_should_not` is deprecated. Use `failure_message_when_negated` instead. Called from /home/vagrant/.rvm/gems/ruby-2.1.1/gems/cancan- 1.6.10/lib/cancan/matchers.rb:11:in `block in '. ```

In mypy you can use this ```python import typing def returns_dict() -> typing.Mapping: return dict() returns_dict() ``` And it validates just fine. But with enforce I get a strange result...

I have had this obscure problem, which I would call a bug since one would expect to get a proper error message like Python 3 normally does. I use -...

I am storing a profile picture for each user in our database. ``` class User(AbstractBaseUser, PermissionsMixin): profile_picture = models.ImageField( upload_to="profile_picture/", blank=True, null=True, ) ``` Now, I would like to return...

I have a middleware that populates info.context with several data loaders that are needed to pull in related objects. When I add the middleware to the GraphQL WS consumer, the...

I use ordered model with order_with_respect_to set to something. No ordered item should ever have the same order as another item. So, I try to set in the Meta class,...

This only shows the index page: https://benlauwens.github.io/SimJulia.jl/latest/index.html The sidebar is unpopulated. ![screen shot 2017-09-09 at 17 46 13](https://user-images.githubusercontent.com/1641042/30238697-c9cc597e-9586-11e7-8bca-7af4eff543e5.png)

mrtdreader will fail with the `Couldn't find start of image` error, at least for my German passport. After hotwiring `fileread.c` to always output the image, I found out that a...

DEPENDS ON #402 DEPENDS ON implementation of a state machine, or other means to track if connection is failing. The problem: reconnecting with a default delay of 1s can result...

Caveat: I have not tested whether this package will build correctly or not. I was only able to test it locally using `npm run build` and then using `npm link...