{"id":30523717,"url":"https://github.com/zhravan/golearn","last_synced_at":"2026-06-09T04:31:50.905Z","repository":{"id":310475437,"uuid":"1039802193","full_name":"zhravan/golearn","owner":"zhravan","description":"Small exercises to get you used to reading and writing Go code","archived":false,"fork":false,"pushed_at":"2025-12-18T01:55:15.000Z","size":276,"stargazers_count":16,"open_issues_count":39,"forks_count":19,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T14:34:12.342Z","etag":null,"topics":["awesome-go","awesome-golang","go","golang","golearn","gopher","hacktoberfest","hacktoberfest-accepted","hacktoberfest2025","learn-go","rustlings"],"latest_commit_sha":null,"homepage":"https://zhravan.github.io/golearn/","language":"Go","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/zhravan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-18T02:12:42.000Z","updated_at":"2026-03-18T18:28:00.000Z","dependencies_parsed_at":"2025-08-18T11:43:18.998Z","dependency_job_id":"cc67d9bc-fd30-487e-a110-c122f0fe4e36","html_url":"https://github.com/zhravan/golearn","commit_stats":null,"previous_names":["zhravan/golearn"],"tags_count":51,"template":false,"template_full_name":null,"purl":"pkg:github/zhravan/golearn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhravan%2Fgolearn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhravan%2Fgolearn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhravan%2Fgolearn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhravan%2Fgolearn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zhravan","download_url":"https://codeload.github.com/zhravan/golearn/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhravan%2Fgolearn/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34092253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"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":["awesome-go","awesome-golang","go","golang","golearn","gopher","hacktoberfest","hacktoberfest-accepted","hacktoberfest2025","learn-go","rustlings"],"created_at":"2025-08-26T20:47:58.252Z","updated_at":"2026-06-09T04:31:50.901Z","avatar_url":"https://github.com/zhravan.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg align=\"center\" width=\"20%\" src=\"https://dev-to-uploads.s3.amazonaws.com/uploads/articles/93hg76euzrulrc59x36s.png\" alt=\"logo\"/\u003e\n    \u003ch1 align=\"center\"\u003eGoLearn\u003c/h1\u003e\n    \u003ch6 align=\"center\"\u003eRustlings‑style Go exercises in a tiny CLI.\u003c/h6\u003e\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n    \u003ca href=\"https://discord.gg/JCKzJcb24r\"\u003e Join our discord community \u003c/a\u003e\n\u003c/div\u003e\n\n\u003cbr\u003e\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Built%20with%20%E2%9D%A4%EF%B8%8F-for%20learning%20and%20knowledge%20sharing-blueviolet\"/\u003e\n\u003c/div\u003e\n\n### Why this exists\n\nThis project is my attempt to learn Go by building as I learn, making the journey more engaging while exploring the language in practice. I'm sharing the exercises and tooling so others can learn alongside me.\n\n### At a glance\n\n- Simple CLI to list and verify exercises\n- Helpful hints and solution links when you're stuck\n- Watch mode to auto-run tests on changes\n- Progress dashboard with a visual bar and checklists\n- Publish your progress to GitHub and appear on the README leaderboard\n\n### Install (Go 1.22+)\n\n```bash\ngo install github.com/zhravan/golearn/cmd/golearn@latest\n```\n\n### Use\n\n```bash\n# In any folder, set up exercises here\ngolearn init\n\n# Or clone a remote exercises repo\n# golearn init \u003crepo-url\u003e \u003cdir\u003e\ngolearn init https://github.com/your-org/your-exercises my-exercises\ncd my-exercises\n\n# Learn\ngolearn list\ngolearn verify 01_hello\ngolearn hint 01_hello\ngolearn solution 01_hello   # Suggests hints; else prints GitHub link\ngolearn verify 01_hello --solution  # Run tests against the embedded solution\ngolearn progress    # Rich TUI with ASCII progress bar and checklist\n\n# Auto-verify on change (watch mode)\ngolearn watch       # Watches ./exercises and re-runs tests per edited exercise\n\n# Publish your progress (appears on README leaderboard)\ngolearn publish --dry-run\ngolearn publish --user \u003cgithub-username\u003e\n```\n\n### Contributing\n\n- See [CONTRIBUTING.md](./CONTRIBUTING.md)\n- Please follow our [Code of Conduct](./CODE_OF_CONDUCT.md)\n- Security issues: see [SECURITY.md](./SECURITY.md)\n\nNeed commands?\n\n```bash\ngolearn help\n```\n\n## Makefile shortcuts\n\n```bash\n# Show help\nmake\n\n# Run commands\nmake list\nmake verify NAME=01_hello\nmake progress\nmake watch\n```\n\n### Tips\n\n- The progress bar adapts to terminal width via the `COLUMNS` env var.\n- Press Ctrl+C to stop watch mode.\n\n### Licensing and Attribution\n\n- Code: [MIT](./LICENSE)\n- Non-code lesson content and any included gopher artwork: [CC BY 3.0](./CONTENT_LICENSE).\n- Inspired by rustlings and Go by Example. [NOTICE](./NOTICE) for attributions.\n\n## Leaderboard\n\nThe following users have completed all exercises (ascending by completion time):\n\n\u003c!-- START_LEADERBOARD --\u003e\nNo completions yet. Be the first!\n\u003c!-- END_LEADERBOARD --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhravan%2Fgolearn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzhravan%2Fgolearn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhravan%2Fgolearn/lists"}