Pierre-Yves Gérardy
Pierre-Yves Gérardy
Would you want the JS/CSS files to be loaded in all pages?
👍 for the idea, but not automatically, at least not for existing flems (there are existing flems+mithril samples where I've deleted the HTML tab since I mount the app on...
[This for example](https://flems.io/#0=N4IgzgpgNhDGAuEAmIBcIBmB7LA6eYIANJgJYyGoDaoAdgIYC2EamO+hJsWtivrpXhABOGerAgACAGI5JwADq1JkgEb1hqSWHjDBAcyUBfJUu60dk2ltoBXRqpGSAvJLFRIp2ucvYsqWSwXeXVNKxNaMx4wLBhcKCx9AAo-AEpiEG5GAAdyEVYCECMAXSMgA) should not pass type checking :-) ```TS interface Foo { bar: string } const n: number = false const foo:Foo = {bar: n} console.log(foo) ```
The `Cannot redeclare block-scoped variable 'n'.` (and `'foo'`) don't make sense to me. They are only defined once... Edit: > That's awesome! Yeah, doubling down on that :-)
I'm afraid I don't have any useful feedback...
As mentioned in #42, it would be nice to show that the deps have been tampered with, even if we can't see what changed (maybe italicize the name and add...
What about `(*)` by default and `(modified)` when the tab is active?
The following pattern allows to curry functions that you define yourself: ``` JS function innerCurry(args, f, context) { return f.bind.apply(f, [context || this].concat([].slice.call(args))) //there may be a more efficient way...
``` bash $ pkg-config libagg --cflags -I/Users/pygy/src/homebrew/Cellar/libagg/2.5/include/agg2 ``` Adding `-I/usr/X11R6/include/` to the `AGG_INCLUDES` in `makepackage` solved the problem, and removing `-lsupc++` (reportedly not needed on recent versions of OS X)...
I disabled readline, and it works (I hadn't seen the option in makeconfig). Thanks a lot for the help.