←back to thread

169 points arthurtakeda | 4 comments | | HN request time: 0.206s | source

Enter a topic and get a learning mind map generated by an LLM with links to learn more about each subtopic.

You can use it with local models (through Ollama) or external models.

If you have any feedback, please share it! Hope it's useful

Demo: https://youtu.be/Y-9He-tG3aM

Show context
ainiriand ◴[] No.41901796[source]
That is really cool. I am very much into learning with the support of AI.

Last month I started to learn Rust and I used this prompt to help me:

'I am an experienced software engineer who wants to learn Rust, design a learning path for 3 months, with daily goals. Try to have a good balance of learning and working exercises using available resources like Rustlings or Learn rust by example. Output this path in markdown and add space to gather my learnings in a note at the end of each week.'

Maybe with some tweaks can be useful to someone else!

replies(2): >>41901904 #>>41902959 #
1. aquariusDue ◴[] No.41901904[source]
I'd also recommend the wonderful 100 Exercises to Learn Rust authored by Luca Palmieri who also wrote Zero To Production in Rust. I'm halfway through the exercises and I find them to complement Rustlings and The Book perfectly.

So yeah, 100 Exercises to Learn Rust is what finally made traits (especially From and Into), impls and trait bounds finally click for me and I can't recommend it enough.

replies(2): >>41901922 #>>41903177 #
2. ainiriand ◴[] No.41901922[source]
I did that! https://github.com/sh4ka/100-exercises-to-learn-rust
3. chamomeal ◴[] No.41903177[source]
How do they compare to “the book” (I forget the exact title).

I tried to get through it a couple times, but I have no background in C and the lifetimes part confused the hell outta me. Combined with all the other new things, my interest just sorta fizzled.

Love those enums, though!!

replies(1): >>41911547 #
4. ainiriand ◴[] No.41911547[source]
For me the 100 exercises were a gentler introduction to the language for some topics, making the exercises was a bit difficult without having read the book first.

But I would give it a try, I did that and then the book was much more accessible.