├── .github └── ISSUE_TEMPLATE │ └── new-idea-for-live-coding.md └── README.md /.github/ISSUE_TEMPLATE/new-idea-for-live-coding.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New Idea for Live Coding 3 | about: Suggest an idea to implement during live coding sessions 4 | title: "[IDEA]" 5 | labels: idea 6 | assignees: huseyinbabal 7 | 8 | --- 9 | 10 | **Very short description of open source project idea.** 11 | A clear and concise description of what the idea is. Ex. A terminal ui for AWS resource browser [...] 12 | 13 | **What value it brings to OSS community** 14 | How OSS community will make use of it. 15 | 16 | **Existing alternative to your idea** 17 | Can you show an existing project related to your idea? 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # live-coding-roadmap 2 | Roadmap of the Live Coding Projects & Ideas 3 | 4 | New Ideas? =>https://github.com/huseyinbabal/live-coding-roadmap/issues/new?assignees=huseyinbabal&labels=idea&template=new-idea-for-live-coding.md&title=%5BIDEA%5D 5 | 6 | Roadmap Board => https://github.com/huseyinbabal/live-coding-roadmap/projects 7 | 8 | LiveCodingTurkey Streams => https://twitch.tv/huseyinbabal 9 | 10 | LiveCodingTurkey Community => https://kommunity.com/livecodingturkey/about 11 | --------------------------------------------------------------------------------