{"id":33185606,"url":"https://github.com/maraloon/pickdate","last_synced_at":"2026-01-14T19:14:18.817Z","repository":{"id":270642611,"uuid":"911004963","full_name":"maraloon/pickdate","owner":"maraloon","description":"date picker for your terminal","archived":false,"fork":false,"pushed_at":"2025-10-27T14:06:00.000Z","size":3134,"stargazers_count":41,"open_issues_count":2,"forks_count":3,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-12-18T07:27:01.471Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","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/maraloon.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-02T03:02:43.000Z","updated_at":"2025-11-27T21:26:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"560ceb7e-fa4e-4cee-9b0b-c307c995cc79","html_url":"https://github.com/maraloon/pickdate","commit_stats":null,"previous_names":["maraloon/tui-datepicker","maraloon/pickdate"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/maraloon/pickdate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maraloon%2Fpickdate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maraloon%2Fpickdate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maraloon%2Fpickdate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maraloon%2Fpickdate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maraloon","download_url":"https://codeload.github.com/maraloon/pickdate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maraloon%2Fpickdate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28431868,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2025-11-16T05:00:20.096Z","updated_at":"2026-01-14T19:14:18.809Z","avatar_url":"https://github.com/maraloon.png","language":"Go","funding_links":[],"categories":["\u003ca name=\"option-picker\"\u003e\u003c/a\u003eFuzzy finders and option pickers"],"sub_categories":[],"readme":"# Pickdate\n\nfastly select date via vim-motions and print it to `stdout`\n\n![showcase](readme/preview.png) \n\n## Install\n\n### arch linux:\n\n``` bash\nyay -S install pickdate \n```\n\n### manualy:\n\n```bash\ngit clone git@github.com:maraloon/pickdate.git\ncd pickdate\ngo install\n```\n\n## Usage idea\n\nIt's for what i develop this app. Terminal-based notes. Open (or create) file for selected date\n\n\u003e After time i rewrite my bash scripts to one project: [tty-diary](https://github.com/maraloon/tty-diary), so if you want to diarize like me, check it\n\n```bash\n#!/usr/bin/env sh\nprev_selected_date=$(date +\"%Y/%m/%d\")\nwhile true\ndo \n    selected_date=$(pickdate -m --start-at $prev_selected_date) || exit 1\n    nvim \"$HOME/diary/$selected_date.md\" # opens diary/2025/01/15.md\n    prev_selected_date=$selected_date # alows to stay in selected date after quit editor\ndone\n```\n\n![usage](readme/usage.gif) \n\n## Flags\n\n```\nUsage: pickdate [OPTIONS]\n\nOptions:\n  -f, --format string     Format of date output (default \"yyyy/mm/dd\")\n  -h, --help              Help\n  -m, --monday            Monday as first day of week\n      --start-at string   Pointed date on enter (default today)\n  -s, --sunday            Sunday as first day of week (default true)\n```\n\n### `--format` values\n\nYou can use both left and right format types\n\n\n|   Format     | Go Layout         |\n|--------------|-------------------|\n| `yyyy/mm/dd` | `2006/01/02`      |\n| `Y/m/d`      | `2006/01/02`      |\n| `yyyy-mm-dd` | `2006-01-02`      |\n| `Y-m-d`      | `2006-01-02`      |\n| `F j, Y`     | `January 2, 2006` |\n| `m/d/y`      | `01/02/06`        |\n| `M-d-y`      | `Jan-02-06`       |\n| `l`          | `Monday`          |\n| `D`          | `Mon`             |\n| `d`          | `02`              |\n| `j`          | `2`               |\n| `F`          | `January`         |\n| `M`          | `Jan`             |\n| `m`          | `01`              |\n| `n`          | `1`               |\n| `Y`          | `2006`            |\n| `y`          | `06`              |\n\n\n## Set custom colors for days\n\nYou can send string to stdin to set custom colors for each day.\nString format: `color1:day1,day2;color2:day3,day31`\n`color` - `[0-15]` or hex (`#b16286`)\n`day` - `2006/01/02`\n\nexample: `echo \"#b16286:2025/08/10,2025/08/11;#d79920:2025/08/12\" | pickdate`\n\n## TODO\n    - [x] stable\n    - [ ] git version\n    - [x] decoupling to bubble component\n\n## Made with\n\nIt depends on [datepicker](https://github.com/maraloon/datepicker) bubble, which you can use in your go apps too\n\n\u003cp\u003e\u003ca href=\"https://stuff.charm.sh/bubbletea/bubbletea-4k.png\"\u003e\u003cimg src=\"https://github.com/charmbracelet/bubbletea/assets/25087/108d4fdb-d554-4910-abed-2a5f5586a60e\" width=\"313\" alt=\"Bubble Tea Title Treatment\"\u003e\u003c/a\u003e\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaraloon%2Fpickdate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaraloon%2Fpickdate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaraloon%2Fpickdate/lists"}