Bazyli Brzóska

Results 57 issues of Bazyli Brzóska

Going to: http://evancz.github.io/elm-todomvc/#/completed does not open TodoMVC in the proper tab. Nor does going to http://evancz.github.io/elm-todomvc/ and subsequently entering http://evancz.github.io/elm-todomvc/#/completed change the tab.

The error happens here: ``` js AsyncExpression.prototype.connect(binding, scope) { var info = this.expression.connect(binding, scope); // info is undefined here! return { value: info.value ? info.value.__value : undefined, observer: new AsyncObserver(info.value,...

bug

The screenshot here https://atom.io/packages/neutron-ui is a dead link.

This is a follow-up to v2.0 #65 to switch the default parsing on supported systems so we support BigInt strings transparently.

enhancement
help wanted
good first issue

Doc needs to reflect this change.

help wanted

They don't make or break a deal, but a load of those little thing does add up... like: TS: - badass autocomplete with literals https://github.com/Microsoft/TypeScript/issues/13789 Flow: ...

Flow: - https://medium.com/@raxwunter/secret-flow-types-86b2ebb30951#.u7j5ieab3 - https://github.com/facebook/flow/blob/master/src/typing/type_annotation.ml#L163 - http://www.saltycrane.com/blog/2016/06/flow-type-cheat-sheet/ - https://twitter.com/nodkz/status/870629967738155010 - https://www.youtube.com/watch?v=WgvAPzOmiP0 - https://qiita.com/coizmo/items/21578b7d13819bb26fc3#_reference-d4f1712e3e2a18b823ef - https://qiita.com/kinzal/items/e1898c89af5618e18334#_reference-afb4a1e9c90d42e7cc28 - https://qiita.com/kinzal/items/8e2978be3ec78663c70b#_reference-5b1da19d077e0f5e7bfe Both: - https://redditblog.com/2017/06/30/why-we-chose-typescript/

We need to update the readme to add the latest features from TS 2.7 and 2.8. Help appreciated!

[DRAFT] In TS you don't get "loose" properties on your objects, since you can't assign more than your definition expects: ```ts /* @flow */ type NonExact = {} const a...

```ts function test(param : Array) { return param } const compatibleVar : Array = [1, 2, 3] test(compatibleVar) ``` This [works properly in TypeScript](http://www.typescriptlang.org/play/#src=function%20test(param%20%3A%20Array%3Cnumber%20%7C%20string%3E)%20%7B%0D%0A%20%20return%20param%0D%0A%7D%0D%0A%0D%0Aconst%20compatibileVar%20%3A%20Array%3Cnumber%3E%20%3D%20%5B1%2C%202%2C%203%5D%0D%0A%0D%0Atest(compatibileVar)%0D%0A%0D%0A), but [fails in Flow](https://flowtype.org/try/#0PQKgBAAgZgNg9gdzCYAoVUCuA7AxgFwEs5sx8BTAZ3wAoAHAQwCcGBbMALjAEEmWBPADzZMrAEbkmYAD5hqTQtgDmAPgCUYAN6owYJuXyYmpRi1aoAvulwlqYG60ZExhGOQBqzTjz4MhI8UkVMABeMABtAEYAGjAAJliAZgBddApqGgcnQhc3TyY1dCA) with the...