aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-11-22 01:13:49 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-11-22 01:13:49 +0100
commitc8294934cdbe21e33e4f2d5cbfe060548495a645 (patch)
treef09b9edd65451c672a77ccb84b4a65ada7112015
parentMerge branch 'master' of git.hornquist.se:git/wiki-public (diff)
downloadwiki-public-c8294934cdbe21e33e4f2d5cbfe060548495a645.tar.gz
wiki-public-c8294934cdbe21e33e4f2d5cbfe060548495a645.tar.xz
tis 22 nov 2022 01:13:49 CET
-rw-r--r--HTML Footnotes.wiki4
-rw-r--r--Terminal Colors.wiki (renamed from alacritty.wiki)5
-rw-r--r--index.wiki7
-rw-r--r--python.wiki20
4 files changed, 34 insertions, 2 deletions
diff --git a/HTML Footnotes.wiki b/HTML Footnotes.wiki
new file mode 100644
index 0000000..578311e
--- /dev/null
+++ b/HTML Footnotes.wiki
@@ -0,0 +1,4 @@
+- [ ] Fotnötter i HTML bör ha hovertext med sitt innehåll
+
+Sida med korrekt byggda fotnötter https://drewdevault.com/2022/09/07/Kernel-hacking-with-Hare-part-1.html
+
diff --git a/alacritty.wiki b/Terminal Colors.wiki
index 0e72e1c..a24d057 100644
--- a/alacritty.wiki
+++ b/Terminal Colors.wiki
@@ -1,4 +1,4 @@
-= Alacritty =
+= Terminal Colors =
== Dynamic background colors ==
- https://medium.com/@joao.paulo.silvasouza/change-your-terminals-background-color-dynamically-using-escape-sequences-aba6e5ed2b29
@@ -19,3 +19,6 @@ terminal border bg :: `\033]708;#<6-digit-hexcode>\007`
4. Blue
5. Purple
6. Cyan
+
+== Misc ==
+- [ ] Hur interagerar det med dawn/dusk
diff --git a/index.wiki b/index.wiki
index 1ad1e7c..fd04da1 100644
--- a/index.wiki
+++ b/index.wiki
@@ -36,9 +36,9 @@
- [[ansible]]
- [[lsp]]
- [[Virtualization]]
-- [[alacritty]]
- [[cmake]]
- [[git]]
+- [[python]]
== Projekt ==
- [[GitServer]]
@@ -88,6 +88,8 @@
- [[Systemd Machined]]
- [[ldap]]
- [[losetup]]
+- [[Terminal Colors]]
+- [[HTML Footnotes]]
== Misc ==
- [[Lisp Quine]]
@@ -129,6 +131,9 @@
- [[GitServer#Git Server#Autentisering#Autentisering SSH#Problem]]
- [[GitServer#Taggning#Cleanup]]
+== dressman ==
+ - [[Kläder#Kläder, klädstorlekar, m.m.#Dressmann "Slim Fit" measurements]]
+
== tidle ==
- [[Media#tidle]]
diff --git a/python.wiki b/python.wiki
new file mode 100644
index 0000000..1abbf49
--- /dev/null
+++ b/python.wiki
@@ -0,0 +1,20 @@
+= Properties =
+property
+
+{{{python
+field = property(get_f, set_f)
+}}}
+
+{{{python
+class C:
+ def __init__(self):
+ self._x = 10
+
+ @property
+ def x(self):
+ return self._x
+
+ @x.setter
+ def x(self, value):
+ self._x = value
+}}}