├── .github ├── dependabot.yml ├── scripts │ ├── README.md │ ├── install_geckodriver.sh │ ├── setup_boot.sh │ └── setup_wifi_ap.sh ├── templates │ ├── README.md │ ├── bash_history │ ├── dhcpcd.conf │ ├── dnsmasq.conf │ ├── hostapd │ ├── hostapd.conf │ ├── sysctl.conf │ └── uap0.service └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── gonotego ├── assets │ ├── beep_hi.wav │ └── beep_lo.wav ├── audio │ ├── audiolistener.py │ ├── runner.py │ └── trigger.py ├── command_center │ ├── assistant_commands.py │ ├── commands.py │ ├── custom_commands.py │ ├── email_commands.py │ ├── note_commands.py │ ├── registry.py │ ├── runner.py │ ├── scheduler.py │ ├── settings_commands.py │ ├── system_commands.py │ ├── twitter_commands.py │ └── wifi_commands.py ├── common │ ├── events.py │ ├── internet.py │ ├── interprocess.py │ ├── status.py │ └── test_events.py ├── leds │ └── indicators.py ├── scratch │ └── insert_note.py ├── settings-server │ ├── .gitignore │ ├── components.json │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── components │ │ │ └── ui │ │ │ │ ├── alert.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── hover-card.tsx │ │ │ │ ├── input.tsx │ │ │ │ └── select.tsx │ │ ├── index.css │ │ ├── lib │ │ │ └── utils.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── settings │ ├── secure_settings_template.py │ ├── server.py │ ├── settings.py │ ├── tools │ │ └── generate_template.py │ └── wifi.py ├── supervisord.conf ├── text │ ├── runner.py │ └── shell.py ├── transcription │ ├── runner.py │ └── transcriber.py └── uploader │ ├── blob │ └── blob_uploader.py │ ├── browser │ ├── driver_utils.py │ └── template.js │ ├── email │ └── email_uploader.py │ ├── ideaflow │ └── ideaflow_uploader.py │ ├── mem │ └── mem_uploader.py │ ├── notion │ └── notion_uploader.py │ ├── remnote │ └── remnote_uploader.py │ ├── roam │ ├── helper.js │ └── roam_uploader.py │ ├── runner.py │ ├── slack │ └── slack_uploader.py │ └── twitter │ └── twitter_uploader.py ├── hardware.md ├── installation.md ├── pyproject.toml └── scripts └── install_settings.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/scripts/README.md -------------------------------------------------------------------------------- /.github/scripts/install_geckodriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/scripts/install_geckodriver.sh -------------------------------------------------------------------------------- /.github/scripts/setup_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/scripts/setup_boot.sh -------------------------------------------------------------------------------- /.github/scripts/setup_wifi_ap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/scripts/setup_wifi_ap.sh -------------------------------------------------------------------------------- /.github/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/templates/README.md -------------------------------------------------------------------------------- /.github/templates/bash_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/templates/bash_history -------------------------------------------------------------------------------- /.github/templates/dhcpcd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/templates/dhcpcd.conf -------------------------------------------------------------------------------- /.github/templates/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/templates/dnsmasq.conf -------------------------------------------------------------------------------- /.github/templates/hostapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/templates/hostapd -------------------------------------------------------------------------------- /.github/templates/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/templates/hostapd.conf -------------------------------------------------------------------------------- /.github/templates/sysctl.conf: -------------------------------------------------------------------------------- 1 | net.ipv4.ip_forward=1 2 | -------------------------------------------------------------------------------- /.github/templates/uap0.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/templates/uap0.service -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/README.md -------------------------------------------------------------------------------- /gonotego/assets/beep_hi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/assets/beep_hi.wav -------------------------------------------------------------------------------- /gonotego/assets/beep_lo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/assets/beep_lo.wav -------------------------------------------------------------------------------- /gonotego/audio/audiolistener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/audio/audiolistener.py -------------------------------------------------------------------------------- /gonotego/audio/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/audio/runner.py -------------------------------------------------------------------------------- /gonotego/audio/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/audio/trigger.py -------------------------------------------------------------------------------- /gonotego/command_center/assistant_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/assistant_commands.py -------------------------------------------------------------------------------- /gonotego/command_center/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/commands.py -------------------------------------------------------------------------------- /gonotego/command_center/custom_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/custom_commands.py -------------------------------------------------------------------------------- /gonotego/command_center/email_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/email_commands.py -------------------------------------------------------------------------------- /gonotego/command_center/note_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/note_commands.py -------------------------------------------------------------------------------- /gonotego/command_center/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/registry.py -------------------------------------------------------------------------------- /gonotego/command_center/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/runner.py -------------------------------------------------------------------------------- /gonotego/command_center/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/scheduler.py -------------------------------------------------------------------------------- /gonotego/command_center/settings_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/settings_commands.py -------------------------------------------------------------------------------- /gonotego/command_center/system_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/system_commands.py -------------------------------------------------------------------------------- /gonotego/command_center/twitter_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/twitter_commands.py -------------------------------------------------------------------------------- /gonotego/command_center/wifi_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/command_center/wifi_commands.py -------------------------------------------------------------------------------- /gonotego/common/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/common/events.py -------------------------------------------------------------------------------- /gonotego/common/internet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/common/internet.py -------------------------------------------------------------------------------- /gonotego/common/interprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/common/interprocess.py -------------------------------------------------------------------------------- /gonotego/common/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/common/status.py -------------------------------------------------------------------------------- /gonotego/common/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/common/test_events.py -------------------------------------------------------------------------------- /gonotego/leds/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/leds/indicators.py -------------------------------------------------------------------------------- /gonotego/scratch/insert_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/scratch/insert_note.py -------------------------------------------------------------------------------- /gonotego/settings-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/.gitignore -------------------------------------------------------------------------------- /gonotego/settings-server/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/components.json -------------------------------------------------------------------------------- /gonotego/settings-server/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/eslint.config.js -------------------------------------------------------------------------------- /gonotego/settings-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/index.html -------------------------------------------------------------------------------- /gonotego/settings-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/package-lock.json -------------------------------------------------------------------------------- /gonotego/settings-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/package.json -------------------------------------------------------------------------------- /gonotego/settings-server/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/postcss.config.js -------------------------------------------------------------------------------- /gonotego/settings-server/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/App.css -------------------------------------------------------------------------------- /gonotego/settings-server/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/App.tsx -------------------------------------------------------------------------------- /gonotego/settings-server/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /gonotego/settings-server/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/components/ui/button.tsx -------------------------------------------------------------------------------- /gonotego/settings-server/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/components/ui/card.tsx -------------------------------------------------------------------------------- /gonotego/settings-server/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /gonotego/settings-server/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/components/ui/input.tsx -------------------------------------------------------------------------------- /gonotego/settings-server/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/components/ui/select.tsx -------------------------------------------------------------------------------- /gonotego/settings-server/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/index.css -------------------------------------------------------------------------------- /gonotego/settings-server/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/lib/utils.ts -------------------------------------------------------------------------------- /gonotego/settings-server/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/src/main.tsx -------------------------------------------------------------------------------- /gonotego/settings-server/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /gonotego/settings-server/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/tailwind.config.js -------------------------------------------------------------------------------- /gonotego/settings-server/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/tsconfig.app.json -------------------------------------------------------------------------------- /gonotego/settings-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/tsconfig.json -------------------------------------------------------------------------------- /gonotego/settings-server/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/tsconfig.node.json -------------------------------------------------------------------------------- /gonotego/settings-server/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings-server/vite.config.ts -------------------------------------------------------------------------------- /gonotego/settings/secure_settings_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings/secure_settings_template.py -------------------------------------------------------------------------------- /gonotego/settings/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings/server.py -------------------------------------------------------------------------------- /gonotego/settings/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings/settings.py -------------------------------------------------------------------------------- /gonotego/settings/tools/generate_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings/tools/generate_template.py -------------------------------------------------------------------------------- /gonotego/settings/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/settings/wifi.py -------------------------------------------------------------------------------- /gonotego/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/supervisord.conf -------------------------------------------------------------------------------- /gonotego/text/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/text/runner.py -------------------------------------------------------------------------------- /gonotego/text/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/text/shell.py -------------------------------------------------------------------------------- /gonotego/transcription/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/transcription/runner.py -------------------------------------------------------------------------------- /gonotego/transcription/transcriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/transcription/transcriber.py -------------------------------------------------------------------------------- /gonotego/uploader/blob/blob_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/blob/blob_uploader.py -------------------------------------------------------------------------------- /gonotego/uploader/browser/driver_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/browser/driver_utils.py -------------------------------------------------------------------------------- /gonotego/uploader/browser/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/browser/template.js -------------------------------------------------------------------------------- /gonotego/uploader/email/email_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/email/email_uploader.py -------------------------------------------------------------------------------- /gonotego/uploader/ideaflow/ideaflow_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/ideaflow/ideaflow_uploader.py -------------------------------------------------------------------------------- /gonotego/uploader/mem/mem_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/mem/mem_uploader.py -------------------------------------------------------------------------------- /gonotego/uploader/notion/notion_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/notion/notion_uploader.py -------------------------------------------------------------------------------- /gonotego/uploader/remnote/remnote_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/remnote/remnote_uploader.py -------------------------------------------------------------------------------- /gonotego/uploader/roam/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/roam/helper.js -------------------------------------------------------------------------------- /gonotego/uploader/roam/roam_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/roam/roam_uploader.py -------------------------------------------------------------------------------- /gonotego/uploader/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/runner.py -------------------------------------------------------------------------------- /gonotego/uploader/slack/slack_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/slack/slack_uploader.py -------------------------------------------------------------------------------- /gonotego/uploader/twitter/twitter_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/gonotego/uploader/twitter/twitter_uploader.py -------------------------------------------------------------------------------- /hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/hardware.md -------------------------------------------------------------------------------- /installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/installation.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/install_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbieber/GoNoteGo/HEAD/scripts/install_settings.sh --------------------------------------------------------------------------------