{"id":30692061,"url":"https://github.com/martcpp/50-daysofrust","last_synced_at":"2025-09-02T04:47:35.256Z","repository":{"id":258178695,"uuid":"865385146","full_name":"martcpp/50-DaysOfRust","owner":"martcpp","description":"This a 50 day of learning rust and project related learning starting hacktober 1st","archived":false,"fork":false,"pushed_at":"2024-10-16T06:36:02.000Z","size":110,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-17T23:20:54.800Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/martcpp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-30T12:53:46.000Z","updated_at":"2024-10-17T11:58:36.000Z","dependencies_parsed_at":"2024-10-18T23:49:05.502Z","dependency_job_id":null,"html_url":"https://github.com/martcpp/50-DaysOfRust","commit_stats":null,"previous_names":["martcpp/50-daysofrust"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/martcpp/50-DaysOfRust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2F50-DaysOfRust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2F50-DaysOfRust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2F50-DaysOfRust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2F50-DaysOfRust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/martcpp","download_url":"https://codeload.github.com/martcpp/50-DaysOfRust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2F50-DaysOfRust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273233274,"owners_count":25068731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-02T04:47:34.526Z","updated_at":"2025-09-02T04:47:35.246Z","avatar_url":"https://github.com/martcpp.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 50-DaysOfRust Challenge\n\nA structured 50-day Rust learning and project challenge starting Hacktober 1st. This plan balances learning core concepts and building practical Rust projects.\n\n## Week 1: Rust Basics \u0026 Syntax\n\n**Day 1-5:**\n- Install Rust and set up the development environment.\n- Learn basic syntax: variables, data types, functions, conditionals, loops.\n- **Project:** Create a simple CLI calculator to practice basic operations and user input.\n\n**Day 6-7:**\n- Dive into ownership, borrowing, and lifetimes.\n- **Project:** Extend your calculator to handle complex operations and introduce error handling.\n\n## Week 2: Structs, Enums, and Error Handling\n\n**Day 8-9:**\n- Learn about structs and enums.\n- **Project:** Build a small inventory management system using structs and enums.\n\n**Day 10-11:**\n- Understand pattern matching and control flow.\n- **Project:** Add pattern matching to the inventory system, allowing for item categorization.\n\n**Day 12-14:**\n- Deep dive into Rust's error handling with `Result` and `Option`.\n- **Project:** Add error handling to the inventory, making it more robust.\n\n## Week 3: Collections and Iterators\n\n**Day 15-17:**\n- Learn about vectors, hash maps, and strings.\n- **Project:** Build a contact book app, allowing for the addition, removal, and search of contacts.\n\n**Day 18-19:**\n- Master iterators and closures.\n- **Project:** Add sorting and filtering options to the contact book using iterators.\n\n**Day 20-21:**\n- Study traits and generics in Rust.\n- **Project:** Refactor the contact book to make it more generic and reusable.\n\n## Week 4: Async Programming and Concurrency\n\n**Day 22-25:**\n- Learn async programming with `tokio`.\n- **Project:** Build an asynchronous web scraper that fetches and processes data from multiple websites concurrently.\n\n**Day 26-28:**\n- Study concurrency using threads.\n- **Project:** Modify the web scraper to handle multiple scraping tasks concurrently.\n\n## Week 5: Working with Files, Crates, and Modules\n\n**Day 29-31:**\n- Learn file I/O in Rust and how to use crates.\n- **Project:** Build a log parser that reads logs from a file and generates a report.\n\n**Day 32-34:**\n- Learn about Rust modules and crate structures.\n- **Project:** Refactor the log parser to be modular and scalable.\n\n## Week 6: Web Development with Actix or Warp\n\n**Day 35-38:**\n- Study basic web development in Rust using `actix-web` or `warp`.\n- **Project:** Create a simple REST API for a TODO app.\n\n**Day 39-41:**\n- Add database integration with `SQLx` or `Diesel`.\n- **Project:** Extend the TODO app to store tasks in a Postgres or SQLite database.\n\n## Week 7: Advanced Topics (FFI, Unsafe, Macros)\n\n**Day 42-44:**\n- Learn about Foreign Function Interface (FFI) and using C libraries in Rust.\n- **Project:** Build a small Rust application that uses a C library for some functionality.\n\n**Day 45-47:**\n- Dive into unsafe Rust.\n- **Project:** Build a memory-efficient data structure using unsafe code for performance optimization.\n\n**Day 48-50:**\n- Study Rust macros and how to create your own.\n- **Project:** Create a custom derive macro to automatically generate code for common tasks in one of your previous projects.\n\n### Don't forget to drop a star to the repository\n\nThroughout the challenge, contribute to Hacktoberfest by submitting pull requests to open-source Rust projects or libraries.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartcpp%2F50-daysofrust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmartcpp%2F50-daysofrust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartcpp%2F50-daysofrust/lists"}