commit 5e9bbe91ccc9629c0cf67c3d385bd28c5789a09f Author: Thomas Dehaeze Date: Tue May 18 00:04:40 2021 +0200 Initial Commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..6257043 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "speaker-measurement"] + path = speaker-measurement + url = https://git.tdehaeze.xyz/tdehaeze/speaker-measurement diff --git a/index.html b/index.html new file mode 100644 index 0000000..e4aa3f9 --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + + + +Acoustics + + + + + + + +
+

Acoustics

+ +
+

1 Notes

+ +
+
+ + diff --git a/index.org b/index.org new file mode 100644 index 0000000..238f267 --- /dev/null +++ b/index.org @@ -0,0 +1,30 @@ +#+TITLE: Acoustics +:DRAWER: +#+OPTIONS: toc:nil +#+OPTIONS: html-postamble:nil + +#+HTML_HEAD: +#+HTML_HEAD: +#+HTML_HEAD: +:END: + +* Add a submodule :noexport: +#+begin_src emacs-lisp :results none + (let* ((url (read-string "Add submodule (remote url) ")) + (url-match (string-match "\\([^./]+\\)\\(\\.git\\)?$" url)) + (path (match-string 1 url)) + (path (read-string "Submodule directory " path))) + (shell-command (concat "git submodule add " url " " path)) + (shell-command (concat "git submodule deinit -f " path))) +#+end_src + +* Change submodule url :noexport: +First delete the submodule using +#+begin_src bash + git rm --cache submodule-name +#+end_src + +Then add a new submodule with the updated url. + +* Notes +- [[file:speaker-measurement/index.org][Speaker Measurement]] diff --git a/speaker-measurement b/speaker-measurement new file mode 160000 index 0000000..0fcaebf --- /dev/null +++ b/speaker-measurement @@ -0,0 +1 @@ +Subproject commit 0fcaebff84445900671816e14d07815104d8a54b