Amir Szekely

Results 139 comments of Amir Szekely

Agreed. For now it's small enough and GitHub Pages supports gzip. But once it gets bigger, we should probably switch to one or maybe a batch of 10 at a...

As far as I can tell, technically those are valid email addresses. Though it does seem like we need to limit the local part to 64 bytes. You may want...

Can you upload that DLL somewhere?

I'm not yet sure why, but the image directory suggests the resource directory is smaller than it is. That's why it goes out of bounds when it tries to read...

You have to parse the resources in order to read the version information. You can try modifying line 358 in `PEParser.java` and make it read the entire section instead of...

No there isn't. We could use some more documentation and better unit testing that can run on any system.

I was able to work around the issue by manually installing `ruby_dep` first with: ``` vagrant plugin install ruby_dep --plugin-version 1.3.1 vagrant plugin install vagrant-unison2 ```

I am unaware of an easy way to upgrade the bundled version of Ruby for Vagrant. Maybe `vagrant-unison2` can directly require `ruby_dep` with a version supported by Vagrant 1.8.5 on...

This issue makes it hard to develop CSDs on Windows without some ugly workarounds to avoid having a directory named AUX on disk. As it is right now, it's impossible...

To work around this issue you can create the following class: ``` from django.utils.deprecation import MiddlewareMixin from pinax.teams.middleware import TeamMiddleware class CompatibleTeamMiddleware(MiddlewareMixin, TeamMiddleware): pass ``` And then point to it...