{"id":24778471,"url":"https://github.com/changerd/vocabularychecker","last_synced_at":"2026-05-04T02:39:55.212Z","repository":{"id":247108290,"uuid":"587921614","full_name":"changerd/VocabularyChecker","owner":"changerd","description":"Console application which checks vocabulary","archived":false,"fork":false,"pushed_at":"2024-07-25T18:42:58.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T02:34:07.347Z","etag":null,"topics":["csharp","mssql","net8"],"latest_commit_sha":null,"homepage":"","language":"C#","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/changerd.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":"2023-01-11T22:36:04.000Z","updated_at":"2024-07-25T18:56:53.000Z","dependencies_parsed_at":"2025-03-24T02:33:16.760Z","dependency_job_id":"8ab1bafb-5b8b-452b-a779-4e39b49e7a35","html_url":"https://github.com/changerd/VocabularyChecker","commit_stats":null,"previous_names":["changerd/vocabularychecker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/changerd/VocabularyChecker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/changerd%2FVocabularyChecker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/changerd%2FVocabularyChecker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/changerd%2FVocabularyChecker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/changerd%2FVocabularyChecker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/changerd","download_url":"https://codeload.github.com/changerd/VocabularyChecker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/changerd%2FVocabularyChecker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32592720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"online","status_checked_at":"2026-05-04T02:00:06.625Z","response_time":58,"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":["csharp","mssql","net8"],"created_at":"2025-01-29T08:37:30.589Z","updated_at":"2026-05-04T02:39:55.195Z","avatar_url":"https://github.com/changerd.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VocabularyChecker\n\nVocabularyChecker is a console application designed to help you practice and test your vocabulary knowledge. It allows you to store words and their translations in a database, display the vocabulary, and check your knowledge by prompting you with either the word or its translation.\n\n## Features\n\n- **Display Vocabulary**: View all words and their translations stored in the database.\n- **Check by Words**: Test your knowledge by being prompted with a word and providing its translation.\n- **Check by Translations**: Test your knowledge by being prompted with a translation and providing the corresponding word.\n\n## Getting Started\n\n### Prerequisites\n\n- .NET SDK\n- SQL Server\n\n### Setting up the Database\n\nFirst, create a database named `Vocabulary` and execute the following SQL script to create the `Vocabulary` table:\n\n```sql\nUSE [Vocabulary]\nGO\n\nSET ANSI_NULLS ON\nGO\n\nSET QUOTED_IDENTIFIER ON\nGO\n\nCREATE TABLE [dbo].[Vocabulary](\n    [Id] [int] IDENTITY(1,1) NOT NULL,\n    [Word] [nvarchar](max) NOT NULL,\n    [Transaltion] [nvarchar](max) NOT NULL,\n CONSTRAINT [PK_Vocabulary] PRIMARY KEY CLUSTERED \n(\n    [Id] ASC\n)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]\n) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]\nGO\n```\n\n### Configuring the Application\n\nThe application uses Entity Framework Core for database access. Ensure that the connection string in ApplicationDbContext.cs points to your SQL Server instance:\n\n```csharp\nprotected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)\n{\n    optionsBuilder.UseSqlServer(@\"Data Source=.\\SQLEXPRESS;Initial Catalog=Vocabulary;Integrated Security=True;TrustServerCertificate=True\");\n}\n```\n\n### Running the Application\n\n1. Build the application using the .NET CLI:\n```sh\ndotnet build\n```\n\n2. Run the application:\n```sh\ndotnet run\n```\n\n### Usage\n\nUpon running the application, you will be prompted to select a mode:\n\n- '0': Display Vocabulary\n- '1': Check by Words\n- '2': Check by Translations\n\nFollow the prompts to interact with the application.\n\n### Example\n```vbnet\nMode: \n0.Vocabulary \n1. Check by words \n2. Check by translate\nSelect: 1\nCount of words (Available: 10): 5\n1. apple\nAsk: \nAnswer: яблоко\n\n2. orange\nAsk: \nAnswer: апельсин\n\n...\n\nThe end!\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchangerd%2Fvocabularychecker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchangerd%2Fvocabularychecker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchangerd%2Fvocabularychecker/lists"}