Giter Site home page Giter Site logo

rtd's Introduction

Learn Rust by 500 lines code

crate_version crate_downloads license

English | δΈ­ζ–‡

  • RTD (Rust To Do) is a todo app cli tool write by 500 lines Rust code. (exclude space lines/comments/long line break display/test code)
  • RTD is also a tutorial, designed to learn Rust by doing.

rtd_list_all

Table of contents


What can you learn from RTD?

Assuming you know nothing about Rust, through the Learn Rust by 500 lines code tutorial, step by step to build the project from scratch, you will learn:

  • Rust common syntax
  • Rust module system (package/binary crate/library crate/mod/pub/use)
  • Rust ownership model (Bernstein conditions)
  • Rust lifetime
  • Rust error/null handling model (Result<T, E>/Option<T>)
  • Rust generic
  • Rust pattern matching (if let , match ...)
  • Rust unit test
  • Rust file I/O (File Seek/Buffed File I/O)
  • Rust manipulating environment variables
  • Rust command line parameter parsing
  • Rust release package to crate.io
  • The general process of developing a program (requirements/design/implementation/testing/release/maintenance)
  • Layered abstraction (data storage layer/model mapping layer/data model layer/business logic layer/application interface layer/user interface layer)
  • Handwritten serialization/deserialization from scratch
  • Implement the recycle bin function (virtualization concept)
Architecture

rtd_arch

Storage

Use a local file $HOME/.rtd.csv store all data

data_storage rtd_list_all

After completing this tutorial or installing RTD directly, you will get:

  • Extremely lightweight and concise todo command line application
  • Cross-platform, Rust's excellent build system naturally supports cross-platform
  • Safe, supports recycle bin, completely local, no network, no database
  • All data storage uses only one local csv file, which can be switched between different machines by copying the csv file

Interesting fact: I use RTD to complete the RTD tutorial :)

If you like my tutorial, don't forget to give me a star~


Prepare

  • Rust is naturally cross-platform. This project is built and tested in the linux environment, and Windows/MacOS are also supported. You can choose to download the corresponding Cargo according to your own operating system.
  • Cargo Rust's package management and build tool, can be installed directly through the Rust official website rustup one line command. Then, all things will be done by Cargo, so cute, right?

Install

Via crate.io :

cargo install rtd-tutorial

Or via git repo :

git clone https://github.com/cuppar/rtd.git
cargo install --path rtd

Usage

View help document

rtd -h
rtd --help

rtd_help_summary rtd_help

Add a todo

rtd -a <item-name>
rtd --add <item-name>

rtd_add

List all uncompleted todos

rtd
rtd -l
rtd -l uncompleted
rtd --list
rtd --list uncompleted

rtd_list_uncompleted

Complete a todo

rtd -c <item-id>
rtd --complete <item-id>

rtd_complete_item

List all completed todos

rtd -l completed
rtd --list completed

rtd_list_completed

Uncomplete a todo

rtd -u <item-id>
rtd --uncomplete <item-id>

rtd_uncomplete_item

Throw a todo into the recycle bin

rtd -d <item-id>
rtd --delete <item-id>

rtd_delete_item

List all recycle bin todos

rtd -l deleted
rtd --list deleted

rtd_list_deleted

Restore a todo from the recycle bin

rtd -r <item-id>
rtd --restore <item-id>

rtd_restore_item

Physically destroy a todo

rtd --destroy <item-id>

rtd_destroy_item

Empty recycle bin

rtd --destroy-deleted

rtd_destroy_deleted

List all todos

rtd -l all
rtd --list all

rtd_list_all

Clear all todos

rtd --clear

rtd_clear

About author

Cuppar He(He Zhiying), software development engineer, likes programming, technical writing, learning new things, especially computer science, worked for SAP(World Top 100) and Alibaba Group(World Top 100 & Chinese internet giant). I am currently in Gap Year, if you are looking for a software development engineer and can provide a high-quality offer(Both remote and on-site), please contact me [email protected].

rtd's People

Contributors

cuppar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.