{"id":18631767,"url":"https://github.com/esotericpig/senpi","last_synced_at":"2026-05-04T07:31:46.853Z","repository":{"id":96103944,"uuid":"48982062","full_name":"esotericpig/senpi","owner":"esotericpig","description":"pi in base 12 with custom-made Big Integer/Decimal classes for use with (almost) any base.","archived":false,"fork":false,"pushed_at":"2019-07-08T18:02:06.000Z","size":158,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-27T07:34:26.288Z","etag":null,"topics":["base","bigdecimal","biginteger","bignumber","gradle","gradle-wrapper","gradlew","java","pi"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/esotericpig.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"2016-01-04T07:44:08.000Z","updated_at":"2024-09-04T00:37:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"69bf0ac9-8256-40e1-b335-1131f30e86aa","html_url":"https://github.com/esotericpig/senpi","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/esotericpig%2Fsenpi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esotericpig%2Fsenpi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esotericpig%2Fsenpi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esotericpig%2Fsenpi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/esotericpig","download_url":"https://codeload.github.com/esotericpig/senpi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239425427,"owners_count":19636346,"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":["base","bigdecimal","biginteger","bignumber","gradle","gradle-wrapper","gradlew","java","pi"],"created_at":"2024-11-07T05:08:32.998Z","updated_at":"2026-05-04T07:31:46.782Z","avatar_url":"https://github.com/esotericpig.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# senpi\npi in base 12 with custom-made Big Integer/Decimal classes for use with (almost) any base.\n\nThe idea was taken from Kryon channelings by channeler Lee Carroll.\n\nThe \"senpi\" name comes from seeing a funny \"Notice me, Senpai\" meme with the pi symbol.\n\n**Note:** This project is currently in development on v0.6.4.  The first working version will be v1.0.0.\n\n## Contents\n- [Setup](#setup)\n  - [Setup Notes](#setup-notes)\n  - [Uninstall](#uninstall)\n- [Use](#use)\n- [License](#license)\n\n## [Setup](#contents)\nThis project uses Gradle for the build process.  If you already have Gradle installed, ignore this section.\n\nGraddle Wrapper is included so that you don't have to install Gradle.  Simply run one of the following commands:\n- `./gradlew` (Unix-like systems: Linux and Mac OS X)\n- `./gradlew.bat` (Windows)\n\n(For Unix-like systems, you may have to `chmod +x ./gradlew` or simply do `bash gradlew`.)\n\nMake sure that you have Java installed (with potentially `JAVA_HOME` set correctly).\n\nInstead, you can also move `gradle-wrapper.jar` and `gradle-wrapper.properties` from `./gradle/wrapper` to the top directory and simply run them with the following command if you wish:\n- `java -jar ./gradle-wrapper.jar`\n\nFor safety, `distributionSha256Sum` has been added to `gradle-wrapper.properties`.\n\n### [Setup Notes](#contents)\nBy default, Gradle now runs a Daemon.  You can stop it by using this command:\n- `./gradlew(.bat) --stop`\n\nTo disable the Daemon, add the following to `$USER_HOME/.gradle/gradle.properties` (or create the file):\n- `org.gradle.daemon=false`\n\n### [Uninstall](#contents)\nIf you used Gradle Wrapper, do the following:\n1. Stop the Gradle Daemon if it is running:\n   - `./gradlew(.bat) --stop`\n2. Delete any files stored in here:\n   - `$USER_HOME/.gradle/wrapper/dists`\n\n## [Use](#contents)\nDefault tasks (gradle -q) are:\n- `run`\n\nUseful tasks:\n- `gradle tasks`\n- `gradle clean`\n- `gradle build`\n- `gradle test`\n- `gradle -q run`\n- `gradle javadoc`\n- `gradle jar`\n- `gradle distTar distZip`\n\nYou can exclude a task using `-x`.  This is useful for long and/or annoying tasks, like `test`, or for debugging:\n- `gradle -x test clean build run`\n\n## [License](#contents)\n\u003e senpi (https://github.com/esotericpig/senpi)  \n\u003e Copyright (c) 2016-2017 Jonathan Bradley Whited (@esotericpig)  \n\u003e \n\u003e senpi is free software: you can redistribute it and/or modify  \n\u003e it under the terms of the GNU Lesser General Public License as published by  \n\u003e the Free Software Foundation, either version 3 of the License, or  \n\u003e (at your option) any later version.  \n\u003e \n\u003e senpi is distributed in the hope that it will be useful,  \n\u003e but WITHOUT ANY WARRANTY; without even the implied warranty of  \n\u003e MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  \n\u003e GNU Lesser General Public License for more details.  \n\u003e \n\u003e You should have received a copy of the GNU Lesser General Public License  \n\u003e along with senpi.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesotericpig%2Fsenpi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fesotericpig%2Fsenpi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesotericpig%2Fsenpi/lists"}