Sunny Ripert

Results 92 comments of Sunny Ripert

@williampollet Would you be willing to try a patch for this feature using the `array: true` syntax? 🙏🏻

What I meant by “Wrong @sunny” is that you mentioned me, but I am not a reactjs.org maintainer.

A quick fix could also be to replace blank values by a non-breaking space. This would, at least, make the link appear and be clickable. This would help show visually...

> Do we have any progress on this? @sikandartariq1 would you be willing to have a try at the change? 🙏

Hi @mhenrixon! Thanks for the clarification. > I still don't understand why anyone would choose to use ActiveJob when having access to Sidekiq You're absolutely right to question using ActiveJob....

I am currently doing this daily to deal with this issue: ```rb Sidekiq::Queue .all .select { |q| q.name =~ /^sidekiq_alive-/ } .select { |q| q.any? { |w| w.created_at < 1.day.ago...

One way to get the current exchange rate could be to determine it on the spot. E.g.: `1.to_money("EUR") / 1.to_money("IDR")`.