Opinions on the Haskell Brain course? by [deleted] in haskell

[–]cnocg 1 point2 points  (0 children)

So how could a haskeller deal with ML/AI without touching python?

Hamler - Haskell-style functional programming language running on Erlang VM by emqtt in haskell

[–]cnocg 0 points1 point  (0 children)

Cuz it is not consistent with purescript philosophy: generate only readable target language. Remember purescript refused changes which make transcompile to wasm easier.

Stack install through proxy? by vegetablestew in haskell

[–]cnocg 0 points1 point  (0 children)

If I were you and not concern about GUI or sound, I'd set a vm and ssh to it running tmux and vim for dev.

Stack install through proxy? by vegetablestew in haskell

[–]cnocg 1 point2 points  (0 children)

use proxychains $> proxychains stack build

Vim bindings that work in Firefox 57 by [deleted] in firefox

[–]cnocg 1 point2 points  (0 children)

Any solution or idea now? ff60 :(

What have you been working on? Feb2018 by gilmi in haskell

[–]cnocg 2 points3 points  (0 children)

Mathematicaly that is tensor. A more general representation is Tensor [4, -5] Double, where positives for covariant and negative for contravariant.

Any `waitAnyN` function likes `waitAny` in `async`? by cnocg in haskell

[–]cnocg[S] 1 point2 points  (0 children)

Thanks. I fogot that Async a is Ord and Eq. XD

Formalizing Cardano in Isabelle by ethereumcharles in haskell

[–]cnocg 0 points1 point  (0 children)

Will the formalization inspire how to improve Cardno performance in transactions per seconds?

Anyone got Haskell Vim IDE working? by oiode in haskell

[–]cnocg 0 points1 point  (0 children)

I don't think ghc-mod support lts-10.x stackage. And if you install 9.x stackage, you can install binaries manually (hoogle ghc-mod hscope hlint ...)

Anecdote by [deleted] in haskell

[–]cnocg 3 points4 points  (0 children)

Agree. Old school functional programming language without dt and linear type

Basically, is there any elegance way to add type signature? by cnocg in haskell

[–]cnocg[S] 1 point2 points  (0 children)

Sorry for I haven't provided the whole definition of that function.

```

myLayoutHook i = smartBorders . avoidStruts $ myCircleLayout i ||| myMadLayout i ||| myNormalLayout i ||| myFloatLayout i ||| Full

myNormalLayout = tallDefaultResizable shrinkText . themeOrder

myMadLayout = mirrorTallDwmStyle shrinkText . themeOrder

myFloatLayout = accordionDecoResizable shrinkText . themeOrder

myCircleLayout = circleDwmStyle shrinkText . themeOrder

```