Extending Elixir's learning resources [core: book, extensions: guided_projects]

The Elixir ecosystem is very powerful from a learner’s standpoint. One can go to elixir-lang.org, read Programming Phoenix (I haven’t checked out Nerves yet…), and then learn Absinthe or learn Functional Web Development (or even stick with traditional REST).

These books thoroughly cover their technology, effectively getting the reader up to an intermediate-level knowledge. The gap is when one finishes the book. The code-as-you-go project is designed to teach you the tech–hence it optimizes for breadth.

I would suggest some follow-up project guides that allow one to explore certain features in greater depth and apply other knowledge floating around the Elixir ecosystem.

For anyone else who has done a coding bootcamp, they teach predominantly through projects. You learn a new concept, and then apply it to a project for the rest of the day.

Ready-made project guides are what allow a new Elixir developer to (1) build a portfolio of work, while (2) getting as much learning out of the work one does as possible.

These guides can be as minimal as specs that define an architecture, and then point the user to resources with the instructions to use the technologies (i.e. these authoritative books that already exist).

This class of guides would abstract one’s learning from the book to a new, but similar project, allow one to recognize slight differences between the projects, giving one a sense of what else one can explore from there.

More feature-focused project guides would offer the depth that the authoritative books lack.

In this way, the community can produce significantly more learning resources than just the creators’ books. The book acts as the core, and the guides extend it.

2 Likes

Does Elixir on Exercism sort of do what you’re after?

The problem with producing content that ‘extend’ books is copyright issues - so you couldn’t use content from any of the books. Of course you could pester book authors to create video courses that complement their books :wink: I’ve been trying to get @sasajuric to do one for ages :043: something in the same sort of format as PragDave’s course.

I think it would be nice to see similar courses from all book authors :023:

Best example of this I’ve seen is something like The Odin Project. It directs you to learning resources and specifies increasingly more difficult projects as you get through the material. Basically a self-directed boot camp for the disciplined. I found it very helpful for learning Ruby and Rails back in the day.

I can see some projects like the following being good for new comers:

  • HTML Scraper
  • API Clients
  • JSON API
  • Chat App
  • Command Line Tools

It is a lot of work putting together a cohesive curriculum and website like that. Maybe a good addition to Elixir School?

1 Like