{"id":16975988,"url":"https://github.com/boomzero/quicksubmit","last_synced_at":"2026-02-08T21:07:02.987Z","repository":{"id":213804915,"uuid":"734973882","full_name":"boomzero/quickSubmit","owner":"boomzero","description":"a simple way to submit code to XMOJ in your terminal","archived":false,"fork":false,"pushed_at":"2025-07-23T02:21:36.000Z","size":19037,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-27T22:53:23.881Z","etag":null,"topics":["cli","collaborate","deno","online-judge","xmoj"],"latest_commit_sha":null,"homepage":"https://jsr.io/@boomzero/quicksubmit","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/boomzero.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2023-12-23T07:55:48.000Z","updated_at":"2025-07-23T02:21:32.000Z","dependencies_parsed_at":"2023-12-23T08:49:20.137Z","dependency_job_id":"574deae6-34ae-449c-a0cb-d05b59e16950","html_url":"https://github.com/boomzero/quickSubmit","commit_stats":null,"previous_names":["boomzero/quicksubmit"],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/boomzero/quickSubmit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boomzero%2FquickSubmit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boomzero%2FquickSubmit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boomzero%2FquickSubmit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boomzero%2FquickSubmit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boomzero","download_url":"https://codeload.github.com/boomzero/quickSubmit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boomzero%2FquickSubmit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29244637,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T21:00:43.743Z","status":"ssl_error","status_checked_at":"2026-02-08T20:59:20.374Z","response_time":57,"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":["cli","collaborate","deno","online-judge","xmoj"],"created_at":"2024-10-14T01:24:35.083Z","updated_at":"2026-02-08T21:07:02.972Z","avatar_url":"https://github.com/boomzero.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# quickSubmit\n\n[![Deno](https://github.com/boomzero/quicksubmit/actions/workflows/deno.yml/badge.svg)](https://github.com/boomzero/quicksubmit/actions/workflows/deno.yml)\n[![Publish](https://github.com/boomzero/quicksubmit/actions/workflows/publish.yml/badge.svg)](https://github.com/boomzero/quicksubmit/actions/workflows/publish.yml)\n\nSubmit Code to XMOJ.\n\n\u003cimg width=\"663\" alt=\"a neat demo\" src=\"https://github.com/boomzero/quicksubmit/assets/85378277/0dd45497-da62-4a6b-bf1a-de7af8077f00\"\u003e\n\u003cimg width=\"490\" alt=\"image\" src=\"https://github.com/boomzero/quicksubmit/assets/85378277/c2fbe250-2115-429d-b75f-fd87ca39b438\"\u003e\n\n## quickStart\n\nYou can get binaries from the\n[release page](https://github.com/boomzero/quicksubmit/releases). You need to\nput `quicksubmit.json` in your home directory. It should look something like\nthis:\n\n```json\n{\n  \"username\": \"\u003cyour username\u003e\",\n  \"password\": \"\u003cyour password\u003e\"\n}\n```\n\n## Building\n\nThis is a [deno](https://deno.com/) project. You should have deno installed. You\ncan install it from\n[here](https://docs.deno.com/runtime/manual/getting_started/installation). After\nthat, you can build it using:\n\n```bash\ndeno compile -A -c tsconfig.json index.ts\n```\n\nThe binaries will be called `quickSubmit(.exe)`.\n\nUpdate: It turns out `bun` fixed the issue that caused me to switch to `deno`,\nand `bun` works now. Compile using `bun`:\n\n```bash\nbun build --compile --outfile qsm ./index.ts\n```\n\n## Usage\n\n```\nUsage: quicksubmit [options] [file]\n\nSubmit code to XMOJ.\n\nArguments:\n  file                File to submit (default: \"main.cpp\")\n\nOptions:\n  -p, --pid \u003cnumber\u003e  Problem id to submit to. If --cid is set, this can also be the id of the problem in the contest.\n  -c, --cid \u003cnumber\u003e  Contest to submit to (default: \"-1\")\n  -c --config         Path to config file\n  -O, --O2 \u003cboolean\u003e  Whether to enable O2 (default: true)\n  -h, --help          display help for command\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboomzero%2Fquicksubmit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboomzero%2Fquicksubmit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboomzero%2Fquicksubmit/lists"}