trane VS codewars.com

Compare trane vs codewars.com and see what are their differences.

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 codewars.com
26 712
759 2,080
0.0% 0.2%
8.4 3.5
4 days ago 9 months ago
Rust
GNU Affero General Public License v3.0 BSD 2-clause "Simplified" License
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

codewars.com

Posts with mentions or reviews of codewars.com. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-19.
  • Finding a Path As a Self-Taught Software Developer
    3 projects | dev.to | 19 Apr 2024
    I did some traveling around the western US in late 2022 to take stock of where my life was and where I was going. During that time I decided that I would go all-in with my coding education, and committed to learning the remaining material listed on those bootcamp syllabi that I had not yet studied – namely, connecting the pieces of the MERN stack; learning about automated testing and data structures & algorithms; and studying development paradigms & methodologies like Agile, Scrum & Kanban, and OOP design patterns & principles – as well as continue to develop my programming fundamentals on platforms like Leetcode and Codewars.
  • RegEx: Decoding the Symbols
    1 project | dev.to | 14 Apr 2024
    My first encounter with regular expressions was in a solution for a coding problem on Codewars, specifically Count the smiley faces! Which asks you to count the number of smiley faces in a given array but the catch is each smiley can have 1 of 2 kinds of eyes (: or ;), may or may not have a nose represented by 1 of 2 symbols (- or ~), and 1 of 2 symbols (D or ) ) for the smile. In total there are 12 different combinations that are a valid smiley. I, being the young and naive programmer I was, hard coded all 12 of those faces and checked every element against that list. And it worked! But the top solution included some strange syntax that I had never seen before
  • Things you should do in your dev journey 🖥️👩‍💻
    5 projects | dev.to | 13 Apr 2024
    Embrace Challenges: Challenge yourself with platforms like Exercism and Codewars that offer a wide range of coding challenges of varying difficulty levels. Additionally, consider exploring niche topics through courses on platforms like Coursera and edX.
  • Best resource to learn python?
    1 project | /r/OMSA | 10 Dec 2023
    @OP DO NOT go on the path of perfecting it and parting with your time and money. Go with Jake Vanderplas's whirlwind tour of python whirlwind tour of python to get some basics and then jump into the river codewars and swim upstream daily and religiously until you reach to katas level 5. You will be good to go. My personal experience.
  • Collection of resources to get started on your programming journey
    8 projects | /r/TeenDevsIndia | 10 Dec 2023
    Codewars: Codewars
  • I have started my Python self Learning Journey - Is one source enough?
    2 projects | /r/learnpython | 9 Dec 2023
    You can try Codewars, they have a diverse range of practice problems(Cryptography, Data Science, etc.). Basically if you wanna get good in a programming language, you have to work on a lot of projects and practice problems.
  • Any programs or websites to practice programming?
    6 projects | /r/csharp | 8 Dec 2023
  • Best platform for coding & programming testing everyday to improve coding skills in various language?
    4 projects | /r/learnprogramming | 7 Dec 2023
    Codewars is a good platform. Here you can practice code kata's daily in your preferred programming language. Link: https://www.codewars.com/
  • any one know sites like code combat but free?
    1 project | /r/learnprogramming | 6 Dec 2023
    If you're looking for something that is closer to a combat style game you could try https://www.codewars.com/
  • I'm looking for practical Rust exercises
    3 projects | /r/rust | 5 Dec 2023

What are some alternatives?

When comparing trane and codewars.com you can also consider the following projects:

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

LeetCode - This is my LeetCode solutions for all 2000+ problems, mainly written in C++ or Python.

genanki - A Python 3 library for generating Anki decks

LeetCode-Solutions - 🏋️ Python / Modern C++ Solutions of All 3134 LeetCode Problems (Weekly Update)

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

LeetCode-Solutions - A compilation of all the Leetcode solutions.

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

Exercism - Scala Exercises - Crowd-sourced code mentorship. Practice having thoughtful conversations about code.

trane-math - Official math courses from the Trane Project

adventofcode - :christmas_tree: Advent of Code (2015-2023) in C#

trane-music - Official music courses from the Trane Project

plutus-pioneer-program - This repository hosts the lectures of the Plutus Pioneers Program. This program is a training course that the IOG Education Team provides to recruit and train software developers in Plutus, the native smart contract language for the Cardano ecosystem.