Gilbert

Results 79 comments of Gilbert

Version numbers can take care of this, and Tau is not 1.x yet. If there is a better alternative, now is the best time to consider it. I will create...

It's documented in the readme. Is it missing in the executable `--help` section?

The [Compositional Type Checking](http://gergo.erdi.hu/projects/tandoori/Tandoori-Compositional-Typeclass.pdf) system written by Georgö Érdi may be of use in this area. You can see a reference implementation in my [experimental js type checker](https://github.com/js-zero/type-checker#type-system)

Bug report: When I clone down this PR and run `make build`, I get the following error: ``` Executable test in _build/default/reason-native-project doesn't have a corresponding .ml file ``` It...

@jordwalke I thought I was using the latest, but it turns out I wasn't. Using `jbuilder 1.0+beta9` worked, thank you!

If you want to force `https` during production, great. But forcing it during development is an unnecessary burden. No other library I've encountered has forced me to use `https` for...

I would like to know the answer to this too. Bonus points for proxying to another git server like GitHub itself!

Performance seems like a strange reason to not implement front matter. Caching should solve this problem pretty easily, especially since you would only need to cache when you're done editing...

Yeah I did notice that this repo has more methods covered than [Belt's Node](https://bucklescript.github.io/bucklescript/api/Node.html) module. Are the changes here expected to eventually be merged into Belt? Given there's only a...

I think you would only pasting a JSX expression. So from your example you'd paste in: ```jsx Hello, {formatName(user)}! ``` and get back ```js m('h1', "Hello, ", formatName(user), "!" )...