├── .cursor └── settings.json ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── db-api ├── .gitignore ├── README.md ├── requirements.txt └── src │ ├── __init__.py │ ├── app.py │ └── database.py ├── frontend ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── components │ ├── Dashboard.tsx │ ├── DateView.tsx │ ├── SearchView.tsx │ └── timeline │ │ ├── Timeline.js │ │ ├── Timeline.tsx │ │ ├── TimelineBlip.tsx │ │ ├── TimelineEvent.tsx │ │ ├── index.ts │ │ └── styles.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx ├── postcss.config.js ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ └── globals.css ├── tailwind.config.js ├── tsconfig.json └── utils │ ├── database.types.ts │ └── utils.ts ├── gpt-for-me └── main.py ├── indexer ├── .gitignore ├── README.md ├── requirements.txt ├── setup.py └── src │ ├── __init__.py │ ├── lib │ ├── __init__.py │ ├── database2.py │ └── timestamp.py │ ├── main.py │ ├── schema │ ├── __init__.py │ └── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── __init__.cpython-39.pyc │ └── sources │ ├── __init__.py │ ├── fb_messenger.py │ ├── google_location.py │ ├── imessage.py │ ├── source.py │ └── word_docs.py └── static ├── docs └── TODO.md └── mvp-recording.mov /.cursor/settings.json: -------------------------------------------------------------------------------- 1 | {"repoId":"a3af8861-d59d-43b3-8212-1ed5ae29021c","uploaded":true} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | personal search engine.iml 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/README.md -------------------------------------------------------------------------------- /db-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/db-api/.gitignore -------------------------------------------------------------------------------- /db-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/db-api/README.md -------------------------------------------------------------------------------- /db-api/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db-api/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/db-api/src/__init__.py -------------------------------------------------------------------------------- /db-api/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/db-api/src/app.py -------------------------------------------------------------------------------- /db-api/src/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/db-api/src/database.py -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/Dashboard.tsx -------------------------------------------------------------------------------- /frontend/components/DateView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/DateView.tsx -------------------------------------------------------------------------------- /frontend/components/SearchView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/SearchView.tsx -------------------------------------------------------------------------------- /frontend/components/timeline/Timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/timeline/Timeline.js -------------------------------------------------------------------------------- /frontend/components/timeline/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/timeline/Timeline.tsx -------------------------------------------------------------------------------- /frontend/components/timeline/TimelineBlip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/timeline/TimelineBlip.tsx -------------------------------------------------------------------------------- /frontend/components/timeline/TimelineEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/timeline/TimelineEvent.tsx -------------------------------------------------------------------------------- /frontend/components/timeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/timeline/index.ts -------------------------------------------------------------------------------- /frontend/components/timeline/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/components/timeline/styles.ts -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/pages/_app.tsx -------------------------------------------------------------------------------- /frontend/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/pages/api/hello.ts -------------------------------------------------------------------------------- /frontend/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/pages/index.tsx -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/styles/globals.css -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/utils/database.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/utils/database.types.ts -------------------------------------------------------------------------------- /frontend/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/frontend/utils/utils.ts -------------------------------------------------------------------------------- /gpt-for-me/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/gpt-for-me/main.py -------------------------------------------------------------------------------- /indexer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/.gitignore -------------------------------------------------------------------------------- /indexer/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indexer/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indexer/setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indexer/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indexer/src/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indexer/src/lib/database2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/lib/database2.py -------------------------------------------------------------------------------- /indexer/src/lib/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/lib/timestamp.py -------------------------------------------------------------------------------- /indexer/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/main.py -------------------------------------------------------------------------------- /indexer/src/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indexer/src/schema/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/schema/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /indexer/src/schema/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/schema/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /indexer/src/sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indexer/src/sources/fb_messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/sources/fb_messenger.py -------------------------------------------------------------------------------- /indexer/src/sources/google_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/sources/google_location.py -------------------------------------------------------------------------------- /indexer/src/sources/imessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/sources/imessage.py -------------------------------------------------------------------------------- /indexer/src/sources/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/sources/source.py -------------------------------------------------------------------------------- /indexer/src/sources/word_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/indexer/src/sources/word_docs.py -------------------------------------------------------------------------------- /static/docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/static/docs/TODO.md -------------------------------------------------------------------------------- /static/mvp-recording.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt92/memex/HEAD/static/mvp-recording.mov --------------------------------------------------------------------------------