{"id":16296831,"url":"https://github.com/windomz/go-develop-kit","last_synced_at":"2025-04-09T13:31:06.500Z","repository":{"id":83794865,"uuid":"62784196","full_name":"WindomZ/go-develop-kit","owner":"WindomZ","description":":wrench: My development kits - Go packages","archived":false,"fork":false,"pushed_at":"2018-07-12T01:42:06.000Z","size":121,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-15T07:40:26.033Z","etag":null,"topics":["developer-kits","go-packages","golang","golang-library","golang-tools","kit"],"latest_commit_sha":null,"homepage":"","language":"Go","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/WindomZ.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":"security/README.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-07T07:21:23.000Z","updated_at":"2019-01-28T15:56:36.000Z","dependencies_parsed_at":"2023-06-18T23:19:58.639Z","dependency_job_id":null,"html_url":"https://github.com/WindomZ/go-develop-kit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindomZ%2Fgo-develop-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindomZ%2Fgo-develop-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindomZ%2Fgo-develop-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindomZ%2Fgo-develop-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WindomZ","download_url":"https://codeload.github.com/WindomZ/go-develop-kit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248049077,"owners_count":21039151,"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","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":["developer-kits","go-packages","golang","golang-library","golang-tools","kit"],"created_at":"2024-10-10T20:24:07.510Z","updated_at":"2025-04-09T13:31:06.479Z","avatar_url":"https://github.com/WindomZ.png","language":"Go","readme":"# go-develop-kit\n\n[![Build Status](https://travis-ci.org/WindomZ/go-develop-kit.svg?branch=master)](https://travis-ci.org/WindomZ/go-develop-kit)\n[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\n\u003e My development kits for Golang.\n\n[中文文档](https://github.com/WindomZ/go-develop-kit/blob/master/README_Ch-zh.md#readme)\n\n## Install\n\n```bash\ngo get github.com/WindomZ/go-develop-kit...\n```\n\n## Usage\n\n### Bytes\n- [bytes](https://github.com/WindomZ/go-develop-kit/tree/master/bytes/bytes.go)\n    - Format formats bytes integer to human readable string\n    - Parse parses human readable bytes string to bytes integer\n\n### Cache\n- [cache](https://github.com/WindomZ/go-develop-kit/tree/master/cache)\n    - [freecache](https://github.com/WindomZ/go-develop-kit/tree/master/cache/freecache)\n    - [gocache](https://github.com/WindomZ/go-develop-kit/tree/master/cache/gocache)\n- [numcache](https://github.com/WindomZ/go-develop-kit/tree/master/cache/numcache)\n\n### GoogleAuthenticator\n- [One-time Password](https://github.com/WindomZ/go-develop-kit/tree/master/googleauth/otp)\n    - HMAC-Based One-time Password (HOTP) algorithm specified in RFC 4226\n    - Time-based One-time Password (TOTP) algorithm specified in RFC 6238\n\n### IP\n- [ip](https://github.com/WindomZ/go-develop-kit/blob/master/iputil/ip.go)\n    - Get the current IP address\n    - Get the end of current IP address\n\n### Math\n- [float64](https://github.com/WindomZ/go-develop-kit/blob/master/math/float.go)\n    - Add, subtract, multiply, divide and round\n    - Calculation of big number, eliminate the error precision\n\n### Mutex\n- [mutex](https://github.com/WindomZ/go-develop-kit/blob/master/mutex/mutex.go)\n    - Still in development :)\n\n### Path\n[README](https://github.com/WindomZ/go-develop-kit/blob/master/path#readme)\n\n- Get the user's **`home` directory**\n- **File operation** function collection\n\n### Queue\n- [queue](https://github.com/WindomZ/go-develop-kit/blob/master/queue/queue.go)\n    - Push push the queue.\n    - Pull pull the queue, FIFO.\n    - Exchange safely change queue capacity.\n\n### Security\n- salt\n    - [hmac](https://github.com/WindomZ/go-develop-kit/blob/master/security/salt/hmac.go)\n        - hmac-md5\n    - [md5](https://github.com/WindomZ/go-develop-kit/blob/master/security/salt/md5.go)\n        - md5-prefix\n\n### StringUtil\n- [string](https://github.com/WindomZ/go-develop-kit/blob/master/stringutil/string.go)\n    - Split the string\n- [regexp](https://github.com/WindomZ/go-develop-kit/blob/master/stringutil/regexp.go)\n    - Split the string with regular expression\n\n### Unit\n- [currency](https://github.com/WindomZ/go-develop-kit/blob/master/unit/currency.go)\n    - Unit currency, the multiple formats mapping\n- [float price](https://github.com/WindomZ/go-develop-kit/blob/master/unit/float_price.go)\n    - Unit price, floating point calculation\n- [int price](https://github.com/WindomZ/go-develop-kit/blob/master/unit/int_price.go)\n    - Unit price, integral calculation\n\n### UUID\n- [uuid](https://github.com/WindomZ/go-develop-kit/blob/master/uuid/uuid.go)\n    - Common UUID safe generation method\n- [validator](https://github.com/WindomZ/go-develop-kit/blob/master/uuid/validator.go)\n    - Commonly used UUID validator\n- [tool](https://github.com/WindomZ/go-develop-kit/blob/master/uuid/tool.go)\n    - Commonly used UUID conversion tool\n\n## Contributing\n\nWelcome to pull requests, report bugs, suggest ideas and discuss **go-develop-kit**, \ni would love to hear what you think about **go-develop-kit** on [issues page](https://github.com/WindomZ/go-develop-kit/issues).\n\nIf you like it then you can put a :star: on it.\n\n## License\n\n[MIT](https://github.com/WindomZ/go-develop-kit/blob/master/LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwindomz%2Fgo-develop-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwindomz%2Fgo-develop-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwindomz%2Fgo-develop-kit/lists"}