├── .gitignore ├── components.json ├── env.d.ts ├── index.html ├── lex.config.js ├── lexicons └── src │ └── tools.atp │ ├── tools.atp.borgle.play.json │ └── tools.atp.typing.test.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.js ├── public ├── assets │ ├── discord.png │ ├── invertocat.png │ └── services │ │ ├── bluesky.png │ │ ├── frontpage.svg │ │ ├── pinksea.svg │ │ ├── smokesignal.png │ │ └── whtwnd.svg ├── atpt.png ├── css │ └── monaspace │ │ ├── argon.css │ │ ├── krypton.css │ │ ├── neon.css │ │ ├── radon.css │ │ └── xenon.css ├── oauth │ └── client-metadata.json └── vite.svg ├── readme.md ├── scripts └── gen-lex.sh ├── src ├── app.tsx ├── assets │ └── preact.svg ├── components │ ├── allBacklinksViewer.tsx │ ├── animatedCounter.tsx │ ├── auth │ │ ├── accountsManagementModal.tsx │ │ ├── navUser.tsx │ │ └── userSwitcher.tsx │ ├── error.tsx │ ├── fontPicker.tsx │ ├── json │ │ ├── appBskyEmbedImages.tsx │ │ ├── blob.tsx │ │ └── getComponent.tsx │ ├── particles.tsx │ ├── renderJson.tsx │ ├── repoIcons.tsx │ ├── rnfgrertt │ │ ├── calculateStats.ts │ │ ├── constants.ts │ │ ├── helpModal.tsx │ │ ├── hooks │ │ │ ├── useStatsTracker.tsx │ │ │ ├── useTypingTest.tsx │ │ │ └── useWpmTracker.tsx │ │ ├── resultsView.tsx │ │ ├── textGenerator.ts │ │ ├── types.ts │ │ └── typingArea.tsx │ ├── segmentedText.tsx │ ├── sidebar.tsx │ ├── sidebarLinks.tsx │ ├── smartSearchBar.tsx │ ├── themeSwitcher.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── click-to-copy.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── hover-card.tsx │ │ ├── iconButton.tsx │ │ ├── input.tsx │ │ ├── kbdKey.tsx │ │ ├── loader.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── switch.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ └── tooltip.tsx │ ├── verifyLexicon.tsx │ └── views │ │ ├── CommunityLexicon │ │ └── calendarEvent.tsx │ │ ├── appBsky │ │ ├── actorProfile.tsx │ │ ├── embed.tsx │ │ ├── feedLike.tsx │ │ ├── feedPost.tsx │ │ └── feedRepost.tsx │ │ ├── eventsSmokesignal │ │ └── calendarEvent.tsx │ │ └── getView.tsx ├── hooks │ ├── use-mobile.tsx │ ├── use-preferred-color-scheme.tsx │ ├── useDocumentTitle.tsx │ ├── useKeyPress.tsx │ └── useStoredState.tsx ├── index.css ├── lib │ ├── borgle-lists.ts │ ├── getDidDoc.ts │ ├── jetstream.ts │ ├── lexicons.ts │ ├── preprocess.tsx │ ├── quotes │ │ └── english.json │ ├── tid.ts │ ├── userCache.ts │ ├── utils.ts │ └── wordList.ts ├── main.tsx ├── providers │ ├── qtprovider.tsx │ └── themeProvider.tsx ├── routeTree.gen.ts ├── routes │ ├── __root.tsx │ ├── about.lazy.tsx │ ├── at: │ │ ├── $handle.index.tsx │ │ └── $handle │ │ │ ├── $collection.$rkey.lazy.tsx │ │ │ └── $collection.index.lazy.tsx │ ├── auth │ │ ├── callback.lazy.tsx │ │ └── login.lazy.tsx │ ├── constellation │ │ ├── dids.$collection.tsx │ │ └── links.$collection.tsx │ ├── counter.lazy.tsx │ ├── index.lazy.tsx │ ├── jetstream.lazy.tsx │ ├── pds │ │ └── $url.index.lazy.tsx │ ├── post.lazy.tsx │ └── rnfgrertt │ │ ├── borgle.lazy.tsx │ │ ├── index.lazy.tsx │ │ ├── pdsls.lazy.tsx │ │ └── typing.lazy.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/.gitignore -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/components.json -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/env.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/index.html -------------------------------------------------------------------------------- /lex.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lexicons/src/tools.atp/tools.atp.borgle.play.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/lexicons/src/tools.atp/tools.atp.borgle.play.json -------------------------------------------------------------------------------- /lexicons/src/tools.atp/tools.atp.typing.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/lexicons/src/tools.atp/tools.atp.typing.test.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/assets/discord.png -------------------------------------------------------------------------------- /public/assets/invertocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/assets/invertocat.png -------------------------------------------------------------------------------- /public/assets/services/bluesky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/assets/services/bluesky.png -------------------------------------------------------------------------------- /public/assets/services/frontpage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/assets/services/frontpage.svg -------------------------------------------------------------------------------- /public/assets/services/pinksea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/assets/services/pinksea.svg -------------------------------------------------------------------------------- /public/assets/services/smokesignal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/assets/services/smokesignal.png -------------------------------------------------------------------------------- /public/assets/services/whtwnd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/assets/services/whtwnd.svg -------------------------------------------------------------------------------- /public/atpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/atpt.png -------------------------------------------------------------------------------- /public/css/monaspace/argon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/css/monaspace/argon.css -------------------------------------------------------------------------------- /public/css/monaspace/krypton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/css/monaspace/krypton.css -------------------------------------------------------------------------------- /public/css/monaspace/neon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/css/monaspace/neon.css -------------------------------------------------------------------------------- /public/css/monaspace/radon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/css/monaspace/radon.css -------------------------------------------------------------------------------- /public/css/monaspace/xenon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/css/monaspace/xenon.css -------------------------------------------------------------------------------- /public/oauth/client-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/oauth/client-metadata.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/public/vite.svg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/gen-lex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/scripts/gen-lex.sh -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/assets/preact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/assets/preact.svg -------------------------------------------------------------------------------- /src/components/allBacklinksViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/allBacklinksViewer.tsx -------------------------------------------------------------------------------- /src/components/animatedCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/animatedCounter.tsx -------------------------------------------------------------------------------- /src/components/auth/accountsManagementModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/auth/accountsManagementModal.tsx -------------------------------------------------------------------------------- /src/components/auth/navUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/auth/navUser.tsx -------------------------------------------------------------------------------- /src/components/auth/userSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/auth/userSwitcher.tsx -------------------------------------------------------------------------------- /src/components/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/error.tsx -------------------------------------------------------------------------------- /src/components/fontPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/fontPicker.tsx -------------------------------------------------------------------------------- /src/components/json/appBskyEmbedImages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/json/appBskyEmbedImages.tsx -------------------------------------------------------------------------------- /src/components/json/blob.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/json/blob.tsx -------------------------------------------------------------------------------- /src/components/json/getComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/json/getComponent.tsx -------------------------------------------------------------------------------- /src/components/particles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/particles.tsx -------------------------------------------------------------------------------- /src/components/renderJson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/renderJson.tsx -------------------------------------------------------------------------------- /src/components/repoIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/repoIcons.tsx -------------------------------------------------------------------------------- /src/components/rnfgrertt/calculateStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/calculateStats.ts -------------------------------------------------------------------------------- /src/components/rnfgrertt/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/constants.ts -------------------------------------------------------------------------------- /src/components/rnfgrertt/helpModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/helpModal.tsx -------------------------------------------------------------------------------- /src/components/rnfgrertt/hooks/useStatsTracker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/hooks/useStatsTracker.tsx -------------------------------------------------------------------------------- /src/components/rnfgrertt/hooks/useTypingTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/hooks/useTypingTest.tsx -------------------------------------------------------------------------------- /src/components/rnfgrertt/hooks/useWpmTracker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/hooks/useWpmTracker.tsx -------------------------------------------------------------------------------- /src/components/rnfgrertt/resultsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/resultsView.tsx -------------------------------------------------------------------------------- /src/components/rnfgrertt/textGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/textGenerator.ts -------------------------------------------------------------------------------- /src/components/rnfgrertt/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/types.ts -------------------------------------------------------------------------------- /src/components/rnfgrertt/typingArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/rnfgrertt/typingArea.tsx -------------------------------------------------------------------------------- /src/components/segmentedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/segmentedText.tsx -------------------------------------------------------------------------------- /src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/sidebar.tsx -------------------------------------------------------------------------------- /src/components/sidebarLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/sidebarLinks.tsx -------------------------------------------------------------------------------- /src/components/smartSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/smartSearchBar.tsx -------------------------------------------------------------------------------- /src/components/themeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/themeSwitcher.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/click-to-copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/click-to-copy.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/iconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/iconButton.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/kbdKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/kbdKey.tsx -------------------------------------------------------------------------------- /src/components/ui/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/loader.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/verifyLexicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/verifyLexicon.tsx -------------------------------------------------------------------------------- /src/components/views/CommunityLexicon/calendarEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/views/CommunityLexicon/calendarEvent.tsx -------------------------------------------------------------------------------- /src/components/views/appBsky/actorProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/views/appBsky/actorProfile.tsx -------------------------------------------------------------------------------- /src/components/views/appBsky/embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/views/appBsky/embed.tsx -------------------------------------------------------------------------------- /src/components/views/appBsky/feedLike.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/views/appBsky/feedLike.tsx -------------------------------------------------------------------------------- /src/components/views/appBsky/feedPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/views/appBsky/feedPost.tsx -------------------------------------------------------------------------------- /src/components/views/appBsky/feedRepost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/views/appBsky/feedRepost.tsx -------------------------------------------------------------------------------- /src/components/views/eventsSmokesignal/calendarEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/views/eventsSmokesignal/calendarEvent.tsx -------------------------------------------------------------------------------- /src/components/views/getView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/components/views/getView.tsx -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-preferred-color-scheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/hooks/use-preferred-color-scheme.tsx -------------------------------------------------------------------------------- /src/hooks/useDocumentTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/hooks/useDocumentTitle.tsx -------------------------------------------------------------------------------- /src/hooks/useKeyPress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/hooks/useKeyPress.tsx -------------------------------------------------------------------------------- /src/hooks/useStoredState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/hooks/useStoredState.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/borgle-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/borgle-lists.ts -------------------------------------------------------------------------------- /src/lib/getDidDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/getDidDoc.ts -------------------------------------------------------------------------------- /src/lib/jetstream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/jetstream.ts -------------------------------------------------------------------------------- /src/lib/lexicons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/lexicons.ts -------------------------------------------------------------------------------- /src/lib/preprocess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/preprocess.tsx -------------------------------------------------------------------------------- /src/lib/quotes/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/quotes/english.json -------------------------------------------------------------------------------- /src/lib/tid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/tid.ts -------------------------------------------------------------------------------- /src/lib/userCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/userCache.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/wordList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/lib/wordList.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/providers/qtprovider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/providers/qtprovider.tsx -------------------------------------------------------------------------------- /src/providers/themeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/providers/themeProvider.tsx -------------------------------------------------------------------------------- /src/routeTree.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routeTree.gen.ts -------------------------------------------------------------------------------- /src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/__root.tsx -------------------------------------------------------------------------------- /src/routes/about.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/about.lazy.tsx -------------------------------------------------------------------------------- /src/routes/at:/$handle.index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/at:/$handle.index.tsx -------------------------------------------------------------------------------- /src/routes/at:/$handle/$collection.$rkey.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/at:/$handle/$collection.$rkey.lazy.tsx -------------------------------------------------------------------------------- /src/routes/at:/$handle/$collection.index.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/at:/$handle/$collection.index.lazy.tsx -------------------------------------------------------------------------------- /src/routes/auth/callback.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/auth/callback.lazy.tsx -------------------------------------------------------------------------------- /src/routes/auth/login.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/auth/login.lazy.tsx -------------------------------------------------------------------------------- /src/routes/constellation/dids.$collection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/constellation/dids.$collection.tsx -------------------------------------------------------------------------------- /src/routes/constellation/links.$collection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/constellation/links.$collection.tsx -------------------------------------------------------------------------------- /src/routes/counter.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/counter.lazy.tsx -------------------------------------------------------------------------------- /src/routes/index.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/index.lazy.tsx -------------------------------------------------------------------------------- /src/routes/jetstream.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/jetstream.lazy.tsx -------------------------------------------------------------------------------- /src/routes/pds/$url.index.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/pds/$url.index.lazy.tsx -------------------------------------------------------------------------------- /src/routes/post.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/post.lazy.tsx -------------------------------------------------------------------------------- /src/routes/rnfgrertt/borgle.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/rnfgrertt/borgle.lazy.tsx -------------------------------------------------------------------------------- /src/routes/rnfgrertt/index.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/rnfgrertt/index.lazy.tsx -------------------------------------------------------------------------------- /src/routes/rnfgrertt/pdsls.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/rnfgrertt/pdsls.lazy.tsx -------------------------------------------------------------------------------- /src/routes/rnfgrertt/typing.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/src/routes/rnfgrertt/typing.lazy.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espeon/atptools/HEAD/vite.config.ts --------------------------------------------------------------------------------