├── .gitignore ├── .prettierrc ├── DESIGN.md ├── LICENSE ├── README.md ├── bun.lockb ├── create.html ├── index.html ├── package.json ├── public ├── arrow-left.png ├── arrow-right.png ├── chess-preview.png ├── construction.gif ├── fonts │ ├── Geist-Black.woff2 │ ├── Geist-Bold.woff2 │ ├── Geist-ExtraBold.woff2 │ ├── Geist-ExtraLight.woff2 │ ├── Geist-Light.woff2 │ ├── Geist-Medium.woff2 │ ├── Geist-Regular.woff2 │ ├── Geist-SemiBold.woff2 │ ├── Geist-Thin.woff2 │ ├── GeistMono-Black.woff2 │ ├── GeistMono-Bold.woff2 │ ├── GeistMono-Light.woff2 │ ├── GeistMono-Medium.woff2 │ ├── GeistMono-Regular.woff2 │ ├── GeistMono-SemiBold.woff2 │ ├── GeistMono-Thin.woff2 │ ├── GeistMono-UltraBlack.woff2 │ ├── GeistMono-UltraLight.woff2 │ ├── GeistMono[wght].woff2 │ └── Geist[wght].woff2 ├── guestbook-preview.png ├── hypercard-box.jpg ├── noise.png └── pointer.png ├── publish.html ├── sec-demo1.html ├── src ├── archive_of_experiments │ ├── design.html │ ├── designdemo.ts │ ├── dvm.html │ ├── guestbook.html │ ├── henry.html │ ├── old_event_cache │ │ ├── kind-30023.json │ │ ├── kind-32616.json │ │ └── kind-5600.json │ ├── pwa.html │ └── v4.html ├── create.ts ├── hn.ts ├── index.ts ├── publish.ts ├── query.ts ├── style.css ├── utils.ts ├── vite-env.d.ts └── words.ts ├── templates ├── chess-dvm.html ├── guestbook-template.html ├── my-feed.html ├── note-basic └── slide-template.html ├── tsconfig.json ├── vercel.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/.prettierrc -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/DESIGN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/bun.lockb -------------------------------------------------------------------------------- /create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/create.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/package.json -------------------------------------------------------------------------------- /public/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/arrow-left.png -------------------------------------------------------------------------------- /public/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/arrow-right.png -------------------------------------------------------------------------------- /public/chess-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/chess-preview.png -------------------------------------------------------------------------------- /public/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/construction.gif -------------------------------------------------------------------------------- /public/fonts/Geist-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/Geist-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/Geist-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/fonts/Geist-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/Geist-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/Geist-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/Geist-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Geist-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/Geist-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-UltraBlack.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-UltraBlack.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono-UltraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono-UltraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/GeistMono[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/GeistMono[wght].woff2 -------------------------------------------------------------------------------- /public/fonts/Geist[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/fonts/Geist[wght].woff2 -------------------------------------------------------------------------------- /public/guestbook-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/guestbook-preview.png -------------------------------------------------------------------------------- /public/hypercard-box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/hypercard-box.jpg -------------------------------------------------------------------------------- /public/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/noise.png -------------------------------------------------------------------------------- /public/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/public/pointer.png -------------------------------------------------------------------------------- /publish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/publish.html -------------------------------------------------------------------------------- /sec-demo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/sec-demo1.html -------------------------------------------------------------------------------- /src/archive_of_experiments/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/design.html -------------------------------------------------------------------------------- /src/archive_of_experiments/designdemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/designdemo.ts -------------------------------------------------------------------------------- /src/archive_of_experiments/dvm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/dvm.html -------------------------------------------------------------------------------- /src/archive_of_experiments/guestbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/guestbook.html -------------------------------------------------------------------------------- /src/archive_of_experiments/henry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/henry.html -------------------------------------------------------------------------------- /src/archive_of_experiments/old_event_cache/kind-30023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/old_event_cache/kind-30023.json -------------------------------------------------------------------------------- /src/archive_of_experiments/old_event_cache/kind-32616.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/old_event_cache/kind-32616.json -------------------------------------------------------------------------------- /src/archive_of_experiments/old_event_cache/kind-5600.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/old_event_cache/kind-5600.json -------------------------------------------------------------------------------- /src/archive_of_experiments/pwa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/pwa.html -------------------------------------------------------------------------------- /src/archive_of_experiments/v4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/archive_of_experiments/v4.html -------------------------------------------------------------------------------- /src/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/create.ts -------------------------------------------------------------------------------- /src/hn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/hn.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/publish.ts -------------------------------------------------------------------------------- /src/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/query.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/style.css -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/src/words.ts -------------------------------------------------------------------------------- /templates/chess-dvm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/templates/chess-dvm.html -------------------------------------------------------------------------------- /templates/guestbook-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/templates/guestbook-template.html -------------------------------------------------------------------------------- /templates/my-feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/templates/my-feed.html -------------------------------------------------------------------------------- /templates/note-basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/templates/note-basic -------------------------------------------------------------------------------- /templates/slide-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/templates/slide-template.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepaul/hypernote/HEAD/vite.config.ts --------------------------------------------------------------------------------