trane VS zero-to-production

Compare trane vs zero-to-production and see what are their differences.

trane

An automated practice system for learning complex skills (by trane-project)

zero-to-production

Code for "Zero To Production In Rust", a book on API development using Rust. (by LukeMathWalker)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
trane zero-to-production
26 85
759 4,695
0.0% -
8.4 4.0
5 days ago about 1 month ago
Rust Rust
GNU Affero General Public License v3.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

trane

Posts with mentions or reviews of trane. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-19.
  • Benjamin S. Bloom: Learning For Mastery (1968) [pdf]
    1 project | news.ycombinator.com | 1 Sep 2023
    My implementation of mastery learning (along with other related ideas): https://github.com/trane-project/trane/

    It bothered me enough that there was not something like this already available, when the idea seemed so simple, that I ended up doing it myself. The user experience is not very polished yet, but I managed to turn the courses in here https://improviseforreal.com/learning-materials into courses for this software that can teach you ear training and to improvise on any instrument in all keys, all modes, and most common chord progression. Currently, I am doing it for piano, but I've only reached about 15% of the total jam tracks so far. Obviously, I am not distributing the tracks myself.

    I am pretty sure the main issue is that there's no one funding implementing these ideas. We've known about mastery learning, spaced repetition, interleaving, etc. for decades, but it's not all been put together into a coherent system. Something like https://mathacademy.com/ is similar, but it's not open sourced and cannot be used to create your own materials. No need for LLMs or anything fancier to be involved when there's so much low-hanging fruit that's not been implemented yet. The core of my software is just a depth-first search over a graph, lol.

  • A half-hour to learn Rust
    1 project | news.ycombinator.com | 23 Aug 2023
    Not sure if I disagree but your example is terrible. Let patterns in if statements greatly simplify things. The alternatives are a lot more convoluted.

    See example from code I wrote this week: https://github.com/trane-project/trane/blob/master/src/data/...

    Without the let, I'd have to do a match statement followed by an unwrap just to check if a field in an enum is set.

  • Jazz Comping
    2 projects | news.ycombinator.com | 19 Jul 2023
    That's pretty much what I've been trying to do with https://github.com/trane-project/trane/

    I wanted something like you describe, but as far as I know nothing existed. So I've been hacking at this and the basic idea does work. It's now just a matter of designing the courses and polishing the user experience.

    I am just coming up with the structure for how to define what music would depend on each other. Trying to do it based on music theory would be ideal, but probably beyond my capacity. So I think the historical development of the genre you are trying to learn is a good proxy. For jazz, for example, this would be something like learning African music first, then spirituals, then blues songs, then new orleans jazz, then basic standards and so on. Trane works based on a graph, so the progression does not have to be linear.

    It's pretty early stages at the moment. Only one course for now since I've been trying to work out the process first: https://github.com/trane-project/trane-music/blob/master/cou...

    These "transcription" courses first ask you to loosely sing the song, then loosely improvise over it with your instruments (you can customize your own), then sing in different keys and do it more thoroughly, then improvise more closely to the actual song. The last step is what is normally called transcribing, but the course is meant to progressively lead you to that. The whole process is meant to recreate the apprenticeship process that all the early Jazz masters went through.

    Ideally there's a graphic interface that downloads the music and lets you loop, slow down, and change the pitch. But for now, there's only a command-line interface and the user has to do that themselves. Not ideal, but it works.

  • I’ve fallen in love with rust so now what?
    10 projects | /r/rust | 21 May 2023
    Link to my project: https://github.com/trane-project/trane
  • Anki-Fy Your Life
    10 projects | news.ycombinator.com | 18 Mar 2023
    I've been working on https://github.com/trane-project/trane for the past year or so, mostly to get around these limitations. I tried to find a way to use Anki or another existing software to aid my music practice, but I couldn't get it to work.

    Some ways in which it's different:

    - Dependencies are core to the system. For example, if I am learning a music piece, I want to start by learning small sections and only move on to larger sections when I am good enough the small stuff, eventually ending with a final exercise that tests my performance of the whole piece. A lot of knowledge/skills follow that pattern, but I couldn't find a way to make Anki or SuperMemo understand this.

    - It's meant for both memorizing stuff and practicing exercises. I have tested it with your exact example (math problems from textbooks). It works fairly well, but it's at a very early stage (you can look around at https://github.com/trane-project/trane-math, but it still needs a readme). So it's doing the same thing as the students you mentioned. The difference is that the scheduling is done automatically. Review of existing problems and addition of new ones happen without requiring planning or tracking from the student.

    - There's an emphasis on generating the flashcards as text files, so they can be shared. I don't understand why people insist of remaking their own flascards every time. If someone wishes to learn guitar, for example, it's my hope they just download some courses and start learning without spending any time redoing flashcards. This design choice probably makes it harder to write the flascards, but it balances out once the flashcards are done and can be passed around.

  • Coltrane: A music theory library with a command-line interface
    10 projects | news.ycombinator.com | 10 Mar 2023
    Curiously enough, I have been working on a project named after the same person (John Coltrane) as a way to help me practice music: https://github.com/trane-project/trane/

    I have been meaning to generate flashcards to teach you the notes of scales and chords so that I can have instant recall. It gets really annoying to not know them when improvising or composing. I have some basic courses, but I found the process a bit tedious, so I have been working on other courses and features instead.

    I am going to try to use this utility to help me generate the flashcards instead of writing my own logic. Hopefully it works well as it would save me a lot of time.

  • The Lone Developer Problem
    3 projects | news.ycombinator.com | 27 Feb 2023
    I started doing that with my own project after I reverted a (correct) change a few weeks later because I forgot to write down the original reasoning anywhere. No other contributors so far, so I can't say how much it helps on that front, but it has helped me a lot and I feel safer making big changes without fearing I'll break anything.

    The entry point docs are here: https://github.com/trane-project/trane/blob/master/src/lib.r...

  • Bloom's 2 Sigma Problem
    4 projects | news.ycombinator.com | 25 Feb 2023
    Already working on fixing this: https://github.com/trane-project/trane/

    No AI needed. Just an old fashioned depth first search through a graph of skills and dependencies.

    I made it to help me practice music, but I have been branching out and using it to study math for a few weeks. I find myself saying "just one question more" and then spending another half hour in it.

    Still needs more material to be useful to other people but it's a solid experience. I learned and memorized how to play most of the notes in the saxophone with good intonation in about a week, as a complete beginner.

  • GPT for Second Brains
    2 projects | news.ycombinator.com | 6 Feb 2023
    I've been thinking of using GPT or similar LLMs to extract flashcards to use with my spaced repetition project (https://github.com/trane-project/trane/). As in you give it a book and it creates the flashcards for you and the dependencies between the lessons.

    I played around with chatgpt and it worked pretty well. I have a lot of other things in my plate to get around first (including starting a math curriculum) but it's definitely an exciting direction.

    I think LLMs and AI are not anywhere near actual intelligence (chatgpt can spout a lot of good sounding nonsense ATM), but the semantic analysis they can do is by itself very useful.

  • Do u think it's a good idea to ankify ur hobbies
    1 project | /r/Anki | 10 Nov 2022
    Theres a program that you might wanna check out for learning skills, it's called Trane. https://github.com/trane-project/trane

zero-to-production

Posts with mentions or reviews of zero-to-production. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-09.
  • Empowering Web Privacy with Rust: Building a Decentralized Identity Management System
    3 projects | dev.to | 9 Apr 2024
    Zero to Production in Rust - Book by Luca Palmieri: An in-depth book that guides readers through building a fully functional backend application in Rust, from zero to production.
  • Rust books to read
    2 projects | /r/rust | 23 Jun 2023
    And the book "Zero To Production In Rust - An introduction to backend development", I didn’t read it yet but seems pretty good
  • How to read a YAML configuration file in my Rust service?
    1 project | /r/rust | 30 May 2023
    It’s a lot simpler if you add serde to the mix (derive Deserialize for your settings types). Have a look at the example from the Zero to Production book: https://github.com/LukeMathWalker/zero-to-production/blob/main/src/configuration.rs
  • Ask HN: What to use for a Rest API written in Rust?
    1 project | news.ycombinator.com | 28 May 2023
    You probably want to check out the Zero to Production book which is about using Rust for back-end development.

    https://www.zero2prod.com/

  • I’ve fallen in love with rust so now what?
    10 projects | /r/rust | 21 May 2023
    If your'e more into a tutorial with a book https://www.zero2prod.com/ is really good. You gonna build a newsletter service. With all the good stuff in backend development.
  • Hyper – A fast and correct HTTP implementation for Rust
    14 projects | news.ycombinator.com | 12 May 2023
    If you want to build a backend in Rust, Axum (which uses hyper underneath) is pretty recommended these days, as it's all in the tokio ecosystem. Actix Web is good too, but it has its own ecosystem of libraries. I read the book Zero To Production in Rust [0] which was a great overview on not just Rust but scalable backend architectures as a whole.

    Interestingly, Cloudflare wanted to use hyper but found that it was too correct, so they had to build their own [1].

    [0] https://www.zero2prod.com

    [1] https://blog.cloudflare.com/how-we-built-pingora-the-proxy-t...

  • Conversion?
    3 projects | /r/rust | 6 May 2023
    In addition to the book, which has already been recommended. If you’re specifically into backend you should try Zero to Production. Luca really knows what he’s talking about, and it’s an excellent overview of backend rust and the development process in general.
  • Do you know any programming tutorials where somebody explains how to write an app from the architecture point of view?
    2 projects | /r/learnprogramming | 3 May 2023
    I highly recommend the book Zero to Production in Rust which also has an associated GitHub. I like the style of the writing and the explanations used within the book. Even though it uses Rust, the concepts seem to work in any language - I have applied the concepts to both Go and Python in the past.
  • Opensource to learn from?
    1 project | /r/rust | 27 Apr 2023
    I would recommend you a book - "Zero to Production in Rust" https://www.zero2prod.com/
  • Simple projects to practice Rust?
    1 project | /r/rust | 26 Apr 2023
    if you want to learn more about web backend development there is nothing better then https://www.zero2prod.com/

What are some alternatives?

When comparing trane and zero-to-production you can also consider the following projects:

fsrs4anki - A modern Anki custom scheduling based on Free Spaced Repetition Scheduler algorithm

rust-by-example - Learn Rust with examples (Live code editor included)

genanki - A Python 3 library for generating Anki decks

realworld-axum-sqlx - A Rust implementation of the Realworld demo app spec using Axum and SQLx.

typeshare - Generate code in different languages from Rust type definitions for FFI interop.

axum - Ergonomic and modular web framework built with Tokio, Tower, and Hyper

trane-cli - A command-line interface and utilities for Trane

black-hat-rust - Applied offensive security with Rust - https://kerkour.com/black-hat-rust

trane-math - Official math courses from the Trane Project

rust-blog - Educational blog posts for Rust beginners

trane-music - Official music courses from the Trane Project

tour_of_rust - A tour of rust's language features