witchcraft icon indicating copy to clipboard operation
witchcraft copied to clipboard

How to use?

Open imranismail opened this issue 6 years ago • 10 comments

Are there any recommended materials on how to use this?

I've tried folktale and it's amazing how much I've improved the codebase with concepts such as Result/Either.

Is http://learnyouahaskell.com/ a good start?

imranismail avatar Jun 23 '18 04:06 imranismail

Have you looked at the Haskell Book yet? Chris Allen (one of the author of the book) also has a great list of online resources. Julie Moronuki (the other author) also has online classes at https://typeclasses.com/

A plethora of texts: https://github.com/Mzk-Levi/texts https://github.com/cohomolo-gy/haskell-resources

Edit: Some more resources:

PureScript:

  • Phil Freeman: PureScript by Example (most up to date version maintained by Dustin Whitney) https://github.com/dwhitney/purescript-book

  • Various resource by Justin Woo: https://purescript-resources.readthedocs.io https://psc-package.readthedocs.io https://spacchetti.readthedocs.io

  • Alex Kelley: Make the Leap from JavaScript to PureScript https://hackernoon.com/make-the-leap-from-javascript-to-purescript-5b35b1c06fef

  • Vincent Orr: Functional Programming Concepts in Purescript https://egghead.io/courses/functional-programming-concepts-in-purescript (caveat: for v0.11.7. For breaking changes in v0.12 see https://github.com/purescript/purescript/releases/tag/v0.12.0 )

Category Theory

Other:

  • Julie Moronuki & Chris Allen: Haskell Programming from First Principles (aka Haskell Book)

  • Harry Garrood's A guide to the PureScript numeric hierarchy https://a-guide-to-the-purescript-numeric-hierarchy.readthedocs.io

  • Brian Lonsdorf: Professor Frisby Introduces Composable Functional JavaScript https://egghead.io/courses/professor-frisby-introduces-composable-functional-javascript

  • Docs of the Witchcraft/Algae/Quark/TypeClass elixir packages repo: https://github.com/expede/witchcraft https://hexdocs.pm/witchcraft/readme.html https://hexdocs.pm/algae/readme.html https://hexdocs.pm/type_class/readme.html https://hexdocs.pm/quark/readme.html

toraritte avatar Jun 28 '18 04:06 toraritte

I was inspired by, https://youtu.be/psdG5iV57q0 thats how i found this project

Now i'm working on http://learnyouahaskell.com/

Please keep feeding us with resources ;)

Edit: Another supernice haskell resource (video tutorials, really nicely narrated) https://haskell-at-work.com/episodes.html

AleksandarFilipov avatar Jun 30 '18 17:06 AleksandarFilipov

I feel a bit ashamed for not recommending the Witchcraft docs above, because they explain the type classes well in a concise manner. I have been intimidated by these terms before but just reading the docs on Semigroup and Monoid dispelled much of my fears. I even feel confident enough to start tackling Monad:)

(Thank you @expede for working on this and making it so beginner-friendly! This project feels to be really underappreciated.)

@imranismail @AleksandarFilipov What are your experiences after 2 months?

toraritte avatar Sep 03 '18 15:09 toraritte

@toraritte well, I derailed into the world of Haskell. But the language where i'm of most use is still elixir so my intentions are to get back here.

AleksandarFilipov avatar Oct 09 '18 20:10 AleksandarFilipov

These are useful to me:

  • https://mostly-adequate.gitbooks.io/mostly-adequate-guide
  • http://adit.io/posts/2013-04-17-functors,_applicatives,_and_monads_in_pictures.html

kpanic avatar Nov 25 '18 15:11 kpanic

@toraritte

(Thank you @expede for working on this and making it so beginner-friendly! This project feels to be really underappreciated.)

Hooray thanks! I'm very glad that it's appreciated 🎉🎉🎉 You've made my day 😄

expede avatar Feb 14 '19 03:02 expede

@imranismail

I've tried folktale and it's amazing how much I've improved the codebase with concepts such as Result/Either.

You may be interested in Algae (docs for Algae.Either: https://hexdocs.pm/algae/Algae.Either.html). These instances have Witchcraft instances, which you'll be familiar with from folktale 😄 Some have different names, but the main ones you'll probably want are Witchcraft.Chain.bind/2 (AKA >>>).

Also, if you're just looking for more happy-path error handling and nothing else, check out Exceptional. There's also an article and conference talk on Exceptional.

Are there any recommended materials on how to use this?

Here's a couple conference talks, in case they're helpful:

expede avatar Feb 14 '19 03:02 expede

Sorry in advance for this spam, but I'm starting to appreciate Witchcraft and its supporting libraries more and more. I was trying to find const/2 in Witchcraft, but it was in Quark. Most of my studies were pretty much lacking any formal math, and never heard of combinator calculus even after trying to get into PureScript and Haskell.

I think the Witchcraft-way of organizing functionality is more principled, because usually const/2 is shoved into semi-arbitrary modules (such as Prelude in Haskell, Data.Function in PureScript), but Witchcraft just made me realize that there is a formal mathematical background behind it. (This Stackoverflow answer about Haskell's const also helped to realize this connection.)

Thanks again!

edit: I just realized another thing, please correct me if this is not accurate: many PureScript modules have Data and Control namespaces, and roughly mapping them would Algae and Witchcraft, respectively, I think. (Although the Functor type class is Data.Functor there...)

toraritte avatar Feb 26 '19 21:02 toraritte

PureScript modules have Data and Control namespaces, and roughly mapping them would Algae and Witchcraft, respectively, I think

That's correct 👍

Algae also provides additional functionality for bootstrapping an ADT-style DSL into Elixir. It can be used without Witchcraft, but the functionality from it adds a lot of power 💪

expede avatar Mar 07 '19 20:03 expede

@imranismail

I've tried folktale and it's amazing how much I've improved the codebase with concepts such as Result/Either.

You may be interested in Algae (docs for Algae.Either: https://hexdocs.pm/algae/Algae.Either.html). These instances have Witchcraft instances, which you'll be familiar with from folktale 😄 Some have different names, but the main ones you'll probably want are Witchcraft.Chain.bind/2 (AKA >>>).

Also, if you're just looking for more happy-path error handling and nothing else, check out Exceptional. There's also an article and conference talk on Exceptional.

Are there any recommended materials on how to use this?

Here's a couple conference talks, in case they're helpful:

Great project! Just started using Elixir, and this was exactly what I was hoping to find 🥇 . I'm a bit curious why there is no Algae.Result that implements the error monad? I see that Algae.Either is a more powerful version , but I like the explicit :error instead of :left 😜 If I make this, would you be interested in a pull request?

askasp avatar Oct 19 '19 10:10 askasp