aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-12-01 17:02:57 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-12-01 17:02:57 +0100
commitcbcbbcfbfb8a556c5594e980537f374290ff60a3 (patch)
tree02a74bea3d63b26cc509eab679da2f79f73a611b
parentmån 21 nov. 2022 21:42:18 CET (diff)
parenttis 29 nov 2022 01:17:46 CET (diff)
downloadwiki-public-cbcbbcfbfb8a556c5594e980537f374290ff60a3.tar.gz
wiki-public-cbcbbcfbfb8a556c5594e980537f374290ff60a3.tar.xz
Merge branch 'master' of git.hornquist.se:git/wiki-public
-rw-r--r--HTML Footnotes.wiki4
-rw-r--r--Matrix.wiki8
-rw-r--r--TeliaNet.wiki3
-rw-r--r--Terminal Colors.wiki (renamed from alacritty.wiki)5
-rw-r--r--index.wiki8
-rw-r--r--python.wiki20
6 files changed, 46 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/Matrix.wiki b/Matrix.wiki
new file mode 100644
index 0000000..8c529dc
--- /dev/null
+++ b/Matrix.wiki
@@ -0,0 +1,8 @@
+Matrix Synapse :: Nuvarande referensimplementation
+Dendrite :: Ska bli nästa "
+Conduit :: Rust implementation
+
+element.liu.se
+matrix.it.liu.se - för egen klient
+
+Kräver LiU-inlogg
diff --git a/TeliaNet.wiki b/TeliaNet.wiki
index 328e003..7ef95c1 100644
--- a/TeliaNet.wiki
+++ b/TeliaNet.wiki
@@ -1,3 +1,5 @@
+[[https://github.com/aleixrodriala/wa-tunnel|See whatsapp tunnel instead]]
+
= TeliaNet =
TeliaNet is a program aimed at researching networking through social
media in a novel fashion. Furthermore, the program will investigate
@@ -7,6 +9,7 @@ https://git.lysator.liu.se/hugo/telianet
{{http://www.lysator.liu.se/~hugo/img/IMG_20181010_211237190.jpg|Diagram|style="width:500px;float:left"}}
+
== Telia ==
https://www.telia.se/privat/telefoni/frisurfsocial?intcmp=surfpott_frisurfsocial
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..1fb51cd 100644
--- a/index.wiki
+++ b/index.wiki
@@ -36,9 +36,10 @@
- [[ansible]]
- [[lsp]]
- [[Virtualization]]
-- [[alacritty]]
- [[cmake]]
- [[git]]
+- [[python]]
+- [[Matrix]]
== Projekt ==
- [[GitServer]]
@@ -88,6 +89,8 @@
- [[Systemd Machined]]
- [[ldap]]
- [[losetup]]
+- [[Terminal Colors]]
+- [[HTML Footnotes]]
== Misc ==
- [[Lisp Quine]]
@@ -129,6 +132,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
+}}}