Dave Newman
Dave Newman
It almost compiles...
I haven't dug into how this works too much but it's not matching me in a jsx file when I type: ``` renderThing() { return
As an example here's one for a 4x4 matrix ``` fn inverseMat4(m: Mat4) Mat4 { const A2323 = m.fields[2][2] * m.fields[3][3] - m.fields[2][3] * m.fields[3][2]; const A1323 = m.fields[2][1] *...
Added some more properties. Info at: https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/srcset
Trying to get this working on AWS Lambda, getting this: ``` /var/task/node_modules/pg-native/node_modules/libpq/node_modules/bindings/bindings.js:83 throw e ^ Error: libpq.so.5: cannot open shared object file: No such file or directory at Module.load (module.js:356:32)...
I put it on a branch to avoid mangling the gem but I think this will be easier to use on macruby, which can be installed with rvm
Not sure what's causing this: ``` > ruby -e "require 'redcarpet'; puts Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true).render('[email protected]ü')" [email protected]�� › ruby -e "require 'redcarpet'; puts Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true).render('[email protected]ü').inspect" "[email protected]\xC3\xBC\n" ``` It's fine without...
Looking to get debug statements but I'm not sure how to set this up. I'm using the `aws-flow-ruby` command line utility to start the workers.
The current expectation error message looks like this: ``` Rhino.Mocks.Exceptions.ExpectationViolationException: IContestant.PlayGame("Shouldly"); Expected 1, Actual 0 ``` Which is not super helpful. It would be better if printed close matches (or...