Andriy Tyurnikov

Results 28 comments of Andriy Tyurnikov

Running generator `rails g bounded_context:bounded_context PlatformCore` generates files ``` platform_core/lib/platform_core.rb platform_core/test/test_helper.rb ``` After adding some code ```ruby # platform_core/lib/platform_core.rb module PlatformCore CONSTANT = 42 # constant to reference from rails...

@paneq , yes, this *workaround* works, but rails models have better class visibility then BC, as models don't need such workarounds. I'll cross-post question. Are bounded context independent/isolated from environment?

"I distinguish between infrastructure isolation (they can share EventStore, DBs, app server, gems) and conceptual, business isolation." @paneq , well, here we have small differences, as I would prefer at...

Does it have something to do with this: ```js let videoElement = document.createElement('video') //this will work videoElement['controls'] = true; videoElement['loop'] = true; //this will NOT work videoElement['muted'] = true; document.body.appendChild(videoElement);...

Let's remember that in traditional typography different font weight was ... a different font of same family - and most of them are different with different defaults and metrics. Generalisation...

@tcocca any chance to get this one merged?

Initial implementation added in #239 Feedback, input, tests are welcome.

@michaeltaranto , @souporserious I have found a solution, which also allows CSS-heavy implementation, yet I would have to dive into details, because I have faced two serious browser limitations: -...

I am thinking about same thing, and I lean towards CSS `calc()` for `font-size` property, instead of compile-time computations over values normalised to `px`.

@LukeFinch I've successfully reimplemended computations in CSS calc, discovered workaround is to pass values as numbers (implied rem), storing as CSS variables and to convert into units only after computation...