Stephen Ierodiaconou

Results 39 comments of Stephen Ierodiaconou

Hey all, this would be great to get into bullet at some point. Anything I can do to help it get merged?

http://www.opensource.apple.com/source/gcc/gcc-1640/libobjc/class.c

specifically on class objects name property is not set, it does seem to be on metaclass objects

Just implemented so class object name property set by message send to +name at instantiation... maybe this should be simpler

Specifically booleans and need support for %@ syntax in format string

Here is my _super ugly, very fragile, temporary_ workaround... in case it helps someone until a better solution surfaces. It allows HMR to continue to work on client side and...

@justin808 the issue is basically https://github.com/rails/webpacker/issues/2165 which I know you looked at before. ie the bundle contains HMR logic which references `window`. Im not sure now to apply the same...

Yeah that’s why I was thinking it would be good to do something like what you did in the commit I referenced above but I don’t know how in react-rails!...

So looking at this https://github.com/hotwired/stimulus/pull/421 im wondering if `cjs` is even needed since this depends on stimulus 3 anyway and it only includes `dist/stimulus.js` (which uses the `class` keyword) and...

@sija things are slower at the moment: ``` require "benchmark" Benchmark.ips do |x| x.report("ex1 - long") do BigDecimal.new("+0829756293456064502345702345.283457863284759365e-7364756823") end x.report("ex2 - long error") do BigDecimal.new("138479783434.927347264629873647269348762e82347978e") rescue # end x.report("ex3 -...