├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug-report.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── launch.json ├── Artbreeder ├── data │ ├── random.js │ ├── recent.js │ ├── search.js │ └── trends.js ├── readme.md └── start │ └── start.js ├── Benchmark ├── data │ ├── banner.js │ ├── bench.js │ ├── cpu.js │ ├── cpu_info.js │ ├── game.js │ ├── gpu.js │ ├── gpu_info.js │ ├── gpu_scraper.js │ ├── os.js │ ├── ram.js │ ├── review.js │ └── vram.js └── readme.md ├── GTAVMod-Finder ├── README.md ├── data │ ├── base.js │ ├── searchmod.js │ └── searchuser.js └── forWeb │ ├── base.js │ ├── searchmod.js │ └── searchuser.js ├── GithubScraper ├── data │ ├── editBasicMeta.js │ ├── getBasicMeta.js │ └── uncacheToken.js ├── readme.md └── start │ └── startUserStats.js ├── InstaDownloader ├── README.md ├── lib │ ├── editor.js │ ├── export.js │ ├── getUserMeta.js │ ├── reels.js │ ├── search_from_name.js │ ├── stories.js │ ├── stories_fetch.js │ ├── stories_format.js │ └── stories_meta.js └── start │ ├── instagram_post.js │ ├── instagram_profile.js │ ├── instagram_reel.js │ └── instagram_story.js ├── LICENSE ├── NpmSearch ├── data │ ├── editPackageMeta.js │ ├── getMorePackageMetaFromURL.js │ ├── getPackageMetaFromQuery.js │ └── getUserMetaFromQuery.js ├── readme.md └── start │ ├── startGetPackage.js │ └── startGetUser.js ├── README.md ├── Similarity ├── diff.js ├── dist.js ├── method.js ├── readme.md ├── similarity.js └── tobin.js ├── TT-Downloader ├── README.md └── getMeta.js ├── TextMaker ├── README.md ├── glowtext-examples │ └── glowtext-ex.js ├── lib │ └── textmaker │ │ ├── glowtxt.js │ │ ├── helper.js │ │ └── textpro.js └── textpro-examples │ └── textpro-ex.js ├── apis.csv ├── clear.sh ├── dev_test ├── output_dev_test.json └── output_dev_test_cpus.json ├── index.js ├── node_test.js ├── nodedev_test.js ├── one-line-test └── README.md ├── os.term ├── package.json ├── rest ├── api │ └── index.js ├── apis │ ├── artbreeder.txt │ ├── github_user.txt │ ├── glowtext.txt │ ├── gpu_scraper.txt │ ├── insta_post.txt │ ├── insta_profile.txt │ ├── insta_reel.txt │ ├── insta_story.txt │ ├── npm_module.txt │ ├── npm_user.txt │ ├── similarity.txt │ ├── system_requirements.txt │ ├── textpro.txt │ └── tiktok.txt ├── index.js ├── package.json ├── readme.md └── vercel.json ├── terminate.sh ├── test.sh └── ux.term /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [phaticusthiccy] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Artbreeder/data/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Artbreeder/data/random.js -------------------------------------------------------------------------------- /Artbreeder/data/recent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Artbreeder/data/recent.js -------------------------------------------------------------------------------- /Artbreeder/data/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Artbreeder/data/search.js -------------------------------------------------------------------------------- /Artbreeder/data/trends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Artbreeder/data/trends.js -------------------------------------------------------------------------------- /Artbreeder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Artbreeder/readme.md -------------------------------------------------------------------------------- /Artbreeder/start/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Artbreeder/start/start.js -------------------------------------------------------------------------------- /Benchmark/data/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/banner.js -------------------------------------------------------------------------------- /Benchmark/data/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/bench.js -------------------------------------------------------------------------------- /Benchmark/data/cpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/cpu.js -------------------------------------------------------------------------------- /Benchmark/data/cpu_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/cpu_info.js -------------------------------------------------------------------------------- /Benchmark/data/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/game.js -------------------------------------------------------------------------------- /Benchmark/data/gpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/gpu.js -------------------------------------------------------------------------------- /Benchmark/data/gpu_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/gpu_info.js -------------------------------------------------------------------------------- /Benchmark/data/gpu_scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/gpu_scraper.js -------------------------------------------------------------------------------- /Benchmark/data/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/os.js -------------------------------------------------------------------------------- /Benchmark/data/ram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/ram.js -------------------------------------------------------------------------------- /Benchmark/data/review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/review.js -------------------------------------------------------------------------------- /Benchmark/data/vram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/data/vram.js -------------------------------------------------------------------------------- /Benchmark/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Benchmark/readme.md -------------------------------------------------------------------------------- /GTAVMod-Finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GTAVMod-Finder/README.md -------------------------------------------------------------------------------- /GTAVMod-Finder/data/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GTAVMod-Finder/data/base.js -------------------------------------------------------------------------------- /GTAVMod-Finder/data/searchmod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GTAVMod-Finder/data/searchmod.js -------------------------------------------------------------------------------- /GTAVMod-Finder/data/searchuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GTAVMod-Finder/data/searchuser.js -------------------------------------------------------------------------------- /GTAVMod-Finder/forWeb/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GTAVMod-Finder/forWeb/base.js -------------------------------------------------------------------------------- /GTAVMod-Finder/forWeb/searchmod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GTAVMod-Finder/forWeb/searchmod.js -------------------------------------------------------------------------------- /GTAVMod-Finder/forWeb/searchuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GTAVMod-Finder/forWeb/searchuser.js -------------------------------------------------------------------------------- /GithubScraper/data/editBasicMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GithubScraper/data/editBasicMeta.js -------------------------------------------------------------------------------- /GithubScraper/data/getBasicMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GithubScraper/data/getBasicMeta.js -------------------------------------------------------------------------------- /GithubScraper/data/uncacheToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GithubScraper/data/uncacheToken.js -------------------------------------------------------------------------------- /GithubScraper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GithubScraper/readme.md -------------------------------------------------------------------------------- /GithubScraper/start/startUserStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/GithubScraper/start/startUserStats.js -------------------------------------------------------------------------------- /InstaDownloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/README.md -------------------------------------------------------------------------------- /InstaDownloader/lib/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/editor.js -------------------------------------------------------------------------------- /InstaDownloader/lib/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/export.js -------------------------------------------------------------------------------- /InstaDownloader/lib/getUserMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/getUserMeta.js -------------------------------------------------------------------------------- /InstaDownloader/lib/reels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/reels.js -------------------------------------------------------------------------------- /InstaDownloader/lib/search_from_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/search_from_name.js -------------------------------------------------------------------------------- /InstaDownloader/lib/stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/stories.js -------------------------------------------------------------------------------- /InstaDownloader/lib/stories_fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/stories_fetch.js -------------------------------------------------------------------------------- /InstaDownloader/lib/stories_format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/stories_format.js -------------------------------------------------------------------------------- /InstaDownloader/lib/stories_meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/lib/stories_meta.js -------------------------------------------------------------------------------- /InstaDownloader/start/instagram_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/start/instagram_post.js -------------------------------------------------------------------------------- /InstaDownloader/start/instagram_profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/start/instagram_profile.js -------------------------------------------------------------------------------- /InstaDownloader/start/instagram_reel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/start/instagram_reel.js -------------------------------------------------------------------------------- /InstaDownloader/start/instagram_story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/InstaDownloader/start/instagram_story.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/LICENSE -------------------------------------------------------------------------------- /NpmSearch/data/editPackageMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/NpmSearch/data/editPackageMeta.js -------------------------------------------------------------------------------- /NpmSearch/data/getMorePackageMetaFromURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/NpmSearch/data/getMorePackageMetaFromURL.js -------------------------------------------------------------------------------- /NpmSearch/data/getPackageMetaFromQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/NpmSearch/data/getPackageMetaFromQuery.js -------------------------------------------------------------------------------- /NpmSearch/data/getUserMetaFromQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/NpmSearch/data/getUserMetaFromQuery.js -------------------------------------------------------------------------------- /NpmSearch/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/NpmSearch/readme.md -------------------------------------------------------------------------------- /NpmSearch/start/startGetPackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/NpmSearch/start/startGetPackage.js -------------------------------------------------------------------------------- /NpmSearch/start/startGetUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/NpmSearch/start/startGetUser.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/README.md -------------------------------------------------------------------------------- /Similarity/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Similarity/diff.js -------------------------------------------------------------------------------- /Similarity/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Similarity/dist.js -------------------------------------------------------------------------------- /Similarity/method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Similarity/method.js -------------------------------------------------------------------------------- /Similarity/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Similarity/readme.md -------------------------------------------------------------------------------- /Similarity/similarity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Similarity/similarity.js -------------------------------------------------------------------------------- /Similarity/tobin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/Similarity/tobin.js -------------------------------------------------------------------------------- /TT-Downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/TT-Downloader/README.md -------------------------------------------------------------------------------- /TT-Downloader/getMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/TT-Downloader/getMeta.js -------------------------------------------------------------------------------- /TextMaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/TextMaker/README.md -------------------------------------------------------------------------------- /TextMaker/glowtext-examples/glowtext-ex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/TextMaker/glowtext-examples/glowtext-ex.js -------------------------------------------------------------------------------- /TextMaker/lib/textmaker/glowtxt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/TextMaker/lib/textmaker/glowtxt.js -------------------------------------------------------------------------------- /TextMaker/lib/textmaker/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/TextMaker/lib/textmaker/helper.js -------------------------------------------------------------------------------- /TextMaker/lib/textmaker/textpro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/TextMaker/lib/textmaker/textpro.js -------------------------------------------------------------------------------- /TextMaker/textpro-examples/textpro-ex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/TextMaker/textpro-examples/textpro-ex.js -------------------------------------------------------------------------------- /apis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/apis.csv -------------------------------------------------------------------------------- /clear.sh: -------------------------------------------------------------------------------- 1 | clear -------------------------------------------------------------------------------- /dev_test/output_dev_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/dev_test/output_dev_test.json -------------------------------------------------------------------------------- /dev_test/output_dev_test_cpus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/dev_test/output_dev_test_cpus.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/index.js -------------------------------------------------------------------------------- /node_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/node_test.js -------------------------------------------------------------------------------- /nodedev_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/nodedev_test.js -------------------------------------------------------------------------------- /one-line-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/one-line-test/README.md -------------------------------------------------------------------------------- /os.term: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/os.term -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/package.json -------------------------------------------------------------------------------- /rest/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/rest/api/index.js -------------------------------------------------------------------------------- /rest/apis/artbreeder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/github_user.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/glowtext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/gpu_scraper.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/insta_post.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/insta_profile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/insta_reel.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/insta_story.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/npm_module.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/npm_user.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/similarity.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/system_requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/textpro.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/apis/tiktok.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/rest/index.js -------------------------------------------------------------------------------- /rest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/rest/package.json -------------------------------------------------------------------------------- /rest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/rest/readme.md -------------------------------------------------------------------------------- /rest/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/rest/vercel.json -------------------------------------------------------------------------------- /terminate.sh: -------------------------------------------------------------------------------- 1 | trap exit INT -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/test.sh -------------------------------------------------------------------------------- /ux.term: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaticusthiccy/Open-APIs/HEAD/ux.term --------------------------------------------------------------------------------