{"id":22656851,"url":"https://github.com/trajanmcgill/engineerstudy","last_synced_at":"2025-03-29T08:11:11.392Z","repository":{"id":203845588,"uuid":"705090317","full_name":"trajanmcgill/EngineerStudy","owner":"trajanmcgill","description":"Learning and study tool for fire engineering, covering nozzle pressures, friction loss, and overall pressure and flow rate calculations.","archived":false,"fork":false,"pushed_at":"2023-11-17T23:59:03.000Z","size":250,"stargazers_count":0,"open_issues_count":11,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-03T21:47:33.540Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.unboxedmind.com/engineerstudy/","language":"JavaScript","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/trajanmcgill.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-10-15T01:40:26.000Z","updated_at":"2023-11-29T16:26:34.000Z","dependencies_parsed_at":"2023-11-18T01:00:34.102Z","dependency_job_id":"7ac93fed-326f-44dd-aa50-5b924e95b84e","html_url":"https://github.com/trajanmcgill/EngineerStudy","commit_stats":null,"previous_names":["trajanmcgill/engineerstudy"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trajanmcgill%2FEngineerStudy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trajanmcgill%2FEngineerStudy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trajanmcgill%2FEngineerStudy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trajanmcgill%2FEngineerStudy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trajanmcgill","download_url":"https://codeload.github.com/trajanmcgill/EngineerStudy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246156419,"owners_count":20732397,"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","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":[],"created_at":"2024-12-09T10:16:41.968Z","updated_at":"2025-03-29T08:11:11.374Z","avatar_url":"https://github.com/trajanmcgill.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EngineerStudy (Hose Quiz)\n## An online tool for learning fire apparatus pumping math and facts.\n\n### Table of Contents\n- [Introduction](#introduction)\n- [Bug Reports and Suggested Enhancements](#bug-reports-and-suggested-enhancements)\n- [Contributing to This Web Site](#Contributing-to-this-web-site)\n- [Authors](#authors)\n- [Version History](#version-history)\n\n### Introduction\n#### What is this?\nThis is the code repository for [Hose Quiz](https://www.unboxedmind.com/engineerstudy/), a web-based quiz application for firefighters to learn and practice quickly solving fireground pumping scenarios.\n\n#### How do I use the application?\nVisit [https://www.unboxedmind.com/engineerstudy/](https://www.unboxedmind.com/engineerstudy/) and work through any of the several quizzes offered by the application. It presently can drill you on:\n- Basic, low-level facts (nozzle flow rates and hose / appliance friction losses)\n- Simple, starting configurations of hose + nozzles for memorization\n- More realistic, dynamically generated scenarios involving varying deployments of hose, nozzles, and other water delivery components (standpipes, and so on).\n\n#### What numbers are being used here? Do they apply everywhere?\nThis has two answers:\n- Basic facts, such as nozzle flow rates and friction losses, are not unique to a particular fire department, so they should be widely applicable.\n- Specific configurations tested here are presently based on the hose loads and equipment carried by the [Glen Ellyn Volunteer Fire Company](https://gefirerecruit.com/), and these obviously won't exactly match what is on other departments' rigs. That also means certain common but department-specific items aren't currently included, such as 4\" hose. *However*, this is intentionally an open-source application, allowing either for others to build customized versions or for this one to be expanded over time.\n\n## Bug Reports and Suggested Enhancements\n- For bug reports and suggested enhancements, visit [https://github.com/trajanmcgill/EngineerStudy/issues](https://github.com/trajanmcgill/EngineerStudy/issues).\n\n## Contributing to this web site\n- Prerequisites\n    - [git](https://git-scm.com/)\n    - [npm](https://www.npmjs.com/)\n- Setup\n\t1. First, fork this project and then `git clone` from GitHub:\n\t2. Next, to get all the dependencies, move inside the newly created project directory and run `npm install`.\n- Components used:\n\t- `vue` for marrying controls and display to data views and operation.\n\t- `jquery terminal` for the command-line-style interface.\n\t- `jquery` only because jquery terminal requires it.\n    - `vite` for building the application.\n- Running / Building:\n    - This project is built using [vite](https://vitejs.dev/).\n    - After cloning the repository, move to the project directory and run:\n\t    ```\n\t    npm install\n\t    ```\n\t    This will get all the pieces installed.\n\t- To test locally:\n\t\t```\n\t\tnpm run dev\n\t\t```\n\t- To build for production:\n\t\t```\n\t\tnpm run build\n\t\t```\n\t\tBut note that because vite doesn't play nicely with non-module-based JavaScript files (such as jquery terminal), the build script has a file copy step to move jquery and jquery terminal into the right location, which will currently only work on Linux.\n\t\n## Authors\n[Trajan McGill](https://github.com/trajanmcgill)\n\n## Version History\nSee [releases page](https://github.com/trajanmcgill/EngineerStudy/releases) for version notes and downloadable assets.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrajanmcgill%2Fengineerstudy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrajanmcgill%2Fengineerstudy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrajanmcgill%2Fengineerstudy/lists"}