├── .genignore ├── .gitignore ├── ADR.md ├── ATTRIBUTION.md ├── BACKLOG.md ├── BLOG.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── GETTING-STARTED.md ├── GROWTH.md ├── LICENSE.md ├── README.md ├── TODO.md ├── context.json ├── convention.md ├── process-formdata.drawio.png ├── routers ├── ADR.md ├── COVERAGE.md ├── README.md ├── StandardURL.ts ├── github.ts ├── npmjs.ts ├── router-simple.drawio.png ├── router.drawio.png ├── x.ts └── ycombinator.news.ts ├── uithub.ingestjson ├── .gitignore ├── README.md ├── globals.d.ts ├── main.ts ├── package.json ├── public │ └── ext-to-mime.json ├── test.js ├── types.ts └── wrangler.toml ├── uithub.ingestsql ├── .dev.vars.example ├── .gitignore ├── CHANGELOG.md ├── README.md ├── main.ts ├── package.json ├── public │ ├── default-genignore.txt │ ├── ext-to-mime.json │ ├── index.html │ └── openapi.json ├── types.ts └── wrangler.toml ├── uithub.ingesttar ├── .gitignore ├── README.md ├── genignore.ts ├── globals.d.ts ├── main.ts ├── package.json ├── public │ ├── default-genignore.txt │ ├── ext-to-mime.json │ ├── index.html │ └── openapi.json ├── tarReader.ts ├── test.js ├── types.ts └── wrangler.toml ├── uithub.ingestzip ├── .gitignore ├── ADR.md ├── README.md ├── curlspeed.sh ├── genignore.ts ├── globals.d.ts ├── main.ts ├── package.json ├── public │ ├── default-genignore.txt │ ├── ext-to-mime.json │ ├── index.html │ └── openapi.json ├── test.js ├── types.ts ├── wrangler.toml └── xymake.json ├── uithub.merge ├── .gitignore ├── README.md ├── ingestlist.drawio.svg ├── ingestlist.md ├── main.ts ├── package.json └── wrangler.toml ├── uithub.otp └── README.md ├── uithub.outputjson ├── .dev.vars.example ├── .gitignore ├── README.md ├── main.ts ├── package.json ├── test.js └── wrangler.toml ├── uithub.outputmd ├── .gitignore ├── README.md ├── main.ts ├── package.json ├── test.js └── wrangler.toml ├── uithub.outputzip ├── .gitignore ├── README.md ├── main.ts ├── package.json ├── public │ ├── openapi.html │ └── openapi.json └── wrangler.toml ├── uithub.search ├── .gitignore ├── CHANGELOG.md ├── README.md ├── main.ts ├── package.json ├── public │ ├── openapi.html │ └── openapi.json └── wrangler.toml ├── uithub ├── .dev.vars.example ├── .gitignore ├── README.md ├── buildTree.ts ├── dev-cycle.drawio.png ├── github-to-md-pipe.drawio.png ├── globals.d.ts ├── homepage.ts ├── main.ts ├── package.json ├── public │ └── index.html ├── ratelimiter.ts ├── static │ ├── 404.html │ ├── 404.html.md │ ├── 429.html │ ├── 429.html.md │ ├── aiswe.html │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── buttons.js │ ├── explore.js │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── filter.js │ ├── mobile-not-supported.html │ ├── openapi.html │ ├── openapi.json │ ├── overview.drawio.svg │ ├── pin.svg │ ├── plugins.html │ ├── plugins.js │ ├── plugins.json │ ├── plugins.md │ ├── plugins.schema.json │ ├── privacy.html │ ├── privacy.md │ ├── profile.js │ ├── push-file-object.json │ ├── push-file-operation.json │ ├── resolve.html │ ├── resolve.html.md │ ├── search.js │ ├── site.webmanifest │ ├── threads.html │ ├── threads.html.md │ ├── tos.html │ ├── tos.md │ ├── uit-left.png │ ├── uit-transparent.png │ ├── uit.png │ ├── uithub2.mov │ ├── urlux.js │ ├── view.html │ ├── view2.html │ └── vscode.html ├── tsconfig.json ├── types.d.ts ├── uithub-flow.drawio.svg └── wrangler.toml └── xymake.json /.genignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/.genignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | node_modules 3 | .wrangler 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /ADR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/ADR.md -------------------------------------------------------------------------------- /ATTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/ATTRIBUTION.md -------------------------------------------------------------------------------- /BACKLOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/BACKLOG.md -------------------------------------------------------------------------------- /BLOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/BLOG.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GETTING-STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/GETTING-STARTED.md -------------------------------------------------------------------------------- /GROWTH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/GROWTH.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/TODO.md -------------------------------------------------------------------------------- /context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/context.json -------------------------------------------------------------------------------- /convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/convention.md -------------------------------------------------------------------------------- /process-formdata.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/process-formdata.drawio.png -------------------------------------------------------------------------------- /routers/ADR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/ADR.md -------------------------------------------------------------------------------- /routers/COVERAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/COVERAGE.md -------------------------------------------------------------------------------- /routers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/README.md -------------------------------------------------------------------------------- /routers/StandardURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/StandardURL.ts -------------------------------------------------------------------------------- /routers/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/github.ts -------------------------------------------------------------------------------- /routers/npmjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/npmjs.ts -------------------------------------------------------------------------------- /routers/router-simple.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/router-simple.drawio.png -------------------------------------------------------------------------------- /routers/router.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/router.drawio.png -------------------------------------------------------------------------------- /routers/x.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/x.ts -------------------------------------------------------------------------------- /routers/ycombinator.news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/routers/ycombinator.news.ts -------------------------------------------------------------------------------- /uithub.ingestjson/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .wrangler 3 | package-lock.json 4 | .dev.vars 5 | .env -------------------------------------------------------------------------------- /uithub.ingestjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestjson/README.md -------------------------------------------------------------------------------- /uithub.ingestjson/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestjson/globals.d.ts -------------------------------------------------------------------------------- /uithub.ingestjson/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestjson/main.ts -------------------------------------------------------------------------------- /uithub.ingestjson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestjson/package.json -------------------------------------------------------------------------------- /uithub.ingestjson/public/ext-to-mime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestjson/public/ext-to-mime.json -------------------------------------------------------------------------------- /uithub.ingestjson/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestjson/test.js -------------------------------------------------------------------------------- /uithub.ingestjson/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestjson/types.ts -------------------------------------------------------------------------------- /uithub.ingestjson/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestjson/wrangler.toml -------------------------------------------------------------------------------- /uithub.ingestsql/.dev.vars.example: -------------------------------------------------------------------------------- 1 | CREDENTIALS= -------------------------------------------------------------------------------- /uithub.ingestsql/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .wrangler 3 | package-lock.json 4 | .dev.vars 5 | .env -------------------------------------------------------------------------------- /uithub.ingestsql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/CHANGELOG.md -------------------------------------------------------------------------------- /uithub.ingestsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/README.md -------------------------------------------------------------------------------- /uithub.ingestsql/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/main.ts -------------------------------------------------------------------------------- /uithub.ingestsql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/package.json -------------------------------------------------------------------------------- /uithub.ingestsql/public/default-genignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/public/default-genignore.txt -------------------------------------------------------------------------------- /uithub.ingestsql/public/ext-to-mime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/public/ext-to-mime.json -------------------------------------------------------------------------------- /uithub.ingestsql/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/public/index.html -------------------------------------------------------------------------------- /uithub.ingestsql/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/public/openapi.json -------------------------------------------------------------------------------- /uithub.ingestsql/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/types.ts -------------------------------------------------------------------------------- /uithub.ingestsql/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestsql/wrangler.toml -------------------------------------------------------------------------------- /uithub.ingesttar/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .wrangler 3 | package-lock.json 4 | .dev.vars 5 | .env -------------------------------------------------------------------------------- /uithub.ingesttar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/README.md -------------------------------------------------------------------------------- /uithub.ingesttar/genignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/genignore.ts -------------------------------------------------------------------------------- /uithub.ingesttar/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/globals.d.ts -------------------------------------------------------------------------------- /uithub.ingesttar/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/main.ts -------------------------------------------------------------------------------- /uithub.ingesttar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/package.json -------------------------------------------------------------------------------- /uithub.ingesttar/public/default-genignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/public/default-genignore.txt -------------------------------------------------------------------------------- /uithub.ingesttar/public/ext-to-mime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/public/ext-to-mime.json -------------------------------------------------------------------------------- /uithub.ingesttar/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/public/index.html -------------------------------------------------------------------------------- /uithub.ingesttar/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/public/openapi.json -------------------------------------------------------------------------------- /uithub.ingesttar/tarReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/tarReader.ts -------------------------------------------------------------------------------- /uithub.ingesttar/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/test.js -------------------------------------------------------------------------------- /uithub.ingesttar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/types.ts -------------------------------------------------------------------------------- /uithub.ingesttar/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingesttar/wrangler.toml -------------------------------------------------------------------------------- /uithub.ingestzip/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .wrangler 3 | package-lock.json 4 | .dev.vars 5 | .env -------------------------------------------------------------------------------- /uithub.ingestzip/ADR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/ADR.md -------------------------------------------------------------------------------- /uithub.ingestzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/README.md -------------------------------------------------------------------------------- /uithub.ingestzip/curlspeed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/curlspeed.sh -------------------------------------------------------------------------------- /uithub.ingestzip/genignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/genignore.ts -------------------------------------------------------------------------------- /uithub.ingestzip/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/globals.d.ts -------------------------------------------------------------------------------- /uithub.ingestzip/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/main.ts -------------------------------------------------------------------------------- /uithub.ingestzip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/package.json -------------------------------------------------------------------------------- /uithub.ingestzip/public/default-genignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/public/default-genignore.txt -------------------------------------------------------------------------------- /uithub.ingestzip/public/ext-to-mime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/public/ext-to-mime.json -------------------------------------------------------------------------------- /uithub.ingestzip/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/public/index.html -------------------------------------------------------------------------------- /uithub.ingestzip/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/public/openapi.json -------------------------------------------------------------------------------- /uithub.ingestzip/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/test.js -------------------------------------------------------------------------------- /uithub.ingestzip/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/types.ts -------------------------------------------------------------------------------- /uithub.ingestzip/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/wrangler.toml -------------------------------------------------------------------------------- /uithub.ingestzip/xymake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.ingestzip/xymake.json -------------------------------------------------------------------------------- /uithub.merge/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .wrangler 3 | package-lock.json 4 | .dev.vars -------------------------------------------------------------------------------- /uithub.merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.merge/README.md -------------------------------------------------------------------------------- /uithub.merge/ingestlist.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.merge/ingestlist.drawio.svg -------------------------------------------------------------------------------- /uithub.merge/ingestlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.merge/ingestlist.md -------------------------------------------------------------------------------- /uithub.merge/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.merge/main.ts -------------------------------------------------------------------------------- /uithub.merge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.merge/package.json -------------------------------------------------------------------------------- /uithub.merge/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.merge/wrangler.toml -------------------------------------------------------------------------------- /uithub.otp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.otp/README.md -------------------------------------------------------------------------------- /uithub.outputjson/.dev.vars.example: -------------------------------------------------------------------------------- 1 | CREDENTIALS= -------------------------------------------------------------------------------- /uithub.outputjson/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputjson/.gitignore -------------------------------------------------------------------------------- /uithub.outputjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputjson/README.md -------------------------------------------------------------------------------- /uithub.outputjson/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputjson/main.ts -------------------------------------------------------------------------------- /uithub.outputjson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputjson/package.json -------------------------------------------------------------------------------- /uithub.outputjson/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputjson/test.js -------------------------------------------------------------------------------- /uithub.outputjson/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputjson/wrangler.toml -------------------------------------------------------------------------------- /uithub.outputmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputmd/.gitignore -------------------------------------------------------------------------------- /uithub.outputmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputmd/README.md -------------------------------------------------------------------------------- /uithub.outputmd/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputmd/main.ts -------------------------------------------------------------------------------- /uithub.outputmd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputmd/package.json -------------------------------------------------------------------------------- /uithub.outputmd/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputmd/test.js -------------------------------------------------------------------------------- /uithub.outputmd/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputmd/wrangler.toml -------------------------------------------------------------------------------- /uithub.outputzip/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .wrangler 3 | package-lock.json 4 | .dev.vars -------------------------------------------------------------------------------- /uithub.outputzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputzip/README.md -------------------------------------------------------------------------------- /uithub.outputzip/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputzip/main.ts -------------------------------------------------------------------------------- /uithub.outputzip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputzip/package.json -------------------------------------------------------------------------------- /uithub.outputzip/public/openapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputzip/public/openapi.html -------------------------------------------------------------------------------- /uithub.outputzip/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputzip/public/openapi.json -------------------------------------------------------------------------------- /uithub.outputzip/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.outputzip/wrangler.toml -------------------------------------------------------------------------------- /uithub.search/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .wrangler 3 | .dev.vars 4 | package-lock.json -------------------------------------------------------------------------------- /uithub.search/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.search/CHANGELOG.md -------------------------------------------------------------------------------- /uithub.search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.search/README.md -------------------------------------------------------------------------------- /uithub.search/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.search/main.ts -------------------------------------------------------------------------------- /uithub.search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.search/package.json -------------------------------------------------------------------------------- /uithub.search/public/openapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.search/public/openapi.html -------------------------------------------------------------------------------- /uithub.search/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.search/public/openapi.json -------------------------------------------------------------------------------- /uithub.search/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub.search/wrangler.toml -------------------------------------------------------------------------------- /uithub/.dev.vars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/.dev.vars.example -------------------------------------------------------------------------------- /uithub/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .wrangler 4 | .dev.vars -------------------------------------------------------------------------------- /uithub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/README.md -------------------------------------------------------------------------------- /uithub/buildTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/buildTree.ts -------------------------------------------------------------------------------- /uithub/dev-cycle.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/dev-cycle.drawio.png -------------------------------------------------------------------------------- /uithub/github-to-md-pipe.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/github-to-md-pipe.drawio.png -------------------------------------------------------------------------------- /uithub/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/globals.d.ts -------------------------------------------------------------------------------- /uithub/homepage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/homepage.ts -------------------------------------------------------------------------------- /uithub/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/main.ts -------------------------------------------------------------------------------- /uithub/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/package.json -------------------------------------------------------------------------------- /uithub/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/public/index.html -------------------------------------------------------------------------------- /uithub/ratelimiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/ratelimiter.ts -------------------------------------------------------------------------------- /uithub/static/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/404.html -------------------------------------------------------------------------------- /uithub/static/404.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/404.html.md -------------------------------------------------------------------------------- /uithub/static/429.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/429.html -------------------------------------------------------------------------------- /uithub/static/429.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/429.html.md -------------------------------------------------------------------------------- /uithub/static/aiswe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/aiswe.html -------------------------------------------------------------------------------- /uithub/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /uithub/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /uithub/static/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /uithub/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/apple-touch-icon.png -------------------------------------------------------------------------------- /uithub/static/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/buttons.js -------------------------------------------------------------------------------- /uithub/static/explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/explore.js -------------------------------------------------------------------------------- /uithub/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/favicon-16x16.png -------------------------------------------------------------------------------- /uithub/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/favicon-32x32.png -------------------------------------------------------------------------------- /uithub/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/favicon.ico -------------------------------------------------------------------------------- /uithub/static/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/filter.js -------------------------------------------------------------------------------- /uithub/static/mobile-not-supported.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/mobile-not-supported.html -------------------------------------------------------------------------------- /uithub/static/openapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/openapi.html -------------------------------------------------------------------------------- /uithub/static/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/openapi.json -------------------------------------------------------------------------------- /uithub/static/overview.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/overview.drawio.svg -------------------------------------------------------------------------------- /uithub/static/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/pin.svg -------------------------------------------------------------------------------- /uithub/static/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/plugins.html -------------------------------------------------------------------------------- /uithub/static/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/plugins.js -------------------------------------------------------------------------------- /uithub/static/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/plugins.json -------------------------------------------------------------------------------- /uithub/static/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/plugins.md -------------------------------------------------------------------------------- /uithub/static/plugins.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/plugins.schema.json -------------------------------------------------------------------------------- /uithub/static/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/privacy.html -------------------------------------------------------------------------------- /uithub/static/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/privacy.md -------------------------------------------------------------------------------- /uithub/static/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/profile.js -------------------------------------------------------------------------------- /uithub/static/push-file-object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/push-file-object.json -------------------------------------------------------------------------------- /uithub/static/push-file-operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/push-file-operation.json -------------------------------------------------------------------------------- /uithub/static/resolve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/resolve.html -------------------------------------------------------------------------------- /uithub/static/resolve.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/resolve.html.md -------------------------------------------------------------------------------- /uithub/static/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/search.js -------------------------------------------------------------------------------- /uithub/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/site.webmanifest -------------------------------------------------------------------------------- /uithub/static/threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/threads.html -------------------------------------------------------------------------------- /uithub/static/threads.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/threads.html.md -------------------------------------------------------------------------------- /uithub/static/tos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/tos.html -------------------------------------------------------------------------------- /uithub/static/tos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/tos.md -------------------------------------------------------------------------------- /uithub/static/uit-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/uit-left.png -------------------------------------------------------------------------------- /uithub/static/uit-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/uit-transparent.png -------------------------------------------------------------------------------- /uithub/static/uit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/uit.png -------------------------------------------------------------------------------- /uithub/static/uithub2.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/uithub2.mov -------------------------------------------------------------------------------- /uithub/static/urlux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/urlux.js -------------------------------------------------------------------------------- /uithub/static/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/view.html -------------------------------------------------------------------------------- /uithub/static/view2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/view2.html -------------------------------------------------------------------------------- /uithub/static/vscode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/static/vscode.html -------------------------------------------------------------------------------- /uithub/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/tsconfig.json -------------------------------------------------------------------------------- /uithub/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/types.d.ts -------------------------------------------------------------------------------- /uithub/uithub-flow.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/uithub-flow.drawio.svg -------------------------------------------------------------------------------- /uithub/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/uithub/wrangler.toml -------------------------------------------------------------------------------- /xymake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janwilmake/uit/HEAD/xymake.json --------------------------------------------------------------------------------