{"id":28236862,"url":"https://github.com/mgrl39/vfy","last_synced_at":"2025-07-22T20:02:54.507Z","repository":{"id":288167727,"uuid":"967049757","full_name":"mgrl39/vfy","owner":"mgrl39","description":"A tool for practicing C programming exercises with little verification.","archived":false,"fork":false,"pushed_at":"2025-04-15T22:59:02.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T13:48:10.422Z","etag":null,"topics":["development"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mgrl39.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-04-15T21:11:46.000Z","updated_at":"2025-04-15T23:15:51.000Z","dependencies_parsed_at":"2025-06-10T13:42:36.741Z","dependency_job_id":null,"html_url":"https://github.com/mgrl39/vfy","commit_stats":null,"previous_names":["mgrl39/vfy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mgrl39/vfy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgrl39%2Fvfy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgrl39%2Fvfy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgrl39%2Fvfy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgrl39%2Fvfy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mgrl39","download_url":"https://codeload.github.com/mgrl39/vfy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgrl39%2Fvfy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266563915,"owners_count":23948689,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["development"],"created_at":"2025-05-19T00:16:58.760Z","updated_at":"2025-07-22T20:02:54.449Z","avatar_url":"https://github.com/mgrl39.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \n# 🚀 VFY - Verify Your Code\n\n\u003cimg src=\"https://img.shields.io/badge/language-C-blue.svg\" alt=\"Language C\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/platform-Linux%20%7C%20macOS-lightgrey.svg\" alt=\"Platform\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/license-MIT-green.svg\" alt=\"License MIT\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/version-1.0.0-orange.svg\" alt=\"Version\"\u003e\n\n**A tool for practicing C programming exercises with automatic verification.**\n\n\u003c/div\u003e\n\n---\n\n## 📋 Table of Contents\n\n- [🌟 Features](#-features)\n- [🛠️ Installation](#️-installation)\n- [📝 Usage](#-usage)\n- [⚙️ Configuration](#️-configuration)\n- [🧩 Creating Exercises](#-creating-exercises)\n- [🔄 Examples](#-examples)\n- [🗑️ Uninstallation](#️-uninstallation)\n\n---\n\n## 🌟 Features\n\nVFY (Verify Your Code) is designed to make learning C programming more fun and effective with:\n\n- **📚 Structured Learning** - Exercises organized by skill levels\n- **✅ Automatic Verification** - Instant feedback on your solutions\n- **📋 Code Templates** - Quick start with helpful boilerplate code\n- **🎨 Attractive Interface** - Colorful and user-friendly terminal UI\n\n## 🛠️ Installation\n\nInstallation is very simple:\n\n```bash\n# Clone the repository\ngit clone https://github.com/mgrl39/vfy.git\ncd vfy\n\n# Install the core program (requires sudo)\nsudo make install\n\n# Download exercises \nsudo make get-subjects\n```\n\nTo update exercises later:\n\n```bash\nsudo make update-subjects\n```\n\n## 📝 Usage\n\nVFY provides an intuitive command-line interface:\n\n| Command | Description |\n|---------|-------------|\n| `vfy help` | Show all available commands |\n| `vfy list` | List all available exercise levels |\n| `vfy list \u003clevel\u003e` | List exercises in a specific level |\n| `vfy get \u003clevel\u003e` | Get a random exercise from a level |\n| `vfy edit` | Open current exercise in your editor |\n| `vfy check` | Verify your solution against expected output |\n| `vfy status` | Show current exercise status |\n\n## ⚙️ Configuration\n\nYou can use environment variables to customize VFY:\n\n```bash\n# Define exercises location\nexport VFY_EXERCISES_DIR=~/my_exercises\n\n# Define subjects location\nexport VFY_SUBJECTS_DIR=~/my_subjects\n\n# Define compiler\nexport CC=gcc\n```\n\n## 🧩 Creating Exercises\n\nYou can create exercises manually:\n\n1. Create a directory at `~/.vfy/subjects/level_X/exercise_name`\n2. Add the following files:\n   - `subject.txt`: Exercise description\n   - `expected_output.txt`: Expected program output\n   - `template.c`: Template code for users\n\nFor more exercises, check out our separate exercises repository:\n[VFY Exercises Repository](https://github.com/mgrl39/vfydb)\n\n## 🔄 Examples\n\nHere's how a typical workflow looks:\n\n```bash\n# Get a random exercise from level 1\nvfy get 1\n\n# The exercise details will be displayed\n# A working directory is created with a template\n\n# Open the exercise in your editor\nvfy edit\n\n# After coding your solution\nvfy check\n\n# If correct, you'll see:\n# ✅ Your solution is correct!\n\n# If not, you'll see:\n# ❌ Output doesn't match expected result.\n# With a detailed diff of what went wrong\n```\n\n## 🗑️ Uninstallation\n\n```bash\n# Uninstall (requires sudo)\nsudo make uninstall\n```\n\n---\n\n\u003cdiv align=\"center\"\u003e\n  \n**Created for C programming enthusiasts**\n\n\u003c/div\u003e ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgrl39%2Fvfy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmgrl39%2Fvfy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgrl39%2Fvfy/lists"}