Jeremy Woertink
Jeremy Woertink
Is there a way to make the stories go in to a full screen mode?
I have a video file that's just local. In my stories object, I set the `url: "/assets/videos/sample.mp4"`. It plays fine in production in all browsers, and it plays fine locally...
The twitter auth is a bit tricky. All of the current supported engines use OAuth2 except Twitter. https://github.com/msa7/multi_auth/blob/35ca2a6f2f0652d7e117f54e46c18a8f8b1c4a6d/src/multi_auth/providers/twitter.cr#L65 The issue is that Twitter itself gives you several different secret keys...
https://github.com/msa7/multi_auth/blob/eccc6261a748494afb90988aad75089502ba9140/src/multi_auth/providers/twitter.cr#L58 If the Twitter provider isn't setup properly, you won't get back a valid user json on this line. Since there's no built-in logging here, the only thin you know...
This shard https://github.com/jgaskins/redis seems to have better support in some areas, and several people have mentioned that it's a little easier to work with. We can look in to what...
Fixes #46 This PR swaps out the redis implementation to a new shard. With the new shard, the monkey patch is no longer required, and several stability improvements are made....
Any place we have `rescues`, we should have a configurable proc that we can call to pass the exception. Then someone could essentially configure their own bug reporting from that.
Related: https://github.com/stefanwille/crystal-redis/issues/128 We have an issue where if redis is rebooted, this `redis_subscribe` doesn't reconnect https://github.com/cable-cr/cable/blob/a8f7f3d9d8218078ab270720738dc33e0858775b/src/cable/server.cr#L152-L162 This ends up throwing a cannot connect error, and we have to reboot our...
The ruby version has this https://api.rubyonrails.org/classes/ActionCable/RemoteConnections.html Which allows us to disconnect a specific user from the socket with: `ActionCable.server.remote_connections.where(current_user: User.find(1)).disconnect` > This will disconnect all the connections established for User.find(1),...
When you use `select` as a type, it takes you to a new page with those options you can select from. Is it possible to customize this page? In your...