├── .gitignore ├── .vscode └── settings.json ├── README.md ├── babashka-file-server ├── assets │ ├── files │ │ ├── hello.json │ │ └── hello.txt │ ├── index.html │ └── styles.css └── bb.edn ├── babashka-httpkit ├── .vscode │ └── settings.json ├── bb.edn └── src │ ├── common.clj │ ├── htmx │ ├── 01_click_to_edit │ │ ├── api.clj │ │ ├── editable.html │ │ └── non-editable.html │ ├── 02_bulk_edit │ │ ├── api.clj │ │ ├── bulk-edit.html │ │ └── rows.html │ ├── 03_click_to_load │ │ ├── api.clj │ │ ├── load-agent.html │ │ └── load-rows.html │ ├── 04_delete_row │ │ ├── api.clj │ │ └── delete-row.html │ ├── 05_edit_rows │ │ ├── api.clj │ │ ├── edit-rows.html │ │ ├── editable-row.html │ │ └── row.html │ ├── 06_lazy_loading │ │ ├── api.clj │ │ ├── hw.html │ │ └── lazy-page.html │ ├── 07_inline_validation │ │ ├── api.clj │ │ └── inline-page.html │ ├── 08_infinite_scroll │ │ ├── api.clj │ │ └── infinite-page.html │ ├── 09_active_search │ │ ├── active-page.html │ │ └── api.clj │ ├── 10_progress_bar │ │ ├── api.clj │ │ ├── progress-bar.html │ │ ├── progress-page.html │ │ └── progress-restart.html │ ├── 11_value_select │ │ ├── api.clj │ │ └── value-page.html │ ├── 12_animations │ │ ├── animations.html │ │ └── api.clj │ ├── 13_file_upload │ │ ├── api.clj │ │ └── file-upload.html │ ├── 14_dialogs │ │ ├── api.clj │ │ └── dialogs.html │ ├── 15_modal_uikit │ │ ├── api.clj │ │ ├── main-page.html │ │ └── modal-uikit.html │ ├── 16_modal_bootstrap │ │ ├── api.clj │ │ ├── main-page.html │ │ └── modal-boostrap.html │ ├── 17_modal_custom │ │ ├── api.clj │ │ ├── main-page.html │ │ └── modal-custom.html │ ├── 18_tabs_hateoas │ │ ├── api.clj │ │ └── main-page.html │ ├── 19_5_tabs_like_these │ │ ├── api.clj │ │ └── main-page.html │ ├── 19_tabs_hyperscript │ │ ├── api.clj │ │ └── main-page.html │ ├── 20_keyboard_shortcuts │ │ └── keyboard-shortcuts-page.html │ ├── 21_sortable │ │ ├── api.clj │ │ └── sortable-page.html │ ├── 22_update_other_content │ │ ├── api.clj │ │ ├── main-page.html │ │ ├── solution-1.html │ │ ├── solution-2.html │ │ ├── solution-3.html │ │ └── solution-4.html │ ├── 23_confirm │ │ ├── api.clj │ │ └── main-page.html │ ├── index.html │ ├── routes.clj │ └── style.css │ ├── hw.png │ ├── index.html │ ├── loading.svg │ ├── mermaid.html │ ├── serve.clj │ └── style.css └── notes.md /.gitignore: -------------------------------------------------------------------------------- 1 | .clj-kondo 2 | .lsp 3 | .calva 4 | .nrepl-port 5 | 6 | .DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/README.md -------------------------------------------------------------------------------- /babashka-file-server/assets/files/hello.json: -------------------------------------------------------------------------------- 1 | { 2 | "this": "hello!" 3 | } -------------------------------------------------------------------------------- /babashka-file-server/assets/files/hello.txt: -------------------------------------------------------------------------------- 1 | hello, this is a txt -------------------------------------------------------------------------------- /babashka-file-server/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-file-server/assets/index.html -------------------------------------------------------------------------------- /babashka-file-server/assets/styles.css: -------------------------------------------------------------------------------- 1 | .a-link { 2 | padding: 2rem; 3 | } -------------------------------------------------------------------------------- /babashka-file-server/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-file-server/bb.edn -------------------------------------------------------------------------------- /babashka-httpkit/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/.vscode/settings.json -------------------------------------------------------------------------------- /babashka-httpkit/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/bb.edn -------------------------------------------------------------------------------- /babashka-httpkit/src/common.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/common.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/01_click_to_edit/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/01_click_to_edit/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/01_click_to_edit/editable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/01_click_to_edit/editable.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/01_click_to_edit/non-editable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/01_click_to_edit/non-editable.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/02_bulk_edit/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/02_bulk_edit/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/02_bulk_edit/bulk-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/02_bulk_edit/bulk-edit.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/02_bulk_edit/rows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/02_bulk_edit/rows.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/03_click_to_load/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/03_click_to_load/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/03_click_to_load/load-agent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/03_click_to_load/load-agent.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/03_click_to_load/load-rows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/03_click_to_load/load-rows.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/04_delete_row/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/04_delete_row/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/04_delete_row/delete-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/04_delete_row/delete-row.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/05_edit_rows/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/05_edit_rows/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/05_edit_rows/edit-rows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/05_edit_rows/edit-rows.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/05_edit_rows/editable-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/05_edit_rows/editable-row.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/05_edit_rows/row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/05_edit_rows/row.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/06_lazy_loading/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/06_lazy_loading/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/06_lazy_loading/hw.html: -------------------------------------------------------------------------------- 1 | huntress wizard -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/06_lazy_loading/lazy-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/06_lazy_loading/lazy-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/07_inline_validation/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/07_inline_validation/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/07_inline_validation/inline-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/07_inline_validation/inline-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/08_infinite_scroll/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/08_infinite_scroll/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/08_infinite_scroll/infinite-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/08_infinite_scroll/infinite-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/09_active_search/active-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/09_active_search/active-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/09_active_search/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/09_active_search/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/10_progress_bar/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/10_progress_bar/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/10_progress_bar/progress-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/10_progress_bar/progress-bar.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/10_progress_bar/progress-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/10_progress_bar/progress-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/10_progress_bar/progress-restart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/10_progress_bar/progress-restart.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/11_value_select/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/11_value_select/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/11_value_select/value-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/11_value_select/value-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/12_animations/animations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/12_animations/animations.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/12_animations/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/12_animations/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/13_file_upload/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/13_file_upload/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/13_file_upload/file-upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/13_file_upload/file-upload.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/14_dialogs/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/14_dialogs/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/14_dialogs/dialogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/14_dialogs/dialogs.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/15_modal_uikit/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/15_modal_uikit/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/15_modal_uikit/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/15_modal_uikit/main-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/15_modal_uikit/modal-uikit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/15_modal_uikit/modal-uikit.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/16_modal_bootstrap/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/16_modal_bootstrap/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/16_modal_bootstrap/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/16_modal_bootstrap/main-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/16_modal_bootstrap/modal-boostrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/16_modal_bootstrap/modal-boostrap.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/17_modal_custom/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/17_modal_custom/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/17_modal_custom/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/17_modal_custom/main-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/17_modal_custom/modal-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/17_modal_custom/modal-custom.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/18_tabs_hateoas/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/18_tabs_hateoas/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/18_tabs_hateoas/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/18_tabs_hateoas/main-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/19_5_tabs_like_these/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/19_5_tabs_like_these/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/19_5_tabs_like_these/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/19_5_tabs_like_these/main-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/19_tabs_hyperscript/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/19_tabs_hyperscript/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/19_tabs_hyperscript/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/19_tabs_hyperscript/main-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/20_keyboard_shortcuts/keyboard-shortcuts-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/20_keyboard_shortcuts/keyboard-shortcuts-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/21_sortable/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/21_sortable/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/21_sortable/sortable-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/21_sortable/sortable-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/22_update_other_content/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/22_update_other_content/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/22_update_other_content/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/22_update_other_content/main-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/22_update_other_content/solution-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/22_update_other_content/solution-1.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/22_update_other_content/solution-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/22_update_other_content/solution-2.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/22_update_other_content/solution-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/22_update_other_content/solution-3.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/22_update_other_content/solution-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/22_update_other_content/solution-4.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/23_confirm/api.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/23_confirm/api.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/23_confirm/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/23_confirm/main-page.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/index.html -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/routes.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/routes.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/htmx/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/htmx/style.css -------------------------------------------------------------------------------- /babashka-httpkit/src/hw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/hw.png -------------------------------------------------------------------------------- /babashka-httpkit/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/index.html -------------------------------------------------------------------------------- /babashka-httpkit/src/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/loading.svg -------------------------------------------------------------------------------- /babashka-httpkit/src/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/mermaid.html -------------------------------------------------------------------------------- /babashka-httpkit/src/serve.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/serve.clj -------------------------------------------------------------------------------- /babashka-httpkit/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/babashka-httpkit/src/style.css -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keychera/panas.example/HEAD/notes.md --------------------------------------------------------------------------------