Liam Curry
Liam Curry
"full" enables all of what markdown-it has to offer. I didn't stay with "githubFlavored" because markdown-it offers more than that I think. But "githubFlavored" would still probably be a better/more...
Just updated the PR with some better names. Any other issues?
I added the gzipped results to the table above. You're right, that helped considerably. 1.4mb to 69kb! I didn't realize gzip was so effective. IMO 69kb is still kind of...
@shurcooL I was using a fork of websocket because I made some updates. [Here's the pull request](https://github.com/gopherjs/websocket/pull/4). There's a new file in the table above called `websocket_fork.go` that uses this...
Forgive my ignorance, but could you give an example of `(reflect.Value).Method()` that couldn't be detected by the compiler? Maybe we can figure out a way around that. I have to...
@dominikh thanks for the example, that makes sense. @neelance just to echo @dominikh question, would it be possible to detect use of `Method()`/`MethodByName()` and only import the full packages in...
@neelance I added `websocket_2015-02-03.go` compiled file sizes to the table above. Definitely an improvement! A 315% reduction in file size to be precise. It's interesting that the gzipped file size...
FYI using Google's Closure Compiler with advanced optimizations I was able to get the minified file size down to 218kb (another 179% reduction), but the code no longer works.
I saw that he is rewriting `elm-testable` with Native modules, but it looks like the branch he was working on hasn't been touched in a couple months. Do you know...
Here are some possible implementations (untested): ```elm import Fuzz exposing (..) import Date exposing (Date) import Time exposing (Time) time : Fuzzer Time time = map ((*) Time.second)