James Chevalier

Results 9 issues of James Chevalier

Received three emails: Hello James, I tried your launch soon project, and found some problem with the mailchimp api. When i try to subscribe reffered user, there is problem in...

There are potentially two situations to account for: 1) API keys are present in the config 2) API keys are not present in the config While Little Corner exists on...

Use [fitgem](https://github.com/whazzmaster/fitgem) to connect to the [API-Get-Badges](https://wiki.fitbit.com/display/API/API-Get-Badges) endpoint. Display badges similar to the existing Foursquare badge layout.

feature

The problem is that response times consistently and gradually increase when there is an N+1 query and prosopite is enabled and Turbo is being used. The simplest way to reproduce...

## Motivation Related to https://github.com/mapbox/mapbox-gl-js/issues/12841 Currently, setting the map theme is done after the style is loaded: ```js map.on('style.load', () => { map.setConfigProperty('basemap', 'lightPreset', 'night') }) ``` One issue with...

I've been using omniauth-runkeeper for over a year now, and it's been great - thank you for creating it. Just recently, I noticed some errors when a particular user was...

I've been using whenever for years, mostly under capistrano 2, without a hitch. It's been a really great experience - **thank you**! I'm deploying a Rails app with capistrano 3...

capistrano
bugfix

I am trying to configure ActionCable in Rails 6.1.4.1 to run on a subdomain, but when I follow [these instructions](https://www.phusionpassenger.com/library/config/nginx/action_cable_integration/#running-the-action-cable-server-on-a-different-host-or-port) the `env["warden"]` (which is used by Devise) is nil in...

This line causes logins to fail in rack v3.1+ https://github.com/omniauth/omniauth-oauth/blob/master/lib/omniauth/strategies/oauth.rb#L51 It must be changed from `opts[:oauth_verifier] = request["oauth_verifier"]` to `opts[:oauth_verifier] = request.params["oauth_verifier"]` Due to my Rails app's state, I was...