initial commit

main
oniboni 2022-12-30 22:42:12 +01:00
commit 44b71cd8b7
Signed by: oniboni
GPG Key ID: 11E6EDEFD248BB50
11 changed files with 185 additions and 0 deletions

24
README.md Normal file
View File

@ -0,0 +1,24 @@
# dezentrale Services: Wh0t?
[localverse2022](https://dezentrale.space/posts/2022/12/localverse2022-fahrplan/)
code repo for talk..
slides can be opended in [Obsidian](https://obsidian.md/download):
* (optional) install via flatpak (+ flatseal)
* enable slides plugin if you want to see the presentation
* (optional) disable network access in flatseal for obsidian
* (optional) only allow this folder in flatseal for obsidian
* open this folder in obsidian
## Aftermath
- [ ] compose initial welcome text for memebers mailing list (with @pilgim ?)
- [ ] where to start -> matix, wiki, etc
- [ ] check aurora stuff
- [ ] LED stripes (Hauptraum - retrieve current code deployed from @phantomix)
- [ ] update to support aurora (except logo part)
- [ ] check on better power switch configuration (with @sixtus ?)
- [ ] move switches to one common switch to front (door)
- [ ] include @sixtus relais to be able to switch them via harry (?)

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

161
slides/Services Vortrag.md Normal file
View File

@ -0,0 +1,161 @@
# dezentrale Services: Wh0t?
![[Pasted image 20221228233415.png|280]]
(Quelle: Inernet, Suche: "excited cat")
---
## Ich bin jetzt Mitglied.. Und Nu?
* Start: Mailingliste `@dezentrale.space`
* `discuss@dezentrale.space` -> für alle
* Du hast nun Zugriff auf `members@dezentrale.space`
* etc
* siehe [Wiki/Mailinglisten](https://wiki.dezentrale.space/Infrastruktur/Anleitungen/Mailinglisten)
---
## Ich bin jetzt Mitglied.. Und Nu? (con't)
* Matrix
* Start: [Wiki/Element-HowTo](https://wiki.dezentrale.space/Infrastruktur/Anleitungen/Element-HowTo)
* Du kannst dir auch einen Matrix Account auf der lokalen Instanz erstellen! -> `@chat.dezentrale.space`
* Du hast nun Zugriff auf den Members Channel!
---
## Matrix-Räume
![[Pasted image 20221229005705.png|900]]
(Quelle: Inernet, Suche: "matrix cat")
---
## Matrix-Räume (con't)
![[Pasted image 20221229005416.png|800]]
---
## Matrix-Räume (con't)
* Start: [Eingangsbereich](https://app.element.io/#/room/#Eingangsbereich:chat.dezentrale.space)
* Einbringen von neuen Themen:
* `Plenum` `@Matix`
* `Anliegen an den Vorstand`
* Falls dir die Räume nicht in der Suche angezeigt werden: Lass dich in den Space einladen
---
## Was haben wir alles so?
* Wurde bereits im Vortrag von Tag eins vorgestellt ("5 Jahre dezentrale e.V. - (m)eine Retrospektive")
* Recap: [UCS Portal](https://dezentrale.cloud/univention/portal/#/) `dezentrale.cloud` -> Übersicht der Webseiten und deployten Services
* Jedes Member kann einen Account bekommen
---
## UCS Portal
![[Pasted image 20221227185231.png|800]]
---
## Wiki
![[Pasted image 20221229004334.png|600]]
(Quelle: Internet, Suche: "kitty gardener")
---
## Wiki (con't)
https://wiki.dezentrale.space/Dezentrale
* Login: UCS-Account
* Allgemeine Dokumentationen, bspw.:
* Protokolle der letzten Plena
* Projektinformationen
* Veranstaltungen, etc
---
## Wiki (cont'd)
* Rechner im Vorraum: [Harry](https://harry.intern.dezentrale.space) (aus dem internen Netz erreichbar)
* Steckdosenschaltung für
* Treppe
* Klolicht ("Aufnahme läuft")
* LED-Panel zum Hof
* Monitor
---
## Wiki (cont'd)
* Aurora
* LED-Panel (draußen)
* LED-Stripe Treppe
* LED-Stripe Tisch (Hauptraum)
* LED-Fairy Dust (Hauptraum)
---
## Homepage
![[Pasted image 20221227182729.png]]
---
## Homepage (con'd)
* Hands-on: Wie schreibe ich einen Blog-Post
![[Pasted image 20221229000546.png|400]]
(Quelle: Inernet, Suche: "keyboard cat")
---
## Homepage (cont'd)
* basiert auf [HUGO](https://gohugo.io/)
* static site generator
* Inhalte als Markdown (`*.md`)
* große Auswahl an Themes, die auf die eigenen Wünsche angepasst werden können
---
## Homepage (cont'd)
* Ordnerstruktur
```sh
.
├── assets ➡ referenzierbare Dateien durch HUGO verarbeitet
├── content ➡ Markdown Seiten
├── data ➡ allgemeine Parameter
├── layouts ➡ angepasste Elemente nutzbar über Shortcodes
↪ (`{% <shortcode> %}`)
├── static ➡ referenzierbare Rohdateien
├── themes ➡ verwendete(s) Theme
└── config.yaml ➡ HUGO Seitenkonfig
```
---
## Homepage (cont'd)
* Wie bekommen ich meinen Content auf die Seite?
* UCS-Account bei Gitea verwenden
* Kein Mitglied im [Frontend](https://git.dezentrale.cloud/Frontend)/[Homepage](https://git.dezentrale.cloud/Frontend/Homepage) Projekt?
* Projekt forken ![[Pasted image 20221227232151.png]]
---
## Homepage (cont'd)
* `git clone --recursive <url>` (fork oder direkt)
* `git checkout -b feature/test_blog_post`
* <Änderungen vornehmen> (Siehe nächste Slides)
---
## Homepage (cont'd)
Live Server starten:
* `hugo server`
* oder:
```sh
podman run --rm -it \
-v $(pwd):/src \
-p 1313:1313 \
klakegg/hugo:0.107.0 \
server
```
---
## Homepage (cont'd)
![[Pasted image 20221227233419.png]]
---
## Homepage (cont'd)
* Neuen Blogeintrag erstellen:
* `hugo new posts/2022/12/localverse-test.md`
* oder:
* `podman run --rm -it -v $(pwd):/src klakegg/hugo:0.107.0 new posts/2022/12/localverse-test.md`
---
## Homepage (cont'd)
* `git add .`
* `git commit -m 'My first blog post!!!11elf'`
* `git push`
* Pull Request erstellen