You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 12, 2024. It is now read-only.
formats = pdf slides.pdf html slides.html epub odt txt
1
12
all: build
2
13
3
-
.PHONY: docs
4
-
docs:
5
-
mkdir -p out/docs
6
-
if [ -d"docs/static" ];then cp -r docs/static out/docs;fi
7
-
echo"<!DOCTYPE html><meta charset="utf-8"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><meta name=\"description\" content=\"$$(sed -n '2 p' docs/metadata.txt)\"><link rel=\"stylesheet\" href=\"https://unpkg.com/marx-css/css/marx.min.css\"><title>$$(sed -n '1 p' docs/metadata.txt)</title><main><h1>$$(sed -n '1 p' docs/metadata.txt)</h1><p>$$(sed -n '2 p' docs/metadata.txt)</p><hr><a href=\"$$(sed -n '4 p' docs/metadata.txt)\" target=\"_blank\">📃 View source (✍️ $$(sed -n '3 p' docs/metadata.txt))</a><br><a href=\"$$(sed -n '5 p' docs/metadata.txt)\" download=\"$$(sed -n '1 p' docs/metadata.txt).zip\">📥 Download all as ZIP</a><hr><div>You may do the following:</div><ul>">"out/docs/index.html"
echo"<li><a href=\"$${document#docs/}.html\" target=\"_blank\">🌐 View $${document#docs/} in your browser</a> (also available as <a href=\"$${document#docs/}.slides.html\" target=\"_blank\">slides</a>) or <a href=\"$${document#docs/}.pdf\" target=\"_blank\">📥 download $${document#docs/} as PDF</a> (also available as <a href=\"$${document#docs/}.slides.pdf\" target=\"_blank\">slides</a>)">>"out/docs/index.html";\
12
-
done
13
-
echo"</ul><div><strong><em>$$(sed -n '6 p' docs/metadata.txt)</em></strong></div></main>">>"out/docs/index.html"
Personal notes for the DB1 course at HdM Stuttgart. DB1 is an introduction to SQL and PL/SQL using the proprietary Oracle database.
3
+
Notes for the DB1 (databases) course at HdM Stuttgart. DB1 is an introduction to SQL and PL/SQL using the proprietary Oracle database.
4
4
5
5
If you intend on learning how to work with databases, please refrain from using the proprietary Oracle database. Choose a superior alternative, such as PostgreSQL or MariaDB instead. [Free Software, Free Society](https://www.fsf.org/about/what-is-free-software)!
You can [view and download the notes from GitHub pages](https://pojntfx.github.io/uni-db1-notes/). They can also be downloaded as a Zip archive from [GitHub releases](https://github.com/pojntfx/uni-db1-notes/releases).
11
+
You can [view the notes on GitHub pages](https://pojntfx.github.io/uni-db1-notes/), [download them from GitHub releases](https://github.com/pojntfx/uni-db1-notes/releases/latest) or [check out the source on GitHub](https://github.com/pojntfx/uni-db1-notes).
12
+
13
+
## Contributing
14
+
15
+
To contribute, please use the [GitHub flow](https://guides.github.com/introduction/flow/) and follow our [Code of Conduct](./CODE_OF_CONDUCT.md).
16
+
17
+
To build and open a note locally, run the following:
Copy file name to clipboardexpand all lines: docs/main.md
+10-6
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,13 @@
1
-
% DB1 Auswendiglernen
2
-
% Felicitas Pojtinger
3
-
% \today
4
-
\tableofcontents
5
-
6
-
# DB1 Auswendiglernen
1
+
---
2
+
author: [Felicitas Pojtinger]
3
+
date: "2022-02-01"
4
+
subject: "Uni DB1 Notes"
5
+
keywords: [databases, oracle, hdm-stuttgart]
6
+
subtitle: "Notes for the DB1 (databases) course at HdM Stuttgart"
7
+
lang: "de"
8
+
---
9
+
10
+
# Uni DB1 Notes
7
11
8
12
> "The true courage is to admit that the light at the end of the tunnel is probably the headlight of another train approaching" - Slavoj Žižek, _The Courage of Hopelessness_
0 commit comments