{"id":32221046,"url":"https://github.com/domm/app-timetracker","last_synced_at":"2025-10-22T08:42:43.696Z","repository":{"id":712296,"uuid":"359103","full_name":"domm/App-TimeTracker","owner":"domm","description":"distributed timetracking from the commandline","archived":false,"fork":false,"pushed_at":"2021-09-23T21:18:46.000Z","size":762,"stargazers_count":77,"open_issues_count":3,"forks_count":22,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-06-18T14:11:52.836Z","etag":null,"topics":["hacktoberfest","timetracker"],"latest_commit_sha":null,"homepage":"","language":"Perl","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/domm.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-11-03T08:20:40.000Z","updated_at":"2023-09-05T10:51:59.000Z","dependencies_parsed_at":"2022-08-16T10:45:19.983Z","dependency_job_id":null,"html_url":"https://github.com/domm/App-TimeTracker","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/domm/App-TimeTracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domm%2FApp-TimeTracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domm%2FApp-TimeTracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domm%2FApp-TimeTracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domm%2FApp-TimeTracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/domm","download_url":"https://codeload.github.com/domm/App-TimeTracker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/domm%2FApp-TimeTracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280409301,"owners_count":26325747,"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","status":"online","status_checked_at":"2025-10-22T02:00:06.515Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["hacktoberfest","timetracker"],"created_at":"2025-10-22T08:42:38.244Z","updated_at":"2025-10-22T08:42:43.687Z","avatar_url":"https://github.com/domm.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NAME\n\nApp::TimeTracker - time tracking for impatient and lazy command line lovers\n\n# VERSION\n\nversion 3.010\n\n# SYNOPSIS\n\nBackend for the `tracker` command. See [tracker](https://metacpan.org/pod/tracker) and/or `perldoc tracker` for details.\n\n# INSTALLATION\n\n[App::TimeTracker](https://metacpan.org/pod/App%3A%3ATimeTracker) is a [Perl](http://perl.org) application, and thus requires\na recent Perl (\u003e= 5.10). It also reuses a lot of code from\n[CPAN](http://cpan.org).\n\n## From CPAN\n\nThe easiest way to install the current stable version of [App::TimeTracker](https://metacpan.org/pod/App%3A%3ATimeTracker) is\nvia [CPAN](http://cpan.org). There are several different CPAN clients\navailable:\n\n### cpanminus\n\n    ~$ cpanm App::TimeTracker\n    --\u003e Working on App::TimeTracker\n    Fetching http://search.cpan.org/CPAN/authors/id/D/DO/DOMM/App-TimeTracker-2.009.tar.gz ... OK\n    Configuring App-TimeTracker-2.009 ... OK\n    Building and testing App-TimeTracker-2.009 ... OK\n    Successfully installed App-TimeTracker-2.009\n    1 distribution installed\n\nIf you don't have `cpanminus` installed yet, [install it right\nnow](http://search.cpan.org/dist/App-cpanminus/lib/App/cpanminus.pm#INSTALLATION):\n\n    ~$ curl -L http://cpanmin.us | perl - --sudo App::cpanminus\n\n### CPAN.pm\n\nCPAN.pm is available on ancient Perls, and feels a bit ancient, too.\n\n    cpan App::TimeTracker\n\n## From a tarball\n\nTo install [App::TimeTracker](https://metacpan.org/pod/App%3A%3ATimeTracker) from a tarball, do the usual CPAN module\ninstall dance:\n\n    ~/perl/App-TimeTracker$ perl Build.PL\n    ~/perl/App-TimeTracker$ ./Build\n    ~/perl/App-TimeTracker$ ./Build test\n    ~/perl/App-TimeTracker$ ./Build install  # might require sudo\n\n## From a git checkout\n\nClone the repository if you have not already done so, and enter the\n`App-TimeTracker` directory:\n\n    ~$ git clone git@github.com:domm/App-TimeTracker.git\n    ~$ cd App-TimeTracker\n\n`App-TimeTracker` uses [Dist::Zilla](https://metacpan.org/pod/Dist%3A%3AZilla) to build, test and install the code,\nhence this must be installed first, e.g. with `cpanm`:\n\n    ~/path/to/App-Tracker$ cpanm Dist::Zilla\n\nNow install the distribution's dependencies, test and install in the usual\nmanner for `Dist::Zilla` projects:\n\n    ~/path/to/App-Tracker$ dzil listdeps --missing | cpanm\n    ~/path/to/App-Tracker$ dzil test\n    ~/path/to/App-Tracker$ dzil install\n\n# PLUGINS\n\nCustom commands or adaptations to your workflow can be implemented via\nan \"interesting\" set of [Moose](https://metacpan.org/pod/Moose)-powered plugins. You can configure\ndifferent sets of plugins for different jobs or projects.\n\n**Tip:** Use `tracker plugins` to list all installed plugins. Read more\nabout each plugin in `App::TimeTracker::Command::PLUGIN-NAME`.\n\n## Note about (missing) Plugins\n\nUp to version 2.028 a lot of plugins where included in the main distribution\n`App-TimeTracker`. To make installation easier and faster, all non-core\ncommand plugins have been moved into distinct, standalone distributions.\n\nThe following plugins are affected:\n\n- App::TimeTracker::Git (which also includes SyncViaGit)\n- App::TimeTracker::RT\n- App::TimeTracker::TellRemote (which was called Post2IRC earlier)\n- App::TimeTracker::Overtime has been removed, while the idea is nice, the API and implementation are not good enough.\n- App::TimeTracker::TextNotify has been removed.\n\n# SOURCE CODE\n\n## git\n\nWe use `git` for version control and maintain a public repository on\n[github](http://github.com).\n\nYou can find the latest version of [App::TimeTracker](https://metacpan.org/pod/App%3A%3ATimeTracker) here:\n\n[https://github.com/domm/App-TimeTracker](https://github.com/domm/App-TimeTracker)\n\nIf you want to work on [App::TimeTracker](https://metacpan.org/pod/App%3A%3ATimeTracker), add a feature, add a plugin or fix\na bug, please feel free to [fork](http://help.github.com/fork-a-repo/) the\nrepo and send us [pull requests](http://help.github.com/send-pull-requests/)\nto merge your changes.\n\nTo report a bug, please use the `issues` feature from GitHub.\n\n## CPAN\n\n[App::TimeTracker](https://metacpan.org/pod/App%3A%3ATimeTracker) is distributed via [CPAN](http://cpan.org/), the\nComprehensive Perl Archive Network. Here are a few different views of\nCPAN, offering slightly different features:\n\n- [https://metacpan.org/release/App-TimeTracker/](https://metacpan.org/release/App-TimeTracker/)\n- [http://search.cpan.org/dist/App-TimeTracker/](http://search.cpan.org/dist/App-TimeTracker/)\n\n# Viewing and reporting Bugs\n\nPlease use this URL to view and report bugs:\n\n[https://github.com/domm/App-TimeTracker/issues](https://github.com/domm/App-TimeTracker/issues)\n\n# CONTRIBUTORS\n\nMaros Kollar, Klaus Ita, Yanick Champoux, Lukas Rampa, David Schmidt, Michael Kröll, Thomas Sibley, Nelo Onyiah, Jozef Kutej, Roland Lammel, Ruslan Zakirov, Kartik Thakore, Tokuhiro Matsuno, Paul Cochrane, David Provost, Mohammad S Anwar, Håkon Hægland, Thomas Mantl\n\n# AUTHOR\n\nThomas Klausner \u003cdomm@plix.at\u003e\n\n# COPYRIGHT AND LICENSE\n\nThis software is copyright (c) 2011 - 2021 by Thomas Klausner.\n\nThis is free software; you can redistribute it and/or modify it under\nthe same terms as the Perl 5 programming language system itself.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdomm%2Fapp-timetracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdomm%2Fapp-timetracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdomm%2Fapp-timetracker/lists"}