Nihad Abbasov

Results 32 comments of Nihad Abbasov

Gemfile: ```rb source 'https://rubygems.org' gem 'pg' gem 'jwt' gem 'i18n' gem 'aws-sdk-ssm' gem 'aws-sdk-lambda' gem 'activemodel', '~> 6.1', require: 'active_model' gem 'activerecord', '~> 6.1', require: 'active_record' gem 'activesupport', '~> 6.1',...

Example: https://github.com/github/hub/blob/70a5493539d7a614449f0d32051e08b0dbc53bc3/etc/README.md

> @wkoszek any example? I think it should be like in `man hub` https://github.com/github/hub/blob/70a5493539d7a614449f0d32051e08b0dbc53bc3/share/man/man1/hub.1.ronn

Download handles only binary files: https://github.com/NARKOZ/gitlab/blob/891fc6020868ee39eb0f98c144fba3eef82d3f97/lib/gitlab/client/jobs.rb#L120-L124

@silviavali Hi. Could you email me your report? (see my profile for email address)

@nagadomi why not to introduce rate limiting instead of captcha? You can allow only a certain number of requests per day from an IP, and I'm sure 10-20 requests per...

You can use [`evaluation_by`](https://github.com/twitter/activerecord-reputation-system/commit/076dc04b7b41ca866d351d62a6e7184a5ca608b7) method. Expect the new version released next week, until then you can use github source in Gemfile: ``` ruby gem 'activerecord-reputation-system', github: 'twitter/activerecord-reputation-system' ```

See http://stackoverflow.com/q/22617224 for a possible fix. In short, use: ``` reorder('votes desc').find_with_reputation(:votes, :all) ```

Seems like a bug. When you remove a source the given evaluation should be destroyed too.