{"id":19355587,"url":"https://github.com/hacc2024/kettle-labs","last_synced_at":"2026-02-12T20:02:11.836Z","repository":{"id":262008910,"uuid":"885937456","full_name":"HACC2024/Kettle-Labs","owner":"HACC2024","description":"A chrome extension to unlock the full query capability of SQL on Hawaii's OpenData Portal.","archived":false,"fork":false,"pushed_at":"2024-11-13T17:11:02.000Z","size":189,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-08T20:41:50.671Z","etag":null,"topics":["chrome-extension","react","sql","typescript"],"latest_commit_sha":null,"homepage":"https://chromewebstore.google.com/detail/hawaii-opendata-hacc/cohalgekdkpklkgcchejaflbdoggbmmo","language":"TypeScript","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/HACC2024.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}},"created_at":"2024-11-09T19:34:11.000Z","updated_at":"2024-11-13T17:11:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"ddb1a670-92be-4404-aef7-08d858d70771","html_url":"https://github.com/HACC2024/Kettle-Labs","commit_stats":null,"previous_names":["hacc2024/kettle-labs"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/HACC2024/Kettle-Labs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HACC2024%2FKettle-Labs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HACC2024%2FKettle-Labs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HACC2024%2FKettle-Labs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HACC2024%2FKettle-Labs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HACC2024","download_url":"https://codeload.github.com/HACC2024/Kettle-Labs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HACC2024%2FKettle-Labs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29379674,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T19:05:20.189Z","status":"ssl_error","status_checked_at":"2026-02-12T19:01:44.216Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["chrome-extension","react","sql","typescript"],"created_at":"2024-11-10T06:02:56.426Z","updated_at":"2026-02-12T20:02:11.821Z","avatar_url":"https://github.com/HACC2024.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ![opendata-crx](public/images/icon-32.png \"opendata.hawaii.gov\") Hawaii OpenData HACC\n![build](https://github.com/HACC2024/Kettle-Labs/workflows/build/badge.svg)\n\nA chrome extension to unlock the full query capability of SQL on Hawaii's OpenData Portal `https://opendata.hawaii.gov/`.\n\n### \u003cimg src=\"https://fonts.gstatic.com/s/i/productlogos/chrome_store/v7/192px.svg\" width=\"32\" height=\"32\"\u003e Now approved in the Chrome Web Store! [[install link](https://chromewebstore.google.com/detail/hawaii-opendata-hacc/cohalgekdkpklkgcchejaflbdoggbmmo)]\n\n## Prerequisites\n\n* [node + npm](https://nodejs.org/) (Current Version)\n* [Visual Studio Code](https://code.visualstudio.com/)\n* [Chrome Web Browser](https://www.google.com/chrome/)\n\n\n\n## Project Structure\n\n* `src/*`: TypeScript source files\n* `public/*`: static files\n* `dist`: Chrome Extension build directory\n\n## Setup Build\n\n```shell\nnpm install\n\n# compile production build\nnpm run build\n\n# watch changes for local development\nnpm run watch\n```\n\n## Installation\n\n\u003cimg src=\"public/load_unpacked.png\" width=\"483\"\u003e\n\nTo load an unpacked extension in developer mode:\n1. Go to the Extensions page by entering `chrome://extensions` in a new tab. (By design `chrome://` URLs are not linkable.)\n   * Alternatively, click the Extensions menu puzzle button and select **Manage Extensions** at the bottom of the menu.\n   * Or, click the Chrome menu, hover over **More Tools**, then select **Extensions**.\n2. Enable Developer Mode by clicking the toggle switch next to **Developer mode**.\n3. Click the Load unpacked button and select the `/dist`.\n\n## Sample Queries\nTry these queries out against the [unpaid-expenditures-for-hawaii-state-and-county-candidates](https://opendata.hawaii.gov/dataset/unpaid-expenditures-for-hawaii-state-and-county-candidates/resource/caf4dc69-cf11-43dc-b4f9-3c29156d7630) dataset:\n\n#### top campaign spenders\n```sql\nwith total_spend as (\n  SELECT\n    \"Candidate Name\" as name,\n    sum(\"Unpaid Expenditure Amount\"::MONEY) as spend \n  from \"caf4dc69-cf11-43dc-b4f9-3c29156d7630\" \n  group by 1 \n)\nSELECT\n  row_number() over (order by spend desc nulls last) AS rank,\n  name,\n  spend \nfrom total_spend \norder by spend desc nulls last\nlimit 10\n```\n\n#### observe spend over time grouped by month\n```sql\nSELECT\n  date_trunc('month', \"Date\")::DATE as month,\n  sum(\"Unpaid Expenditure Amount\"::MONEY) as spend\nFROM \"caf4dc69-cf11-43dc-b4f9-3c29156d7630\"\nGROUP BY month\norder by month asc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacc2024%2Fkettle-labs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhacc2024%2Fkettle-labs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacc2024%2Fkettle-labs/lists"}