├── .github └── FUNDING.yml ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── biome.json ├── components.json ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── favicon.ico └── og-image.png ├── scripts └── test-mcp.mjs ├── src ├── actions │ ├── auth.ts │ └── redirectToSnippet.ts ├── app │ ├── (auth) │ │ ├── layout.tsx │ │ ├── login │ │ │ └── page.tsx │ │ └── register │ │ │ └── page.tsx │ ├── (site) │ │ ├── account │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── snippet │ │ │ └── [nevent] │ │ │ │ └── page.tsx │ │ ├── snippets │ │ │ └── page.tsx │ │ └── user │ │ │ └── [npub] │ │ │ └── page.tsx │ ├── [transport] │ │ └── route.ts │ ├── api │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.ts │ └── layout.tsx ├── auth │ └── index.ts ├── components │ └── ui │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── mode-toggle.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── textarea.tsx │ │ └── tooltip.tsx ├── features │ ├── account │ │ ├── components │ │ │ └── AccountProfile.tsx │ │ └── index.ts │ ├── editor │ │ ├── components │ │ │ ├── ActiveEditor.tsx │ │ │ ├── CopyButton.tsx │ │ │ ├── Description.tsx │ │ │ ├── DescriptionInput.tsx │ │ │ ├── Filename.tsx │ │ │ ├── FilenameInput.tsx │ │ │ ├── InputTagList.tsx │ │ │ ├── LanguageSelect.tsx │ │ │ ├── ReadEditor.tsx │ │ │ ├── SnippetActions.tsx │ │ │ ├── TagList.tsx │ │ │ └── TagsInput.tsx │ │ ├── hooks │ │ │ └── useSnippetEvent.ts │ │ └── index.ts │ ├── login │ │ ├── components │ │ │ ├── Login.tsx │ │ │ └── UserDropdown.tsx │ │ └── index.ts │ ├── navigation │ │ ├── components │ │ │ ├── CreateNavButton.tsx │ │ │ └── SnippetsNavButton.tsx │ │ └── index.ts │ ├── post │ │ ├── components │ │ │ └── PostButton.tsx │ │ ├── hooks │ │ │ └── usePostMutation.ts │ │ └── index.ts │ ├── snippet-feed │ │ ├── components │ │ │ ├── AuthorProfile.tsx │ │ │ ├── SnippetCard.tsx │ │ │ ├── SnippetCardSkeleton.tsx │ │ │ └── SnippetFeed.tsx │ │ └── index.ts │ ├── user │ │ ├── components │ │ │ ├── UserProfile.tsx │ │ │ └── UserSnippetList.tsx │ │ └── index.ts │ └── zap │ │ ├── components │ │ ├── ZapButton.tsx │ │ └── ZapDialog.tsx │ │ ├── index.ts │ │ └── lib │ │ └── zap.ts ├── hooks │ ├── useBatchedNostrProfile.ts │ ├── useNostrProfile.ts │ ├── useNostrRelayMetaData.ts │ ├── useNostrSnippets.ts │ ├── useUpdateProfile.ts │ └── useUserSnippets.ts ├── lib │ ├── constants.ts │ ├── languageExtensions.ts │ ├── languages.ts │ ├── nostr │ │ ├── batchedProfiles.ts │ │ ├── createNevent.ts │ │ ├── createNostrProfile.ts │ │ ├── createNostrRelayMetadata.ts │ │ ├── createNostrSnippet.ts │ │ ├── finishEvent.ts │ │ ├── getTagValue.ts │ │ ├── parseUint8Array.ts │ │ ├── publish.ts │ │ ├── resolveNip05.ts │ │ ├── shortNpub.ts │ │ └── verifyNip05.ts │ └── utils.ts ├── providers │ ├── auth-provider.tsx │ ├── query-client-provider.tsx │ └── theme-provider.tsx ├── store │ └── index.ts ├── styles │ └── globals.css └── types │ └── index.ts ├── tsconfig.json └── types.d.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/biome.json -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/components.json -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/public/og-image.png -------------------------------------------------------------------------------- /scripts/test-mcp.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/scripts/test-mcp.mjs -------------------------------------------------------------------------------- /src/actions/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/actions/auth.ts -------------------------------------------------------------------------------- /src/actions/redirectToSnippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/actions/redirectToSnippet.ts -------------------------------------------------------------------------------- /src/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(auth)/register/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(site)/account/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(site)/layout.tsx -------------------------------------------------------------------------------- /src/app/(site)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(site)/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/snippet/[nevent]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(site)/snippet/[nevent]/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/snippets/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(site)/snippets/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/user/[npub]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/(site)/user/[npub]/page.tsx -------------------------------------------------------------------------------- /src/app/[transport]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/[transport]/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/auth/index.ts -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/mode-toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/features/account/components/AccountProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/account/components/AccountProfile.tsx -------------------------------------------------------------------------------- /src/features/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/account/index.ts -------------------------------------------------------------------------------- /src/features/editor/components/ActiveEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/ActiveEditor.tsx -------------------------------------------------------------------------------- /src/features/editor/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/features/editor/components/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/Description.tsx -------------------------------------------------------------------------------- /src/features/editor/components/DescriptionInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/DescriptionInput.tsx -------------------------------------------------------------------------------- /src/features/editor/components/Filename.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/Filename.tsx -------------------------------------------------------------------------------- /src/features/editor/components/FilenameInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/FilenameInput.tsx -------------------------------------------------------------------------------- /src/features/editor/components/InputTagList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/InputTagList.tsx -------------------------------------------------------------------------------- /src/features/editor/components/LanguageSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/LanguageSelect.tsx -------------------------------------------------------------------------------- /src/features/editor/components/ReadEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/ReadEditor.tsx -------------------------------------------------------------------------------- /src/features/editor/components/SnippetActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/SnippetActions.tsx -------------------------------------------------------------------------------- /src/features/editor/components/TagList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/TagList.tsx -------------------------------------------------------------------------------- /src/features/editor/components/TagsInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/components/TagsInput.tsx -------------------------------------------------------------------------------- /src/features/editor/hooks/useSnippetEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/hooks/useSnippetEvent.ts -------------------------------------------------------------------------------- /src/features/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/editor/index.ts -------------------------------------------------------------------------------- /src/features/login/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/login/components/Login.tsx -------------------------------------------------------------------------------- /src/features/login/components/UserDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/login/components/UserDropdown.tsx -------------------------------------------------------------------------------- /src/features/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/login/index.ts -------------------------------------------------------------------------------- /src/features/navigation/components/CreateNavButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/navigation/components/CreateNavButton.tsx -------------------------------------------------------------------------------- /src/features/navigation/components/SnippetsNavButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/navigation/components/SnippetsNavButton.tsx -------------------------------------------------------------------------------- /src/features/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/navigation/index.ts -------------------------------------------------------------------------------- /src/features/post/components/PostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/post/components/PostButton.tsx -------------------------------------------------------------------------------- /src/features/post/hooks/usePostMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/post/hooks/usePostMutation.ts -------------------------------------------------------------------------------- /src/features/post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/post/index.ts -------------------------------------------------------------------------------- /src/features/snippet-feed/components/AuthorProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/snippet-feed/components/AuthorProfile.tsx -------------------------------------------------------------------------------- /src/features/snippet-feed/components/SnippetCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/snippet-feed/components/SnippetCard.tsx -------------------------------------------------------------------------------- /src/features/snippet-feed/components/SnippetCardSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/snippet-feed/components/SnippetCardSkeleton.tsx -------------------------------------------------------------------------------- /src/features/snippet-feed/components/SnippetFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/snippet-feed/components/SnippetFeed.tsx -------------------------------------------------------------------------------- /src/features/snippet-feed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/snippet-feed/index.ts -------------------------------------------------------------------------------- /src/features/user/components/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/user/components/UserProfile.tsx -------------------------------------------------------------------------------- /src/features/user/components/UserSnippetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/user/components/UserSnippetList.tsx -------------------------------------------------------------------------------- /src/features/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/user/index.ts -------------------------------------------------------------------------------- /src/features/zap/components/ZapButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/zap/components/ZapButton.tsx -------------------------------------------------------------------------------- /src/features/zap/components/ZapDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/zap/components/ZapDialog.tsx -------------------------------------------------------------------------------- /src/features/zap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/zap/index.ts -------------------------------------------------------------------------------- /src/features/zap/lib/zap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/features/zap/lib/zap.ts -------------------------------------------------------------------------------- /src/hooks/useBatchedNostrProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/hooks/useBatchedNostrProfile.ts -------------------------------------------------------------------------------- /src/hooks/useNostrProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/hooks/useNostrProfile.ts -------------------------------------------------------------------------------- /src/hooks/useNostrRelayMetaData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/hooks/useNostrRelayMetaData.ts -------------------------------------------------------------------------------- /src/hooks/useNostrSnippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/hooks/useNostrSnippets.ts -------------------------------------------------------------------------------- /src/hooks/useUpdateProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/hooks/useUpdateProfile.ts -------------------------------------------------------------------------------- /src/hooks/useUserSnippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/hooks/useUserSnippets.ts -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_RELAYS = ["wss://relay.notebin.io"]; 2 | -------------------------------------------------------------------------------- /src/lib/languageExtensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/languageExtensions.ts -------------------------------------------------------------------------------- /src/lib/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/languages.ts -------------------------------------------------------------------------------- /src/lib/nostr/batchedProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/batchedProfiles.ts -------------------------------------------------------------------------------- /src/lib/nostr/createNevent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/createNevent.ts -------------------------------------------------------------------------------- /src/lib/nostr/createNostrProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/createNostrProfile.ts -------------------------------------------------------------------------------- /src/lib/nostr/createNostrRelayMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/createNostrRelayMetadata.ts -------------------------------------------------------------------------------- /src/lib/nostr/createNostrSnippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/createNostrSnippet.ts -------------------------------------------------------------------------------- /src/lib/nostr/finishEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/finishEvent.ts -------------------------------------------------------------------------------- /src/lib/nostr/getTagValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/getTagValue.ts -------------------------------------------------------------------------------- /src/lib/nostr/parseUint8Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/parseUint8Array.ts -------------------------------------------------------------------------------- /src/lib/nostr/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/publish.ts -------------------------------------------------------------------------------- /src/lib/nostr/resolveNip05.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/resolveNip05.ts -------------------------------------------------------------------------------- /src/lib/nostr/shortNpub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/shortNpub.ts -------------------------------------------------------------------------------- /src/lib/nostr/verifyNip05.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/nostr/verifyNip05.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/providers/auth-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/providers/auth-provider.tsx -------------------------------------------------------------------------------- /src/providers/query-client-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/providers/query-client-provider.tsx -------------------------------------------------------------------------------- /src/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/providers/theme-provider.tsx -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodetec/notebin/HEAD/types.d.ts --------------------------------------------------------------------------------