{"id":18295451,"url":"https://github.com/quanpersie2001/dfa-converter","last_synced_at":"2025-09-06T01:33:23.343Z","repository":{"id":168882170,"uuid":"643320857","full_name":"quanpersie2001/DFA-Converter","owner":"quanpersie2001","description":"This tool is used to convert non-deterministic finite automata (NFA) to deterministic finite automata (DFA) through an interactive and visual interface.","archived":false,"fork":false,"pushed_at":"2023-06-17T16:23:56.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T08:37:04.649Z","etag":null,"topics":["automata","dfa","nfa","nfa-to-dfa-conversion","nfa2dfa"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/quanpersie2001.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}},"created_at":"2023-05-20T19:38:11.000Z","updated_at":"2024-09-10T15:00:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"33904cea-b3f8-45c9-926a-23c0d5cbe7f4","html_url":"https://github.com/quanpersie2001/DFA-Converter","commit_stats":null,"previous_names":["quanpersie2001/dfa-converter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/quanpersie2001/DFA-Converter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quanpersie2001%2FDFA-Converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quanpersie2001%2FDFA-Converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quanpersie2001%2FDFA-Converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quanpersie2001%2FDFA-Converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quanpersie2001","download_url":"https://codeload.github.com/quanpersie2001/DFA-Converter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quanpersie2001%2FDFA-Converter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273846966,"owners_count":25178628,"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-09-05T02:00:09.113Z","response_time":402,"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":["automata","dfa","nfa","nfa-to-dfa-conversion","nfa2dfa"],"created_at":"2024-11-05T14:35:30.956Z","updated_at":"2025-09-06T01:33:23.312Z","avatar_url":"https://github.com/quanpersie2001.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Automata - Visual DFA Converter\n\n## Overview\n\u003cimg alt=\"Screenshot of the main application interface\" src=\"https://i.imgur.com/G38tE90.png\"\u003e\n\nThis tool is used to convert [non-deterministic finite automata](https://en.wikipedia.org/wiki/Nondeterministic_finite_automaton) (NFA) to [deterministic finite automata](https://en.wikipedia.org/wiki/Deterministic_finite_automaton) (DFA) through an interactive and visual interface.\n\n### Technology\n\u003cimg src=\"https://i.imgur.com/vCfnuNM.png\" alt= “fe-tech” width=\"300 px\"\u003e\n\n\u003cimg src=\"https://i.imgur.com/XVwufwD.png\" alt= “fe-tech” width=\"95 px\"\u003e\n\n### Reference\nUI/UI I used and custom in [nfa-to-dfa](https://github.com/joeylemon/nfa-to-dfa)\n\n## Running Application\n\n1. **Clone repository**\n\n    To set up app in your local, first clone this repository:\n    ```shell\n    git clone https://github.com/quanpersie2001/DFA-Converter\n    ```\n1. **Creat \u0026 activate virtual environment**\n    ```shell\n    python -m venv venv\n    ```\n    Active `venv`\n    ```shell\n    venv/Scripts/activate\n    ```\n2. **Install dependencies**\n    ```shell\n    pip install -r requirements.txt\n    ```\n2. **Set environment variables**\n\n    Edit your environment in `.env`\n\n3. **Run server**\n    ```shell\n    flask run --port=8000\n    ```\n    Running this script should give an output similar to below:\n    ```\n    * Serving Flask app 'application.py'\n    * Debug mode: on\n    [2023-05-21 03:19:10] INFO _internal.py line 224: WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.\n    * Running on http://127.0.0.1:8000\n    [2023-05-21 03:19:10] INFO _internal.py line 224: Press CTRL+C to quit\n    [2023-05-21 03:19:10] INFO _internal.py line 224:  * Restarting with stat\n    [2023-05-21 03:19:11] WARNING _internal.py line 224:  * Debugger is active!\n    [2023-05-21 03:19:11] INFO _internal.py line 224:  * Debugger PIN: 139-055-000\n    ```\n    You can now navigate to http://localhost:8000 in the browser to view the application.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquanpersie2001%2Fdfa-converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquanpersie2001%2Fdfa-converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquanpersie2001%2Fdfa-converter/lists"}