Justin Louie
Justin Louie
I'm on Ruby 3.0.1 and don't see this issue. ``` irb(main):001:0> 9.86.class => Float irb(main):002:0> 9.86.to_money.cents => 986 irb(main):003:0> 9.86.to_money => # irb(main):004:0> 9.86.to_money.cents => 986 irb(main):005:0> 9.86.to_d(Float::DIG).to_money.cents => 986...
Oh man, I like this change a lot. It semantically/mentally decouples the AR model from the "handlers". I just started using this gem and based on the current semantics I...
WOW okay @jbirdjavi, not sure if you're still having the problem, but it took me "forever" to hunt it down. Like you I was coming from an existing Rails 6...
We need to ignore a specific language for pluralization. i.e. Vietnamese doesn't have a concept of `one` ```yml en: errors: record_count: one: there is one record other: there are %{count}...
I've been running into this a lot as my M1 wakes from sleep (which of course annoyingly switches from any device to the monitor's audio device). Please let me know...
I also am having a similar issue. I appears when switching audio sources for me. The volume gets super loud. Running: 3.2.4 (Remote), Driver v2.0.5, App: 1.4.6 Apple M1, MBP...
+1 I need to be able to parse: `?utf8=✓&d=&lesson_filters[time]=0,20&lesson_filters[neighborhoods][]=City Center&lesson_filters[neighborhoods][]=West Side&lesson_filters[neighborhoods][]=&lesson_filters[activities][]=&lesson_filters[studios][]=` From a rails form, grouped checkboxes.
In my search for this feature, I found [d2](https://github.com/terrastruct/d2) which I am using. Large entity graphs get very hard to read without some logical grouping. Would love Mermaid to be...
I'm just entering this space and learning a lot (so typing this is helping me too). I agree with @the-solipsist that the statement "always" increase/decreases actually makes it more confusing...
@the-solipsist again you're correct from an accounting perspective but not when it comes to this codebase: ```python # https://github.com/adamcharnock/django-hordak/blob/master/hordak/models/core.py#L502 def type(self): if self.amount.amount < 0: return DEBIT elif self.amount.amount >...