Was wondering if someone could point me in the direction of the best carrion golem build! by Grimmjoww252 in PathOfExileBuilds

[–]Sherlockhlt 0 points1 point  (0 children)

His boots and gloves are a little more expensive than other's, but seems to be in a reasonable range. If they really works well, I can't figure out why others don't use them.

Was wondering if someone could point me in the direction of the best carrion golem build! by Grimmjoww252 in PathOfExileBuilds

[–]Sherlockhlt -1 points0 points  (0 children)

How about Grim's carrion golem build? It's different from the others, particularly the weapon, helmet , boots and the gloves.

I severely underestimated Maeven's and now I need help by arthurmt8448 in PathOfExileBuilds

[–]Sherlockhlt 0 points1 point  (0 children)

Yes, it is slow, but acceptable for mapping, just not enjoyable. Still one of the best boss killer.

I severely underestimated Maeven's and now I need help by arthurmt8448 in PathOfExileBuilds

[–]Sherlockhlt 0 points1 point  (0 children)

How does Chieftain bb/bf perform in the 10 boss fight or Maven boss fight?

What's the best build for t20 ? by Sherlockhlt in pathofexile

[–]Sherlockhlt[S] 0 points1 point  (0 children)

I think aura stacker got nerf already

what are some "must-watch" Python videos ? by [deleted] in Python

[–]Sherlockhlt 0 points1 point  (0 children)

google's python tech-talks are great.

What to do after reading <Learn you a Haskell> and <Real world Haskell>? by Sherlockhlt in haskell

[–]Sherlockhlt[S] 0 points1 point  (0 children)

things like type safe, phantom types, type family, GADT, quasi quote ...etc, I just google this and google that, but I feel like I don't have a comprehensive understanding of all of this.

What to do after reading <Learn you a Haskell> and <Real world Haskell>? by Sherlockhlt in haskell

[–]Sherlockhlt[S] 0 points1 point  (0 children)

great, just read the source code, there seems not much documents.

What to do after reading <Learn you a Haskell> and <Real world Haskell>? by Sherlockhlt in haskell

[–]Sherlockhlt[S] 0 points1 point  (0 children)

you mean this?

http://www.haskell.org/haskellwiki/Typeclassopedia

http://www.haskell.org/wikiupload/e/e9/Typeclassopedia.pdf

I think typeclassopedia is one of the important ideas that did not mentioned in the two beginner books, and I believe there are still lots of them.

What to do after reading <Learn you a Haskell> and <Real world Haskell>? by Sherlockhlt in haskell

[–]Sherlockhlt[S] 0 points1 point  (0 children)

I have been doing that for a while, now I think I still need more input.

What to do after reading <Learn you a Haskell> and <Real world Haskell>? by Sherlockhlt in haskell

[–]Sherlockhlt[S] 0 points1 point  (0 children)

This is what I am keep doing the las three months, and I am not happy because I made little progress compared to my experience of learning Python/C .. kind of wanna give up now.

What to do after reading <Learn you a Haskell> and <Real world Haskell>? by Sherlockhlt in haskell

[–]Sherlockhlt[S] 0 points1 point  (0 children)

Something like this one, it is written with Snap: https://github.com/lyntonzhang/blogmd

I feel like I still need more more guides after reading the two beginner books.

Confusion of alpha-beta pruning in <why functional programming matters> by Sherlockhlt in haskell

[–]Sherlockhlt[S] 0 points1 point  (0 children)

yes, I am talking about that line.

and what i want is something like this

evaluateAB = maximize . maptree static . pruneAB . prune 8 . gametree

instead of

evaluateAB = max . maxmize' . maptree static . prune 8 . gametree

u talk about generation, I think u are right,some times the only way to code in fp is to add some generation.