{"id":31702295,"url":"https://github.com/tmhsdigital/learn-c","last_synced_at":"2026-07-13T16:31:11.184Z","repository":{"id":293719093,"uuid":"984893235","full_name":"TMHSDigital/Learn-C","owner":"TMHSDigital","description":"Native Windows password generator with a modern Win32 GUI. Lets you generate multiple strong, customizable passwords at once, choose character sets (lowercase, uppercase, digits, symbols), and instantly copy results. Features color-coded strength indicator, tooltips, keyboard shortcuts, status bar, and remembers your last settings.","archived":false,"fork":false,"pushed_at":"2025-05-16T18:59:23.000Z","size":38,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-08T21:36:49.960Z","etag":null,"topics":["c","cmake","educational-project","make","password-generator","tutorial","win32","win32-gui"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TMHSDigital.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-16T17:30:20.000Z","updated_at":"2025-07-20T15:15:04.000Z","dependencies_parsed_at":"2025-05-20T18:46:04.340Z","dependency_job_id":null,"html_url":"https://github.com/TMHSDigital/Learn-C","commit_stats":null,"previous_names":["tmhsdigital/learn-c"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TMHSDigital/Learn-C","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMHSDigital%2FLearn-C","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMHSDigital%2FLearn-C/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMHSDigital%2FLearn-C/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMHSDigital%2FLearn-C/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TMHSDigital","download_url":"https://codeload.github.com/TMHSDigital/Learn-C/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TMHSDigital%2FLearn-C/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35429402,"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-07-13T02:00:06.543Z","response_time":119,"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":["c","cmake","educational-project","make","password-generator","tutorial","win32","win32-gui"],"created_at":"2025-10-08T21:36:02.966Z","updated_at":"2026-07-13T16:31:11.176Z","avatar_url":"https://github.com/TMHSDigital.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Learn-C: Modern Password Generator\n\n[![Build](https://img.shields.io/badge/build-passing-brightgreen)](https://github.com/TMHSDigital/Learn-C)\n[![License](https://img.shields.io/badge/license-MIT-blue)](LICENSE)\n[![Platform](https://img.shields.io/badge/platform-Windows%2010+-lightgrey)](#)\n\n---\n\n\u003e **Why use this?**\n\u003e\n\u003e - **Blazing fast** native Windows app\n\u003e - **No dependencies** (just GCC/MinGW)\n\u003e - **Modern, polished GUI**\n\u003e - **Strong, customizable passwords**\n\u003e - **Great demo for C/Win32 GUI programming**\n\n---\n\n## Prerequisites\n- **GCC/MinGW**: Install [MinGW-w64](https://www.mingw-w64.org/) and add its `bin` directory to your PATH\n- **make** (optional): For Makefile support, install make (e.g., from ezwinports, MSYS2, or GnuWin32) and add to PATH\n- **comctl32.dll**: Standard on Windows, but you must link with `-lcomctl32`\n- **Icon conversion tool**: Convert `C-icon.jpg` to `C-icon.ico` (any free online converter)\n- **Windows 10+** recommended\n\n---\n\n## Features\n- Native Windows GUI (Win32 API)\n- Modern Segoe UI font and grouped layout\n- Custom app icon (`C-icon.ico`)\n- Tooltips for all controls\n- Keyboard shortcuts\n- Copy to clipboard\n- Password strength indicator (color-coded)\n- Select which character sets to include\n- Generate multiple passwords at once\n- Remembers last settings\n- Window centers on startup\n- About dialog (F1)\n- Status bar for feedback\n\n---\n\n## Keyboard Shortcuts\n| Shortcut   | Action                  |\n|-----------|-------------------------|\n| Enter     | Generate password(s)    |\n| Ctrl+C    | Copy passwords          |\n| F1        | About dialog            |\n\n---\n\n## How to Build\n1. **Convert your icon:**\n   - Convert `C-icon.jpg` to `C-icon.ico` (use any free online converter)\n   - Place `C-icon.ico` in the project directory\n2. **Build with GCC (MinGW):**\n   ```\n   gcc main.c -o learn.exe -mwindows -lcomctl32\n   ```\n3. **Run:**\n   ```\n   learn.exe\n   ```\n\n---\n\n## Usage\n- Set password length and count\n- Select which character sets to include\n- Click **Generate** or press **Enter**\n- Copy results with **Copy** button or **Ctrl+C**\n- See password strength below output\n- Status bar shows feedback\n- Press **F1** for About dialog\n- Settings are saved automatically\n\n---\n\n## Screenshots\n\u003ctable\u003e\n\u003ctr\u003e\n\u003ctd align=\"center\"\u003e\u003cb\u003eDefault view\u003c/b\u003e\u003cbr\u003e\u003cimg src=\"step-1.png\" width=\"350\"\u003e\u003c/td\u003e\n\u003ctd align=\"center\"\u003e\u003cb\u003eAfter generating a password\u003c/b\u003e\u003cbr\u003e\u003cimg src=\"step-2.png\" width=\"350\"\u003e\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/table\u003e\n\n---\n\n_Created by [TMHSDigital](https://github.com/TMHSDigital)_","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmhsdigital%2Flearn-c","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftmhsdigital%2Flearn-c","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmhsdigital%2Flearn-c/lists"}