Initial Commit

This commit is contained in:
Thomas Dehaeze 2021-05-18 00:04:40 +02:00
commit 5e9bbe91cc
4 changed files with 63 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "speaker-measurement"]
path = speaker-measurement
url = https://git.tdehaeze.xyz/tdehaeze/speaker-measurement

29
index.html Normal file
View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2021-05-18 mar. 00:04 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Acoustics</title>
<meta name="author" content="Thomas Dehaeze" />
<meta name="generator" content="Org Mode" />
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script type="text/javascript" src="js/script.js"></script>
<style> #content {margin: auto;} </style>
</head>
<body>
<div id="content">
<h1 class="title">Acoustics</h1>
<div id="outline-container-orga213e07" class="outline-2">
<h2 id="orga213e07"><span class="section-number-2">1</span> Notes</h2>
<div class="outline-text-2" id="text-1">
<ul class="org-ul">
<li><a href="speaker-measurement/index.html">Speaker Measurement</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>

30
index.org Normal file
View File

@ -0,0 +1,30 @@
#+TITLE: Acoustics
:DRAWER:
#+OPTIONS: toc:nil
#+OPTIONS: html-postamble:nil
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="css/style.css"/>
#+HTML_HEAD: <script type="text/javascript" src="js/script.js"></script>
#+HTML_HEAD: <style> #content {margin: auto;} </style>
: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]]

1
speaker-measurement Submodule

@ -0,0 +1 @@
Subproject commit 0fcaebff84445900671816e14d07815104d8a54b