{"id":20049767,"url":"https://github.com/navalnica/akr","last_synced_at":"2026-05-03T20:32:28.826Z","repository":{"id":176352519,"uuid":"656856620","full_name":"navalnica/akr","owner":"navalnica","description":"Fight OCD in your browser (AKR in Belarusian)","archived":false,"fork":false,"pushed_at":"2024-05-07T07:21:42.000Z","size":2243,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-07T14:52:06.590Z","etag":null,"topics":["bic","iban","java-script","javascript","mental-health","obsessive-compulsive-disorder","ocd","svelte","swift"],"latest_commit_sha":null,"homepage":"https://navalnica.github.io/akr/","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/navalnica.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-06-21T19:34:46.000Z","updated_at":"2024-05-07T07:21:46.000Z","dependencies_parsed_at":"2023-09-26T07:29:36.437Z","dependency_job_id":"e5abbaaa-2c16-4ce1-8215-7f8d764b9944","html_url":"https://github.com/navalnica/akr","commit_stats":null,"previous_names":["navalnica/akr"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/navalnica/akr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/navalnica%2Fakr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/navalnica%2Fakr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/navalnica%2Fakr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/navalnica%2Fakr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/navalnica","download_url":"https://codeload.github.com/navalnica/akr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/navalnica%2Fakr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32583905,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["bic","iban","java-script","javascript","mental-health","obsessive-compulsive-disorder","ocd","svelte","swift"],"created_at":"2024-11-13T11:52:15.204Z","updated_at":"2026-05-03T20:32:28.810Z","avatar_url":"https://github.com/navalnica.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Fight OCD in your browser!\n\nBy solving simple problems you gain trust and confidence in yourself - this should help fighting [Obsessive–compulsive disorder](https://en.wikipedia.org/wiki/Obsessive%E2%80%93compulsive_disorder). \n\nThe main idea is to check how well you remember sequences of numbers and letters - a common task in everyday life, e.g. when filling in documents. OCD makes me recheck phone/passport numbers ridiculous number of times, because of constant doubts. Hope this app will help not only me but also you if you experience something similar 😃\n\nYou can try it yourself here: [navalnica.github.io/akr](https://navalnica.github.io/akr/)\n\n\n## Features to add\nThe project is in development. You are welcome to help to implement following features!\n\n* add transitions via Svelte\n* fix layout jitter when opening settings and when switching languages. \n  probably use `display: grid` instead of flexboxes\n\n## Technologies used\n* [Svelte](https://svelte.dev) framework - to build reactive interface\n* [Vite](https://vitejs.dev/) - to build Svelte app into a static web-site (html + css + js)\n* [Pico.css](https://picocss.com/) - for styling, especially for out-of-the-box light/dark theme support in components\n* [Github pages](https://pages.github.com/) - to host a static web-site\n\n## Data used\n* SWIFT codes are sampled from the following dataset: [github.com/PeterNotenboom/SwiftCodes](https://github.com/PeterNotenboom/SwiftCodes).\u003cbr\u003e\n  Notebook to reproduce data loading and sampling: [py/swift_codes_parser.ipynb](py/swift_codes_parser.ipynb)\n* ISO 3166-1 alpha-2 country codes are taken from [gist.github.com/tadast/8827699](https://gist.github.com/tadast/8827699)\n\n## How to build\n* The project was built from the Vite+Svelte template\n    * To reproduce run: `npm init vite` and select `Svelte` template\n    * There is no need in reproducing, you can use the code from this repo to get started\n* Install dependencies: `npm install`.\u003cbr\u003e\n  This will create `node_modules` folder and `package-lock.json`\n* To run dev server: `npm run dev`\n    * If you run development in docker container,\u003cbr\u003e\n      you need to expose port to your host by `npm run dev -- --host`\n    * To specify port: `npm run dev -- --port 1234`\n* To build static website: `npm run build`. Artifacts will be stored to `docs` folder\n    * To change output dir: `npm run build -- --outDir \u003cdirname\u003e`\n* To preview built static website: `npm run preview`\n    * Similar to above, you can specify outDir, change port or expose host:\u003cbr\u003e\n      `npm run preview -- --outDir docs --port 4000 --host`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnavalnica%2Fakr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnavalnica%2Fakr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnavalnica%2Fakr/lists"}